[6018] | 1 | -- InGameMenu.lua |
---|
| 2 | |
---|
[6746] | 3 | local P = createMenuSheet("InGameMenu") |
---|
[6748] | 4 | P.loadAlong = { "DecisionPopup" } |
---|
[6018] | 5 | |
---|
[7726] | 6 | P.buttonList = {} |
---|
| 7 | |
---|
| 8 | function P.onLoad() |
---|
| 9 | P.multiplayerMode = "startClient" |
---|
| 10 | |
---|
| 11 | --button are arranged in a 4x1 matrix, the left lower item is nil |
---|
| 12 | local item = { |
---|
| 13 | ["button"] = winMgr:getWindow("orxonox/InGameMenu_ReturnButton"), |
---|
| 14 | ["function"] = P.button_settings_clicked |
---|
| 15 | } |
---|
| 16 | P.buttonList[1] = item |
---|
| 17 | |
---|
| 18 | local item = { |
---|
| 19 | ["button"] = winMgr:getWindow("orxonox/InGameMenu_MainMenuButton"), |
---|
| 20 | ["function"] = P.button_mainmenu_clicked |
---|
| 21 | } |
---|
| 22 | P.buttonList[2] = item |
---|
| 23 | |
---|
| 24 | local item = { |
---|
| 25 | ["button"] = winMgr:getWindow("orxonox/InGameMenu_SettingsButton"), |
---|
| 26 | ["function"] = P.button_settings_clicked |
---|
| 27 | } |
---|
| 28 | P.buttonList[3] = item |
---|
| 29 | |
---|
| 30 | local item = { |
---|
| 31 | ["button"] = winMgr:getWindow("orxonox/InGameMenu_QuitButton"), |
---|
| 32 | ["function"] = P.button_quit_clicked |
---|
| 33 | } |
---|
| 34 | P.buttonList[4] = item |
---|
| 35 | |
---|
| 36 | end |
---|
| 37 | |
---|
| 38 | function P.onShow() |
---|
| 39 | --indices to iterate through buttonlist |
---|
| 40 | P.oldindex = -2 |
---|
| 41 | P.index = -1 |
---|
| 42 | end |
---|
| 43 | |
---|
[6018] | 44 | -- events for ingamemenu |
---|
| 45 | function P.button_quit_clicked(e) |
---|
[6048] | 46 | openDecisionPopup( "Do you really want to quit the game?", InGameMenu.callback ) |
---|
[6018] | 47 | end |
---|
| 48 | |
---|
| 49 | function P.button_mainmenu_clicked(e) |
---|
[7877] | 50 | orxonox.execute("startMainMenu") |
---|
[6746] | 51 | hideMenuSheet("InGameMenu") |
---|
[6018] | 52 | end |
---|
| 53 | |
---|
[6217] | 54 | function P.button_settings_clicked(e) |
---|
[6746] | 55 | showMenuSheet("SettingsMenu", true) |
---|
[6217] | 56 | end |
---|
| 57 | |
---|
[6019] | 58 | function P.button_return_clicked(e) |
---|
[6746] | 59 | hideMenuSheet("InGameMenu") |
---|
[6019] | 60 | end |
---|
| 61 | |
---|
[6048] | 62 | function P.callback(doExit) |
---|
| 63 | if doExit then |
---|
[6746] | 64 | hideMenuSheet("InGameMenu") |
---|
[6403] | 65 | orxonox.execute("exit") |
---|
[7726] | 66 | else |
---|
| 67 | P.onShow() |
---|
[6048] | 68 | end |
---|
| 69 | end |
---|
| 70 | |
---|
[7726] | 71 | function P.onKeyPressed() |
---|
| 72 | buttonIteratorHelper(P.buttonList, code, P, 4, 1) |
---|
| 73 | end |
---|
| 74 | |
---|
[6018] | 75 | return P |
---|
| 76 | |
---|