Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/kicklib/data/gui/scripts/InitialiseGUI.lua @ 7964

Last change on this file since 7964 was 7961, checked in by rgrieder, 14 years ago

Restored compatibility of our Lua code with CEGUI:
Some functions were renamed. I've done so too and added an alias at initialisation for older versions.
Caution: Credits and Quest menu don't yet work because CEGUI 0.7 has less Font functionality.

  • Property svn:eol-style set to native
File size: 1.4 KB
Line 
1-- Define some global shortcuts for common Managers
2guiMgr    = orxonox.GUIManager:getInstance()
3inputMgr  = orxonox.InputManager:getInstance()
4schemeMgr = CEGUI.SchemeManager:getSingleton()
5winMgr    = CEGUI.WindowManager:getSingleton()
6
7local scheme = orxonox.CommandExecutor:query("getConfig GUIManager guiScheme_")
8-- Load all required skins
9--schemeMgr:create("TaharezGreenLook.scheme")
10schemeMgr:create(scheme .. "Look.scheme")
11--schemeMgr:create("TaharezLook.scheme")
12--schemeMgr:create("WindowsLook.scheme")
13--schemeMgr:create("VanillaLook.scheme")
14--schemeMgr:create("SleekSpaceLook.scheme")
15
16-- Connect skin specific window types with our own window types
17-- By loading a different file (if there is) you can change the skin
18-- of the menus or the HUD independently
19--schemeMgr:create("TaharezGreenMenuWidgets.scheme")
20--menuImageSet = "TaharezGreenLook"
21--schemeMgr:create("TaharezGreenHUDWidgets.scheme")
22--hudImageSet = "TaharezGreenLook"
23schemeMgr:create(scheme .. "MenuWidgets.scheme")
24menuImageSet = scheme .. "Look"
25schemeMgr:create(scheme .. "HUDWidgets.scheme")
26hudImageSet = scheme .. "Look"
27
28-- Just a remaining test hack
29schemeMgr:create("OrxonoxGUIScheme.scheme")
30
31local system = CEGUI.System:getSingleton()
32system:setDefaultMouseCursor(menuImageSet, "MouseArrow")
33system:setDefaultFont("BlueHighway-12")
34system:setDefaultTooltip("MenuWidgets/Tooltip")
35
36-- Convenience function and additional tools
37require("GUITools")
Note: See TracBrowser for help on using the repository browser.