Last change
on this file since 6044 was
6024,
checked in by scheusso, 16 years ago
|
merged ingamemenu branch to menu branch
|
File size:
861 bytes
|
Rev | Line | |
---|
[6018] | 1 | -- InGameMenu.lua |
---|
| 2 | |
---|
| 3 | BasicGUI = require("BasicGUI") |
---|
| 4 | local P = BasicGUI:new() --inherit everything from the gui package |
---|
| 5 | if _REQUIREDNAME == nil then |
---|
| 6 | InGameMenu = P |
---|
| 7 | else |
---|
| 8 | _G[_REQUIREDNAME] = P |
---|
| 9 | end |
---|
| 10 | |
---|
| 11 | P.filename = "InGameMenu" |
---|
| 12 | P.layoutString = "InGameMenu.layout" |
---|
| 13 | |
---|
| 14 | function P:init() |
---|
| 15 | end |
---|
| 16 | |
---|
| 17 | |
---|
| 18 | -- events for ingamemenu |
---|
| 19 | function P.button_quit_clicked(e) |
---|
| 20 | orxonox.CommandExecutor:execute("hideGUI InGameMenu") |
---|
| 21 | orxonox.CommandExecutor:execute("exit") |
---|
| 22 | end |
---|
| 23 | |
---|
| 24 | function P.button_mainmenu_clicked(e) |
---|
[6019] | 25 | orxonox.Game:getInstance():popState() |
---|
| 26 | orxonox.Game:getInstance():popState() |
---|
| 27 | orxonox.Game:getInstance():requestState("mainmenu") |
---|
[6018] | 28 | orxonox.CommandExecutor:execute("showGUI MainMenu") |
---|
| 29 | orxonox.CommandExecutor:execute("hideGUI InGameMenu") |
---|
| 30 | end |
---|
| 31 | |
---|
[6019] | 32 | function P.button_return_clicked(e) |
---|
| 33 | orxonox.CommandExecutor:execute("hideGUI InGameMenu") |
---|
| 34 | end |
---|
| 35 | |
---|
[6018] | 36 | return P |
---|
| 37 | |
---|
Note: See
TracBrowser
for help on using the repository browser.