[3374] | 1 | -- mainmenu_2.lua |
---|
| 2 | gui = require("gui") |
---|
| 3 | local P = gui:new() --inherit everything from the gui package |
---|
| 4 | |
---|
| 5 | mainmenu_2 = P |
---|
| 6 | |
---|
| 7 | P.filename = "mainmenu_2" |
---|
| 8 | P.layoutString = "MainMenu_2.layout" |
---|
| 9 | |
---|
| 10 | function P:init() |
---|
| 11 | listbox = winMgr:getWindow("orxonox/LevelListbox") |
---|
| 12 | preselect = orxonox.Game:getInstance():getLevel() |
---|
| 13 | orxonox.GUIManager:getInstance():getLevelList() --levellist variable ist set now |
---|
| 14 | table.sort(levellist) |
---|
| 15 | for k,v in pairs(levellist) do |
---|
| 16 | item = CEGUI.createListboxTextItem(v) |
---|
| 17 | item:setSelectionBrushImage("TaharezLook", "MultiListSelectionBrush") |
---|
| 18 | CEGUI.toListbox(listbox):addItem(item) |
---|
| 19 | if v .. ".oxw" == preselect then |
---|
| 20 | listbox:setItemSelectState(item, true) |
---|
| 21 | end |
---|
| 22 | end |
---|
| 23 | end |
---|
| 24 | |
---|
| 25 | |
---|
| 26 | -- events for mainmenu |
---|
| 27 | function P.button_quit_clicked(e) |
---|
| 28 | hideGUI() |
---|
| 29 | orxonox.CommandExecutor:execute("exit") |
---|
| 30 | end |
---|
| 31 | |
---|
| 32 | function P.button_standalone_clicked(e) |
---|
| 33 | choice = winMgr:getWindow("orxonox/LevelListbox"):getFirstSelectedItem() |
---|
| 34 | if choice then |
---|
| 35 | orxonox.Game:getInstance():setLevel(choice:getText() .. ".oxw") |
---|
| 36 | orxonox.CommandExecutor:execute("startGame") |
---|
| 37 | toggleGUI() |
---|
| 38 | end |
---|
| 39 | end |
---|
| 40 | |
---|
| 41 | function P.button_server_clicked(e) |
---|
| 42 | choice = winMgr:getWindow("orxonox/LevelListbox"):getFirstSelectedItem() |
---|
| 43 | if choice then |
---|
| 44 | orxonox.Game:getInstance():setLevel(choice:getText() .. ".oxw") |
---|
| 45 | orxonox.CommandExecutor:execute("startServer") |
---|
| 46 | toggleGUI() |
---|
| 47 | end |
---|
| 48 | end |
---|
| 49 | |
---|
| 50 | function P.button_dedicated_clicked(e) |
---|
| 51 | choice = winMgr:getWindow("orxonox/LevelListbox"):getFirstSelectedItem() |
---|
| 52 | if choice then |
---|
| 53 | orxonox.Game:getInstance():setLevel(choice:getText() .. ".oxw") |
---|
| 54 | orxonox.CommandExecutor:execute("startDedicated") |
---|
| 55 | toggleGUI() |
---|
| 56 | end |
---|
| 57 | end |
---|
| 58 | |
---|
| 59 | function P.button_client_clicked(e) |
---|
| 60 | choice = winMgr:getWindow("orxonox/LevelListbox"):getFirstSelectedItem() |
---|
| 61 | if choice then |
---|
| 62 | orxonox.Game:getInstance():setLevel(choice:getText() .. ".oxw") |
---|
| 63 | orxonox.CommandExecutor:execute("startClient") |
---|
| 64 | toggleGUI() |
---|
| 65 | end |
---|
| 66 | end |
---|
| 67 | |
---|
| 68 | function P.listbox_level_selectionchanged(e) |
---|
| 69 | if winMgr:getWindow("orxonox/LevelListbox"):getFirstSelectedItem() then |
---|
| 70 | winMgr:getWindow("orxonox/StandaloneButton"):enable() |
---|
| 71 | else |
---|
| 72 | winMgr:getWindow("orxonox/StandaloneButton"):disable() |
---|
| 73 | end |
---|
| 74 | end |
---|
| 75 | |
---|
| 76 | return mainmenu_2 |
---|
| 77 | |
---|