Need help integrating CEGUI with Ogre3d
Moderators: CEGUI MVP, CEGUI Team
Need help integrating CEGUI with Ogre3d
Hello!
I've get everything to work with Ogre
But when i created window i see just grey screen without what ive done with ogre3d (basically ive added OgreHead mesh to the screen).
What have i done wrong ?
I've get everything to work with Ogre
But when i created window i see just grey screen without what ive done with ogre3d (basically ive added OgreHead mesh to the screen).
What have i done wrong ?
Re: Need help integrating CEGUI with Ogre3d
BTW: Gui renders just fine and reacts on events
Re: Need help integrating CEGUI with Ogre3d
It seems like Ogre has render image, but CEGUI's window is on top of this everything. Setting Alfa to 0.5f on cegui's window makes one test button to have alfa to 0.5f.
Re: Need help integrating CEGUI with Ogre3d
CEGUI is an overlay. If you add an opaque CEGUI widget sized over the entire screen, then you won't see anything happening underneath, as expected. If you didn't add any opaque windows, then there is certainly something wrong. Mind to show a screenshot?
CrazyEddie: "I don't like GUIs"
Re: Need help integrating CEGUI with Ogre3d
Ident wrote:CEGUI is an overlay. If you add an opaque CEGUI widget sized over the entire screen, then you won't see anything happening underneath, as expected. If you didn't add any opaque windows, then there is certainly something wrong. Mind to show a screenshot?
Give me a moment
Re: Need help integrating CEGUI with Ogre3d
I actually have removed any ogre::overlay.
Is this may be the problem ?
I followed the instructions upon ogre wiki, tutorial 7. There was not even a word about ogre::overlay.
thats how i have created the window
Is this may be the problem ?
I followed the instructions upon ogre wiki, tutorial 7. There was not even a word about ogre::overlay.
Code: Select all
m_Wmgr = &CEGUI::WindowManager::getSingleton();
m_GuiRoot = m_Wmgr->createWindow( "DefaultWindow", "root" );
m_GuiRoot->setAlpha(0.5f);
CEGUI::System::getSingleton().getDefaultGUIContext().setRootWindow( m_GuiRoot );
CEGUI::PushButton* m_ExitButton = static_cast<CEGUI::PushButton*> (m_GuiRoot->createChild("GlossySerpent/Button","ExitButton"));
m_ExitButton->setPosition(CEGUI::UVector2(CEGUI::UDim(0.45,0),CEGUI::UDim(0.42,0)));
m_ExitButton->setSize(CEGUI::USize(CEGUI::UDim(0,130),CEGUI::UDim(0,50)));
m_ExitButton->setText("Exit");
thats how i have created the window
Re: Need help integrating CEGUI with Ogre3d
Please use the edit button instead of posting 3 replies. We dont get more notifications from multi-posting like this and it makes the whole thread more difficult to read if you split up posts like this.
I dont know what you mean by "removing the Overlays". When i say overlay, i mean that CEGUi is rendered last to the Framebuffer. This is true for all Rendering engines. CEGUI is not a library exclusively for Ogre. CEGUI takes care of the rendering on its own via the frame handler so what you mentioned should not be an issue. The Ogre wikis on CEGUI are unfortunately mostly heavily outdated, just try to stick with the CEGUI API docu as much as you can.
Why is the background in your screenshot grey? What colour is it with 1.0 alpha?
I dont know what you mean by "removing the Overlays". When i say overlay, i mean that CEGUi is rendered last to the Framebuffer. This is true for all Rendering engines. CEGUI is not a library exclusively for Ogre. CEGUI takes care of the rendering on its own via the frame handler so what you mentioned should not be an issue. The Ogre wikis on CEGUI are unfortunately mostly heavily outdated, just try to stick with the CEGUI API docu as much as you can.
Why is the background in your screenshot grey? What colour is it with 1.0 alpha?
CrazyEddie: "I don't like GUIs"
Re: Need help integrating CEGUI with Ogre3d
I meant i have removed any Ogre/Overlay.h and its contents from my project. Which was not really lot.
Behind this grey layer is ogre3d head mesh is present. When i remove CEGUI from this scene i see ogre's head.
Behind this grey layer is ogre3d head mesh is present. When i remove CEGUI from this scene i see ogre's head.
Re: Need help integrating CEGUI with Ogre3d
cr3a70r wrote:I meant i have removed any Ogre/Overlay.h and its contents from my project. Which was not really lot.
Behind this grey layer is ogre3d head mesh is present. When i remove CEGUI from this scene i see ogre's head.
I wanted to know what colour the layer is with alpha 1.0. I think the newer versions of CEGUI use Ogre Overlay, I think older versions dont. You gave us no information on your setup whatsoever except that it uses "Ogre3D". It might be time to read the posting guidelines : viewtopic.php?f=10&t=3351
CrazyEddie: "I don't like GUIs"
Re: Need help integrating CEGUI with Ogre3d
Ive read all docu. Using latest stable versions.
Thanks ill read and answer tomorrow
cegui-0.8.4
OgreSDK_vc11_v1-9-0
Thanks ill read and answer tomorrow
Code: Select all
03/07/2015 00:28:19 (Std) +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
03/07/2015 00:28:19 (Std) + Crazy Eddie's GUI System - Event log +
03/07/2015 00:28:19 (Std) + (http://www.cegui.org.uk/) +
03/07/2015 00:28:19 (Std) +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
03/07/2015 00:28:19 (Std) CEGUI::Logger singleton created. (09310D70)
03/07/2015 00:28:20 (Std)
03/07/2015 00:28:20 (Std) ********************************************************************************
03/07/2015 00:28:20 (Std) * Important: *
03/07/2015 00:28:20 (Std) * To get support at the CEGUI forums, you must post _at least_ the section *
03/07/2015 00:28:20 (Std) * of this log file indicated below. Failure to do this will result in no *
03/07/2015 00:28:20 (Std) * support being given; please do not waste our time. *
03/07/2015 00:28:20 (Std) ********************************************************************************
03/07/2015 00:28:20 (Std) ********************************************************************************
03/07/2015 00:28:20 (Std) * -------- START OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM -------- *
03/07/2015 00:28:20 (Std) ********************************************************************************
03/07/2015 00:28:20 (Std) ---- Version: 0.8.4 (Build: Jun 29 2015 Debug Microsoft Windows MSVC++ 11.0 32 bit) ----
03/07/2015 00:28:20 (Std) ---- Renderer module is: CEGUI::OgreRenderer - Official OGRE based 2nd generation renderer module. ----
03/07/2015 00:28:20 (Std) ---- XML Parser module is: CEGUI::ExpatParser - Official expat based parser module for CEGUI ----
03/07/2015 00:28:20 (Std) ---- Image Codec module is: OgreImageCodec - Integrated ImageCodec using the Ogre engine. ----
03/07/2015 00:28:20 (Std) ---- Scripting module is: None ----
03/07/2015 00:28:20 (Std) ********************************************************************************
03/07/2015 00:28:20 (Std) * -------- END OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM -------- *
03/07/2015 00:28:20 (Std) ********************************************************************************
03/07/2015 00:28:20 (Std)
03/07/2015 00:28:20 (Std) ---- Begining CEGUI System initialisation ----
03/07/2015 00:28:20 (Std) [CEGUI::ImageManager] Singleton created (09312B30)
03/07/2015 00:28:20 (Std) [CEGUI::ImageManager] Registered Image type: BasicImage
03/07/2015 00:28:20 (Std) CEGUI::FontManager singleton created. (093481E0)
03/07/2015 00:28:20 (Std) CEGUI::WindowFactoryManager singleton created
03/07/2015 00:28:20 (Std) CEGUI::WindowManager singleton created (093484A8)
03/07/2015 00:28:20 (Std) CEGUI::SchemeManager singleton created. (09349D98)
03/07/2015 00:28:20 (Std) CEGUI::GlobalEventSet singleton created. (09349ED8)
03/07/2015 00:28:20 (Std) CEGUI::AnimationManager singleton created (0934A1C0)
03/07/2015 00:28:20 (Std) CEGUI::WidgetLookManager singleton created. (0934AED0)
03/07/2015 00:28:20 (Std) CEGUI::WindowRendererManager singleton created (0934A428)
03/07/2015 00:28:20 (Std) CEGUI::RenderEffectManager singleton created (0934A808)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'DefaultWindow' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'DefaultWindow' windows added. (0934DD28)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'DragContainer' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'DragContainer' windows added. (0934DEE8)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'ScrolledContainer' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'ScrolledContainer' windows added. (0934E1E8)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'ClippedContainer' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'ClippedContainer' windows added. (0934E3A8)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'CEGUI/PushButton' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'CEGUI/PushButton' windows added. (0934E568)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'CEGUI/RadioButton' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'CEGUI/RadioButton' windows added. (0934E728)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'CEGUI/Combobox' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'CEGUI/Combobox' windows added. (0934E8E8)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'CEGUI/ComboDropList' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'CEGUI/ComboDropList' windows added. (0934EAA8)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'CEGUI/Editbox' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'CEGUI/Editbox' windows added. (0934EC68)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'CEGUI/FrameWindow' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'CEGUI/FrameWindow' windows added. (0934EE28)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'CEGUI/ItemEntry' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'CEGUI/ItemEntry' windows added. (0934EFE8)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'CEGUI/Listbox' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'CEGUI/Listbox' windows added. (0934F1A8)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'CEGUI/ListHeader' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'CEGUI/ListHeader' windows added. (0934F368)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'CEGUI/ListHeaderSegment' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'CEGUI/ListHeaderSegment' windows added. (0934F528)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'CEGUI/Menubar' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'CEGUI/Menubar' windows added. (0934F7B8)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'CEGUI/PopupMenu' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'CEGUI/PopupMenu' windows added. (0934F978)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'CEGUI/MenuItem' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'CEGUI/MenuItem' windows added. (0934FB38)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'CEGUI/MultiColumnList' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'CEGUI/MultiColumnList' windows added. (0934FCF8)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'CEGUI/MultiLineEditbox' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'CEGUI/MultiLineEditbox' windows added. (0934FEB8)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'CEGUI/ProgressBar' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'CEGUI/ProgressBar' windows added. (09350078)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'CEGUI/ScrollablePane' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'CEGUI/ScrollablePane' windows added. (09350238)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'CEGUI/Scrollbar' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'CEGUI/Scrollbar' windows added. (093503F8)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'CEGUI/Slider' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'CEGUI/Slider' windows added. (093505B8)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'CEGUI/Spinner' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'CEGUI/Spinner' windows added. (09350778)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'CEGUI/TabButton' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'CEGUI/TabButton' windows added. (09350938)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'CEGUI/TabControl' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'CEGUI/TabControl' windows added. (09350AF8)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'CEGUI/Thumb' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'CEGUI/Thumb' windows added. (09350CB8)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'CEGUI/Titlebar' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'CEGUI/Titlebar' windows added. (09350E78)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'CEGUI/ToggleButton' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'CEGUI/ToggleButton' windows added. (09351038)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'CEGUI/Tooltip' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'CEGUI/Tooltip' windows added. (093512E0)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'CEGUI/ItemListbox' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'CEGUI/ItemListbox' windows added. (093514A0)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'CEGUI/GroupBox' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'CEGUI/GroupBox' windows added. (09351660)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'CEGUI/Tree' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'CEGUI/Tree' windows added. (09351820)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'LayoutCell' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'LayoutCell' windows added. (093519E0)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'HorizontalLayoutContainer' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'HorizontalLayoutContainer' windows added. (09351BA0)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'VerticalLayoutContainer' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'VerticalLayoutContainer' windows added. (09351D60)
03/07/2015 00:28:20 (Std) Created WindowFactory for 'GridLayoutContainer' windows.
03/07/2015 00:28:20 (Std) WindowFactory for 'GridLayoutContainer' windows added. (09351F20)
03/07/2015 00:28:20 (Std) CEGUI::System singleton created. (09310840)
03/07/2015 00:28:20 (Std) ---- CEGUI System initialisation completed ----
03/07/2015 00:28:20 (Std)
03/07/2015 00:28:20 (Std) Started creation of Scheme from XML specification:
03/07/2015 00:28:20 (Std) ---- CEGUI GUIScheme name: GlossySerpent
03/07/2015 00:28:20 (Std) [ImageManager] Started creation of Imageset from XML specification:
03/07/2015 00:28:20 (Std) [ImageManager] ---- CEGUI Imageset name: GlossySerpent
03/07/2015 00:28:20 (Std) [ImageManager] ---- Source texture file: GlossySerpent.png
03/07/2015 00:28:20 (Std) [ImageManager] ---- Source texture resource group: (Default)
03/07/2015 00:28:20 (Std) [OgreRenderer] Created texture: GlossySerpent
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/SimplePanelBorder_TL' (093564C0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/SimplePanelBorder_L' (09356340) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/SimplePanelBorder_BL' (09354B28) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/SimplePanelBorder_T' (093571D8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/SimplePanelBorder_M' (09357578) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/SimplePanelBorder_B' (09357918) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/SimplePanelBorder_TR' (09357CB8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/SimplePanelBorder_R' (09355D40) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/SimplePanelBorder_BR' (09352F70) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/SimplePanelBck_TL' (093367F0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/SimplePanelBck_L' (09336A00) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/SimplePanelBck_BL' (09336C10) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/SimplePanelBck_T' (09336E20) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/SimplePanelBck_M' (09337030) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/SimplePanelBck_B' (09337240) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/SimplePanelBck_TR' (09337450) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/SimplePanelBck_R' (09337660) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/SimplePanelBck_BR' (09337870) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/Button32_4D_TL' (09337A80) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/Button32_4D_L' (09337C90) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/Button32_4D_BL' (09337EA0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/Button32_4D_T' (093380B0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/Button32_4D_M' (093382C0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/Button32_4D_B' (093384D0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/Button32_4D_TR' (093386E0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/Button32_4D_R' (093388F0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/Button32_4D_BR' (09338B00) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/Button32_4D_Background' (093661B8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/Button32_4D_BackgHighlight' (09339370) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/Button32_2C_TL' (093584D8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/Button32_2C_L' (09339820) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/Button32_2C_BL' (09339A30) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/Button32_2C_T' (09339C40) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/Button32_2C_M' (09339E50) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/Button32_2C_B' (0933A060) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/Button32_2C_TR' (0933A270) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/Button32_2C_R' (0933A480) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/Button32_2C_BR' (0933A690) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MiniButton_TL' (0933A8A0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MiniButton_L' (0933AAB0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MiniButton_BL' (0933ACC0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MiniButton_T' (0933AED0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MiniButton_M' (0933B0E0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MiniButton_B' (0933B2F0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MiniButton_TR' (0933B500) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MiniButton_R' (0933B710) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MiniButton_BR' (0933B920) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MiniButton_Background' (0933BCB0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MiniButton_BackgHighlight' (09366058) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ButtonEmpty32_UpL' (09352DF0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ButtonEmpty32_UpM' (0933C660) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ButtonEmpty32_UpR' (0933C870) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ButtonEmpty32_UpT' (0933CA80) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ButtonEmpty32_UpB' (0933CC90) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ButtonEmpty32_UpBL' (0933CEA0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ButtonEmpty32_UpBR' (0933D0B0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ButtonEmpty32_UpTL' (0933D510) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ButtonEmpty32_UpTR' (0933D7E0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ButtonEmpty32_OverL' (0933DC40) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ButtonEmpty32_OverM' (0933E0A8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ButtonEmpty32_OverR' (0933E448) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ButtonEmpty32_OverT' (09352C70) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ButtonEmpty32_OverB' (09377F68) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ButtonEmpty32_OverBL' (09378308) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ButtonEmpty32_OverBR' (093786A8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ButtonEmpty32_OverTL' (09378A48) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ButtonEmpty32_OverTR' (09378DE8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ButtonEmpty32_DownL' (09379188) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ButtonEmpty32_DownM' (09379528) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ButtonEmpty32_DownR' (093798C8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ButtonEmpty32_DownT' (09379C68) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ButtonEmpty32_DownB' (0937A008) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ButtonEmpty32_DownBL' (0937A3A8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ButtonEmpty32_DownBR' (0937A748) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ButtonEmpty32_DownTL' (0937AAE8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ButtonEmpty32_DownTR' (0937AE88) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/StaticTopLeft' (0937B228) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/StaticLeft' (0937B438) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/StaticBottomLeft' (0937B648) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/StaticTop' (0937B858) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/StaticBackdrop' (0937BA68) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/StaticBottom' (0937BC78) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/StaticTopRight' (0937BE88) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/StaticRight' (0937C098) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/StaticBottomRight' (0937C2A8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ComboboxEditLeft' (0937C4B8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ComboboxEditMiddle' (0937C6C8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ComboboxEditRight' (0937C8D8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ComboboxButtonBorder_TL' (0937CDE8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ComboboxButtonBorder_L' (09358358) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ComboboxButtonBorder_BL' (0937D5E0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ComboboxButtonBorder_T' (09356198) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ComboboxButtonBorder_M' (0937DD08) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ComboboxButtonBorder_B' (0937E0B8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ComboboxButtonBorder_TR' (09355BF0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ComboboxButtonBorder_R' (0937E5E8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ComboboxButtonBorder_BR' (0937EE20) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ComboboxButtonBackground' (0937F1E0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ComboboxButtonBackgHighlight' (0937F720) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ComboboxButtonGlyph' (093581D8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ComboboxListTopLeft' (0937FCD8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ComboboxListLeft' (0937FEE8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ComboboxListBottomLeft' (093800F8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ComboboxListTop' (09380578) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ComboboxListBackdrop' (09380788) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ComboboxListBottom' (09380A60) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ComboboxListTopRight' (09380DF0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ComboboxListRight' (0937CC68) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ComboboxListBottomRight' (09381648) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ComboboxSelectionBrush' (09381348) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/HeaderBarSplitterNormal' (09381CA0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/HeaderBarSplitterHover' (09382138) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/HeaderBarSortUp' (09382418) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/HeaderBarSortDown' (09382538) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MultiListTopLeft' (09382748) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MultiListLeft' (09382958) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MultiListBottomLeft' (09382B68) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MultiListTop' (09382F08) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MultiListBackdrop' (09383118) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MultiListBottom' (09383328) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MultiListTopRight' (09383538) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MultiListRight' (09383748) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MultiListBottomRight' (09383958) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MultiListSelectionBrush' (09383FF8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TextSelectionBrush' (09383CF8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/EditBox_TL' (09384490) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/EditBox_L' (093845B0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/EditBox_BL' (093847C0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/EditBox_T' (093849D0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/EditBox_M' (09384BE0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/EditBox_B' (09384DF0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/EditBox_TR' (09385000) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/EditBox_R' (09385210) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/EditBox_BR' (09385420) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/EditBoxCarat' (09385630) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/CheckboxMark' (09385840) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/CheckboxBorder_TL' (09385A50) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/CheckboxBorder_L' (09385C60) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/CheckboxBorder_BL' (09385E70) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/CheckboxBorder_T' (09386080) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/CheckboxBorder_M' (09386290) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/CheckboxBorder_B' (093864A0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/CheckboxBorder_TR' (093866B0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/CheckboxBorder_R' (093868C0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/CheckboxBorder_BR' (09386AD0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/CheckboxBackground' (09386CE0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/CheckboxBackgroundHighlight' (093872B0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/RadioButtonNormal' (09386FB0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/RadioButtonHover' (09387778) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/RadioButtonMark' (09387898) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MiniVertScrollBarSegment' (09387AA8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MiniHorzScrollBarSegment' (09387F40) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MiniHorzScrollLeftNormal' (09388300) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MiniHorzScrollRightNormal' (093889C0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/HorzScrollThumbBorder_TL' (093886C0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/HorzScrollThumbBorder_L' (09388E70) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/HorzScrollThumbBorder_BL' (09389230) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/HorzScrollThumbBorder_T' (093895F0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/HorzScrollThumbBorder_M' (093899B0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/HorzScrollThumbBorder_B' (09389D70) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/HorzScrollThumbBorder_TR' (0938A130) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/HorzScrollThumbBorder_R' (0938A4F0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/HorzScrollThumbBorder_BR' (0938A8B0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/HorzScrollThumb_Background' (0938AF70) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/HorzScrollThumb_BackgHighlight' (0938B420) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/VertScrollThumbBorder_TL' (0938AC70) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/VertScrollThumbBorder_L' (0938B900) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/VertScrollThumbBorder_BL' (0938BBE8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/VertScrollThumbBorder_T' (0938BFA8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/VertScrollThumbBorder_M' (0938C368) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/VertScrollThumbBorder_B' (0938C728) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/VertScrollThumbBorder_TR' (0938CAE8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/VertScrollThumbBorder_R' (0938CEA8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/VertScrollThumbBorder_BR' (0938D268) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/VertScrollThumb_Background' (0938D928) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/VertScrollThumb_BackgHighlight' (0938DDD8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ListboxTopLeft' (0938D628) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ListboxLeft' (09352AF0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ListboxBottomLeft' (0938E3A8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ListboxTop' (0938E5B8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ListboxBackdrop' (0938E7C8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ListboxBottom' (0938E9D8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ListboxTopRight' (0938EBE8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ListboxRight' (0938EDF8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ListboxBottomRight' (0938F008) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ListboxSelectionBrush' (0938F218) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TooltipTopLeft' (0938F698) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TooltipLeftEdge' (0938F8A8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TooltipBottomLeft' (0938FAB8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TooltipTopEdge' (0938FCC8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TooltipMiddle' (0938FED8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TooltipBottomEdge' (093900E8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TooltipTopRight' (093902F8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TooltipRightEdge' (09390508) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TooltipBottomRight' (09390718) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MultiLineEditboxTopLeft' (0933E8C0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MultiLineEditboxLeft' (09390AA8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MultiLineEditboxBottomLeft' (09391520) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MultiLineEditboxTop' (093913A0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MultiLineEditboxBackdrop' (093919E0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MultiLineEditboxBottom' (09391E78) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MultiLineEditboxTopRight' (09392228) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MultiLineEditboxRight' (093926C0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MultiLineEditboxBottomRight' (09392CA0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/MultiLineEditboxSelectionBrush' (09393168) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TabButtonBorder_TL' (093929A0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TabButtonBorder_L' (09338E90) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TabButtonBorder_BL' (09393738) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TabButtonBorder_T' (09393948) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TabButtonBorder_M' (09393B58) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TabButtonBorder_B' (09393D68) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TabButtonBorder_TR' (09393F78) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TabButtonBorder_R' (09394308) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TabButtonBorder_BR' (09394518) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TabButton_Background' (09394BA8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TabButton_Backghighlight' (093950C8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TabContentPaneUpperLeft' (09394A28) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TabContentPaneLeft' (09395800) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TabContentPaneLowerLeft' (09395A10) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TabContentPaneUpper' (09395DD0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TabContentPaneMiddle' (093960A8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TabContentPaneLower' (09396448) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TabContentPaneUpperRight' (09396AE8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TabContentPaneRight' (093967E8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TabContentPaneLowerRight' (09397100) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TabButtonUpperSelected' (09392AC0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TabButtonMiddleSelected' (093978F8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TabButtonLowerSelected' (09397D90) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TitlebarBorder_TL' (09398070) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TitlebarBorder_L' (09398280) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TitlebarBorder_BL' (09398490) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TitlebarBorder_T' (093986A0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TitlebarBorder_M' (093988B0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TitlebarBorder_B' (09398AC0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TitlebarBorder_TR' (09398CD0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TitlebarBorder_R' (09398EE0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TitlebarBorder_BR' (093990F0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TitlebarBackground' (09399300) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/TitlebarBackghighlight' (09399510) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/SysAreaMiddle' (093998C0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/SysAreaRight' (09399AD0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/NewCloseButtonNormal' (09399CE0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/NewCloseButtonHover' (09399FB8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/NewCloseButtonPressed' (0939A4D8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/WindowTopLeft' (0939A358) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/WindowLeftEdge' (0939AA48) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/WindowBottomLeft' (0939AC58) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/WindowTopEdge' (0939AE68) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/WindowMid' (0939B078) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/WindowBottomEdge' (0939B288) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/WindowTopRight' (0939B498) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/WindowRightEdge' (0939B6A8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/WindowBottomRight' (0939B8B8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/WindowBck_TL' (0939BAC8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/WindowBck_L' (0939BCD8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/WindowBck_BL' (0939BEE8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/WindowBck_T' (0939C0F8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/WindowBck_M' (0939C308) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/WindowBck_B' (0939C518) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/WindowBck_TR' (0939C728) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/WindowBck_R' (0939C938) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/WindowBck_BR' (0939CB48) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/EmbelishedPanel_TL' (0939CD58) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/EmbelishedPanel_L' (0939CF68) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/EmbelishedPanel_BL' (0939D178) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/EmbelishedPanel_T' (0939D448) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/EmbelishedPanel_M' (0939D658) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/EmbelishedPanel_B' (0939D868) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/EmbelishedPanel_TR' (0939DA78) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/EmbelishedPanel_R' (0939DE08) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/EmbelishedPanel_BR' (0939E018) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/PanelBackground_TL' (0939E3A8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/PanelBackground_L' (0939E738) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/PanelBackground_BL' (0939E948) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/PanelBackground_T' (0939ECD8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/PanelBackground_M' (0939EEE8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/PanelBackground_B' (0939F0F8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/PanelBackground_TR' (0939F308) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/PanelBackground_R' (0939F698) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/PanelBackground_BR' (0939F8A8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ProgressBar_HD_TL' (0939FC38) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ProgressBar_HD_L' (0939FE48) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ProgressBar_HD_BL' (093A0058) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ProgressBar_HD_T' (093A0268) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ProgressBar_HD_M' (093A0478) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ProgressBar_HD_B' (093A0688) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ProgressBar_HD_TR' (093A0898) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ProgressBar_HD_R' (093A0AA8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ProgressBar_HD_BR' (093A0CB8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ProgressBar_HD_TL_Redux' (093A11C8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ProgressBar_HD_L_Redux' (093A1048) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ProgressBar_HD_BL_Redux' (093A19C0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ProgressBar_HD_TR_Redux' (093A0EC8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ProgressBar_HD_R_Redux' (093A21D0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ProgressBar_HD_BR_Redux' (093A24B0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ProgressBarLitSegment' (093A2948) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ProgressBarGraySegment' (093A2C28) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ProgressBar_BackgHighlight' (093A32D8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/EmptyGlyph24' (093A2FD8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/GlyphBlack' (093A3788) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/GlyphArrowRight' (093A38A8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/GlyphArrowLeft' (093A3AB8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/GlyphArrowUp' (093A3CC8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/GlyphArrowDown' (093A3ED8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/GlyphX' (093A40E8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/GlyphShield' (093A42F8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/GlyphExit' (093A4508) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/GlyphHammer' (093A4718) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/GlyphBack' (093A4928) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/GlyphCheckmark' (093A4B38) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/SerpentSkinTileDark' (093A4D48) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/VerticalDarkGradient' (093A5020) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/RailedGlyphButtonBorder_TL' (093A56C0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/RailedGlyphButtonBorder_L' (093A5540) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/RailedGlyphButtonBorder_BL' (093A53C0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/RailedGlyphButtonBorder_T' (093A6290) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/RailedGlyphButtonBorder_M' (093A6660) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/RailedGlyphButtonBorder_B' (093A6A30) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/RailedGlyphButtonBorder_TR' (093A6E00) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/RailedGlyphButtonBorder_R' (093A71D0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/RailedGlyphButtonBorder_BR' (093A75A0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/RailedGlyphButtonHighlight' (093A7970) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpent/ScaleArmorTextureHighlight' (093A7D40) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Started creation of Imageset from XML specification:
03/07/2015 00:28:20 (Std) [ImageManager] ---- CEGUI Imageset name: GlossySerpentCursors
03/07/2015 00:28:20 (Std) [ImageManager] ---- Source texture file: GlossySerpentCursors.png
03/07/2015 00:28:20 (Std) [ImageManager] ---- Source texture resource group: (Default)
03/07/2015 00:28:20 (Std) [OgreRenderer] Created texture: GlossySerpentCursors
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpentCursors/MouseArrow' (093557E0) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpentCursors/MouseMoveCursor' (09335A20) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpentCursors/MouseEsWeCursor' (09336410) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpentCursors/MouseNoSoCursor' (0932E6E8) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpentCursors/MouseNeSwCursor' (0932EA98) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpentCursors/MouseNwSeCursor' (0932EE48) of type: BasicImage
03/07/2015 00:28:20 (Std) [ImageManager] Created image: 'GlossySerpentCursors/MouseTextBar' (0932F1F8) of type: BasicImage
03/07/2015 00:28:21 (Std) ===== Falagard 'root' element: look and feel parsing begins =====
03/07/2015 00:28:21 (Std) ===== Look and feel parsing completed =====
03/07/2015 00:28:22 (Std) No window renderer factories specified for module 'CEGUICoreWindowRendererSet' - adding all available factories...
03/07/2015 00:28:22 (Std) Created WindowRendererFactory for 'Core/Button' WindowRenderers.
03/07/2015 00:28:22 (Std) WindowRendererFactory 'Core/Button' added. (0A799990)
03/07/2015 00:28:22 (Std) Created WindowRendererFactory for 'Core/Default' WindowRenderers.
03/07/2015 00:28:22 (Std) WindowRendererFactory 'Core/Default' added. (0A8481E8)
03/07/2015 00:28:22 (Std) Created WindowRendererFactory for 'Core/Editbox' WindowRenderers.
03/07/2015 00:28:22 (Std) WindowRendererFactory 'Core/Editbox' added. (0A7E6010)
03/07/2015 00:28:22 (Std) Created WindowRendererFactory for 'Core/FrameWindow' WindowRenderers.
03/07/2015 00:28:22 (Std) WindowRendererFactory 'Core/FrameWindow' added. (09353DC8)
03/07/2015 00:28:22 (Std) Created WindowRendererFactory for 'Core/ItemEntry' WindowRenderers.
03/07/2015 00:28:22 (Std) WindowRendererFactory 'Core/ItemEntry' added. (0A89B8B8)
03/07/2015 00:28:22 (Std) Created WindowRendererFactory for 'Core/ListHeader' WindowRenderers.
03/07/2015 00:28:22 (Std) WindowRendererFactory 'Core/ListHeader' added. (0A849918)
03/07/2015 00:28:22 (Std) Created WindowRendererFactory for 'Core/ListHeaderSegment' WindowRenderers.
03/07/2015 00:28:22 (Std) WindowRendererFactory 'Core/ListHeaderSegment' added. (0A8499F0)
03/07/2015 00:28:22 (Std) Created WindowRendererFactory for 'Core/Listbox' WindowRenderers.
03/07/2015 00:28:22 (Std) WindowRendererFactory 'Core/Listbox' added. (0A672170)
03/07/2015 00:28:22 (Std) Created WindowRendererFactory for 'Core/Menubar' WindowRenderers.
03/07/2015 00:28:22 (Std) WindowRendererFactory 'Core/Menubar' added. (0A84D7A8)
03/07/2015 00:28:22 (Std) Created WindowRendererFactory for 'Core/MenuItem' WindowRenderers.
03/07/2015 00:28:22 (Std) WindowRendererFactory 'Core/MenuItem' added. (0A7535B8)
03/07/2015 00:28:22 (Std) Created WindowRendererFactory for 'Core/MultiColumnList' WindowRenderers.
03/07/2015 00:28:22 (Std) WindowRendererFactory 'Core/MultiColumnList' added. (0A753778)
03/07/2015 00:28:22 (Std) Created WindowRendererFactory for 'Core/MultiLineEditbox' WindowRenderers.
03/07/2015 00:28:22 (Std) WindowRendererFactory 'Core/MultiLineEditbox' added. (093DDEF8)
03/07/2015 00:28:22 (Std) Created WindowRendererFactory for 'Core/PopupMenu' WindowRenderers.
03/07/2015 00:28:22 (Std) WindowRendererFactory 'Core/PopupMenu' added. (0A767470)
03/07/2015 00:28:22 (Std) Created WindowRendererFactory for 'Core/ProgressBar' WindowRenderers.
03/07/2015 00:28:22 (Std) WindowRendererFactory 'Core/ProgressBar' added. (0A767630)
03/07/2015 00:28:22 (Std) Created WindowRendererFactory for 'Core/ScrollablePane' WindowRenderers.
03/07/2015 00:28:22 (Std) WindowRendererFactory 'Core/ScrollablePane' added. (0A8A7928)
03/07/2015 00:28:22 (Std) Created WindowRendererFactory for 'Core/Scrollbar' WindowRenderers.
03/07/2015 00:28:22 (Std) WindowRendererFactory 'Core/Scrollbar' added. (0A6106B8)
03/07/2015 00:28:22 (Std) Created WindowRendererFactory for 'Core/Slider' WindowRenderers.
03/07/2015 00:28:22 (Std) WindowRendererFactory 'Core/Slider' added. (0A610878)
03/07/2015 00:28:22 (Std) Created WindowRendererFactory for 'Core/Static' WindowRenderers.
03/07/2015 00:28:22 (Std) WindowRendererFactory 'Core/Static' added. (0A86BED8)
03/07/2015 00:28:22 (Std) Created WindowRendererFactory for 'Core/StaticImage' WindowRenderers.
03/07/2015 00:28:22 (Std) WindowRendererFactory 'Core/StaticImage' added. (0A668518)
03/07/2015 00:28:22 (Std) Created WindowRendererFactory for 'Core/StaticText' WindowRenderers.
03/07/2015 00:28:22 (Std) WindowRendererFactory 'Core/StaticText' added. (0A6686D8)
03/07/2015 00:28:22 (Std) Created WindowRendererFactory for 'Core/TabButton' WindowRenderers.
03/07/2015 00:28:22 (Std) WindowRendererFactory 'Core/TabButton' added. (0A6687B0)
03/07/2015 00:28:22 (Std) Created WindowRendererFactory for 'Core/TabControl' WindowRenderers.
03/07/2015 00:28:22 (Std) WindowRendererFactory 'Core/TabControl' added. (09335770)
03/07/2015 00:28:22 (Std) Created WindowRendererFactory for 'Core/Titlebar' WindowRenderers.
03/07/2015 00:28:22 (Std) WindowRendererFactory 'Core/Titlebar' added. (0932F4D0)
03/07/2015 00:28:22 (Std) Created WindowRendererFactory for 'Core/ToggleButton' WindowRenderers.
03/07/2015 00:28:22 (Std) WindowRendererFactory 'Core/ToggleButton' added. (0932F690)
03/07/2015 00:28:22 (Std) Created WindowRendererFactory for 'Core/Tooltip' WindowRenderers.
03/07/2015 00:28:22 (Std) WindowRendererFactory 'Core/Tooltip' added. (0A8B4C50)
03/07/2015 00:28:22 (Std) Created WindowRendererFactory for 'Core/ItemListbox' WindowRenderers.
03/07/2015 00:28:22 (Std) WindowRendererFactory 'Core/ItemListbox' added. (0A8B4E10)
03/07/2015 00:28:22 (Std) Created WindowRendererFactory for 'Core/Tree' WindowRenderers.
03/07/2015 00:28:22 (Std) WindowRendererFactory 'Core/Tree' added. (09355220)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/Button32' using base type 'CEGUI/PushButton', window renderer 'Core/Button' Look'N'Feel 'GlossySerpent/Button32' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/Button32_4C' using base type 'CEGUI/PushButton', window renderer 'Core/Button' Look'N'Feel 'GlossySerpent/Button32_4C' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/Button' using base type 'CEGUI/PushButton', window renderer 'Core/Button' Look'N'Feel 'GlossySerpent/Button32' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/SimpleBorderButton' using base type 'CEGUI/PushButton', window renderer 'Core/Button' Look'N'Feel 'GlossySerpent/SimpleBorderButton' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/Checkbox' using base type 'CEGUI/ToggleButton', window renderer 'Core/ToggleButton' Look'N'Feel 'GlossySerpent/Checkbox' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/Checkbox32' using base type 'CEGUI/ToggleButton', window renderer 'Core/ToggleButton' Look'N'Feel 'GlossySerpent/Checkbox' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/ImageButton' using base type 'CEGUI/PushButton', window renderer 'Core/Button' Look'N'Feel 'GlossySerpent/ImageButton' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/RadioButton' using base type 'CEGUI/RadioButton', window renderer 'Core/ToggleButton' Look'N'Feel 'GlossySerpent/Checkbox' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/FrameWindow' using base type 'CEGUI/FrameWindow', window renderer 'Core/FrameWindow' Look'N'Feel 'GlossySerpent/FrameWindow' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/Titlebar' using base type 'CEGUI/Titlebar', window renderer 'Core/Titlebar' Look'N'Feel 'GlossySerpent/Titlebar' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/SystemButton' using base type 'CEGUI/PushButton', window renderer 'Core/Button' Look'N'Feel 'GlossySerpent/GlyphButton' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/SystemButton32' using base type 'CEGUI/PushButton', window renderer 'Core/Button' Look'N'Feel 'GlossySerpent/SystemButton32' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/Editbox' using base type 'CEGUI/Editbox', window renderer 'Core/Editbox' Look'N'Feel 'GlossySerpent/Editbox' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/MultiLineEditbox' using base type 'CEGUI/MultiLineEditbox', window renderer 'Core/MultiLineEditbox' Look'N'Feel 'GlossySerpent/MultiLineEditbox' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/SimplePanel' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'GlossySerpent/SimplePanel' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/SerpentPanel' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'GlossySerpent/SerpentPanel' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/SerpentScaledTopBorder' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'GlossySerpent/SerpentScaledTopBorder' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/SerpentScaledBottomBorder' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'GlossySerpent/SerpentScaledBottomBorder' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/ProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Core/ProgressBar' Look'N'Feel 'GlossySerpent/ProgressBar' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/VerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Core/Scrollbar' Look'N'Feel 'GlossySerpent/VerticalScrollbar' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/HorizontalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Core/Scrollbar' Look'N'Feel 'GlossySerpent/HorizontalScrollbar' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/VerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button' Look'N'Feel 'GlossySerpent/VerticalScrollbarThumb' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/HorizontalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button' Look'N'Feel 'GlossySerpent/HorizontalScrollbarThumb' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/TabButton' using base type 'CEGUI/TabButton', window renderer 'Core/TabButton' Look'N'Feel 'GlossySerpent/TabButton' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/TabControl' using base type 'CEGUI/TabControl', window renderer 'Core/TabControl' Look'N'Feel 'GlossySerpent/TabControl' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/TabContentPane' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'GlossySerpent/TabContentPane' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/TabButtonPane' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'GlossySerpent/TabButtonPane' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/GlyphButton' using base type 'CEGUI/PushButton', window renderer 'Core/Button' Look'N'Feel 'GlossySerpent/GlyphButton' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/GlyphButtonCombo' using base type 'CEGUI/PushButton', window renderer 'Core/Button' Look'N'Feel 'GlossySerpent/GlyphButtonCombo' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/RailedGlyphButton' using base type 'CEGUI/PushButton', window renderer 'Core/Button' Look'N'Feel 'GlossySerpent/RailedGlyphButton' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/ComboDropList' using base type 'CEGUI/ComboDropList', window renderer 'Core/Listbox' Look'N'Feel 'GlossySerpent/ComboDropList' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/ComboEditbox' using base type 'CEGUI/Editbox', window renderer 'Core/Editbox' Look'N'Feel 'GlossySerpent/ComboEditbox' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/Combobox' using base type 'CEGUI/Combobox', window renderer 'Core/Default' Look'N'Feel 'GlossySerpent/Combobox' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/Listbox' using base type 'CEGUI/Listbox', window renderer 'Core/Listbox' Look'N'Feel 'GlossySerpent/Listbox' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/ListboxTransparent' using base type 'CEGUI/Listbox', window renderer 'Core/Listbox' Look'N'Feel 'GlossySerpent/ListboxTransparent' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/ListHeader' using base type 'CEGUI/ListHeader', window renderer 'Core/ListHeader' Look'N'Feel 'GlossySerpent/ListHeader' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/ListHeaderSegment' using base type 'CEGUI/ListHeaderSegment', window renderer 'Core/ListHeaderSegment' Look'N'Feel 'GlossySerpent/ListHeaderSegment' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/MultiColumnList' using base type 'CEGUI/MultiColumnList', window renderer 'Core/MultiColumnList' Look'N'Feel 'GlossySerpent/MultiColumnList' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/ScrollablePane' using base type 'CEGUI/ScrollablePane', window renderer 'Core/ScrollablePane' Look'N'Feel 'GlossySerpent/ScrollablePane' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/Spinner' using base type 'CEGUI/Spinner', window renderer 'Core/Default' Look'N'Feel 'GlossySerpent/Spinner' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/Tooltip' using base type 'CEGUI/Tooltip', window renderer 'Core/Tooltip' Look'N'Feel 'GlossySerpent/Tooltip' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/StaticImage' using base type 'DefaultWindow', window renderer 'Core/StaticImage' Look'N'Feel 'GlossySerpent/StaticImage' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/StaticText' using base type 'DefaultWindow', window renderer 'Core/StaticText' Look'N'Feel 'GlossySerpent/StaticText' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/ItemListbox' using base type 'CEGUI/ItemListbox', window renderer 'Core/ItemListbox' Look'N'Feel 'GlossySerpent/ItemListbox' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/ListboxItem' using base type 'CEGUI/ItemEntry', window renderer 'Core/ItemEntry' Look'N'Feel 'GlossySerpent/ListboxItem' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/GroupBox' using base type 'CEGUI/GroupBox', window renderer 'Core/Default' Look'N'Feel 'GlossySerpent/GroupBox' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/Menubar' using base type 'CEGUI/Menubar', window renderer 'Core/Menubar' Look'N'Feel 'GlossySerpent/Menubar' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/PopupMenu' using base type 'CEGUI/PopupMenu', window renderer 'Core/PopupMenu' Look'N'Feel 'GlossySerpent/PopupMenu' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) Creating falagard mapping for type 'GlossySerpent/MenuItem' using base type 'CEGUI/MenuItem', window renderer 'Core/MenuItem' Look'N'Feel 'GlossySerpent/MenuItem' and RenderEffect ''. (0042CC60)
03/07/2015 00:28:22 (Std) [OgreRenderer] Created texture: DejaVuSans-HD-10_auto_glyph_images_32
Code: Select all
00:28:13: Creating resource group General
00:28:13: Creating resource group Internal
00:28:13: Creating resource group Autodetect
00:28:13: SceneManagerFactory for type 'DefaultSceneManager' registered.
00:28:13: Registering ResourceManager for type Material
00:28:13: Registering ResourceManager for type Mesh
00:28:13: Registering ResourceManager for type Skeleton
00:28:13: MovableObjectFactory for type 'ParticleSystem' registered.
00:28:13: ArchiveFactory for archive type FileSystem registered.
00:28:13: ArchiveFactory for archive type Zip registered.
00:28:13: ArchiveFactory for archive type EmbeddedZip registered.
00:28:13: DDS codec registering
00:28:13: FreeImage version: 3.15.3
00:28:13: This program uses FreeImage, a free, open source image library supporting all common bitmap formats. See http://freeimage.sourceforge.net for details
00:28:13: Supported formats: bmp,ico,jpg,jif,jpeg,jpe,jng,koa,iff,lbm,mng,pbm,pbm,pcd,pcx,pgm,pgm,png,ppm,ppm,ras,tga,targa,tif,tiff,wap,wbmp,wbm,psd,cut,xbm,xpm,gif,hdr,g3,sgi,exr,j2k,j2c,jp2,pfm,pct,pict,pic,3fr,arw,bay,bmq,cap,cine,cr2,crw,cs1,dc2,dcr,drf,dsc,dng,erf,fff,ia,iiq,k25,kc2,kdc,mdc,mef,mos,mrw,nef,nrw,orf,pef,ptx,pxn,qtk,raf,raw,rdc,rw2,rwl,rwz,sr2,srf,srw,sti
00:28:13: Registering ResourceManager for type HighLevelGpuProgram
00:28:13: Registering ResourceManager for type Compositor
00:28:13: MovableObjectFactory for type 'Entity' registered.
00:28:13: MovableObjectFactory for type 'Light' registered.
00:28:13: MovableObjectFactory for type 'BillboardSet' registered.
00:28:13: MovableObjectFactory for type 'ManualObject' registered.
00:28:13: MovableObjectFactory for type 'BillboardChain' registered.
00:28:13: MovableObjectFactory for type 'RibbonTrail' registered.
00:28:13: Loading library .\RenderSystem_GL_d
00:28:13: Installing plugin: GL RenderSystem
00:28:13: OpenGL Rendering Subsystem created.
00:28:15: Plugin successfully installed
00:28:15: Loading library .\RenderSystem_Direct3D11_d
00:28:15: Installing plugin: D3D11 RenderSystem
00:28:15: D3D11 : Direct3D11 Rendering Subsystem created.
00:28:15: D3D11: Driver Detection Starts
00:28:15: D3D11: Driver Detection Ends
00:28:15: Plugin successfully installed
00:28:15: Loading library .\Plugin_CgProgramManager_d
00:28:15: Installing plugin: Cg Program Manager
00:28:15: Plugin successfully installed
00:28:15: *-*-* OGRE Initialising
00:28:15: *-*-* Version 1.9.0 (Ghadamon)
00:28:15: D3D11 : RenderSystem Option: Allow NVPerfHUD = No
00:28:15: D3D11 : RenderSystem Option: Driver type = Hardware
00:28:15: D3D11 : RenderSystem Option: FSAA = 0
00:28:15: D3D11 : RenderSystem Option: Floating-point mode = Fastest
00:28:15: D3D11 : RenderSystem Option: Full Screen = No
00:28:15: D3D11 : RenderSystem Option: Information Queue Exceptions Bottom Level = Info (exception on any message)
00:28:15: D3D11 : RenderSystem Option: Max Requested Feature Levels = 11.0
00:28:15: D3D11 : RenderSystem Option: Min Requested Feature Levels = 9.1
00:28:15: D3D11 : RenderSystem Option: Rendering Device = Intel(R) HD Graphics 4000
00:28:15: D3D11 : RenderSystem Option: VSync = No
00:28:15: D3D11 : RenderSystem Option: VSync Interval = 1
00:28:15: D3D11 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour
00:28:15: D3D11 : RenderSystem Option: sRGB Gamma Conversion = No
00:28:19: CPU Identifier & Features
00:28:19: -------------------------
00:28:19: * CPU ID: GenuineIntel: Intel(R) Core(TM) i5-3230M CPU @ 2.60GHz
00:28:19: * SSE: yes
00:28:19: * SSE2: yes
00:28:19: * SSE3: yes
00:28:19: * MMX: yes
00:28:19: * MMXEXT: yes
00:28:19: * 3DNOW: no
00:28:19: * 3DNOWEXT: no
00:28:19: * CMOV: yes
00:28:19: * TSC: yes
00:28:19: * FPU: yes
00:28:19: * PRO: yes
00:28:19: * HT: no
00:28:19: -------------------------
00:28:19: *** Starting Win32GL Subsystem ***
00:28:19: Registering ResourceManager for type Texture
00:28:19: GLRenderSystem::_createRenderWindow "Aviation Institute", 1152x864 windowed miscParams: FSAA=0 FSAAHint= colourDepth=32 displayFrequency=0 gamma=false vsync=false vsyncInterval=1
00:28:19: Created Win32Window 'Aviation Institute' : 1160x891, 32bpp
00:28:19: GL_VERSION = 4.0.0 - Build 9.17.10.2867
00:28:19: GL_VENDOR = Intel
00:28:19: GL_RENDERER = Intel(R) HD Graphics 4000
00:28:19: GL_EXTENSIONS = GL_EXT_blend_minmax GL_EXT_blend_subtract GL_EXT_blend_color GL_EXT_abgr GL_EXT_texture3D GL_EXT_clip_volume_hint GL_EXT_compiled_vertex_array GL_SGIS_texture_edge_clamp GL_SGIS_generate_mipmap GL_EXT_draw_range_elements GL_SGIS_texture_lod GL_EXT_rescale_normal GL_EXT_packed_pixels GL_EXT_texture_edge_clamp GL_EXT_separate_specular_color GL_ARB_multitexture GL_EXT_texture_env_combine GL_EXT_bgra GL_EXT_blend_func_separate GL_EXT_secondary_color GL_EXT_fog_coord GL_EXT_texture_env_add GL_ARB_texture_cube_map GL_ARB_transpose_matrix GL_ARB_texture_env_add GL_IBM_texture_mirrored_repeat GL_EXT_multi_draw_arrays GL_SUN_multi_draw_arrays GL_NV_blend_square GL_ARB_texture_compression GL_3DFX_texture_compression_FXT1 GL_EXT_texture_filter_anisotropic GL_ARB_texture_border_clamp GL_ARB_point_parameters GL_ARB_texture_env_combine GL_ARB_texture_env_dot3 GL_ARB_texture_env_crossbar GL_EXT_texture_compression_s3tc GL_ARB_shadow GL_ARB_window_pos GL_EXT_shadow_funcs GL_EXT_stencil_wrap GL_ARB_vertex_program GL_EXT_texture_rectangle GL_ARB_fragment_program GL_EXT_stencil_two_side GL_ATI_separate_stencil GL_ARB_vertex_buffer_object GL_EXT_texture_lod_bias GL_ARB_occlusion_query GL_ARB_fragment_shader GL_ARB_shader_objects GL_ARB_shading_language_100 GL_ARB_texture_non_power_of_two GL_ARB_vertex_shader GL_NV_texgen_reflection GL_ARB_point_sprite GL_ARB_fragment_program_shadow GL_EXT_blend_equation_separate GL_ARB_depth_texture GL_ARB_texture_rectangle GL_ARB_draw_buffers GL_ARB_color_buffer_float GL_ARB_half_float_pixel GL_ARB_texture_float GL_ARB_pixel_buffer_object GL_EXT_framebuffer_object GL_ARB_draw_instanced GL_ARB_half_float_vertex GL_ARB_occlusion_query2 GL_EXT_draw_buffers2 GL_WIN_swap_hint GL_EXT_texture_sRGB GL_ARB_multisample GL_EXT_packed_float GL_EXT_texture_shared_exponent GL_ARB_texture_rg GL_ARB_texture_compression_rgtc GL_NV_conditional_render GL_EXT_texture_swizzle GL_ARB_texture_gather GL_ARB_sync GL_ARB_framebuffer_sRGB GL_EXT_packed_depth_stencil GL_ARB_depth_buffer_float GL_EXT_transform_feedback GL_ARB_transform_feedback2 GL_ARB_draw_indirect GL_EXT_framebuffer_blit GL_EXT_framebuffer_multisample GL_ARB_framebuffer_object GL_EXT_texture_array GL_EXT_texture_integer GL_ARB_map_buffer_range GL_EXT_texture_snorm GL_ARB_blend_func_extended GL_INTEL_performance_queries GL_ARB_copy_buffer GL_ARB_sampler_objects GL_NV_primitive_restart GL_ARB_seamless_cube_map GL_ARB_uniform_buffer_object GL_ARB_depth_clamp GL_ARB_vertex_array_bgra GL_ARB_shader_bit_encoding GL_ARB_draw_buffers_blend GL_ARB_geometry_shader4 GL_ARB_texture_query_lod GL_ARB_explicit_attrib_location GL_ARB_draw_elements_base_vertex GL_ARB_instanced_arrays GL_ARB_fragment_coord_conventions GL_EXT_gpu_program_parameters GL_ARB_texture_buffer_object_rgb32 GL_ARB_compatibility GL_ARB_texture_rgb10_a2ui GL_ARB_texture_multisample GL_ARB_vertex_type_2_10_10_10_rev GL_ARB_timer_query GL_INTEL_map_texture GL_ARB_tessellation_shader GL_ARB_vertex_array_object GL_ARB_provoking_vertex GL_ARB_sample_shading GL_ARB_texture_cube_map_array GL_ARB_gpu_shader5 GL_ARB_gpu_shader_fp64 GL_ARB_shader_subroutine GL_ARB_transform_feedback3
00:28:19: Supported WGL extensions: WGL_EXT_depth_float WGL_ARB_buffer_region WGL_ARB_extensions_string WGL_ARB_make_current_read WGL_ARB_pixel_format WGL_ARB_pbuffer WGL_EXT_extensions_string WGL_EXT_swap_control WGL_EXT_swap_control_tear WGL_ARB_multisample WGL_ARB_pixel_format_float WGL_ARB_framebuffer_sRGB WGL_ARB_create_context WGL_ARB_create_context_profile WGL_EXT_pixel_format_packed_float WGL_EXT_create_context_es2_profile
00:28:19: ***************************
00:28:19: *** GL Renderer Started ***
00:28:19: ***************************
00:28:19: Registering ResourceManager for type GpuProgram
00:28:19: GLSL support detected
00:28:19: GL: Using GL_EXT_framebuffer_object for rendering to textures (best)
00:28:19: FBO PF_UNKNOWN depth/stencil support: D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
00:28:19: FBO PF_A8 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
00:28:19: FBO PF_R5G6B5 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
00:28:19: FBO PF_B5G6R5 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
00:28:19: FBO PF_R8G8B8 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
00:28:19: FBO PF_B8G8R8 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
00:28:19: FBO PF_A8R8G8B8 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
00:28:19: FBO PF_B8G8R8A8 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
00:28:19: FBO PF_A2R10G10B10 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
00:28:19: FBO PF_A2B10G10R10 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
00:28:19: FBO PF_FLOAT16_RGB depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
00:28:19: FBO PF_FLOAT16_RGBA depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
00:28:19: FBO PF_FLOAT32_RGB depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
00:28:19: FBO PF_FLOAT32_RGBA depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
00:28:19: FBO PF_X8R8G8B8 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
00:28:19: FBO PF_X8B8G8R8 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
00:28:19: FBO PF_SHORT_RGBA depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
00:28:19: FBO PF_R3G3B2 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
00:28:19: FBO PF_SHORT_RGB depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
00:28:19: [GL] : Valid FBO targets PF_UNKNOWN PF_A8 PF_R5G6B5 PF_B5G6R5 PF_R8G8B8 PF_B8G8R8 PF_A8R8G8B8 PF_B8G8R8A8 PF_A2R10G10B10 PF_A2B10G10R10 PF_FLOAT16_RGB PF_FLOAT16_RGBA PF_FLOAT32_RGB PF_FLOAT32_RGBA PF_X8R8G8B8 PF_X8B8G8R8 PF_SHORT_RGBA PF_R3G3B2 PF_SHORT_RGB
00:28:19: RenderSystem capabilities
00:28:19: -------------------------
00:28:19: RenderSystem Name: OpenGL Rendering Subsystem
00:28:19: GPU Vendor: intel
00:28:19: Device Name: Intel(R) HD Graphics 4000
00:28:19: Driver Version: 4.0.0.0
00:28:19: * Fixed function pipeline: yes
00:28:19: * Hardware generation of mipmaps: no
00:28:19: * Texture blending: yes
00:28:19: * Anisotropic texture filtering: yes
00:28:19: * Dot product texture operation: yes
00:28:19: * Cube mapping: yes
00:28:19: * Hardware stencil buffer: yes
00:28:19: - Stencil depth: 8
00:28:19: - Two sided stencil support: yes
00:28:19: - Wrap stencil values: yes
00:28:19: * Hardware vertex / index buffers: yes
00:28:19: * Vertex programs: yes
00:28:19: * Number of floating-point constants for vertex programs: 256
00:28:19: * Number of integer constants for vertex programs: 0
00:28:19: * Number of boolean constants for vertex programs: 0
00:28:19: * Fragment programs: yes
00:28:19: * Number of floating-point constants for fragment programs: 256
00:28:19: * Number of integer constants for fragment programs: 0
00:28:19: * Number of boolean constants for fragment programs: 0
00:28:19: * Geometry programs: no
00:28:19: * Number of floating-point constants for geometry programs: 52224
00:28:19: * Number of integer constants for geometry programs: 52428
00:28:19: * Number of boolean constants for geometry programs: 52428
00:28:19: * Tesselation Hull programs: no
00:28:19: * Number of floating-point constants for tesselation hull programs: 59
00:28:19: * Number of integer constants for tesselation hull programs: 0
00:28:19: * Number of boolean constants for tesselation hull programs: 52428
00:28:19: * Tesselation Domain programs: no
00:28:19: * Number of floating-point constants for tesselation domain programs: 52428
00:28:19: * Number of integer constants for tesselation domain programs: 52428
00:28:19: * Number of boolean constants for tesselation domain programs: 52428
00:28:19: * Compute programs: no
00:28:19: * Number of floating-point constants for compute programs: 52428
00:28:19: * Number of integer constants for compute programs: 52428
00:28:19: * Number of boolean constants for compute programs: 52428
00:28:19: * Supported Shader Profiles: arbfp1 arbvp1 glsl
00:28:19: * Texture Compression: yes
00:28:19: - DXT: yes
00:28:19: - VTC: no
00:28:19: - PVRTC: no
00:28:19: - ATC: no
00:28:19: - ETC1: no
00:28:19: - ETC2: no
00:28:19: - BC4/BC5: no
00:28:19: - BC6H/BC7: no
00:28:19: * Scissor Rectangle: yes
00:28:19: * Hardware Occlusion Query: yes
00:28:19: * User clip planes: yes
00:28:19: * VET_UBYTE4 vertex element type: yes
00:28:19: * Infinite far plane projection: yes
00:28:19: * Hardware render-to-texture: yes
00:28:19: * Floating point textures: yes
00:28:19: * Non-power-of-two textures: yes
00:28:19: * 1d textures: yes
00:28:19: * Volume textures: yes
00:28:19: * Multiple Render Targets: 8
00:28:19: - With different bit depths: yes
00:28:19: * Point Sprites: yes
00:28:19: * Extended point parameters: yes
00:28:19: * Max Point Size: 255
00:28:19: * Vertex texture fetch: yes
00:28:19: * Number of world matrices: 0
00:28:19: * Number of texture units: 16
00:28:19: * Stencil buffer depth: 8
00:28:19: * Number of vertex blend matrices: 0
00:28:19: - Max vertex textures: 16
00:28:19: - Vertex textures shared: yes
00:28:19: * Render to Vertex Buffer : no
00:28:19: * Hardware Atomic Counters: no
00:28:19: * GL 1.5 without VBO workaround: no
00:28:19: * Frame Buffer objects: yes
00:28:19: * Frame Buffer objects (ARB extension): no
00:28:19: * Frame Buffer objects (ATI extension): no
00:28:19: * PBuffer support: yes
00:28:19: * GL 1.5 without HW-occlusion workaround: no
00:28:19: * Vertex Array Objects: no
00:28:19: * Separate shader objects: no
00:28:19: DefaultWorkQueue('Root') initialising on thread 1d98.
00:28:19: DefaultWorkQueue('Root')::WorkerFunc - thread 2124 starting.
00:28:19: DefaultWorkQueue('Root')::WorkerFunc - thread 2570 starting.
00:28:19: DefaultWorkQueue('Root')::WorkerFunc - thread 2594 starting.
00:28:19: DefaultWorkQueue('Root')::WorkerFunc - thread 1f08 starting.
00:28:19: Particle Renderer Type 'billboard' registered
00:28:19: Creating resource group Bootstrap
00:28:19: Added resource location 'media/packs/SdkTrays.zip' of type 'Zip' to resource group 'Bootstrap'
00:28:19: Creating resource group Fonts
00:28:19: Added resource location 'datapack/fonts' of type 'FileSystem' to resource group 'Fonts'
00:28:19: Added resource location 'media/models' of type 'FileSystem' to resource group 'General'
00:28:19: Added resource location 'media/cube_scene' of type 'FileSystem' to resource group 'General'
00:28:19: Added resource location 'media/materials/scripts' of type 'FileSystem' to resource group 'General'
00:28:19: Added resource location 'media/materials/textures' of type 'FileSystem' to resource group 'General'
00:28:19: Added resource location 'media/materials/programs' of type 'FileSystem' to resource group 'General'
00:28:19: Added resource location 'media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General'
00:28:19: Creating resource group Imagesets
00:28:19: Added resource location 'datapack/imagesets' of type 'FileSystem' to resource group 'Imagesets'
00:28:19: Creating resource group Layouts
00:28:19: Added resource location 'datapack/layouts' of type 'FileSystem' to resource group 'Layouts'
00:28:19: Creating resource group LookNFeel
00:28:19: Added resource location 'datapack/looknfeel' of type 'FileSystem' to resource group 'LookNFeel'
00:28:19: Creating resource group Schemes
00:28:19: Added resource location 'datapack/schemes' of type 'FileSystem' to resource group 'Schemes'
00:28:19: Parsing scripts for resource group Autodetect
00:28:19: Finished parsing scripts for resource group Autodetect
00:28:19: Creating resources for group Autodetect
00:28:19: All done
00:28:19: Parsing scripts for resource group Bootstrap
00:28:19: Parsing script SdkTrays.material
00:28:19: Finished parsing scripts for resource group Bootstrap
00:28:19: Creating resources for group Bootstrap
00:28:19: All done
00:28:19: Parsing scripts for resource group Fonts
00:28:19: Finished parsing scripts for resource group Fonts
00:28:19: Creating resources for group Fonts
00:28:19: All done
00:28:19: Parsing scripts for resource group General
00:28:19: Finished parsing scripts for resource group General
00:28:19: Creating resources for group General
00:28:19: All done
00:28:19: Parsing scripts for resource group Imagesets
00:28:19: Finished parsing scripts for resource group Imagesets
00:28:19: Creating resources for group Imagesets
00:28:19: All done
00:28:19: Parsing scripts for resource group Internal
00:28:19: Finished parsing scripts for resource group Internal
00:28:19: Creating resources for group Internal
00:28:19: All done
00:28:19: Parsing scripts for resource group Layouts
00:28:19: Finished parsing scripts for resource group Layouts
00:28:19: Creating resources for group Layouts
00:28:19: All done
00:28:19: Parsing scripts for resource group LookNFeel
00:28:19: Finished parsing scripts for resource group LookNFeel
00:28:19: Creating resources for group LookNFeel
00:28:19: All done
00:28:19: Parsing scripts for resource group Schemes
00:28:19: Finished parsing scripts for resource group Schemes
00:28:19: Creating resources for group Schemes
00:28:19: All done
00:28:22: Application initialized!
00:28:22: Entering MenuState...
00:28:24: Leaving MenuState...
00:28:24: Entering GameState...
00:28:24: Terrain created; size=513 minBatch=33 maxBatch=65 treeDepth=4 lodLevels=5 leafLods=2
00:28:27: Texture: dirt_grayrocky_diffusespecular.dds: Loading 1 faces(PF_A8B8G8R8,1024x1024x1) with 5 generated mipmaps from Image. Internal format is PF_A8R8G8B8,1024x1024x1.
00:28:27: Texture: dirt_grayrocky_normalheight.dds: Loading 1 faces(PF_A8B8G8R8,1024x1024x1) with 5 generated mipmaps from Image. Internal format is PF_A8R8G8B8,1024x1024x1.
00:28:27: Texture: grass_green-01_diffusespecular.dds: Loading 1 faces(PF_A8B8G8R8,1024x1024x1) with 5 generated mipmaps from Image. Internal format is PF_A8R8G8B8,1024x1024x1.
00:28:27: Texture: grass_green-01_normalheight.dds: Loading 1 faces(PF_A8B8G8R8,1024x1024x1) with 5 generated mipmaps from Image. Internal format is PF_A8R8G8B8,1024x1024x1.
00:28:27: Texture: growth_weirdfungus-03_diffusespecular.dds: Loading 1 faces(PF_A8B8G8R8,1024x1024x1) with 5 generated mipmaps from Image. Internal format is PF_A8R8G8B8,1024x1024x1.
00:28:27: Texture: growth_weirdfungus-03_normalheight.dds: Loading 1 faces(PF_A8B8G8R8,1024x1024x1) with 5 generated mipmaps from Image. Internal format is PF_A8R8G8B8,1024x1024x1.
00:28:28: Invalid Operation before loading program OgreTerrain/2636777455/sm2/vp/hlod
cegui-0.8.4
OgreSDK_vc11_v1-9-0
Re: Need help integrating CEGUI with Ogre3d
I merged your last 4 (!) posts that you wrote in direct succession, although I told you to use the edit button instead of multi-posting, into a single post. if you multi-post again I will just ignore the thread.
Ogre 1.9 works flawlessly with CEGUI 0.8.4 and has been used many times in different projects and we have tested it a lot of times as well.
Show us your code for initialising CEGUI maybe you did something wrong there. If you did not, then it might be your specific Ogre setup that causes issues. If you only render and Ogre-Head in a simple and minimal way then I doubt that the Ogre program is the issue.
Generally you would set up a FrameListener for CEGUI and then render CEGUI last in that way. You might wanna look at the file CEGuiOgreBaseApplication.cpp which is part of the SampleBrowser (samples_framework\src\CEGuiOgreBaseApplication.cpp).
The default way however is to just bootstrap the Renderer http://static.cegui.org.uk/docs/0.8/ren ... orial.html which should work out of the box afaik.
Ogre 1.9 works flawlessly with CEGUI 0.8.4 and has been used many times in different projects and we have tested it a lot of times as well.
Show us your code for initialising CEGUI maybe you did something wrong there. If you did not, then it might be your specific Ogre setup that causes issues. If you only render and Ogre-Head in a simple and minimal way then I doubt that the Ogre program is the issue.
Generally you would set up a FrameListener for CEGUI and then render CEGUI last in that way. You might wanna look at the file CEGuiOgreBaseApplication.cpp which is part of the SampleBrowser (samples_framework\src\CEGuiOgreBaseApplication.cpp).
Code: Select all
// create frame listener
d_frameListener= new CEGuiDemoFrameListener(this, d_sampleApp, d_window, d_camera);
d_ogreRoot->addFrameListener(d_frameListener);
The default way however is to just bootstrap the Renderer http://static.cegui.org.uk/docs/0.8/ren ... orial.html which should work out of the box afaik.
CrazyEddie: "I don't like GUIs"
Re: Need help integrating CEGUI with Ogre3d
Thank you. I got you about multiposting. Sorry for that.
Well i have a AdvancedOgreFramework. Have removed SDKTrays, by removing the header and removing any error that comes up.
So then, my Framework.hpp(AdvancedOgreFramework.hpp):
Than AdvancedOgreFramework.cpp:
Than the actual gamestate that is rendering now terrain instead of ogre head
ANd cpp file of that state:
As you can see i have bootstrapped CEGUI in my Framework::initOgre function.
Than, in GameState::Enter function i've added a test window and a test button.
BTW: I actually beleive that CEGUI works well and many times tested. My question is where i did something wrong.
I actually used CEGUI and Ogre two years or more ago, and it worked perfectly. I just want to make this combination(with this versions) to work
Well i have a AdvancedOgreFramework. Have removed SDKTrays, by removing the header and removing any error that comes up.
So then, my Framework.hpp(AdvancedOgreFramework.hpp):
Code: Select all
//|||||||||||||||||||||||||||||||||||||||||||||||
#ifndef OGRE_FRAMEWORK_HPP
#define OGRE_FRAMEWORK_HPP
//|||||||||||||||||||||||||||||||||||||||||||||||
#include <OgreCamera.h>
#include <OgreEntity.h>
#include <OgreLogManager.h>
#include <Overlay/OgreOverlay.h>
#include <Overlay/OgreOverlayElement.h>
#include <Overlay/OgreOverlayManager.h>
#include <OgreRoot.h>
#include <OgreViewport.h>
#include <OgreSceneManager.h>
#include <OgreRenderWindow.h>
#include <OgreConfigFile.h>
#include <OISEvents.h>
#include <OISInputManager.h>
#include <OISKeyboard.h>
#include <OISMouse.h>
#include <CEGUI/CEGUI.h>
#include <CEGUI/RendererModules/Ogre/Renderer.h>
CEGUI::MouseButton convertButton(OIS::MouseButtonID buttonID);
//|||||||||||||||||||||||||||||||||||||||||||||||
class Framework : public Ogre::Singleton<Framework>, OIS::KeyListener, OIS::MouseListener
{
public:
Framework();
~Framework();
bool initOgre(Ogre::String wndTitle, OIS::KeyListener *pKeyListener = 0, OIS::MouseListener *pMouseListener = 0);
void updateOgre(double timeSinceLastFrame);
bool keyPressed(const OIS::KeyEvent &keyEventRef);
bool keyReleased(const OIS::KeyEvent &keyEventRef);
bool mouseMoved(const OIS::MouseEvent &evt);
bool mousePressed(const OIS::MouseEvent &evt, OIS::MouseButtonID id);
bool mouseReleased(const OIS::MouseEvent &evt, OIS::MouseButtonID id);
Ogre::Root* m_pRoot;
Ogre::RenderWindow* m_pRenderWnd;
Ogre::Viewport* m_pViewport;
Ogre::Log* m_pLog;
Ogre::Timer* m_pTimer;
OIS::InputManager* m_pInputMgr;
OIS::Keyboard* m_pKeyboard;
OIS::Mouse* m_pMouse;
CEGUI::OgreRenderer* m_CEGUIRenderer;
private:
Framework(const Framework&);
Framework& operator= (const Framework&);
};
//|||||||||||||||||||||||||||||||||||||||||||||||
#endif
//|||||||||||||||||||||||||||||||||||||||||||||||
Than AdvancedOgreFramework.cpp:
Code: Select all
//|||||||||||||||||||||||||||||||||||||||||||||||
#include "Framework.hpp"
//|||||||||||||||||||||||||||||||||||||||||||||||
using namespace Ogre;
//|||||||||||||||||||||||||||||||||||||||||||||||
template<> Framework* Ogre::Singleton<Framework>::msSingleton = 0;
//|||||||||||||||||||||||||||||||||||||||||||||||
Framework::Framework()
{
m_pRoot = 0;
m_pRenderWnd = 0;
m_pViewport = 0;
m_pLog = 0;
m_pTimer = 0;
m_pInputMgr = 0;
m_pKeyboard = 0;
m_pMouse = 0;
}
//|||||||||||||||||||||||||||||||||||||||||||||||
Framework::~Framework()
{
Framework::getSingletonPtr()->m_pLog->logMessage("Shutdown OGRE...");
if(m_pInputMgr) OIS::InputManager::destroyInputSystem(m_pInputMgr);
if(m_pRoot) delete m_pRoot;
}
//|||||||||||||||||||||||||||||||||||||||||||||||
bool Framework::initOgre(Ogre::String wndTitle, OIS::KeyListener *pKeyListener, OIS::MouseListener *pMouseListener)
{
Ogre::LogManager* logMgr = new Ogre::LogManager();
m_pLog = Ogre::LogManager::getSingleton().createLog("OgreLogfile.log", true, true, false);
m_pLog->setDebugOutputEnabled(true);
m_pRoot = new Ogre::Root();
if(!m_pRoot->showConfigDialog())
return false;
m_pRenderWnd = m_pRoot->initialise(true, wndTitle);
m_pViewport = m_pRenderWnd->addViewport(0);
m_pViewport->setBackgroundColour(ColourValue(0.5f, 0.5f, 0.5f, 1.0f));
m_pViewport->setCamera(0);
size_t hWnd = 0;
OIS::ParamList paramList;
m_pRenderWnd->getCustomAttribute("WINDOW", &hWnd);
paramList.insert(OIS::ParamList::value_type("WINDOW", Ogre::StringConverter::toString(hWnd)));
m_pInputMgr = OIS::InputManager::createInputSystem(paramList);
m_pKeyboard = static_cast<OIS::Keyboard*>(m_pInputMgr->createInputObject(OIS::OISKeyboard, true));
m_pMouse = static_cast<OIS::Mouse*>(m_pInputMgr->createInputObject(OIS::OISMouse, true));
m_pMouse->getMouseState().height = m_pRenderWnd->getHeight();
m_pMouse->getMouseState().width = m_pRenderWnd->getWidth();
if(pKeyListener == 0)
m_pKeyboard->setEventCallback(this);
else
m_pKeyboard->setEventCallback(pKeyListener);
if(pMouseListener == 0)
m_pMouse->setEventCallback(this);
else
m_pMouse->setEventCallback(pMouseListener);
Ogre::String secName, typeName, archName;
Ogre::ConfigFile cf;
cf.load("resources.cfg");
Ogre::ConfigFile::SectionIterator seci = cf.getSectionIterator();
while (seci.hasMoreElements())
{
secName = seci.peekNextKey();
Ogre::ConfigFile::SettingsMultiMap *settings = seci.getNext();
Ogre::ConfigFile::SettingsMultiMap::iterator i;
for (i = settings->begin(); i != settings->end(); ++i)
{
typeName = i->first;
archName = i->second;
Ogre::ResourceGroupManager::getSingleton().addResourceLocation(archName, typeName, secName);
}
}
Ogre::TextureManager::getSingleton().setDefaultNumMipmaps(5);
Ogre::ResourceGroupManager::getSingleton().initialiseAllResourceGroups();
m_pTimer = new Ogre::Timer();
m_pTimer->reset();
m_CEGUIRenderer = &CEGUI::OgreRenderer::bootstrapSystem();
CEGUI::ImageManager::setImagesetDefaultResourceGroup("Imagesets");
CEGUI::Font::setDefaultResourceGroup("Fonts");
CEGUI::Scheme::setDefaultResourceGroup("Schemes");
CEGUI::WidgetLookManager::setDefaultResourceGroup("LookNFeel");
CEGUI::WindowManager::setDefaultResourceGroup("Layouts");
CEGUI::SchemeManager::getSingleton().createFromFile("GlossySerpent.scheme");
CEGUI::System::getSingleton().getDefaultGUIContext().getMouseCursor().setDefaultImage("GlossySerpentCursors/MouseArrow");
m_pRenderWnd->setActive(true);
return true;
}
//|||||||||||||||||||||||||||||||||||||||||||||||
bool Framework::keyPressed(const OIS::KeyEvent &keyEventRef)
{
if(m_pKeyboard->isKeyDown(OIS::KC_SYSRQ))
{
m_pRenderWnd->writeContentsToTimestampedFile("AOF_Screenshot_", ".jpg");
return true;
}
return true;
}
//|||||||||||||||||||||||||||||||||||||||||||||||
bool Framework::keyReleased(const OIS::KeyEvent &keyEventRef)
{
return true;
}
//|||||||||||||||||||||||||||||||||||||||||||||||
bool Framework::mouseMoved(const OIS::MouseEvent &evt)
{
return true;
}
//|||||||||||||||||||||||||||||||||||||||||||||||
bool Framework::mousePressed(const OIS::MouseEvent &evt, OIS::MouseButtonID id)
{
return true;
}
//|||||||||||||||||||||||||||||||||||||||||||||||
bool Framework::mouseReleased(const OIS::MouseEvent &evt, OIS::MouseButtonID id)
{
return true;
}
//|||||||||||||||||||||||||||||||||||||||||||||||
void Framework::updateOgre(double timeSinceLastFrame)
{
}
//|||||||||||||||||||||||||||||||||||||||||||||||
CEGUI::MouseButton convertButton(OIS::MouseButtonID buttonID)
{
switch (buttonID)
{
case OIS::MB_Left:
return CEGUI::LeftButton;
case OIS::MB_Right:
return CEGUI::RightButton;
case OIS::MB_Middle:
return CEGUI::MiddleButton;
default:
return CEGUI::LeftButton;
}
}
Than the actual gamestate that is rendering now terrain instead of ogre head
Code: Select all
//|||||||||||||||||||||||||||||||||||||||||||||||
#ifndef GAME_STATE_HPP
#define GAME_STATE_HPP
//|||||||||||||||||||||||||||||||||||||||||||||||
#include "AppState.hpp"
#include <OgreSubEntity.h>
#include <OgreMaterialManager.h>
#include <Terrain/OgreTerrain.h>
#include <Terrain/OgreTerrainGroup.h>
//|||||||||||||||||||||||||||||||||||||||||||||||
enum QueryFlags
{
WORLD_MASK = 1<<0,
CUBE_MASK = 1<<1
};
//|||||||||||||||||||||||||||||||||||||||||||||||
class GameState : public AppState
{
public:
GameState();
DECLARE_APPSTATE_CLASS(GameState)
void enter();
void createScene();
void exit();
bool pause();
void resume();
void moveCamera();
void getInput();
void buildGUI();
bool keyPressed(const OIS::KeyEvent &keyEventRef);
bool keyReleased(const OIS::KeyEvent &keyEventRef);
bool mouseMoved(const OIS::MouseEvent &evt);
bool mousePressed(const OIS::MouseEvent &evt, OIS::MouseButtonID id);
bool mouseReleased(const OIS::MouseEvent &evt, OIS::MouseButtonID id);
void onLeftPressed(const OIS::MouseEvent &evt);
void update(double timeSinceLastFrame);
bool frameRenderingQueued(const Ogre::FrameEvent& evt);
private:
void defineTerrain(long x, long y);
void configureTerrainDefaults(Ogre::Light* light);
void initBlendMaps(Ogre::Terrain* terrain);
bool m_bQuit;
Ogre::Vector3 m_TranslateVector;
Ogre::Real m_MoveSpeed;
Ogre::Degree m_RotateSpeed;
float m_MoveScale;
Ogre::Degree m_RotScale;
Ogre::RaySceneQuery* m_pRSQ;
Ogre::SceneNode* m_pCurrentObject;
Ogre::Entity* m_pCurrentEntity;
bool m_bLMouseDown, m_bRMouseDown;
bool m_bSettingsMode;
//Light
Ogre::Light* m_pLight;
//World
Ogre::TerrainGlobalOptions* mTerrainGlobals;
Ogre::TerrainGroup* mTerrainGroup;
bool mTerrainsImported;
CEGUI::WindowManager* m_Wmgr;
CEGUI::Window* m_GuiRoot;
};
//|||||||||||||||||||||||||||||||||||||||||||||||
#endif
//|||||||||||||||||||||||||||||||||||||||||||||||
ANd cpp file of that state:
Code: Select all
//|||||||||||||||||||||||||||||||||||||||||||||||
#include "GameState.hpp"
//|||||||||||||||||||||||||||||||||||||||||||||||
using namespace Ogre;
//|||||||||||||||||||||||||||||||||||||||||||||||
GameState::GameState()
{
m_MoveSpeed = 0.1f;
m_RotateSpeed = 0.3f;
m_bLMouseDown = false;
m_bRMouseDown = false;
m_bQuit = false;
m_bSettingsMode = false;
}
//|||||||||||||||||||||||||||||||||||||||||||||||
void GameState::enter()
{
Framework::getSingletonPtr()->m_pLog->logMessage("Entering GameState...");
m_pSceneMgr = Framework::getSingletonPtr()->m_pRoot->createSceneManager(ST_GENERIC, "GameSceneMgr");
m_pSceneMgr->setAmbientLight(Ogre::ColourValue(0.7f, 0.7f, 0.7f));
//m_pSceneMgr->addRenderQueueListener(Framework::getSingletonPtr()->m_pOverlaySystem);
m_pRSQ = m_pSceneMgr->createRayQuery(Ray());
//m_pRSQ->setQueryMask(OGRE_HEAD_MASK);
m_pCamera = m_pSceneMgr->createCamera("GameCamera");
m_pCamera->setPosition(Ogre::Vector3(1683, 50, 2116));
m_pCamera->lookAt(Ogre::Vector3(1963, 50, 1660));
m_pCamera->setNearClipDistance(0.1);
m_pCamera->setFarClipDistance(5000);
m_pCamera->setAspectRatio(Real(Framework::getSingletonPtr()->m_pViewport->getActualWidth()) /
Real(Framework::getSingletonPtr()->m_pViewport->getActualHeight()));
Framework::getSingletonPtr()->m_pViewport->setCamera(m_pCamera);
m_pCurrentObject = 0;
buildGUI();
m_Wmgr = &CEGUI::WindowManager::getSingleton();
m_GuiRoot = m_Wmgr->createWindow( "DefaultWindow", "root" );
m_GuiRoot->setAlpha(0.5f);
CEGUI::System::getSingleton().getDefaultGUIContext().setRootWindow( m_GuiRoot );
CEGUI::PushButton* m_ExitButton = static_cast<CEGUI::PushButton*> (m_GuiRoot->createChild("GlossySerpent/Button","ExitButton"));
m_ExitButton->setPosition(CEGUI::UVector2(CEGUI::UDim(0.45,0),CEGUI::UDim(0.42,0)));
m_ExitButton->setSize(CEGUI::USize(CEGUI::UDim(0,130),CEGUI::UDim(0,50)));
m_ExitButton->setText("Exit");
//Added
Framework::getSingletonPtr()->m_pRoot->addFrameListener(this);
createScene();
}
//|||||||||||||||||||||||||||||||||||||||||||||||
bool GameState::pause()
{
Framework::getSingletonPtr()->m_pLog->logMessage("Pausing GameState...");
return true;
}
//|||||||||||||||||||||||||||||||||||||||||||||||
void GameState::resume()
{
Framework::getSingletonPtr()->m_pLog->logMessage("Resuming GameState...");
buildGUI();
Framework::getSingletonPtr()->m_pViewport->setCamera(m_pCamera);
m_bQuit = false;
}
//|||||||||||||||||||||||||||||||||||||||||||||||
void GameState::exit()
{
Framework::getSingletonPtr()->m_pLog->logMessage("Leaving GameState...");
m_pSceneMgr->destroyCamera(m_pCamera);
m_pSceneMgr->destroyQuery(m_pRSQ);
if(m_pSceneMgr)
Framework::getSingletonPtr()->m_pRoot->destroySceneManager(m_pSceneMgr);
}
//|||||||||||||||||||||||||||||||||||||||||||||||
void GameState::createScene()
{
Ogre::Vector3 lightdir(0.55f, -0.3f, 0.75f);
lightdir.normalise();
Ogre::Light* light = m_pSceneMgr->createLight("tstLight");
light->setType(Ogre::Light::LT_DIRECTIONAL);
light->setDirection(lightdir);
light->setDiffuseColour(Ogre::ColourValue::White);
light->setSpecularColour(Ogre::ColourValue(0.4f, 0.4f, 0.4f));
m_pSceneMgr->setAmbientLight(Ogre::ColourValue(0.2f, 0.2f, 0.2f));
mTerrainGlobals = OGRE_NEW Ogre::TerrainGlobalOptions();
mTerrainGroup = OGRE_NEW Ogre::TerrainGroup(m_pSceneMgr, Ogre::Terrain::ALIGN_X_Z, 513, 12000.0f);
mTerrainGroup->setFilenameConvention(Ogre::String("BasicTutorial3Terrain"), Ogre::String("dat"));
mTerrainGroup->setOrigin(Ogre::Vector3::ZERO);
configureTerrainDefaults(light);
for (long x = 0; x <= 0; ++x)
for (long y = 0; y <= 0; ++y)
defineTerrain(x, y);
// sync load since we want everything in place when we start
mTerrainGroup->loadAllTerrains(true);
if (mTerrainsImported)
{
Ogre::TerrainGroup::TerrainIterator ti = mTerrainGroup->getTerrainIterator();
while(ti.hasMoreElements())
{
Ogre::Terrain* t = ti.getNext()->instance;
initBlendMaps(t);
}
}
mTerrainGroup->freeTemporaryResources();
}
//|||||||||||||||||||||||||||||||||||||||||||||||
//|||||||||||||||||||||||||||||||||||||||||||||||
void GameState::onLeftPressed(const OIS::MouseEvent &evt)
{
Ogre::Ray mouseRay = m_pCamera->getCameraToViewportRay(Framework::getSingletonPtr()->m_pMouse->getMouseState().X.abs / float(evt.state.width),
Framework::getSingletonPtr()->m_pMouse->getMouseState().Y.abs / float(evt.state.height));
m_pRSQ->setRay(mouseRay);
m_pRSQ->setSortByDistance(true);
Ogre::RaySceneQueryResult &result = m_pRSQ->execute();
Ogre::RaySceneQueryResult::iterator itr;
for(itr = result.begin(); itr != result.end(); itr++)
{
if(itr->movable)
{
break;
}
}
}
//|||||||||||||||||||||||||||||||||||||||||||||||
void GameState::moveCamera()
{
if(Framework::getSingletonPtr()->m_pKeyboard->isKeyDown(OIS::KC_LSHIFT))
m_pCamera->moveRelative(m_TranslateVector);
m_pCamera->moveRelative(m_TranslateVector / 10);
}
//|||||||||||||||||||||||||||||||||||||||||||||||
void GameState::getInput()
{
if(m_bSettingsMode == false)
{
if(Framework::getSingletonPtr()->m_pKeyboard->isKeyDown(OIS::KC_A))
m_TranslateVector.x = -m_MoveScale;
if(Framework::getSingletonPtr()->m_pKeyboard->isKeyDown(OIS::KC_D))
m_TranslateVector.x = m_MoveScale;
if(Framework::getSingletonPtr()->m_pKeyboard->isKeyDown(OIS::KC_W))
m_TranslateVector.z = -m_MoveScale;
if(Framework::getSingletonPtr()->m_pKeyboard->isKeyDown(OIS::KC_S))
m_TranslateVector.z = m_MoveScale;
}
}
//|||||||||||||||||||||||||||||||||||||||||||||||
void GameState::update(double timeSinceLastFrame)
{
m_FrameEvent.timeSinceLastFrame = timeSinceLastFrame;
//Framework::getSingletonPtr()->m_pTrayMgr->frameRenderingQueued(m_FrameEvent);
if(m_bQuit == true)
{
popAppState();
return;
}
m_MoveScale = m_MoveSpeed * timeSinceLastFrame;
m_RotScale = m_RotateSpeed * timeSinceLastFrame;
m_TranslateVector = Vector3::ZERO;
getInput();
moveCamera();
}
//|||||||||||||||||||||||||||||||||||||||||||||||
void GameState::buildGUI()
{
}
//|||||||||||||||||||||||||||||||||||||||||||||||
void getTerrainImage(bool flipX, bool flipY, Ogre::Image& img)
{
img.load("terrain.png", Ogre::ResourceGroupManager::DEFAULT_RESOURCE_GROUP_NAME);
if (flipX)
img.flipAroundY();
if (flipY)
img.flipAroundX();
}
void GameState::defineTerrain(long x, long y)
{
Ogre::String filename = mTerrainGroup->generateFilename(x, y);
if (Ogre::ResourceGroupManager::getSingleton().resourceExists(mTerrainGroup->getResourceGroup(), filename))
{
mTerrainGroup->defineTerrain(x, y);
}
else
{
Ogre::Image img;
getTerrainImage(x % 2 != 0, y % 2 != 0, img);
mTerrainGroup->defineTerrain(x, y, &img);
mTerrainsImported = true;
}
}
void GameState::configureTerrainDefaults(Ogre::Light* light)
{
// Configure global
mTerrainGlobals->setMaxPixelError(8);
// testing composite map
mTerrainGlobals->setCompositeMapDistance(3000);
// Important to set these so that the terrain knows what to use for derived (non-realtime) data
mTerrainGlobals->setLightMapDirection(light->getDerivedDirection());
mTerrainGlobals->setCompositeMapAmbient(m_pSceneMgr->getAmbientLight());
mTerrainGlobals->setCompositeMapDiffuse(light->getDiffuseColour());
// Configure default import settings for if we use imported image
Ogre::Terrain::ImportData& defaultimp = mTerrainGroup->getDefaultImportSettings();
defaultimp.terrainSize = 513;
defaultimp.worldSize = 12000.0f;
defaultimp.inputScale = 600;
defaultimp.minBatchSize = 33;
defaultimp.maxBatchSize = 65;
// textures
defaultimp.layerList.resize(3);
defaultimp.layerList[0].worldSize = 100;
defaultimp.layerList[0].textureNames.push_back("dirt_grayrocky_diffusespecular.dds");
defaultimp.layerList[0].textureNames.push_back("dirt_grayrocky_normalheight.dds");
defaultimp.layerList[1].worldSize = 30;
defaultimp.layerList[1].textureNames.push_back("grass_green-01_diffusespecular.dds");
defaultimp.layerList[1].textureNames.push_back("grass_green-01_normalheight.dds");
defaultimp.layerList[2].worldSize = 200;
defaultimp.layerList[2].textureNames.push_back("growth_weirdfungus-03_diffusespecular.dds");
defaultimp.layerList[2].textureNames.push_back("growth_weirdfungus-03_normalheight.dds");
}
void GameState::initBlendMaps(Ogre::Terrain* terrain)
{
Ogre::TerrainLayerBlendMap* blendMap0 = terrain->getLayerBlendMap(1);
Ogre::TerrainLayerBlendMap* blendMap1 = terrain->getLayerBlendMap(2);
Ogre::Real minHeight0 = 70;
Ogre::Real fadeDist0 = 40;
Ogre::Real minHeight1 = 70;
Ogre::Real fadeDist1 = 15;
float* pBlend0 = blendMap0->getBlendPointer();
float* pBlend1 = blendMap1->getBlendPointer();
for (Ogre::uint16 y = 0; y < terrain->getLayerBlendMapSize(); ++y)
{
for (Ogre::uint16 x = 0; x < terrain->getLayerBlendMapSize(); ++x)
{
Ogre::Real tx, ty;
blendMap0->convertImageToTerrainSpace(x, y, &tx, &ty);
Ogre::Real height = terrain->getHeightAtTerrainPosition(tx, ty);
Ogre::Real val = (height - minHeight0) / fadeDist0;
val = Ogre::Math::Clamp(val, (Ogre::Real)0, (Ogre::Real)1);
*pBlend0++ = val;
val = (height - minHeight1) / fadeDist1;
val = Ogre::Math::Clamp(val, (Ogre::Real)0, (Ogre::Real)1);
*pBlend1++ = val;
}
}
blendMap0->dirty();
blendMap1->dirty();
blendMap0->update();
blendMap1->update();
}
bool GameState::keyPressed(const OIS::KeyEvent &keyEventRef)
{
CEGUI::GUIContext& context = CEGUI::System::getSingleton().getDefaultGUIContext();
context.injectKeyDown((CEGUI::Key::Scan)keyEventRef.key);
context.injectChar((CEGUI::Key::Scan)keyEventRef.text);
return true;
}
bool GameState::keyReleased(const OIS::KeyEvent &keyEventRef)
{
CEGUI::System::getSingleton().getDefaultGUIContext().injectKeyUp((CEGUI::Key::Scan)keyEventRef.key);
return true;
}
bool GameState::mouseMoved(const OIS::MouseEvent &evt)
{
CEGUI::GUIContext &cont = CEGUI::System::getSingleton().getDefaultGUIContext();
cont.injectMouseMove(evt.state.X.rel, evt.state.Y.rel);
// Scroll wheel.
if (evt.state.Z.rel)
cont.injectMouseWheelChange(evt.state.Z.rel / 120.0f);
return true;
}
bool GameState::mousePressed(const OIS::MouseEvent &evt, OIS::MouseButtonID id)
{
CEGUI::System::getSingleton().getDefaultGUIContext().injectMouseButtonDown(convertButton(id));
return true;
}
bool GameState::mouseReleased(const OIS::MouseEvent &evt, OIS::MouseButtonID id)
{
CEGUI::System::getSingleton().getDefaultGUIContext().injectMouseButtonUp(convertButton(id));
return true;
}
bool GameState::frameRenderingQueued(const Ogre::FrameEvent& evt)
{
CEGUI::System::getSingleton().injectTimePulse(evt.timeSinceLastFrame);
return false;
}
As you can see i have bootstrapped CEGUI in my Framework::initOgre function.
Than, in GameState::Enter function i've added a test window and a test button.
BTW: I actually beleive that CEGUI works well and many times tested. My question is where i did something wrong.
I actually used CEGUI and Ogre two years or more ago, and it worked perfectly. I just want to make this combination(with this versions) to work
Re: Need help integrating CEGUI with Ogre3d
What happens if you do nothing create a Terrain in createScene? Try to just add an OgreMesh like I said before
CrazyEddie: "I don't like GUIs"
Re: Need help integrating CEGUI with Ogre3d
When i remove code creating a CEGUI window i see my scene.
As i said before it seems like CEGUI overlaps my scene
As i said before it seems like CEGUI overlaps my scene
Last edited by cr3a70r on Sun Jul 05, 2015 10:31, edited 1 time in total.
Who is online
Users browsing this forum: No registered users and 4 guests