Page 1 of 1

[Solved] help with InvalidRequestException

Posted: Mon Mar 06, 2017 12:56
by samuelnaga
hello, I'm spanish so sorry for my english. :)
it's the first time I use cegui and I'm having problems creating a scheme from a file. The program throws an InvalidRequestException, I don't know why..
heres the log error:

Code: Select all

CEGUI::InvalidRequestException in function 'void __thiscall CEGUI::IrrlichtResourceProvider::loadRawDataContainer(const class CEGUI::String &,class CEGUI::RawDataContainer &,const class CEGUI::String &)' (C:\Users\sam\Desktop\cegui-0.8.7\cegui\src\RendererModules\Irrlicht\ResourceProvider.cpp:65) : Filename supplied for loading must be valid [TaharezLook.looknfeel]


Another problem I've noticed in this error is that he's looking for resourceProvider.cpp in the folder where i compiled cegui and not the one which is on my visualstudio project.

Here is my code where i create a resource group directory for images, schemes, fonts... and how do I load the scheme were the programme crashes

Code: Select all

CEGUI::DefaultResourceProvider* rp = static_cast<CEGUI::DefaultResourceProvider*>(CEGUI::System::getSingleton().getResourceProvider());
      rp->setResourceGroupDirectory("imagesets", "libraries/cegui/GUI/imagesets/");
      rp->setResourceGroupDirectory("schemes", "libraries/cegui/GUI/schemes/");
      rp->setResourceGroupDirectory("fonts", "libraries/cegui/GUI/fonts/");
      rp->setResourceGroupDirectory("layouts","libraries/cegui/GUI/layouts/");
      rp->setResourceGroupDirectory("looknfeel", "libraries/cegui/GUI/looknfeel/");
      rp->setResourceGroupDirectory("lua_scripts", "libraries/cegui/GUI/lua_scripts/");

      CEGUI::ImageManager::setImagesetDefaultResourceGroup("imagesets");
      CEGUI::Scheme::setDefaultResourceGroup("schemes");
      CEGUI::Font::setDefaultResourceGroup("fonts");
      CEGUI::WidgetLookManager::setDefaultResourceGroup("looknfeels");
      CEGUI::WindowManager::setDefaultResourceGroup("layouts");
      CEGUI::ScriptModule::setDefaultResourceGroup("lua_scripts");


Code: Select all

CEGUI::SchemeManager::getSingleton().createFromFile("TaharezLook.scheme");
CEGUI::FontManager::getSingleton().createFromFile("DejaVuSans-10.font");
   m_context->setDefaultFont(fontFile);

Re: help with InvalidRequestException

Posted: Mon Mar 06, 2017 21:49
by Ident
We need more info: CEGUI version etc., see viewtopic.php?f=10&t=3351

Re: help with InvalidRequestException

Posted: Tue Mar 07, 2017 10:19
by samuelnaga
hi again,
I'm using cegui 0.8.7 with visual studio 2015 and irrlicht 1.8.4
OS: Windows 10 x64

here is my entire CEGUI log:

Code: Select all

