Changeset 8858 for code/trunk/data/gui
- Timestamp:
- Aug 23, 2011, 12:45:53 AM (13 years ago)
- Location:
- code/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:ignore
-
old new 1 1 build 2 2 codeblocks 3 vs 3 4 dependencies
-
- Property svn:mergeinfo changed
/code/branches/output (added) merged: 8739-8740,8765,8771-8772,8774-8780,8787-8789,8794-8799,8801,8803-8812,8814,8816-8817,8820,8822,8825-8837,8840,8844,8846,8848-8850,8853-8854
- Property svn:ignore
-
code/trunk/data/gui/scripts/GameplayMenu.lua
r6746 r8858 18 18 function P.GameplayThemeCombobox_changed(e) 19 19 -- theme 20 logMessage(0,"event: theme")20 orxout("event: theme") 21 21 end 22 22 23 23 function P.GameplayDifficultyEasyButton_clicked(e) 24 24 -- difficulty easy 25 logMessage(0,"event: easy")25 orxout("event: easy") 26 26 end 27 27 28 28 function P.GameplayDifficultyNormalButton_clicked(e) 29 29 -- difficulty normal 30 logMessage(0,"event: normal")30 orxout("event: normal") 31 31 end 32 32 33 33 function P.GameplayDifficultyHardButton_clicked(e) 34 34 -- difficulty hard 35 logMessage(0,"event: hard")35 orxout("event: hard") 36 36 end 37 37 -
code/trunk/data/gui/scripts/MultiplayerMenu.lua
r8079 r8858 117 117 local listbox = winMgr:getWindow("orxonox/MultiplayerListbox") 118 118 CEGUI.toListbox(listbox):resetList() 119 local discovery = orxonox.WANDiscovery :getInstance()120 cout(0, "discovering.\n" )119 local discovery = orxonox.WANDiscovery() 120 orxout("discovering." ) 121 121 discovery:discover() 122 cout(0, "discovered.\n" )122 orxout("discovered." ) 123 123 P.serverList = {} 124 124 local index = 0 -
code/trunk/data/gui/scripts/NotificationLayer.lua
r8729 r8858 136 136 if index > queue.first then -- Move all older notifications up in the list. 137 137 for i=index-1,-1,queue.first do 138 cout(0,i)138 orxout(i) 139 139 item = queue.items[i] 140 140 item:setYposition(CEGUI.UDim(0, itemHeight*(queue.last-i-1))) -
code/trunk/data/gui/scripts/QuestGUI.lua
r8706 r8858 220 220 function P.selectQuest(list, quest) 221 221 if quest == nil then -- If the input quest is nil, there is nothing to be selected, an error is output and the first quest is selected instead. 222 cout(1, "Error in QuestGUI: selectQuest(), input quest is nil. Selecting first.")222 orxout(orxonox.level.internal_error, "Error in QuestGUI: selectQuest(), input quest is nil. Selecting first.") 223 223 list:setItemSelectState(list:getListboxItemFromIndex(0), true) -- Select first 224 224 return … … 240 240 list:setItemSelectState(list:getListboxItemFromIndex(index), true) 241 241 else -- If the quest isn't found an error is output and the first quest is selected instead. 242 cout(1, "Error in QuestGUI: selectQuest(), input quest is not in list. Selecting first.")242 orxout(orxonox.level.internal_error, "Error in QuestGUI: selectQuest(), input quest is not in list. Selecting first.") 243 243 list:setItemSelectState(list:getListboxItemFromIndex(0), true) -- Select first 244 244 end … … 313 313 end 314 314 else 315 cout(1, "Error in QuestGUI: changeToSubquest(), quest was nil. Ignoring...")315 orxout(orxonox.level.internal_error, "Error in QuestGUI: changeToSubquest(), quest was nil. Ignoring...") 316 316 end 317 317 end
Note: See TracChangeset
for help on using the changeset viewer.