Last change
on this file since 6372 was
6146,
checked in by cmueri, 15 years ago
|
10 new layout- and lua-files for the menues added
|
-
Property svn:executable set to
*
|
File size:
1.4 KB
|
Rev | Line | |
---|
[6146] | 1 | -- NewGraphicsMenu.lua |
---|
| 2 | |
---|
| 3 | BasicGUI = require("BasicGUI") |
---|
| 4 | local P = BasicGUI:new() --inherit everything from the gui package |
---|
| 5 | if _REQUIREDNAME == nil then |
---|
| 6 | NewGraphicsMenu = P |
---|
| 7 | else |
---|
| 8 | _G[_REQUIREDNAME] = P |
---|
| 9 | end |
---|
| 10 | |
---|
| 11 | P.filename = "NewGraphicsMenu" |
---|
| 12 | P.layoutString = "NewGraphicsMenu.layout" |
---|
| 13 | |
---|
| 14 | function P:init() |
---|
| 15 | dropdown = winMgr:getWindow("orxonox/ResolutionCombobox") |
---|
| 16 | preselect = orxonox.LevelManager:getInstance():getDefaultLevel() |
---|
| 17 | orxonox.LevelManager:getInstance():compileAvailableLevelList() |
---|
| 18 | local levelList = {} |
---|
| 19 | local index = 0 |
---|
| 20 | local level = "" |
---|
| 21 | while true do |
---|
| 22 | level = orxonox.LevelManager:getInstance():getAvailableLevelListItem(index) |
---|
| 23 | if level == "" then |
---|
| 24 | break |
---|
| 25 | end |
---|
| 26 | table.insert(levelList, level) |
---|
| 27 | index = index + 1 |
---|
| 28 | end |
---|
| 29 | table.sort(levelList) |
---|
| 30 | for k,v in pairs(levelList) do |
---|
| 31 | item = CEGUI.createListboxTextItem(v) |
---|
| 32 | item:setSelectionBrushImage("TaharezLook", "MultiListSelectionBrush") |
---|
| 33 | CEGUI.toCombobox(dropdown):addItem(item) |
---|
| 34 | if v .. ".oxw" == preselect then |
---|
| 35 | dropdown:setItemSelectState(item, true) |
---|
| 36 | end |
---|
| 37 | end |
---|
| 38 | end |
---|
| 39 | |
---|
| 40 | function P.GraphicsFullscreenCheckbox_clicked(e) |
---|
| 41 | -- fullscreen |
---|
| 42 | debug("event: fullscreen") |
---|
| 43 | end |
---|
| 44 | |
---|
| 45 | function P.GraphicsBrightnessScrollbar_clicked(e) |
---|
| 46 | -- brightness |
---|
| 47 | debug("event: brightness") |
---|
| 48 | end |
---|
| 49 | |
---|
| 50 | function P.GraphicsBackButton_clicked(e) |
---|
| 51 | hideGUI("NewGraphicsMenu") |
---|
| 52 | debug("event: back") |
---|
| 53 | end |
---|
| 54 | |
---|
| 55 | return P |
---|
| 56 | |
---|
Note: See
TracBrowser
for help on using the repository browser.