06/03/2017 13:35:05 (Std)    CEGUI::Logger singleton created. (059D8838)
06/03/2017 13:35:05 (Std)    
06/03/2017 13:35:05 (Std)    ********************************************************************************
06/03/2017 13:35:05 (Std)    * Important:                                                                   *
06/03/2017 13:35:05 (Std)    *     To get support at the CEGUI forums, you must post _at least_ the section *
06/03/2017 13:35:05 (Std)    *     of this log file indicated below.  Failure to do this will result in no  *
06/03/2017 13:35:05 (Std)    *     support being given; please do not waste our time.                       *
06/03/2017 13:35:05 (Std)    ********************************************************************************
06/03/2017 13:35:05 (Std)    ********************************************************************************
06/03/2017 13:35:05 (Std)    * -------- START OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM       -------- *
06/03/2017 13:35:05 (Std)    ********************************************************************************
06/03/2017 13:35:05 (Std)    ---- Version: 0.8.7 (Build: Feb 27 2017 Debug Microsoft Windows MSVC++ 14.0 (2015) 32 bit) ----
06/03/2017 13:35:05 (Std)    ---- Renderer module is: CEGUI::IrrlichtRenderer - Official Irrlicht based 2nd generation renderer module.  RenderTarget support is enabled. ----
06/03/2017 13:35:05 (Std)    ---- XML Parser module is: CEGUI::ExpatParser - Official expat based parser module for CEGUI ----
06/03/2017 13:35:05 (Std)    ---- Image Codec module is: IrrlichtImageCodec - Integrated ImageCodec using the Irrlicht engine. ----
06/03/2017 13:35:05 (Std)    ---- Scripting module is: None ----
06/03/2017 13:35:05 (Std)    ********************************************************************************
06/03/2017 13:35:05 (Std)    * -------- END OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM         -------- *
06/03/2017 13:35:05 (Std)    ********************************************************************************
06/03/2017 13:35:05 (Std)    
06/03/2017 13:35:05 (Std)    ---- Begining CEGUI System initialisation ----
06/03/2017 13:35:05 (Std)    [CEGUI::ImageManager] Singleton created (048174F8)
06/03/2017 13:35:05 (Std)    [CEGUI::ImageManager] Registered Image type: BasicImage
06/03/2017 13:35:05 (Std)    CEGUI::FontManager singleton created. (059D9E50)
06/03/2017 13:35:05 (Std)    CEGUI::WindowFactoryManager singleton created
06/03/2017 13:35:05 (Std)    CEGUI::WindowManager singleton created (00C88230)
06/03/2017 13:35:05 (Std)    CEGUI::SchemeManager singleton created. (059DA750)
06/03/2017 13:35:05 (Std)    CEGUI::GlobalEventSet singleton created. (048165A0)
06/03/2017 13:35:05 (Std)    CEGUI::AnimationManager singleton created (047A0670)
06/03/2017 13:35:05 (Std)    CEGUI::WidgetLookManager singleton created. (00C7B5C0)
06/03/2017 13:35:05 (Std)    CEGUI::WindowRendererManager singleton created (00C7B000)
06/03/2017 13:35:05 (Std)    CEGUI::RenderEffectManager singleton created (04816480)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'DefaultWindow' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'DefaultWindow' windows added. (04872B78)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'DragContainer' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'DragContainer' windows added. (04873988)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'ScrolledContainer' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'ScrolledContainer' windows added. (04873028)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'ClippedContainer' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'ClippedContainer' windows added. (048730F0)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'CEGUI/PushButton' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'CEGUI/PushButton' windows added. (048731B8)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'CEGUI/RadioButton' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'CEGUI/RadioButton' windows added. (048734D8)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'CEGUI/Combobox' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'CEGUI/Combobox' windows added. (04873348)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'CEGUI/ComboDropList' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'CEGUI/ComboDropList' windows added. (04873A50)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'CEGUI/Editbox' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'CEGUI/Editbox' windows added. (04873730)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'CEGUI/FrameWindow' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'CEGUI/FrameWindow' windows added. (04873410)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'CEGUI/ItemEntry' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'CEGUI/ItemEntry' windows added. (048735A0)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'CEGUI/Listbox' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'CEGUI/Listbox' windows added. (04873668)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'CEGUI/ListHeader' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'CEGUI/ListHeader' windows added. (048737F8)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'CEGUI/ListHeaderSegment' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'CEGUI/ListHeaderSegment' windows added. (048738C0)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'CEGUI/Menubar' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'CEGUI/Menubar' windows added. (04874608)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'CEGUI/PopupMenu' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'CEGUI/PopupMenu' windows added. (048742E8)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'CEGUI/MenuItem' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'CEGUI/MenuItem' windows added. (04874478)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'CEGUI/MultiColumnList' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'CEGUI/MultiColumnList' windows added. (04874798)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'CEGUI/MultiLineEditbox' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'CEGUI/MultiLineEditbox' windows added. (048746D0)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'CEGUI/ProgressBar' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'CEGUI/ProgressBar' windows added. (04874540)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'CEGUI/ScrollablePane' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'CEGUI/ScrollablePane' windows added. (048743B0)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'CEGUI/Scrollbar' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'CEGUI/Scrollbar' windows added. (04874860)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'CEGUI/Slider' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'CEGUI/Slider' windows added. (059EF1E0)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'CEGUI/Spinner' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'CEGUI/Spinner' windows added. (059EFFF0)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'CEGUI/TabButton' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'CEGUI/TabButton' windows added. (059F0180)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'CEGUI/TabControl' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'CEGUI/TabControl' windows added. (059EFB40)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'CEGUI/Thumb' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'CEGUI/Thumb' windows added. (059EEF88)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'CEGUI/Titlebar' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'CEGUI/Titlebar' windows added. (059F03D8)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'CEGUI/ToggleButton' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'CEGUI/ToggleButton' windows added. (059EF050)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'CEGUI/Tooltip' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'CEGUI/Tooltip' windows added. (059EF118)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'CEGUI/ItemListbox' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'CEGUI/ItemListbox' windows added. (059EF9B0)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'CEGUI/GroupBox' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'CEGUI/GroupBox' windows added. (059EF8E8)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'CEGUI/Tree' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'CEGUI/Tree' windows added. (059EF5C8)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'LayoutCell' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'LayoutCell' windows added. (059EEDF8)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'HorizontalLayoutContainer' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'HorizontalLayoutContainer' windows added. (059EEEC0)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'VerticalLayoutContainer' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'VerticalLayoutContainer' windows added. (059F0568)
06/03/2017 13:35:05 (Std)    Created WindowFactory for 'GridLayoutContainer' windows.
06/03/2017 13:35:05 (Std)    WindowFactory for 'GridLayoutContainer' windows added. (059EF690)
06/03/2017 13:35:05 (Std)    CEGUI::System singleton created. (059D83E8)
06/03/2017 13:35:05 (Std)    ---- CEGUI System initialisation completed ----
06/03/2017 13:35:05 (Std)    
06/03/2017 13:35:05 (Std)    Started creation of Scheme from XML specification:
06/03/2017 13:35:05 (Std)    ---- CEGUI GUIScheme name: TaharezLook
06/03/2017 13:35:06 (Std)    [ImageManager] Started creation of Imageset from XML specification:
06/03/2017 13:35:06 (Std)    [ImageManager] ---- CEGUI Imageset name: TaharezLook
06/03/2017 13:35:06 (Std)    [ImageManager] ---- Source texture file: TaharezLook.png
06/03/2017 13:35:06 (Std)    [ImageManager] ---- Source texture resource group: (Default)
06/03/2017 13:35:06 (Std)    [IrrlichtRenderer] Created texture: TaharezLook
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ClientBrush' (059FDFC0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/GenericBrush' (059FE0D0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/WindowLeftEdge' (059FE2C0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/WindowRightEdge' (059FC438) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/WindowTopEdge' (059FC628) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/WindowBottomEdge' (059FC818) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/WindowTopLeft' (059FCA08) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/WindowTopRight' (059FCBF8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/WindowBottomLeft' (059FCDE8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/WindowBottomRight' (059FF5F8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonLeftNormal' (05A00710) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonMiddleNormal' (05A00820) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonRightNormal' (05A00930) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonLeftPushed' (05A00A40) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonMiddlePushed' (05A00B50) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonRightPushed' (05A0B7A8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonLeftHighlight' (05A0BD20) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonMiddleHighlight' (05A0C5E0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonRightHighlight' (05A0BE38) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/CheckboxNormal' (05A0BF50) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/CheckboxHover' (05A0C068) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/CheckboxMark' (05A0B8C0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/RadioButtonNormal' (05A0C180) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/RadioButtonHover' (05A0C4C8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/RadioButtonMark' (05A0C3B0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TitlebarLeft' (05A0C298) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TitlebarMiddle' (05A0B9D8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TitlebarRight' (05A0BAF0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/NewTitlebarLeft' (05A0BC08) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/NewTitlebarMiddle' (05A21DD8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/NewTitlebarRight' (05A21748) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/SysAreaMiddle' (05A21860) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/SysAreaRight' (05A207F8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/StaticLeft' (05A21A90) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/StaticRight' (05A21978) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/StaticTop' (05A22468) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/StaticBottom' (05A20C58) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/StaticTopLeft' (05A22008) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/StaticTopRight' (05A20D70) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/StaticBottomLeft' (05A20E88) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/StaticBottomRight' (05A205C8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/StaticBackdrop' (05A206E0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ProgressBarLeft' (05A21400) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ProgressBarMiddle' (05A21630) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ProgressBarRight' (05A21518) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ProgressBarDimSegment' (05A20910) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ProgressBarLitSegment' (05A20A28) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/EditBoxLeft' (05A21BA8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/EditBoxMiddle' (05A21EF0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/EditBoxRight' (05A20FA0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/EditBoxCaret' (05A210B8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/SpinnerUpNormal' (05A211D0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/SpinnerDownNormal' (05A20B40) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/SpinnerUpHover' (05A212E8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/SpinnerDownHover' (05A21CC0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TextSelectionBrush' (05A22120) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollTop' (05A22238) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollMiddle' (05A22350) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollBottom' (05A23EF8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollBarSegment' (05A23638) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollThumbNormal' (05A24240) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollThumbHover' (05A24358) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollUpNormal' (05A23A98) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollDownNormal' (05A24470) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollUpHover' (05A22C60) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollDownHover' (05A24128) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollBarSegment' (05A232F0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbNormal' (05A225D0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbTopNormal' (05A22918) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbMiddleNormal' (05A24010) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbBottomNormal' (05A226E8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbTopHover' (05A231D8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbMiddleHover' (05A22800) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbBottomHover' (05A23750) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbHover' (05A22A30) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollUpNormal' (05A23868) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollDownNormal' (05A22FA8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollUpHover' (05A23980) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollDownHover' (05A23DE0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/VertSliderBody' (05A23BB0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/VertSliderThumbNormal' (05A22B48) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/VertSliderThumbHover' (05A22D78) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollBarSegment' (05A23CC8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbNormal' (05A22E90) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbLeftNormal' (05A230C0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbMiddleNormal' (05A23408) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbRightNormal' (05A23520) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbHover' (05A2D398) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbLeftHover' (05A2CAD8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbMiddleHover' (05A2B840) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbRightHover' (05A2C678) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollLeftNormal' (05A2C790) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollRightNormal' (05A2CD08) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollLeftHover' (05A2C8A8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollRightHover' (05A2B958) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxLeft' (05A2C9C0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxRight' (05A2C218) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxTop' (05A2D4B0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxBottom' (05A2D5C8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxTopLeft' (05A2CF38) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxTopRight' (05A2CBF0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxBottomLeft' (05A2CE20) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxBottomRight' (05A2BB88) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxBackdrop' (05A2D050) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxSelectionBrush' (05A2D168) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxEditLeft' (05A2BA70) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxEditMiddle' (05A2B728) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListButtonNormal' (05A2BDB8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListButtonHover' (05A2D280) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListLeft' (05A2BCA0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListRight' (05A2BED0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListTop' (05A2BFE8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListBottom' (05A2C100) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListTopLeft' (05A2C448) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListTopRight' (05A2C330) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListBottomLeft' (05A2C560) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListBottomRight' (05A32000) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListBackdrop' (05A32AF0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxSelectionBrush' (05A329D8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxDividerLeft' (05A327A8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxDividerMiddle' (05A32C08) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxDividerRight' (05A32460) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarBackdropNormal' (05A31BA0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarBackdropHover' (05A328C0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarSplitterNormal' (05A31CB8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarSplitterHover' (05A32D20) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarSortUp' (05A32118) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarSortDown' (05A32230) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListLeft' (05A32348) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListRight' (05A32578) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListTop' (05A32E38) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListBottom' (05A32F50) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListTopLeft' (05A31EE8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListTopRight' (05A333B0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListBottomLeft' (05A31970) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListBottomRight' (05A32690) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListBackdrop' (05A31DD0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListSelectionBrush' (05A31740) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLeft' (05A33068) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressMiddle' (05A33180) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressRight' (05A33298) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressQuarter' (05A31A88) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressHalf' (05A334C8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight1' (05A335E0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight2' (05A31858) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight3' (05A34008) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight4' (05A34120) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight5' (05A34F58) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight6' (05A347B0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight7' (05A34350) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight8' (05A35188) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight9' (05A348C8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight10' (05A34238) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/CloseButtonNormal' (05A33CC0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/CloseButtonHover' (05A353B8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/CloseButtonPressed' (05A34468) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/NewCloseButtonNormal' (05A33BA8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/NewCloseButtonHover' (05A33A90) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/NewCloseButtonPressed' (05A33EF0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxLeft' (05A34580) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxRight' (05A34698) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxTop' (05A33DD8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxBottom' (05A349E0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxTopLeft' (05A34AF8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxTopRight' (05A354D0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxBottomLeft' (05A35070) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxBottomRight' (05A34C10) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxBackdrop' (05A34E40) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxSelectionBrush' (05A34D28) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MouseTarget' (05A352A0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MouseArrow' (05A355E8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MouseMoveCursor' (05A33748) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MouseNoSoCursor' (05A33860) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MouseEsWeCursor' (05A33978) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MouseNeSwCursor' (05A3A6D0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MouseNwSeCursor' (05A3AC48) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MouseTextBar' (05A3AD60) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabHorizontalFiller' (05A3AB30) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneUpperLeft' (05A3AE78) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneUpper' (05A3B738) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneUpperRight' (05A3B3F0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneLeft' (05A3A270) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneRight' (05A3B2D8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneLower' (05A3A900) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneLowerLeft' (05A3BB98) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneLowerRight' (05A3B968) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneMiddle' (05A3A4A0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonScrollLeftNormal' (05A39F28) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonScrollRightNormal' (05A3BA80) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonScrollLeftHover' (05A3A158) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonScrollRightHover' (05A3A040) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLeftNormal' (05A39CF8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonRightNormal' (05A39E10) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperNormal' (05A3B508) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerNormal' (05A3B620) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperLeftNormal' (05A3A388) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperLeft2Normal' (05A3AF90) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperRightNormal' (05A3B850) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerLeftNormal' (05A3AA18) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerRightNormal' (05A3A5B8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerRight2Normal' (05A3A7E8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonMiddleNormal' (05A3B0A8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLeftSelected' (05A3B1C0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonRightSelected' (05A42610) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperSelected' (05A42840) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerSelected' (05A43560) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperLeftSelected' (05A43BF0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperRightSelected' (05A423E0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerLeftSelected' (05A42A70) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerRightSelected' (05A42B88) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonMiddleSelected' (05A42958) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipTopLeft' (05A42CA0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipTopRight' (05A43100) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipBottomLeft' (05A43678) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipBottomRight' (05A43790) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipLeftEdge' (05A42DB8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipRightEdge' (05A438A8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipTopEdge' (05A42FE8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipBottomEdge' (05A43AD8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipMiddle' (05A42ED0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MenuTopLeft' (05A424F8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MenuTopRight' (05A43218) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MenuBottomLeft' (05A439C0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MenuBottomRight' (05A43D08) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MenuLeft' (05A421B0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MenuRight' (05A42728) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MenuTop' (05A43330) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MenuBottom' (05A41F80) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/MenuMiddle' (05A43448) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameTopLeft' (05A41E68) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameTopRight' (05A42098) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameBottomLeft' (05A422C8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameBottomRight' (05A47C00) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameLeft' (05A46CB0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameRight' (05A47340) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameTop' (05A46EE0) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameBottom' (05A478B8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuMiddle' (05A47AE8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuArrowRight' (05A47458) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuArrowLeft' (05A47228) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TreeListClosed' (05A47D18) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/TreeListOpened' (05A46DC8) of type: BasicImage
06/03/2017 13:35:06 (Std)    [ImageManager] Created image: 'TaharezLook/UpArrow' (05A477A0) of type: BasicImage
06/03/2017 13:35:06 (Error)   CEGUI::InvalidRequestException in function 'void __thiscall CEGUI::IrrlichtResourceProvider::loadRawDataContainer(const class CEGUI::String &,class CEGUI::RawDataContainer &,const class CEGUI::String &)' (C:\Users\Samuel\Desktop\cegui-0.8.7\cegui\src\RendererModules\Irrlicht\ResourceProvider.cpp:65) : Filename supplied for loading must be valid [TaharezLook.looknfeel]
06/03/2017 13:35:06 (Error)   ========== Start of Backtrace ==========
06/03/2017 13:35:06 (Error)   #0 public: bool __thiscall CEGUI::MCLGridRef::operator==(struct CEGUI::MCLGridRef const &)const  +0x149414 (C:\Users\Samuel\Desktop\Starship1414VS\Debug\CEGUIBase-0_d.dll)
06/03/2017 13:35:06 (Error)   #1 public: bool __thiscall CEGUI::MCLGridRef::operator==(struct CEGUI::MCLGridRef const &)const  +0x273c1 (C:\Users\Samuel\Desktop\Starship1414VS\Debug\CEGUIBase-0_d.dll)
06/03/2017 13:35:06 (Error)   #2 protected: void __thiscall CEGUI::IrrlichtGeometryBuffer::updateMatrix(void)const  +0x28452 (C:\Users\Samuel\Desktop\Starship1414VS\Debug\CEGUIIrrlichtRenderer-0_d.dll)
06/03/2017 13:35:06 (Error)   #3 public: bool __thiscall CEGUI::MCLGridRef::operator==(struct CEGUI::MCLGridRef const &)const  +0x23a92a (C:\Users\Samuel\Desktop\Starship1414VS\Debug\CEGUIBase-0_d.dll)
06/03/2017 13:35:06 (Error)   #4 public: bool __thiscall CEGUI::MCLGridRef::operator==(struct CEGUI::MCLGridRef const &)const  +0x3910c0 (C:\Users\Samuel\Desktop\Starship1414VS\Debug\CEGUIBase-0_d.dll)
06/03/2017 13:35:06 (Error)   #5 public: bool __thiscall CEGUI::MCLGridRef::operator==(struct CEGUI::MCLGridRef const &)const  +0x1b9014 (C:\Users\Samuel\Desktop\Starship1414VS\Debug\CEGUIBase-0_d.dll)
06/03/2017 13:35:06 (Error)   #6 public: bool __thiscall CEGUI::MCLGridRef::operator==(struct CEGUI::MCLGridRef const &)const  +0x1b840f (C:\Users\Samuel\Desktop\Starship1414VS\Debug\CEGUIBase-0_d.dll)
06/03/2017 13:35:06 (Error)   #7 public: bool __thiscall CEGUI::MCLGridRef::operator==(struct CEGUI::MCLGridRef const &)const  +0x1c893c (C:\Users\Samuel\Desktop\Starship1414VS\Debug\CEGUIBase-0_d.dll)
06/03/2017 13:35:06 (Error)   #8 public: bool __thiscall CEGUI::MCLGridRef::operator==(struct CEGUI::MCLGridRef const &)const  +0x10f293 (C:\Users\Samuel\Desktop\Starship1414VS\Debug\CEGUIBase-0_d.dll)
06/03/2017 13:35:07 (Error)   #9 public: bool __thiscall CEGUI::MCLGridRef::operator==(struct CEGUI::MCLGridRef const &)const  +0x10c262 (C:\Users\Samuel\Desktop\Starship1414VS\Debug\CEGUIBase-0_d.dll)
06/03/2017 13:35:07 (Error)   #10 GUI::loadScheme +0xda (C:\Users\Samuel\Desktop\Starship1414VS\Debug\Starship1414VS.exe)
06/03/2017 13:35:07 (Error)   #11 Juego::StarUP +0x5f1 (C:\Users\Samuel\Desktop\Starship1414VS\Debug\Starship1414VS.exe)
06/03/2017 13:35:07 (Error)   #12 Juego::render +0x63 (C:\Users\Samuel\Desktop\Starship1414VS\Debug\Starship1414VS.exe)
06/03/2017 13:35:07 (Error)   #13 ManejadorEstadoGeneral::Render +0x5f (C:\Users\Samuel\Desktop\Starship1414VS\Debug\Starship1414VS.exe)
06/03/2017 13:35:07 (Error)   #14 main +0x2a0 (C:\Users\Samuel\Desktop\Starship1414VS\Debug\Starship1414VS.exe)
06/03/2017 13:35:07 (Error)   #15 invoke_main +0x1e (C:\Users\Samuel\Desktop\Starship1414VS\Debug\Starship1414VS.exe)
06/03/2017 13:35:07 (Error)   #16 __scrt_common_main_seh +0x150 (C:\Users\Samuel\Desktop\Starship1414VS\Debug\Starship1414VS.exe)
06/03/2017 13:35:07 (Error)   #17 __scrt_common_main +0xd (C:\Users\Samuel\Desktop\Starship1414VS\Debug\Starship1414VS.exe)
06/03/2017 13:35:07 (Error)   #18 mainCRTStartup +0x8 (C:\Users\Samuel\Desktop\Starship1414VS\Debug\Starship1414VS.exe)
06/03/2017 13:35:07 (Error)   #19 BaseThreadInitThunk +0x24 (C:\WINDOWS\System32\KERNEL32.DLL)
06/03/2017 13:35:07 (Error)   #20 RtlSubscribeWnfStateChangeNotification +0x439 (C:\WINDOWS\SYSTEM32\ntdll.dll)
06/03/2017 13:35:07 (Error)   #21 RtlSubscribeWnfStateChangeNotification +0x404 (C:\WINDOWS\SYSTEM32\ntdll.dll)
06/03/2017 13:35:07 (Error)   ==========  End of Backtrace  ==========
06/03/2017 13:35:07 (Error)   WidgetLookManager::parseLookNFeelSpecification - loading of look and feel data from file 'TaharezLook.looknfeel' has failed.



I'm not sure if I have added the library correctly to my project. I've been following the CEGUI tutorial videos by MakingGamesWithBen but it's not really clear where he adds all the libs, dll, etc.

Thanks all, and let me know if need more information.

Re: help with InvalidRequestException

Posted: Tue Mar 07, 2017 10:35
by samuelnaga
I've just seen a post where someone says that it is necessary to define a preprocessor CEGUI_STATIC
should i do it on the project properties?
In fact, doing this shows me others errors, not exception. Don't know if it's better to get rid of dlls, but at least theres no exceptions..
I may have something wrong between static or dynamic libraries
I'm lost..
:roll:

Re: help with InvalidRequestException

Posted: Tue Mar 07, 2017 19:17
by Ident
Has nothing to do with static and dynamic linkage obviously as you already linked the project before you executed it.

It says a file is missing and from what i see in the log other files are loaded properly. Did you check if the mentioned file is there?

Re: help with InvalidRequestException

Posted: Wed Mar 08, 2017 10:57
by samuelnaga
Do you mean that TaharezLook.looknfeel is missing?
I've checked it and it exists. It may be looking in a wrong directory, is it possible?
About the error on the log, it shows a wrong directory (C:\Users\Samuel\Desktop\cegui-0.8.7\cegui\src\RendererModules\Irrlicht\ResourceProvider.cpp:65)
It shouldn't come here because this directory is already deleted, it was where i built the library and I'm not using it now.

Code: Select all

(Error)   CEGUI::InvalidRequestException in function 'void __thiscall CEGUI::IrrlichtResourceProvider::loadRawDataContainer(const class CEGUI::String &,class CEGUI::RawDataContainer &,const class CEGUI::String &)' (C:\Users\Samuel\Desktop\cegui-0.8.7\cegui\src\RendererModules\Irrlicht\ResourceProvider.cpp:65) : Filename supplied for loading must be valid [TaharezLook.looknfeel]

Re: help with InvalidRequestException

Posted: Wed Mar 08, 2017 19:12
by Ident
samuelnaga wrote:About the error on the log, it shows a wrong directory (C:\Users\Samuel\Desktop\cegui-0.8.7\cegui\src\RendererModules\Irrlicht\ResourceProvider.cpp:65)
It shouldn't come here because this directory is already deleted, it was where i built the library and I'm not using it now.

It shows the paths to the files from which you built it. Clearly it can't know where you moved the code afterwards or if you deleted it.


samuelnaga wrote:(Error) CEGUI::InvalidRequestException in function 'void __thiscall CEGUI::IrrlichtResourceProvider::loadRawDataContainer(const class CEGUI::String &,class CEGUI::RawDataContainer &,const class CEGUI::String &)' (C:\Users\Samuel\Desktop\cegui-0.8.7\cegui\src\RendererModules\Irrlicht\ResourceProvider.cpp:65) : Filename supplied for loading must be valid [TaharezLook.looknfeel]
[/code]


Use the debugger to find out what file path it requests. From here I cannot tell what is wrong but clearly something is wrong :D and the images were loaded correctly, so the question is why those work but the look n feel doesnt work. Best you can do is step through the program and find out what is wrong.

Re: help with InvalidRequestException

Posted: Thu Mar 09, 2017 13:14
by samuelnaga
thanks for the answers! :hammer:
but, how do I set the new paths to the files? I thought I had already linked everything to the projects as it is said in the video tutorial.
Imagesets and looknfeels are all on the same folder and are included on the same way..

Re: help with InvalidRequestException

Posted: Thu Mar 09, 2017 22:50
by Ident
samuelnaga wrote:thanks for the answers! :hammer:
but, how do I set the new paths to the files? I thought I had already linked everything to the projects as it is said in the video tutorial.
Imagesets and looknfeels are all on the same folder and are included on the same way..



This is how you did set the path:
rp->setResourceGroupDirectory("looknfeel", "libraries/cegui/GUI/looknfeel/");


Did you check that exact folder?

Re: help with InvalidRequestException

Posted: Sat Mar 11, 2017 19:48
by samuelnaga
Wow, don't know why but I've solved the problem I had with that exception, but a new one has appeared now... :cry:

this is the code

Code: Select all

   menu = new GUI(iDevice);
   menu->init("Librerias/CEGUI/GUI");
   menu->loadScheme("GameMenu.scheme");
   menu->setFont("DejaVuSans-10");
   menu->createWidget("TaharezLook/Button", glm::vec4(0.5f, 0.5f, 0.1f, 0.05f), glm::vec4(0.0f), "TestButton"); //HERE IS WHERE IT CRASHES


The crashed method:

Code: Select all

CEGUI::Window* GUI::createWidget(const std::string& type, const glm::vec4& destRectPerc, const glm::vec4& destRectPix, const std::string& name/* = ""*/) {
   CEGUI::Window* newWindow = CEGUI::WindowManager::getSingleton().createWindow(type, name);
   m_root->addChild(newWindow);
   setWidgetDestRect(newWindow, destRectPerc, destRectPix);
   return newWindow;
}


The log:

Code: Select all

11/03/2017 20:43:07 (Std)    ---- Begining CEGUI System initialisation ----
11/03/2017 20:43:07 (Std)    [CEGUI::ImageManager] Singleton created (012E44B0)
11/03/2017 20:43:07 (Std)    [CEGUI::ImageManager] Registered Image type: BasicImage
11/03/2017 20:43:07 (Std)    CEGUI::FontManager singleton created. (05610BD8)
11/03/2017 20:43:07 (Std)    CEGUI::WindowFactoryManager singleton created
11/03/2017 20:43:07 (Std)    CEGUI::WindowManager singleton created (012675F0)
11/03/2017 20:43:07 (Std)    CEGUI::SchemeManager singleton created. (056101E0)
11/03/2017 20:43:07 (Std)    CEGUI::GlobalEventSet singleton created. (01241250)
11/03/2017 20:43:07 (Std)    CEGUI::AnimationManager singleton created (012D7098)
11/03/2017 20:43:07 (Std)    CEGUI::WidgetLookManager singleton created. (0125A0F8)
11/03/2017 20:43:07 (Std)    CEGUI::WindowRendererManager singleton created (0125A1B8)
11/03/2017 20:43:07 (Std)    CEGUI::RenderEffectManager singleton created (01241448)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'DefaultWindow' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'DefaultWindow' windows added. (04802320)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'DragContainer' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'DragContainer' windows added. (04801DA8)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'ScrolledContainer' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'ScrolledContainer' windows added. (04802000)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'ClippedContainer' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'ClippedContainer' windows added. (05731288)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'CEGUI/PushButton' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'CEGUI/PushButton' windows added. (05731350)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'CEGUI/RadioButton' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'CEGUI/RadioButton' windows added. (057302E8)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'CEGUI/Combobox' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'CEGUI/Combobox' windows added. (05730B80)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'CEGUI/ComboDropList' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'CEGUI/ComboDropList' windows added. (0572FF00)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'CEGUI/Editbox' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'CEGUI/Editbox' windows added. (057303B0)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'CEGUI/FrameWindow' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'CEGUI/FrameWindow' windows added. (05730220)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'CEGUI/ItemEntry' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'CEGUI/ItemEntry' windows added. (05730478)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'CEGUI/Listbox' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'CEGUI/Listbox' windows added. (05730540)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'CEGUI/ListHeader' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'CEGUI/ListHeader' windows added. (057315A8)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'CEGUI/ListHeaderSegment' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'CEGUI/ListHeaderSegment' windows added. (057309F0)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'CEGUI/Menubar' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'CEGUI/Menubar' windows added. (05730608)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'CEGUI/PopupMenu' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'CEGUI/PopupMenu' windows added. (05731418)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'CEGUI/MenuItem' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'CEGUI/MenuItem' windows added. (05730D10)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'CEGUI/MultiColumnList' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'CEGUI/MultiColumnList' windows added. (05730DD8)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'CEGUI/MultiLineEditbox' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'CEGUI/MultiLineEditbox' windows added. (0572FD70)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'CEGUI/ProgressBar' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'CEGUI/ProgressBar' windows added. (0572FE38)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'CEGUI/ScrollablePane' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'CEGUI/ScrollablePane' windows added. (05730EA0)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'CEGUI/Scrollbar' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'CEGUI/Scrollbar' windows added. (057314E0)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'CEGUI/Slider' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'CEGUI/Slider' windows added. (0572FFC8)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'CEGUI/Spinner' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'CEGUI/Spinner' windows added. (05730090)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'CEGUI/TabButton' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'CEGUI/TabButton' windows added. (05730158)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'CEGUI/TabControl' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'CEGUI/TabControl' windows added. (057306D0)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'CEGUI/Thumb' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'CEGUI/Thumb' windows added. (05730AB8)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'CEGUI/Titlebar' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'CEGUI/Titlebar' windows added. (05730C48)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'CEGUI/ToggleButton' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'CEGUI/ToggleButton' windows added. (05730798)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'CEGUI/Tooltip' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'CEGUI/Tooltip' windows added. (05730860)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'CEGUI/ItemListbox' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'CEGUI/ItemListbox' windows added. (05730F68)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'CEGUI/GroupBox' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'CEGUI/GroupBox' windows added. (05730928)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'CEGUI/Tree' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'CEGUI/Tree' windows added. (05731030)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'LayoutCell' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'LayoutCell' windows added. (057310F8)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'HorizontalLayoutContainer' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'HorizontalLayoutContainer' windows added. (05731670)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'VerticalLayoutContainer' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'VerticalLayoutContainer' windows added. (05731738)
11/03/2017 20:43:07 (Std)    Created WindowFactory for 'GridLayoutContainer' windows.
11/03/2017 20:43:07 (Std)    WindowFactory for 'GridLayoutContainer' windows added. (057318C8)
11/03/2017 20:43:07 (Std)    CEGUI::System singleton created. (0571A698)
11/03/2017 20:43:07 (Std)    ---- CEGUI System initialisation completed ----
11/03/2017 20:43:07 (Std)    
11/03/2017 20:43:07 (Std)    Started creation of Scheme from XML specification:
11/03/2017 20:43:07 (Std)    ---- CEGUI GUIScheme name: GameMenu
11/03/2017 20:43:07 (Std)    [ImageManager] Started creation of Imageset from XML specification:
11/03/2017 20:43:07 (Std)    [ImageManager] ---- CEGUI Imageset name: GameMenuImages
11/03/2017 20:43:07 (Std)    [ImageManager] ---- Source texture file: GameMenu.png
11/03/2017 20:43:07 (Std)    [ImageManager] ---- Source texture resource group: (Default)
11/03/2017 20:43:07 (Std)    [IrrlichtRenderer] Created texture: GameMenuImages
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/CenterImageInside' (0573F570) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/CenterImageOutside1' (05741880) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/CenterImageOutside2' (05741A70) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/CenterImageInside2' (05741C60) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/CenterImageButtonBG' (05741E50) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/CenterImageButtonStartLab' (05742040) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/CenterImageButtonBOTH' (057464F8) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/CenterImageButtonStartButt' (05742230) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/MouseCursor' (05746948) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/Background' (05747A60) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/TopBar' (05747B70) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/BotBar' (05747C80) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/ButtonOptionsIcon' (05747D90) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/ButtonLoadIcon' (05747EA0) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/ButtonCharactersIcon' (05748070) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/ButtonQuitIcon' (05748300) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/ButtonSaveIcon' (05748410) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/BotBarLeftArrow' (05748BD8) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/BotBarRightArrow' (05749268) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/EditboxLeft' (05748890) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/EditboxLeftTop' (05748CF0) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/EditboxLeftBot' (05748E08) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/EditboxBot' (05748660) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/EditboxRightTop' (05748F20) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/EditboxRight' (057489A8) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/EditboxRightBot' (05748778) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/EditboxTop' (05748AC0) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/EditboxMid' (05749038) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/GenericBrush' (05749150) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/MouseTextBar' (05748548) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/IconChangeDestination' (05749380) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/LoginButtonBG' (0574B7F0) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/SupposedLook' (0574CCB8) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/DotOuter' (0574D348) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/DotInner' (0574D578) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/DotDot' (0574BF98) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/DotInnest' (0574BE80) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/PopupLinesOptions' (0574D460) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/PopupLinesSave' (0574BD68) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/PopupLinesLoad' (0574BA20) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/PopupLinesCharacter' (0574B6D8) of type: BasicImage
11/03/2017 20:43:07 (Std)    [ImageManager] Created image: 'GameMenuImages/PopupLinesQuit' (0574D000) of type: BasicImage
11/03/2017 20:43:07 (Std)    ===== Falagard 'root' element: look and feel parsing begins =====
11/03/2017 20:43:07 (Std)    ===== Look and feel parsing completed =====
11/03/2017 20:43:07 (Std)    No window renderer factories specified for module 'CEGUICoreWindowRendererSet' - adding all available factories...
11/03/2017 20:43:07 (Std)    Created WindowRendererFactory for 'Core/Button' WindowRenderers.
11/03/2017 20:43:07 (Std)    WindowRendererFactory 'Core/Button' added. (058891A8)
11/03/2017 20:43:07 (Std)    Created WindowRendererFactory for 'Core/Default' WindowRenderers.
11/03/2017 20:43:07 (Std)    WindowRendererFactory 'Core/Default' added. (05889270)
11/03/2017 20:43:07 (Std)    Created WindowRendererFactory for 'Core/Editbox' WindowRenderers.
11/03/2017 20:43:07 (Std)    WindowRendererFactory 'Core/Editbox' added. (05887A38)
11/03/2017 20:43:07 (Std)    Created WindowRendererFactory for 'Core/FrameWindow' WindowRenderers.
11/03/2017 20:43:07 (Std)    WindowRendererFactory 'Core/FrameWindow' added. (05888140)
11/03/2017 20:43:07 (Std)    Created WindowRendererFactory for 'Core/ItemEntry' WindowRenderers.
11/03/2017 20:43:07 (Std)    WindowRendererFactory 'Core/ItemEntry' added. (05887FB0)
11/03/2017 20:43:07 (Std)    Created WindowRendererFactory for 'Core/ListHeader' WindowRenderers.
11/03/2017 20:43:07 (Std)    WindowRendererFactory 'Core/ListHeader' added. (05888398)
11/03/2017 20:43:07 (Std)    Created WindowRendererFactory for 'Core/ListHeaderSegment' WindowRenderers.
11/03/2017 20:43:07 (Std)    WindowRendererFactory 'Core/ListHeaderSegment' added. (05887EE8)
11/03/2017 20:43:07 (Std)    Created WindowRendererFactory for 'Core/Listbox' WindowRenderers.
11/03/2017 20:43:07 (Std)    WindowRendererFactory 'Core/Listbox' added. (05888208)
11/03/2017 20:43:07 (Std)    Created WindowRendererFactory for 'Core/Menubar' WindowRenderers.
11/03/2017 20:43:07 (Std)    WindowRendererFactory 'Core/Menubar' added. (05888848)
11/03/2017 20:43:07 (Std)    Created WindowRendererFactory for 'Core/MenuItem' WindowRenderers.
11/03/2017 20:43:07 (Std)    WindowRendererFactory 'Core/MenuItem' added. (058889D8)
11/03/2017 20:43:07 (Std)    Created WindowRendererFactory for 'Core/MultiColumnList' WindowRenderers.
11/03/2017 20:43:07 (Std)    WindowRendererFactory 'Core/MultiColumnList' added. (05889018)
11/03/2017 20:43:07 (Std)    Created WindowRendererFactory for 'Core/MultiLineEditbox' WindowRenderers.
11/03/2017 20:43:07 (Std)    WindowRendererFactory 'Core/MultiLineEditbox' added. (05888B68)
11/03/2017 20:43:07 (Std)    Created WindowRendererFactory for 'Core/PopupMenu' WindowRenderers.
11/03/2017 20:43:07 (Std)    WindowRendererFactory 'Core/PopupMenu' added. (05887B00)
11/03/2017 20:43:07 (Std)    Created WindowRendererFactory for 'Core/ProgressBar' WindowRenderers.
11/03/2017 20:43:07 (Std)    WindowRendererFactory 'Core/ProgressBar' added. (058890E0)
11/03/2017 20:43:07 (Std)    Created WindowRendererFactory for 'Core/ScrollablePane' WindowRenderers.
11/03/2017 20:43:07 (Std)    WindowRendererFactory 'Core/ScrollablePane' added. (05888DC0)
11/03/2017 20:43:07 (Std)    Created WindowRendererFactory for 'Core/Scrollbar' WindowRenderers.
11/03/2017 20:43:07 (Std)    WindowRendererFactory 'Core/Scrollbar' added. (058882D0)
11/03/2017 20:43:07 (Std)    Created WindowRendererFactory for 'Core/Slider' WindowRenderers.
11/03/2017 20:43:07 (Std)    WindowRendererFactory 'Core/Slider' added. (05887E20)
11/03/2017 20:43:07 (Std)    Created WindowRendererFactory for 'Core/Static' WindowRenderers.
11/03/2017 20:43:07 (Std)    WindowRendererFactory 'Core/Static' added. (05888460)
11/03/2017 20:43:07 (Std)    Created WindowRendererFactory for 'Core/StaticImage' WindowRenderers.
11/03/2017 20:43:07 (Std)    WindowRendererFactory 'Core/StaticImage' added. (05888078)
11/03/2017 20:43:07 (Std)    Created WindowRendererFactory for 'Core/StaticText' WindowRenderers.
11/03/2017 20:43:07 (Std)    WindowRendererFactory 'Core/StaticText' added. (05888AA0)
11/03/2017 20:43:07 (Std)    Created WindowRendererFactory for 'Core/TabButton' WindowRenderers.
11/03/2017 20:43:07 (Std)    WindowRendererFactory 'Core/TabButton' added. (05888C30)
11/03/2017 20:43:07 (Std)    Created WindowRendererFactory for 'Core/TabControl' WindowRenderers.
11/03/2017 20:43:07 (Std)    WindowRendererFactory 'Core/TabControl' added. (05888CF8)
11/03/2017 20:43:07 (Std)    Created WindowRendererFactory for 'Core/Titlebar' WindowRenderers.
11/03/2017 20:43:07 (Std)    WindowRendererFactory 'Core/Titlebar' added. (05887BC8)
11/03/2017 20:43:07 (Std)    Created WindowRendererFactory for 'Core/ToggleButton' WindowRenderers.
11/03/2017 20:43:07 (Std)    WindowRendererFactory 'Core/ToggleButton' added. (05888E88)
11/03/2017 20:43:07 (Std)    Created WindowRendererFactory for 'Core/Tooltip' WindowRenderers.
11/03/2017 20:43:07 (Std)    WindowRendererFactory 'Core/Tooltip' added. (05887C90)
11/03/2017 20:43:07 (Std)    Created WindowRendererFactory for 'Core/ItemListbox' WindowRenderers.
11/03/2017 20:43:07 (Std)    WindowRendererFactory 'Core/ItemListbox' added. (05887D58)
11/03/2017 20:43:07 (Std)    Created WindowRendererFactory for 'Core/Tree' WindowRenderers.
11/03/2017 20:43:07 (Std)    WindowRendererFactory 'Core/Tree' added. (05888F50)
11/03/2017 20:43:07 (Std)    Creating falagard mapping for type 'GameMenu/Editbox' using base type 'CEGUI/Editbox', window renderer 'Core/Editbox' Look'N'Feel 'GameMenu/Editbox' and RenderEffect ''. (010FCA9C)
11/03/2017 20:43:07 (Error)   CEGUI::UnknownObjectException in function 'class CEGUI::WindowFactory *__thiscall CEGUI::WindowFactoryManager::getFactory(const class CEGUI::String &) const' (C:\Users\Samuel\Desktop\cegui-0.8.7\cegui\src\WindowFactoryManager.cpp:186) : A WindowFactory object, an alias, or mapping for 'TaharezLook/Button' Window objects is not registered with the system.

Have you forgotten to load a scheme using CEGUI::SchemeManager::createFromFile(..)?
11/03/2017 20:43:07 (Error)   ========== Start of Backtrace ==========
11/03/2017 20:43:07 (Error)   #0 public: bool __thiscall CEGUI::MCLGridRef::operator==(struct CEGUI::MCLGridRef const &)const  +0x149414 (C:\Users\Samuel\Desktop\Starship1414VS\Debug\CEGUIBase-0_d.dll)
11/03/2017 20:43:07 (Error)   #1 public: bool __thiscall CEGUI::MCLGridRef::operator==(struct CEGUI::MCLGridRef const &)const  +0x28e41 (C:\Users\Samuel\Desktop\Starship1414VS\Debug\CEGUIBase-0_d.dll)
11/03/2017 20:43:07 (Error)   #2 public: bool __thiscall CEGUI::MCLGridRef::operator==(struct CEGUI::MCLGridRef const &)const  +0x214828 (C:\Users\Samuel\Desktop\Starship1414VS\Debug\CEGUIBase-0_d.dll)
11/03/2017 20:43:07 (Error)   #3 public: bool __thiscall CEGUI::MCLGridRef::operator==(struct CEGUI::MCLGridRef const &)const  +0x228f71 (C:\Users\Samuel\Desktop\Starship1414VS\Debug\CEGUIBase-0_d.dll)
11/03/2017 20:43:07 (Error)   #4 GUI::createWidget +0xa6 (C:\Users\Samuel\Desktop\Starship1414VS\Debug\Starship1414VS.exe)
11/03/2017 20:43:07 (Error)   #5 Juego::StarUP +0x708 (C:\Users\Samuel\Desktop\Starship1414VS\Debug\Starship1414VS.exe)
11/03/2017 20:43:07 (Error)   #6 Juego::render +0x63 (C:\Users\Samuel\Desktop\Starship1414VS\Debug\Starship1414VS.exe)
11/03/2017 20:43:07 (Error)   #7 ManejadorEstadoGeneral::Render +0x5f (C:\Users\Samuel\Desktop\Starship1414VS\Debug\Starship1414VS.exe)
11/03/2017 20:43:07 (Error)   #8 main +0x377 (C:\Users\Samuel\Desktop\Starship1414VS\Debug\Starship1414VS.exe)
11/03/2017 20:43:07 (Error)   #9 invoke_main +0x1e (C:\Users\Samuel\Desktop\Starship1414VS\Debug\Starship1414VS.exe)
11/03/2017 20:43:07 (Error)   #10 __scrt_common_main_seh +0x150 (C:\Users\Samuel\Desktop\Starship1414VS\Debug\Starship1414VS.exe)
11/03/2017 20:43:07 (Error)   #11 __scrt_common_main +0xd (C:\Users\Samuel\Desktop\Starship1414VS\Debug\Starship1414VS.exe)
11/03/2017 20:43:07 (Error)   #12 mainCRTStartup +0x8 (C:\Users\Samuel\Desktop\Starship1414VS\Debug\Starship1414VS.exe)
11/03/2017 20:43:07 (Error)   #13 BaseThreadInitThunk +0x24 (C:\WINDOWS\System32\KERNEL32.DLL)
11/03/2017 20:43:07 (Error)   #14 RtlSubscribeWnfStateChangeNotification +0x439 (C:\WINDOWS\SYSTEM32\ntdll.dll)
11/03/2017 20:43:07 (Error)   #15 RtlSubscribeWnfStateChangeNotification +0x404 (C:\WINDOWS\SYSTEM32\ntdll.dll)
11/03/2017 20:43:07 (Error)   ==========  End of Backtrace  ==========


Re: help with InvalidRequestException

Posted: Sat Mar 11, 2017 23:34
by Ident
It literally says there what is going wrong.

Also I would like to know how the previous problem was resolved. I am pretty sure you just referenced your files wrongly :pint:

Re: help with InvalidRequestException

Posted: Sun Mar 12, 2017 16:34
by samuelnaga
I wrote again the resource and it run..

Code: Select all

rp->setResourceGroupDirectory("looknfeels", resourceDirectory + "/looknfeel/");

I think the problem was I had written "looknfeel" instead of "looknfeels" on the 1st parameter.

The second error I had, it's solved too, another syntax error...
THANKS :D

Re: [Solved] help with InvalidRequestException

Posted: Sun Mar 12, 2017 17:12
by Ident
No problem