Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 10250


Ignore:
Timestamp:
Feb 1, 2015, 10:51:47 PM (9 years ago)
Author:
landauf
Message:

tabs → spaces. removed temp-file

Location:
code/branches/storymodeHS14
Files:
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • code/branches/storymodeHS14/cmake/LibraryConfig.cmake

    r9765 r10250  
    161161SET(Boost_ADDITIONAL_VERSIONS 1.40 1.40.0 1.41 1.41.0 1.42 1.42.0 1.43 1.43.0
    162162                              1.44 1.44.0 1.45 1.45.0 1.46 1.46.0 1.46.1 1.49.0
    163                               1.53.0)
     163                              1.53.0)
    164164IF(NOT TARDIS)
    165165  FIND_PACKAGE(Boost 1.40 REQUIRED thread filesystem system date_time)
  • code/branches/storymodeHS14/data/gui/scripts/CampaignMenu.lua

    r10174 r10250  
    44
    55function P.onLoad()
    6        
    7         local MissionTwoButton = winMgr:getWindow("orxonox/MissionTwoButton")
    8         if (P.CheckLevel("missionOne.oxw")) then
    9         MissionTwoButton:setProperty("Disabled", "False")
    10         end
    11        
    12         local MissionThreeButton = winMgr:getWindow("orxonox/MissionThreeButton")
    13         if (P.CheckLevel("fightInOurBack.oxw")) then
    14         MissionThreeButton:setProperty("Disabled", "False")
    15         end
     6   
     7    local MissionTwoButton = winMgr:getWindow("orxonox/MissionTwoButton")
     8    if (P.CheckLevel("missionOne.oxw")) then
     9    MissionTwoButton:setProperty("Disabled", "False")
     10    end
     11   
     12    local MissionThreeButton = winMgr:getWindow("orxonox/MissionThreeButton")
     13    if (P.CheckLevel("fightInOurBack.oxw")) then
     14    MissionThreeButton:setProperty("Disabled", "False")
     15    end
    1616
    17         local MissionFourButton = winMgr:getWindow("orxonox/MissionFourButton")
    18         if (P.CheckLevel("pirateAttack.oxw")) then
    19         MissionFourButton:setProperty("Disabled", "False")
    20         end
    21        
    22         local Completed = winMgr:getWindow("orxonox/CampaignMenuCongratulation")
    23         if (P.CheckLevel("iJohnVane_TriptoArea51.oxw")) then
    24         Completed:setProperty("Visible","True")
    25         end
     17    local MissionFourButton = winMgr:getWindow("orxonox/MissionFourButton")
     18    if (P.CheckLevel("pirateAttack.oxw")) then
     19    MissionFourButton:setProperty("Disabled", "False")
     20    end
     21   
     22    local Completed = winMgr:getWindow("orxonox/CampaignMenuCongratulation")
     23    if (P.CheckLevel("iJohnVane_TriptoArea51.oxw")) then
     24    Completed:setProperty("Visible","True")
     25    end
    2626end
    2727
    2828function P.GenerateHelperString(number)
    29         local string = ""
    30         while number > 1 do
    31                 string = string.." "
    32                 number = number-1
    33         end
    34         string = string.."."
    35         return string
     29    local string = ""
     30    while number > 1 do
     31        string = string.." "
     32        number = number-1
     33    end
     34    string = string.."."
     35    return string
    3636end
    3737
    3838function P.FindLevel(filename)
    39         local level = nil
    40         local templevel = nil
    41         local size = orxonox.LevelManager:getInstance():getNumberOfLevels()
     39    local level = nil
     40    local templevel = nil
     41    local size = orxonox.LevelManager:getInstance():getNumberOfLevels()
    4242    local index = 0
    4343    while index < size do
    44         templevel = orxonox.LevelManager:getInstance():getAvailableLevelListItem(index)
    45         if(templevel:getXMLFilename()==filename) then
    46                 level = templevel
    47         end
     44        templevel = orxonox.LevelManager:getInstance():getAvailableLevelListItem(index)
     45        if(templevel:getXMLFilename()==filename) then
     46            level = templevel
     47        end
    4848    index=index+1
    4949    end
     
    5252   
    5353function P.CheckLevel(filename)
    54         local file = io.open("/home/pmao/pmao-extra-0/orxonox/storymode/campaign.txt", "r+")
    55         local index = 0
    56         local returnvalue = false
    57         local numberoflines = 58-string.len(filename)
    58         local helpstringfalse = filename.." 0"..P.GenerateHelperString(numberoflines)
    59         local helpstringtrue = filename.." 1"..P.GenerateHelperString(numberoflines)
    60         while index < 100 do
    61                 local line = file:read()
    62                 if(line == helpstringfalse) then
    63                         returnvalue = false
    64                         break
    65                 end
    66                 if(line == helpstringtrue) then
    67                         returnvalue = true
    68                         break
    69                 end
    70                 index=index+1
    71         end     
    72         io.close(file)
    73         return returnvalue
     54    local file = io.open("/home/pmao/pmao-extra-0/orxonox/storymode/campaign.txt", "r+")
     55    local index = 0
     56    local returnvalue = false
     57    local numberoflines = 58-string.len(filename)
     58    local helpstringfalse = filename.." 0"..P.GenerateHelperString(numberoflines)
     59    local helpstringtrue = filename.." 1"..P.GenerateHelperString(numberoflines)
     60    while index < 100 do
     61        local line = file:read()
     62        if(line == helpstringfalse) then
     63            returnvalue = false
     64            break
     65        end
     66        if(line == helpstringtrue) then
     67            returnvalue = true
     68            break
     69        end
     70        index=index+1
     71    end
     72    io.close(file)
     73    return returnvalue
    7474end
    7575
    7676function P.MissionOneButton_clicked(e)
    77         local level = P.FindLevel("missionOne.oxw")
    78                 orxonox.execute("startGame " .. level:getXMLFilename())
    79                 hideAllMenuSheets()
     77    local level = P.FindLevel("missionOne.oxw")
     78        orxonox.execute("startGame " .. level:getXMLFilename())
     79        hideAllMenuSheets()
    8080end
    8181
    8282function P.MissionTwoButton_clicked(e)
    83         local level = P.FindLevel("fightInOurBack.oxw")
    84         if (P.CheckLevel("missionOne.oxw")) then
    85                 orxonox.execute("startGame " .. level:getXMLFilename())
    86                 hideAllMenuSheets()
    87         end
     83    local level = P.FindLevel("fightInOurBack.oxw")
     84    if (P.CheckLevel("missionOne.oxw")) then
     85        orxonox.execute("startGame " .. level:getXMLFilename())
     86        hideAllMenuSheets()
     87    end
    8888end
    8989
    9090function P.MissionThreeButton_clicked(e)
    91         local level = P.FindLevel("pirateAttack.oxw")
    92         if (P.CheckLevel("fightInOurBack.oxw")) then
    93                 orxonox.execute("startGame " .. level:getXMLFilename())
    94                 hideAllMenuSheets()
    95         else
    96                 hideMenuSheet(P.name)
    97         end
     91    local level = P.FindLevel("pirateAttack.oxw")
     92    if (P.CheckLevel("fightInOurBack.oxw")) then
     93        orxonox.execute("startGame " .. level:getXMLFilename())
     94        hideAllMenuSheets()
     95    else
     96        hideMenuSheet(P.name)
     97    end
    9898end
    9999
    100100function P.MissionFourButton_clicked(e)
    101         local level = P.FindLevel("iJohnVane_TriptoArea51.oxw")
    102         if (P.CheckLevel("pirateAttack.oxw")) then
    103                 orxonox.execute("startGame " .. level:getXMLFilename())
    104                 hideAllMenuSheets()
    105         else
    106                 hideMenuSheet(P.name)
    107         end
     101    local level = P.FindLevel("iJohnVane_TriptoArea51.oxw")
     102    if (P.CheckLevel("pirateAttack.oxw")) then
     103        orxonox.execute("startGame " .. level:getXMLFilename())
     104        hideAllMenuSheets()
     105    else
     106        hideMenuSheet(P.name)
     107    end
    108108end
    109109
    110110function P.CampaignMenuRefreshButton_clicked(e)
    111         local MissionTwoButton = winMgr:getWindow("orxonox/MissionTwoButton")
    112         if (P.CheckLevel("missionOne.oxw")) then
    113         MissionTwoButton:setProperty("Disabled", "False")
    114         end
    115        
    116         local MissionThreeButton = winMgr:getWindow("orxonox/MissionThreeButton")
    117         if (P.CheckLevel("fightInOurBack.oxw")) then
    118         MissionThreeButton:setProperty("Disabled", "False")
    119         end
     111    local MissionTwoButton = winMgr:getWindow("orxonox/MissionTwoButton")
     112    if (P.CheckLevel("missionOne.oxw")) then
     113    MissionTwoButton:setProperty("Disabled", "False")
     114    end
     115   
     116    local MissionThreeButton = winMgr:getWindow("orxonox/MissionThreeButton")
     117    if (P.CheckLevel("fightInOurBack.oxw")) then
     118    MissionThreeButton:setProperty("Disabled", "False")
     119    end
    120120
    121         local MissionFourButton = winMgr:getWindow("orxonox/MissionFourButton")
    122         if (P.CheckLevel("pirateAttack.oxw")) then
    123         MissionFourButton:setProperty("Disabled", "False")
    124         end
    125        
    126         local Completed = winMgr:getWindow("orxonox/CampaignMenuCongratulation")
    127         if (P.CheckLevel("iJohnVane_TriptoArea51.oxw")) then
    128         Completed:setProperty("Visible","True")
    129         end
     121    local MissionFourButton = winMgr:getWindow("orxonox/MissionFourButton")
     122    if (P.CheckLevel("pirateAttack.oxw")) then
     123    MissionFourButton:setProperty("Disabled", "False")
     124    end
     125   
     126    local Completed = winMgr:getWindow("orxonox/CampaignMenuCongratulation")
     127    if (P.CheckLevel("iJohnVane_TriptoArea51.oxw")) then
     128    Completed:setProperty("Visible","True")
     129    end
    130130end
    131131
  • code/branches/storymodeHS14/data/gui/scripts/SingleplayerMenu.lua

    r10157 r10250  
    4040    })
    4141    P:setButton(1, 4,{
    42                 ["button"] = winMgr:getWindow("orxonox/CampaignButton"),
    43                 ["callback"] = P.CampaignButton_clicked
     42            ["button"] = winMgr:getWindow("orxonox/CampaignButton"),
     43            ["callback"] = P.CampaignButton_clicked
    4444    })
    4545end
     
    172172
    173173function P.CampaignButton_clicked(e)
    174         showMenuSheet("CampaignMenu", true)
     174    showMenuSheet("CampaignMenu", true)
    175175end
    176176
Note: See TracChangeset for help on using the changeset viewer.