Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/gamestate/data/gui/scripts/GameplayMenu.lua @ 6922

Last change on this file since 6922 was 6659, checked in by rgrieder, 15 years ago

Use "P." instead of "P:" when using our sheets as objects, not classes.
And use "P." instead of "self.".
This does not count for BasicGUI.lua because this is in fact seen as a class!!!

  • Property svn:eol-style set to native
File size: 1015 bytes
RevLine 
[6363]1-- GameplayMenu.lua
2
[6621]3local P = createSheet("GameplayMenu")
[6363]4
[6659]5function P.init()
[6363]6    dropdown = winMgr:getWindow("orxonox/ThemeCombobox")
7    local themeList = {}
8    table.insert(themeList, "Theme 1")
9    table.insert(themeList, "Theme 2")
10    table.insert(themeList, "Theme 3")
11    for k,v in pairs(themeList) do
[6388]12        item = CEGUI.createListboxTextItem(v)
[6571]13        item:setSelectionBrushImage(menuImageSet, "MultiListSelectionBrush")
[6363]14        CEGUI.toCombobox(dropdown):addItem(item)
15    end
16end
17
18function P.GameplayThemeCombobox_changed(e)
19    -- theme
[6623]20    logMessage(0, "event: theme")
[6363]21end
22
23function P.GameplayDifficultyEasyButton_clicked(e)
24    -- difficulty easy
[6623]25    logMessage(0, "event: easy")
[6363]26end
27
28function P.GameplayDifficultyNormalButton_clicked(e)
29    -- difficulty normal
[6623]30    logMessage(0, "event: normal")
[6363]31end
32
33function P.GameplayDifficultyHardButton_clicked(e)
34    -- difficulty hard
[6623]35    logMessage(0, "event: hard")
[6363]36end
37
38function P.GameplayBackButton_clicked(e)
39    hideGUI(P.filename)
40end
41
42return P
43
Note: See TracBrowser for help on using the repository browser.