[10157] | 1 | --CampaignMenu.lua |
---|
| 2 | |
---|
| 3 | local P = createMenuSheet("CampaignMenu") |
---|
| 4 | |
---|
[10253] | 5 | function P:onShow() |
---|
| 6 | P:updateButtons() |
---|
[10157] | 7 | end |
---|
| 8 | |
---|
[10253] | 9 | function P.updateButtons() |
---|
[11805] | 10 | P.updateButton(0, P.window:getChild("Mission1Button")) |
---|
| 11 | P.updateButton(0, P.window:getChild("Mission1Text")) |
---|
| 12 | P.updateButton(1, P.window:getChild("Mission2Button")) |
---|
| 13 | P.updateButton(1, P.window:getChild("Mission2Text")) |
---|
| 14 | P.updateButton(2, P.window:getChild("Mission3Button")) |
---|
| 15 | P.updateButton(2, P.window:getChild("Mission3Text")) |
---|
| 16 | P.updateButton(3, P.window:getChild("Mission4Button")) |
---|
| 17 | P.updateButton(3, P.window:getChild("Mission4Text")) |
---|
| 18 | P.updateButton(4, P.window:getChild("Mission5Button")) |
---|
| 19 | P.updateButton(4, P.window:getChild("Mission5Text")) |
---|
| 20 | P.updateButton(5, P.window:getChild("Mission6Button")) |
---|
| 21 | P.updateButton(5, P.window:getChild("Mission6Text")) |
---|
| 22 | P.updateButton(6, P.window:getChild("Mission7Button")) |
---|
| 23 | P.updateButton(6, P.window:getChild("Mission7Text")) |
---|
| 24 | P.updateButton(7, P.window:getChild("Mission8Button")) |
---|
| 25 | P.updateButton(7, P.window:getChild("Mission8Text")) |
---|
| 26 | P.updateButton(8, P.window:getChild("Mission9Button")) |
---|
| 27 | P.updateButton(8, P.window:getChild("Mission9Text")) |
---|
[10253] | 28 | |
---|
[11052] | 29 | |
---|
[10253] | 30 | if (P.getIndexOfLastFinishedMission() == orxonox.LevelManager:getInstance():getNumberOfCampaignMissions() - 1) then |
---|
[11805] | 31 | local label = P.window:getChild("CampaignMenuCongratulation") |
---|
[10253] | 32 | label:setProperty("Visible","True") |
---|
[10250] | 33 | end |
---|
[10157] | 34 | end |
---|
| 35 | |
---|
[10253] | 36 | function P.updateButton(index, button) |
---|
| 37 | if (P.shouldDisplayButton(index)) then |
---|
| 38 | button:setProperty("Visible", "True") |
---|
| 39 | |
---|
| 40 | if (P.shouldEnableButton(index)) then |
---|
| 41 | button:setProperty("Disabled", "False") |
---|
[10250] | 42 | end |
---|
[10157] | 43 | end |
---|
| 44 | end |
---|
[10253] | 45 | |
---|
| 46 | function P.shouldDisplayButton(index) |
---|
| 47 | local size = orxonox.LevelManager:getInstance():getNumberOfCampaignMissions() |
---|
| 48 | return index < size |
---|
| 49 | end |
---|
| 50 | |
---|
| 51 | function P.shouldEnableButton(index) |
---|
| 52 | return index <= P.getIndexOfLastFinishedMission() + 1 |
---|
| 53 | end |
---|
| 54 | |
---|
| 55 | function P.getIndexOfLastFinishedMission() |
---|
| 56 | local lastMission = orxonox.LevelManager:getInstance():getLastFinishedCampaignMission() |
---|
| 57 | if (lastMission and lastMission ~= "") then |
---|
| 58 | local size = orxonox.LevelManager:getInstance():getNumberOfCampaignMissions() |
---|
| 59 | local index = 0 |
---|
| 60 | while index < size do |
---|
| 61 | local mission = orxonox.LevelManager:getInstance():getCampaignMission(index) |
---|
| 62 | if (mission == lastMission) then |
---|
| 63 | return index |
---|
| 64 | end |
---|
| 65 | index = index + 1 |
---|
[10250] | 66 | end |
---|
| 67 | end |
---|
[10253] | 68 | return -1 |
---|
[10157] | 69 | end |
---|
| 70 | |
---|
[11052] | 71 | function P.Mission1Button_clicked(e) |
---|
[10253] | 72 | P.loadLevel(P.FindLevel(0)) |
---|
[10157] | 73 | end |
---|
| 74 | |
---|
[11052] | 75 | function P.Mission2Button_clicked(e) |
---|
[10253] | 76 | P.loadLevel(P.FindLevel(1)) |
---|
[10157] | 77 | end |
---|
| 78 | |
---|
[11052] | 79 | function P.Mission3Button_clicked(e) |
---|
[10253] | 80 | P.loadLevel(P.FindLevel(2)) |
---|
[10157] | 81 | end |
---|
| 82 | |
---|
[11052] | 83 | function P.Mission4Button_clicked(e) |
---|
[10253] | 84 | P.loadLevel(P.FindLevel(3)) |
---|
[10157] | 85 | end |
---|
| 86 | |
---|
[11052] | 87 | function P.Mission5Button_clicked(e) |
---|
| 88 | P.loadLevel(P.FindLevel(4)) |
---|
| 89 | end |
---|
| 90 | |
---|
| 91 | function P.Mission6Button_clicked(e) |
---|
| 92 | P.loadLevel(P.FindLevel(5)) |
---|
| 93 | end |
---|
| 94 | |
---|
| 95 | function P.Mission7Button_clicked(e) |
---|
| 96 | P.loadLevel(P.FindLevel(6)) |
---|
| 97 | end |
---|
| 98 | |
---|
| 99 | function P.Mission8Button_clicked(e) |
---|
| 100 | P.loadLevel(P.FindLevel(7)) |
---|
| 101 | end |
---|
| 102 | |
---|
| 103 | function P.Mission9Button_clicked(e) |
---|
| 104 | P.loadLevel(P.FindLevel(8)) |
---|
| 105 | end |
---|
| 106 | |
---|
[10253] | 107 | function P.loadLevel(level) |
---|
[11359] | 108 | orxonox.execute("changeGame " .. level:getXMLFilename()) |
---|
[10253] | 109 | hideAllMenuSheets() |
---|
| 110 | end |
---|
[10157] | 111 | |
---|
[10253] | 112 | function P.FindLevel(index) |
---|
| 113 | local filename = orxonox.LevelManager:getInstance():getCampaignMission(index) |
---|
| 114 | local level = nil |
---|
| 115 | local templevel = nil |
---|
| 116 | local size = orxonox.LevelManager:getInstance():getNumberOfLevels() |
---|
| 117 | local index = 0 |
---|
| 118 | while index < size do |
---|
| 119 | templevel = orxonox.LevelManager:getInstance():getAvailableLevelListItem(index) |
---|
| 120 | if(templevel:getXMLFilename()==filename) then |
---|
| 121 | level = templevel |
---|
| 122 | end |
---|
| 123 | index=index+1 |
---|
[10250] | 124 | end |
---|
[10253] | 125 | return level |
---|
[10157] | 126 | end |
---|
| 127 | |
---|
| 128 | function P.CampaignMenuBackButton_clicked(e) |
---|
[11359] | 129 | orxonox.execute("startMainMenu") |
---|
| 130 | hideMenuSheet("CampaignMenu") |
---|
[10157] | 131 | end |
---|
| 132 | |
---|
| 133 | return P |
---|