Migration to MyGUI 3.2 from 3.0

Altren

02-12-2010 19:12:43

We decided to move Message widget from MyGUI core, so those who use Message widgets should do next steps to make it working as it previously was:
1. Copy MessageBox resources from [MyGUI_trunk]/Media/Common/MessageBox and add path to them in your resources.cfg or something like that.
2. After MyGUI initialisation or later load MessageBox resources:
MyGUI::ResourceManager::getInstance().load("MessageBoxResources.xml");
3. Add include in files, where MyGUI::Message used:
#include "MessageBox/MessageBox.h"MessageBox.h can be found in [MyGUI_sources]/Common folder.


Next widgets was renamed (this won't break any code or layouts, because we keep backward capability for these widgets):
StaticImage -> ImageBox
StaticText -> TextBox
List -> ListBox
Tab -> TabControl
Edit -> EditBox
Progress -> ProgressBar
MultiList -> MiltiListBox
HScroll, VScroll -> ScrollBar

ListCtrl and ListBox will be removed (they wasn't used much anyway), ItemBox should be used instead.

nevarim

24-12-2010 13:24:13

new mygui is ogre 1.8 compatible?

Altren

24-12-2010 13:41:11

Yes.

nevarim

24-12-2010 13:42:18

good i can upgrade :D

trilader

17-02-2011 18:57:18

I have encoutered a problem while migrating my code from 3.0 to 3.2. I updated my code as suggested and now all my layouts are invisible. MessageBoxes and the coursor work though, so it can't be not finding the images (afaik) and my test layout gets loaded as you can see in the log. Below is my MyGui.log, my Ogre.log and my MyGui init code.

MyGui.log:19:43:45 | Core | Info | * Initialise: RenderManager | F:\MyGUI_3.2.0_RC1\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreRenderManager.cpp | 35
19:43:45 | Core | Info | RenderManager successfully initialized | F:\MyGUI_3.2.0_RC1\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreRenderManager.cpp | 63
19:43:45 | Core | Info | * Initialise: DataManager | F:\MyGUI_3.2.0_RC1\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreDataManager.cpp | 26
19:43:45 | Core | Info | DataManager successfully initialized | F:\MyGUI_3.2.0_RC1\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreDataManager.cpp | 30
19:43:45 | Core | Info | * Initialise: Gui | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_Gui.cpp | 75
19:43:45 | Core | Info | * MyGUI version 3.2.0 | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_Gui.cpp | 87
19:43:45 | Core | Info | * Initialise: ResourceManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 48
19:43:45 | Core | Info | ResourceManager successfully initialized | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 56
19:43:45 | Core | Info | * Initialise: LayerManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LayerManager.cpp | 49
19:43:45 | Core | Info | LayerManager successfully initialized | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LayerManager.cpp | 57
19:43:45 | Core | Info | * Initialise: WidgetManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_WidgetManager.cpp | 67
19:43:45 | Core | Info | WidgetManager successfully initialized | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_WidgetManager.cpp | 98
19:43:45 | Core | Info | * Initialise: InputManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_InputManager.cpp | 58
19:43:45 | Core | Info | InputManager successfully initialized | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_InputManager.cpp | 76
19:43:45 | Core | Info | * Initialise: SubWidgetManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SubWidgetManager.cpp | 49
19:43:45 | Core | Info | SubWidgetManager successfully initialized | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SubWidgetManager.cpp | 69
19:43:45 | Core | Info | * Initialise: SkinManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 53
19:43:45 | Core | Info | SkinManager successfully initialized | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 61
19:43:45 | Core | Info | * Initialise: FontManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_FontManager.cpp | 48
19:43:45 | Core | Info | FontManager successfully initialized | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_FontManager.cpp | 57
19:43:45 | Core | Info | * Initialise: ControllerManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ControllerManager.cpp | 46
19:43:45 | Core | Info | ControllerManager successfully initialized | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ControllerManager.cpp | 56
19:43:45 | Core | Info | * Initialise: PointerManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_PointerManager.cpp | 60
19:43:45 | Core | Info | PointerManager successfully initialized | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_PointerManager.cpp | 78
19:43:45 | Core | Info | * Initialise: ClipboardManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ClipboardManager.cpp | 87
19:43:45 | Core | Info | ClipboardManager successfully initialized | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ClipboardManager.cpp | 101
19:43:45 | Core | Info | * Initialise: LayoutManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LayoutManager.cpp | 45
19:43:45 | Core | Info | LayoutManager successfully initialized | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LayoutManager.cpp | 50
19:43:45 | Core | Info | * Initialise: DynLibManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_DynLibManager.cpp | 41
19:43:45 | Core | Info | DynLibManager successfully initialized | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_DynLibManager.cpp | 45
19:43:45 | Core | Info | * Initialise: PluginManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_PluginManager.cpp | 45
19:43:45 | Core | Info | PluginManager successfully initialized | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_PluginManager.cpp | 49
19:43:45 | Core | Info | * Initialise: LanguageManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LanguageManager.cpp | 45
19:43:45 | Core | Info | LanguageManager successfully initialized | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LanguageManager.cpp | 49
19:43:45 | Core | Info | * Initialise: FactoryManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_FactoryManager.cpp | 40
19:43:45 | Core | Info | FactoryManager successfully initialized | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_FactoryManager.cpp | 42
19:43:45 | Core | Info | * Initialise: ToolTipManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ToolTipManager.cpp | 48
19:43:45 | Core | Info | ToolTipManager successfully initialized | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ToolTipManager.cpp | 60
19:43:45 | Core | Info | Load ini file 'MyGUI_Fonts.xml' | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
19:43:45 | Core | Info | ResourceTrueTypeFont 'DejaVuSansFont.17' using texture size 512 x 256 | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceTrueTypeFont.cpp | 206
19:43:45 | Core | Info | ResourceTrueTypeFont 'DejaVuSansFont.17' using real height 17 pixels | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceTrueTypeFont.cpp | 207
19:43:45 | Core | Info | Load ini file 'MyGUI_Images.xml' | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
19:43:45 | Core | Info | Load ini file 'MyGUI_CommonSkins.xml' | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
19:43:45 | Core | Info | Load ini file 'MyGUI_BlackOrangeTheme.xml' | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
19:43:45 | Core | Info | Load ini file 'MyGUI_BlackOrangeImages.xml' | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
19:43:45 | Core | Info | Load ini file 'MyGUI_BlackOrangeSkins.xml' | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
19:43:45 | Core | Info | Load ini file 'MyGUI_BlackOrangeTemplates.xml' | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
19:43:45 | Core | Info | Load ini file 'MyGUI_Pointers.xml' | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
19:43:45 | Core | Info | Load ini file 'MyGUI_Layers.xml' | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
19:43:45 | Core | Info | Load ini file 'MyGUI_Settings.xml' | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
19:43:45 | Core | Info | Gui successfully initialized | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_Gui.cpp | 136
19:43:45 | Core | Info | Load ini file 'MessageBoxLanguage.xml' | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
19:43:45 | Core | Info | Load ini file 'MessageBoxIcons.xml' | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
19:43:45 | Core | Warning | Widget property 'MoveToClick' not found [Test.layout] | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_Widget.cpp | 1178
19:43:51 | Core | Info | * Shutdown: Gui | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_Gui.cpp | 150
19:43:51 | Core | Info | * Shutdown: PointerManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_PointerManager.cpp | 85
19:43:51 | Core | Info | PointerManager successfully shutdown | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_PointerManager.cpp | 101
19:43:51 | Core | Info | * Shutdown: InputManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_InputManager.cpp | 83
19:43:51 | Core | Info | InputManager successfully shutdown | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_InputManager.cpp | 88
19:43:51 | Core | Info | * Shutdown: SkinManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 68
19:43:51 | Core | Info | SkinManager successfully shutdown | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 73
19:43:51 | Core | Info | * Shutdown: SubWidgetManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SubWidgetManager.cpp | 76
19:43:51 | Core | Info | SubWidgetManager successfully shutdown | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SubWidgetManager.cpp | 96
19:43:51 | Core | Info | * Shutdown: LayerManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LayerManager.cpp | 64
19:43:51 | Core | Info | destroy layer 'Wallpaper' | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LayerManager.cpp | 207
19:43:51 | Core | Info | destroy layer 'Back' | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LayerManager.cpp | 207
19:43:51 | Core | Info | destroy layer 'Overlapped' | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LayerManager.cpp | 207
19:43:51 | Core | Info | destroy layer 'Middle' | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LayerManager.cpp | 207
19:43:51 | Core | Info | destroy layer 'Modal' | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LayerManager.cpp | 207
19:43:51 | Core | Info | destroy layer 'Main' | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LayerManager.cpp | 207
19:43:51 | Core | Info | destroy layer 'Popup' | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LayerManager.cpp | 207
19:43:51 | Core | Info | destroy layer 'FadeMiddle' | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LayerManager.cpp | 207
19:43:51 | Core | Info | destroy layer 'Info' | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LayerManager.cpp | 207
19:43:51 | Core | Info | destroy layer 'ToolTip' | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LayerManager.cpp | 207
19:43:51 | Core | Info | destroy layer 'DragAndDrop' | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LayerManager.cpp | 207
19:43:51 | Core | Info | destroy layer 'FadeBusy' | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LayerManager.cpp | 207
19:43:51 | Core | Info | destroy layer 'Pointer' | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LayerManager.cpp | 207
19:43:51 | Core | Info | destroy layer 'Fade' | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LayerManager.cpp | 207
19:43:51 | Core | Info | destroy layer 'Statistic' | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LayerManager.cpp | 207
19:43:51 | Core | Info | LayerManager successfully shutdown | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LayerManager.cpp | 75
19:43:51 | Core | Info | * Shutdown: FontManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_FontManager.cpp | 64
19:43:51 | Core | Info | FontManager successfully shutdown | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_FontManager.cpp | 71
19:43:51 | Core | Info | * Shutdown: ControllerManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ControllerManager.cpp | 63
19:43:51 | Core | Info | ControllerManager successfully shutdown | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ControllerManager.cpp | 74
19:43:51 | Core | Info | * Shutdown: ClipboardManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ClipboardManager.cpp | 108
19:43:51 | Core | Info | ClipboardManager successfully shutdown | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ClipboardManager.cpp | 110
19:43:51 | Core | Info | * Shutdown: LayoutManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LayoutManager.cpp | 57
19:43:51 | Core | Info | LayoutManager successfully shutdown | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LayoutManager.cpp | 62
19:43:51 | Core | Info | * Shutdown: PluginManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_PluginManager.cpp | 56
19:43:51 | Core | Info | PluginManager successfully shutdown | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_PluginManager.cpp | 61
19:43:51 | Core | Info | * Shutdown: DynLibManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_DynLibManager.cpp | 52
19:43:51 | Core | Info | DynLibManager successfully shutdown | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_DynLibManager.cpp | 59
19:43:51 | Core | Info | * Shutdown: LanguageManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LanguageManager.cpp | 56
19:43:51 | Core | Info | LanguageManager successfully shutdown | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LanguageManager.cpp | 60
19:43:51 | Core | Info | * Shutdown: ResourceManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 63
19:43:51 | Core | Info | ResourceManager successfully shutdown | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 73
19:43:51 | Core | Info | * Shutdown: FactoryManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_FactoryManager.cpp | 49
19:43:51 | Core | Info | FactoryManager successfully shutdown | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_FactoryManager.cpp | 51
19:43:51 | Core | Info | * Shutdown: ToolTipManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ToolTipManager.cpp | 67
19:43:51 | Core | Info | ToolTipManager successfully shutdown | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ToolTipManager.cpp | 72
19:43:51 | Core | Info | * Shutdown: WidgetManager | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_WidgetManager.cpp | 105
19:43:51 | Core | Info | WidgetManager successfully shutdown | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_WidgetManager.cpp | 114
19:43:51 | Core | Info | Gui successfully shutdown | F:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_Gui.cpp | 193
19:43:51 | Core | Info | * Shutdown: RenderManager | F:\MyGUI_3.2.0_RC1\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreRenderManager.cpp | 70
19:43:51 | Core | Info | RenderManager successfully shutdown | F:\MyGUI_3.2.0_RC1\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreRenderManager.cpp | 78
19:43:51 | Core | Info | * Shutdown: DataManager | F:\MyGUI_3.2.0_RC1\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreDataManager.cpp | 37
19:43:51 | Core | Info | DataManager successfully shutdown | F:\MyGUI_3.2.0_RC1\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreDataManager.cpp | 39

Ogre.log:
19:43:44: Creating resource group General
19:43:44: Creating resource group Internal
19:43:44: Creating resource group Autodetect
19:43:44: SceneManagerFactory for type 'DefaultSceneManager' registered.
19:43:44: Registering ResourceManager for type Material
19:43:44: Registering ResourceManager for type Mesh
19:43:44: Registering ResourceManager for type Skeleton
19:43:44: MovableObjectFactory for type 'ParticleSystem' registered.
19:43:44: OverlayElementFactory for type Panel registered.
19:43:44: OverlayElementFactory for type BorderPanel registered.
19:43:44: OverlayElementFactory for type TextArea registered.
19:43:44: Registering ResourceManager for type Font
19:43:44: ArchiveFactory for archive type FileSystem registered.
19:43:44: ArchiveFactory for archive type Zip registered.
19:43:44: DDS codec registering
19:43:44: FreeImage version: 3.13.1
19:43:44: This program uses FreeImage, a free, open source image library supporting all common bitmap formats. See http://freeimage.sourceforge.net for details
19:43:44: 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,bay,bmq,cr2,crw,cs1,dc2,dcr,dng,erf,fff,hdr,k25,kdc,mdc,mos,mrw,nef,orf,pef,pxn,raf,raw,rdc,sr2,srf,arw,3fr,cine,ia,kc2,mef,nrw,qtk,rw2,sti,drf,dsc,ptx,cap,iiq,rwz
19:43:44: Registering ResourceManager for type HighLevelGpuProgram
19:43:44: Registering ResourceManager for type Compositor
19:43:44: MovableObjectFactory for type 'Entity' registered.
19:43:44: MovableObjectFactory for type 'Light' registered.
19:43:44: MovableObjectFactory for type 'BillboardSet' registered.
19:43:44: MovableObjectFactory for type 'ManualObject' registered.
19:43:44: MovableObjectFactory for type 'BillboardChain' registered.
19:43:44: MovableObjectFactory for type 'RibbonTrail' registered.
19:43:44: Loading library .\RenderSystem_Direct3D9
19:43:44: Installing plugin: D3D9 RenderSystem
19:43:44: D3D9 : Direct3D9 Rendering Subsystem created.
19:43:44: D3D9: Driver Detection Starts
19:43:44: D3D9: Driver Detection Ends
19:43:44: Plugin successfully installed
19:43:44: Loading library .\RenderSystem_GL
19:43:44: Installing plugin: GL RenderSystem
19:43:44: OpenGL Rendering Subsystem created.
19:43:45: Plugin successfully installed
19:43:45: Loading library .\Plugin_ParticleFX
19:43:45: Installing plugin: ParticleFX
19:43:45: Particle Emitter Type 'Point' registered
19:43:45: Particle Emitter Type 'Box' registered
19:43:45: Particle Emitter Type 'Ellipsoid' registered
19:43:45: Particle Emitter Type 'Cylinder' registered
19:43:45: Particle Emitter Type 'Ring' registered
19:43:45: Particle Emitter Type 'HollowEllipsoid' registered
19:43:45: Particle Affector Type 'LinearForce' registered
19:43:45: Particle Affector Type 'ColourFader' registered
19:43:45: Particle Affector Type 'ColourFader2' registered
19:43:45: Particle Affector Type 'ColourImage' registered
19:43:45: Particle Affector Type 'ColourInterpolator' registered
19:43:45: Particle Affector Type 'Scaler' registered
19:43:45: Particle Affector Type 'Rotator' registered
19:43:45: Particle Affector Type 'DirectionRandomiser' registered
19:43:45: Particle Affector Type 'DeflectorPlane' registered
19:43:45: Plugin successfully installed
19:43:45: Loading library .\Plugin_BSPSceneManager
19:43:45: Installing plugin: BSP Scene Manager
19:43:45: Plugin successfully installed
19:43:45: Loading library .\Plugin_CgProgramManager
19:43:45: Installing plugin: Cg Program Manager
19:43:45: Plugin successfully installed
19:43:45: Loading library .\Plugin_PCZSceneManager
19:43:45: Installing plugin: Portal Connected Zone Scene Manager
19:43:45: PCZone Factory Type 'ZoneType_Default' registered
19:43:45: Plugin successfully installed
19:43:45: Loading library .\Plugin_OctreeZone
19:43:45: Installing plugin: Octree Zone Factory
19:43:45: Plugin successfully installed
19:43:45: Loading library .\Plugin_OctreeSceneManager
19:43:45: Installing plugin: Octree & Terrain Scene Manager
19:43:45: Plugin successfully installed
19:43:45: *-*-* OGRE Initialising
19:43:45: *-*-* Version 1.7.0 (Cthugha)
19:43:45: Creating resource group ET
19:43:45: Added resource location '../data/ET' of type 'FileSystem' to resource group 'ET'
19:43:45: Creating resource group GUI
19:43:45: Added resource location '../data/GUI' of type 'FileSystem' to resource group 'GUI'
19:43:45: Added resource location '../data/GUI/Layouts' of type 'FileSystem' to resource group 'GUI'
19:43:45: Added resource location '../data/GUI/MessageBox' of type 'FileSystem' to resource group 'GUI'
19:43:45: Added resource location '../data/items' of type 'FileSystem' to resource group 'GUI'
19:43:45: Added resource location '../data' of type 'FileSystem' to resource group 'General'
19:43:45: Added resource location '../data/materials' of type 'FileSystem' to resource group 'General'
19:43:45: Added resource location '../data/Caelum' of type 'FileSystem' to resource group 'General'
19:43:45: Added resource location '../data/models' of type 'FileSystem' to resource group 'General'
19:43:45: Creating resource group Hydrax
19:43:45: Added resource location '../data/Hydrax' of type 'FileSystem' to resource group 'Hydrax'
19:43:45: D3D9 : RenderSystem Option: Allow NVPerfHUD = No
19:43:45: D3D9 : RenderSystem Option: FSAA = 0
19:43:45: D3D9 : RenderSystem Option: Floating-point mode = Fastest
19:43:45: D3D9 : RenderSystem Option: Full Screen = No
19:43:45: D3D9 : RenderSystem Option: Rendering Device = Monitor-1-NVIDIA GeForce GTX 460
19:43:45: D3D9 : RenderSystem Option: Resource Creation Policy = Create on all devices
19:43:45: D3D9 : RenderSystem Option: VSync = No
19:43:45: D3D9 : RenderSystem Option: VSync Interval = 1
19:43:45: D3D9 : RenderSystem Option: Video Mode = 1440 x 900 @ 32-bit colour
19:43:45: D3D9 : RenderSystem Option: sRGB Gamma Conversion = No
19:43:45: CPU Identifier & Features
19:43:45: -------------------------
19:43:45: * CPU ID: GenuineIntel: Intel(R) Core(TM) i7 CPU 950 @ 3.07GHz
19:43:45: * SSE: yes
19:43:45: * SSE2: yes
19:43:45: * SSE3: yes
19:43:45: * MMX: yes
19:43:45: * MMXEXT: yes
19:43:45: * 3DNOW: no
19:43:45: * 3DNOWEXT: no
19:43:45: * CMOV: yes
19:43:45: * TSC: yes
19:43:45: * FPU: yes
19:43:45: * PRO: yes
19:43:45: * HT: no
19:43:45: -------------------------
19:43:45: D3D9 : Subsystem Initialising
19:43:45: Registering ResourceManager for type Texture
19:43:45: Registering ResourceManager for type GpuProgram
19:43:45: D3D9RenderSystem::_createRenderWindow "OGRE Render Window", 1440x900 windowed miscParams: FSAA=0 FSAAHint= colourDepth=32 gamma=false monitorIndex=0 useNVPerfHUD=false vsync=false vsyncInterval=1
19:43:45: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 1440x900, 32bpp
19:43:45: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem.
19:43:45: D3D9: Vertex texture format supported - PF_A8R8G8B8
19:43:45: D3D9: Vertex texture format supported - PF_B8G8R8A8
19:43:45: D3D9: Vertex texture format supported - PF_FLOAT16_RGB
19:43:45: D3D9: Vertex texture format supported - PF_FLOAT16_RGBA
19:43:45: D3D9: Vertex texture format supported - PF_FLOAT32_RGB
19:43:45: D3D9: Vertex texture format supported - PF_FLOAT32_RGBA
19:43:45: D3D9: Vertex texture format supported - PF_R8G8B8A8
19:43:45: D3D9: Vertex texture format supported - PF_DEPTH
19:43:45: D3D9: Vertex texture format supported - PF_FLOAT16_R
19:43:45: D3D9: Vertex texture format supported - PF_FLOAT32_R
19:43:45: D3D9: Vertex texture format supported - PF_FLOAT16_GR
19:43:45: D3D9: Vertex texture format supported - PF_FLOAT32_GR
19:43:45: D3D9: Vertex texture format supported - PF_PVRTC_RGB2
19:43:45: D3D9: Vertex texture format supported - PF_PVRTC_RGBA2
19:43:45: D3D9: Vertex texture format supported - PF_PVRTC_RGB4
19:43:45: D3D9: Vertex texture format supported - PF_PVRTC_RGBA4
19:43:45: RenderSystem capabilities
19:43:45: -------------------------
19:43:45: RenderSystem Name: Direct3D9 Rendering Subsystem
19:43:45: GPU Vendor: nvidia
19:43:45: Device Name: Monitor-1-NVIDIA GeForce GTX 460
19:43:45: Driver Version: 8.17.12.5896
19:43:45: * Fixed function pipeline: yes
19:43:45: * Hardware generation of mipmaps: yes
19:43:45: * Texture blending: yes
19:43:45: * Anisotropic texture filtering: yes
19:43:45: * Dot product texture operation: yes
19:43:45: * Cube mapping: yes
19:43:45: * Hardware stencil buffer: yes
19:43:45: - Stencil depth: 8
19:43:45: - Two sided stencil support: yes
19:43:45: - Wrap stencil values: yes
19:43:45: * Hardware vertex / index buffers: yes
19:43:45: * Vertex programs: yes
19:43:45: * Number of floating-point constants for vertex programs: 256
19:43:45: * Number of integer constants for vertex programs: 16
19:43:45: * Number of boolean constants for vertex programs: 16
19:43:45: * Fragment programs: yes
19:43:45: * Number of floating-point constants for fragment programs: 224
19:43:45: * Number of integer constants for fragment programs: 16
19:43:45: * Number of boolean constants for fragment programs: 16
19:43:45: * Geometry programs: no
19:43:45: * Number of floating-point constants for geometry programs: 127
19:43:45: * Number of integer constants for geometry programs: 53372
19:43:45: * Number of boolean constants for geometry programs: 127
19:43:45: * Supported Shader Profiles: hlsl ps_1_1 ps_1_2 ps_1_3 ps_1_4 ps_2_0 ps_2_a ps_2_b ps_2_x ps_3_0 vs_1_1 vs_2_0 vs_2_a vs_2_x vs_3_0
19:43:45: * Texture Compression: yes
19:43:45: - DXT: yes
19:43:45: - VTC: no
19:43:45: - PVRTC: no
19:43:45: * Scissor Rectangle: yes
19:43:45: * Hardware Occlusion Query: yes
19:43:45: * User clip planes: yes
19:43:45: * VET_UBYTE4 vertex element type: yes
19:43:45: * Infinite far plane projection: yes
19:43:45: * Hardware render-to-texture: yes
19:43:45: * Floating point textures: yes
19:43:45: * Non-power-of-two textures: yes
19:43:45: * Volume textures: yes
19:43:45: * Multiple Render Targets: 4
19:43:45: - With different bit depths: yes
19:43:45: * Point Sprites: yes
19:43:45: * Extended point parameters: yes
19:43:45: * Max Point Size: 10
19:43:45: * Vertex texture fetch: yes
19:43:45: * Number of world matrices: 0
19:43:45: * Number of texture units: 8
19:43:45: * Stencil buffer depth: 8
19:43:45: * Number of vertex blend matrices: 0
19:43:45: - Max vertex textures: 4
19:43:45: - Vertex textures shared: no
19:43:45: * Render to Vertex Buffer : no
19:43:45: * DirectX per stage constants: yes
19:43:45: ***************************************
19:43:45: *** D3D9 : Subsystem Initialised OK ***
19:43:45: ***************************************
19:43:45: DefaultWorkQueue('Root') initialising on thread 0x6e40f8.
19:43:45: DefaultWorkQueue('Root')::WorkerFunc - thread 0x70d098 starting.
19:43:45: DefaultWorkQueue('Root')::WorkerFunc - thread 0x70d0c8 starting.
19:43:45: DefaultWorkQueue('Root')::WorkerFunc - thread 0x70d128 starting.
19:43:45: DefaultWorkQueue('Root')::WorkerFunc - thread 0x70d188 starting.
19:43:45: DefaultWorkQueue('Root')::WorkerFunc - thread 0x70d1e8 starting.
19:43:45: Particle Renderer Type 'billboard' registered
19:43:45: DefaultWorkQueue('Root')::WorkerFunc - thread 0x70d248 starting.
19:43:45: DefaultWorkQueue('Root')::WorkerFunc - thread 0x70d2a8 starting.
19:43:45: DefaultWorkQueue('Root')::WorkerFunc - thread 0x70d308 starting.
19:43:45: SceneManagerFactory for type 'BspSceneManager' registered.
19:43:45: Registering ResourceManager for type BspLevel
19:43:45: SceneManagerFactory for type 'PCZSceneManager' registered.
19:43:45: MovableObjectFactory for type 'PCZLight' registered.
19:43:45: MovableObjectFactory for type 'Portal' registered.
19:43:45: MovableObjectFactory for type 'AntiPortal' registered.
19:43:45: PCZone Factory Type 'ZoneType_Octree' registered
19:43:45: PCZone Factory Type 'ZoneType_Terrain' registered
19:43:45: SceneManagerFactory for type 'OctreeSceneManager' registered.
19:43:45: SceneManagerFactory for type 'TerrainSceneManager' registered.
19:43:45: TerrainSceneManager: Registered a new PageSource for type Heightmap
19:43:45: Parsing scripts for resource group Autodetect
19:43:45: Finished parsing scripts for resource group Autodetect
19:43:45: Parsing scripts for resource group ET
19:43:45: Parsing script ETShader.program
19:43:45: Parsing script ETTerrain.material
19:43:45: Finished parsing scripts for resource group ET
19:43:45: Parsing scripts for resource group GUI
19:43:45: Finished parsing scripts for resource group GUI
19:43:45: Parsing scripts for resource group General
19:43:45: Parsing script DepthRender.program
19:43:45: Parsing script GroundFog.program
19:43:45: Parsing script Haze.program
19:43:45: Parsing script MinimalCompositorVP.program
19:43:45: Parsing script mats.material
19:43:45: Parsing script DepthComposer.material
19:43:45: Parsing script GroundFog.material
19:43:45: Parsing script HDRBlurStar.material
19:43:45: Parsing script HDRChain.material
19:43:45: Parsing script HDRLuminance.material
19:43:45: Parsing script LayeredClouds.material
19:43:45: Parsing script moon.material
19:43:45: Parsing script PointStarfield.material
19:43:45: Parsing script Precipitation.material
19:43:45: Parsing script SkyDome.material
19:43:45: Parsing script Starfield.material
19:43:45: Parsing script Sun.material
19:43:45: Parsing script player.material
19:43:45: Parsing script Scene.material
19:43:45: Parsing script DepthComposer.compositor
19:43:45: Parsing script Precipitation.compositor
19:43:45: Finished parsing scripts for resource group General
19:43:45: Parsing scripts for resource group Hydrax
19:43:45: Finished parsing scripts for resource group Hydrax
19:43:45: Parsing scripts for resource group Internal
19:43:45: Finished parsing scripts for resource group Internal
19:43:45: Texture: MyGUI_BlackOrangeSkins.png: Loading 1 faces(PF_A8R8G8B8,512x256x1) with 0 generated mipmaps from Image. Internal format is PF_A8R8G8B8,512x256x1.
19:43:45: Texture: MyGUI_Pointers.png: Loading 1 faces(PF_A8R8G8B8,256x128x1) with 0 generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1.
19:43:46: [Hydrax] Hydrax created.
19:43:46: [Hydrax] Yokkai.hdx loaded.
19:43:46: [Hydrax] Creating module...
19:43:46: [Hydrax] Creating ProjectedGridVertex module.
19:43:46: [Hydrax] ProjectedGridVertex created.
19:43:46: [Hydrax] Module created.
19:43:46: [Hydrax] Initializating RTT Manager...
19:43:46: [Hydrax] RTT manager initialized.
19:43:46: [Hydrax] Registring device restored listener...
19:43:46: [Hydrax] Device restored listener registred.
19:43:46: [Hydrax] Creating materials...
19:43:46: [Hydrax] Creating water material...
19:43:46: Texture: Fresnel.bmp: Loading 1 faces(PF_L8,256x1x1) with hardware generated mipmaps from Image. Internal format is PF_L8,256x1x1.
19:43:46: Texture: Foam.png: Loading 1 faces(PF_R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1.
19:43:46: [Hydrax] Water material created.
19:43:46: [Hydrax] Creating depth material...
19:43:46: Texture: Caustics_0.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_1.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_2.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_3.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_4.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_5.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_6.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_7.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_8.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_9.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_10.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_11.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_12.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_13.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_14.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_15.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_16.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_17.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_18.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_19.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_20.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_21.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_22.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_23.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_24.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_25.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_26.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_27.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_28.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_29.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_30.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: Texture: Caustics_31.bmp: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
19:43:46: [Hydrax] Depth material created.
19:43:46: [Hydrax] Creating underwater material...
19:43:46: Texture: UnderwaterDistortion.jpg: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
19:43:46: [Hydrax] Underwater material created.
19:43:46: [Hydrax] Materials created.
19:43:46: [Hydrax] Creating god rays...
19:43:46: [Hydrax] Perlin destroyed.
19:43:46: [Hydrax] God rays created.
19:43:46: [Hydrax] Creating water mesh...
19:43:46: [Hydrax] Water mesh created.
19:43:46: Texture: ETminimap.png: Loading 1 faces(PF_R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1.
19:43:46: Texture: ETcoverage.0.png: Loading 1 faces(PF_R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1.
19:43:46: Caelum: Initialising Caelum system...
19:43:46: Caelum: Plugin not installed; installing now.
19:43:46: Caelum plugin version 0.5.0 installed
19:43:46: Registering ResourceManager for type PropertyScript
19:43:46: Caelum: Creating required internal resource group 'Caelum'
19:43:46: Creating resource group Caelum
19:43:46: Caelum: Creating caelum sub-components.
19:43:46: Texture: EarthClearSky2.png: Loading 1 faces(PF_A8R8G8B8,64x64x1) with 0 generated mipmaps from Image. Internal format is PF_A8R8G8B8,64x64x1.
19:43:46: Texture: AtmosphereDepth.png: Loading 1 faces(PF_R8G8B8,32x1x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,32x1x1.
19:43:46: Caelum: Creating CaelumSphericDome sphere mesh resource...
19:43:46: Caelum: generateSphericDome DONE
19:43:46: Texture: sun_disc.png: Loading 1 faces(PF_A8R8G8B8,128x128x1) with 0 generated mipmaps from Image. Internal format is PF_A8R8G8B8,128x128x1.
19:43:46: D3D9 : Loading 2D Texture, image name : 'moon_disc.dds' with 5 mip map levels
19:43:46: D3D9 : Loading 2D Texture, image name : 'noise1.dds' with 5 mip map levels
19:43:46: D3D9 : Loading 2D Texture, image name : 'noise2.dds' with 5 mip map levels
19:43:46: D3D9 : Loading 2D Texture, image name : 'noise4.dds' with 5 mip map levels
19:43:46: Caelum: DONE initializing
19:43:46: Texture: grass_standing.png: Loading 1 faces(PF_A8R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,512x512x1.
19:43:46: Texture: splatting0.png: Loading 1 faces(PF_A8R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,512x512x1.
19:43:46: Texture: splatting1.png: Loading 1 faces(PF_R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1.
19:43:46: Texture: splatting2.png: Loading 1 faces(PF_R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1.
19:43:46: Texture: splatting3.png: Loading 1 faces(PF_R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1.
19:43:46: Texture: splatting4.png: Loading 1 faces(PF_R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1.
19:43:46: Texture: splatting5.png: Loading 1 faces(PF_R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1.
19:43:48: Texture: MessageBoxIcons.png: Loading 1 faces(PF_A8R8G8B8,256x64x1) with 0 generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x64x1.
19:43:51: DefaultWorkQueue('Root') shutting down on thread 0x6e40f8.
19:43:51: DefaultWorkQueue('Root')::WorkerFunc - thread 0x70d1e8 stopped.
19:43:51: DefaultWorkQueue('Root')::WorkerFunc - thread 0x70d308 stopped.
19:43:51: DefaultWorkQueue('Root')::WorkerFunc - thread 0x70d248 stopped.
19:43:51: DefaultWorkQueue('Root')::WorkerFunc - thread 0x70d0c8 stopped.
19:43:51: DefaultWorkQueue('Root')::WorkerFunc - thread 0x70d2a8 stopped.
19:43:51: DefaultWorkQueue('Root')::WorkerFunc - thread 0x70d128 stopped.
19:43:51: DefaultWorkQueue('Root')::WorkerFunc - thread 0x70d188 stopped.
19:43:51: DefaultWorkQueue('Root')::WorkerFunc - thread 0x70d098 stopped.
19:43:51: PCZone Factory Type 'ZoneType_Octree' unregistered
19:43:51: PCZone Factory Type 'ZoneType_Terrain' unregistered
19:43:51: Unregistering ResourceManager for type BspLevel
19:43:51: *-*-* OGRE Shutdown
19:43:51: Unregistering ResourceManager for type Compositor
19:43:51: Unregistering ResourceManager for type Font
19:43:51: Unregistering ResourceManager for type Skeleton
19:43:51: Unregistering ResourceManager for type Mesh
19:43:51: Unregistering ResourceManager for type HighLevelGpuProgram
19:43:51: Uninstalling plugin: Octree & Terrain Scene Manager
19:43:51: Plugin successfully uninstalled
19:43:51: Unloading library .\Plugin_OctreeSceneManager
19:43:51: Uninstalling plugin: Octree Zone Factory
19:43:51: Plugin successfully uninstalled
19:43:51: Unloading library .\Plugin_OctreeZone
19:43:51: Uninstalling plugin: Portal Connected Zone Scene Manager
19:43:51: Plugin successfully uninstalled
19:43:51: Unloading library .\Plugin_PCZSceneManager
19:43:51: Uninstalling plugin: Cg Program Manager
19:43:51: Plugin successfully uninstalled
19:43:51: Unloading library .\Plugin_CgProgramManager
19:43:51: Uninstalling plugin: BSP Scene Manager
19:43:51: Plugin successfully uninstalled
19:43:51: Unloading library .\Plugin_BSPSceneManager
19:43:51: Uninstalling plugin: ParticleFX
19:43:51: Plugin successfully uninstalled
19:43:51: Unloading library .\Plugin_ParticleFX
19:43:51: Uninstalling plugin: GL RenderSystem
19:43:51: *** Stopping Win32GL Subsystem ***
19:43:51: Plugin successfully uninstalled
19:43:51: Unloading library .\RenderSystem_GL
19:43:51: Uninstalling plugin: D3D9 RenderSystem
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: ETSplatting0
19:43:51: Released D3D9 texture: ETSplatting0
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: ETSplatting1
19:43:51: Released D3D9 texture: ETSplatting1
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: ETLightmap
19:43:51: Released D3D9 texture: ETLightmap
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: HydraxDepthMap
19:43:51: Released D3D9 texture: HydraxDepthMap
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Fresnel.bmp
19:43:51: Released D3D9 texture: Fresnel.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Foam.png
19:43:51: Released D3D9 texture: Foam.png
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_0.bmp
19:43:51: Released D3D9 texture: Caustics_0.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_1.bmp
19:43:51: Released D3D9 texture: Caustics_1.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_2.bmp
19:43:51: Released D3D9 texture: Caustics_2.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_3.bmp
19:43:51: Released D3D9 texture: Caustics_3.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_4.bmp
19:43:51: Released D3D9 texture: Caustics_4.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_5.bmp
19:43:51: Released D3D9 texture: Caustics_5.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_6.bmp
19:43:51: Released D3D9 texture: Caustics_6.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_7.bmp
19:43:51: Released D3D9 texture: Caustics_7.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_8.bmp
19:43:51: Released D3D9 texture: Caustics_8.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_9.bmp
19:43:51: Released D3D9 texture: Caustics_9.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_10.bmp
19:43:51: Released D3D9 texture: Caustics_10.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_11.bmp
19:43:51: Released D3D9 texture: Caustics_11.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_12.bmp
19:43:51: Released D3D9 texture: Caustics_12.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_13.bmp
19:43:51: Released D3D9 texture: Caustics_13.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_14.bmp
19:43:51: Released D3D9 texture: Caustics_14.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_15.bmp
19:43:51: Released D3D9 texture: Caustics_15.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_16.bmp
19:43:51: Released D3D9 texture: Caustics_16.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_17.bmp
19:43:51: Released D3D9 texture: Caustics_17.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_18.bmp
19:43:51: Released D3D9 texture: Caustics_18.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_19.bmp
19:43:51: Released D3D9 texture: Caustics_19.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_20.bmp
19:43:51: Released D3D9 texture: Caustics_20.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_21.bmp
19:43:51: Released D3D9 texture: Caustics_21.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_22.bmp
19:43:51: Released D3D9 texture: Caustics_22.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_23.bmp
19:43:51: Released D3D9 texture: Caustics_23.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_24.bmp
19:43:51: Released D3D9 texture: Caustics_24.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_25.bmp
19:43:51: Released D3D9 texture: Caustics_25.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_26.bmp
19:43:51: Released D3D9 texture: Caustics_26.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_27.bmp
19:43:51: Released D3D9 texture: Caustics_27.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_28.bmp
19:43:51: Released D3D9 texture: Caustics_28.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_29.bmp
19:43:51: Released D3D9 texture: Caustics_29.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_30.bmp
19:43:51: Released D3D9 texture: Caustics_30.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: Caustics_31.bmp
19:43:51: Released D3D9 texture: Caustics_31.bmp
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: UnderwaterDistortion.jpg
19:43:51: Released D3D9 texture: UnderwaterDistortion.jpg
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: HydraxReflectionMap
19:43:51: Released D3D9 texture: HydraxReflectionMap
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: HydraxRefractionMap
19:43:51: Released D3D9 texture: HydraxRefractionMap
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: HydraxDepthMap
19:43:51: Released D3D9 texture: HydraxDepthMap
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: HydraxDepthReflectionMap
19:43:51: Released D3D9 texture: HydraxDepthReflectionMap
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: EarthClearSky2.png
19:43:51: Released D3D9 texture: EarthClearSky2.png
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: AtmosphereDepth.png
19:43:51: Released D3D9 texture: AtmosphereDepth.png
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: sun_disc.png
19:43:51: Released D3D9 texture: sun_disc.png
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: moon_disc.dds
19:43:51: Released D3D9 texture: moon_disc.dds
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: noise1.dds
19:43:51: Released D3D9 texture: noise1.dds
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: noise2.dds
19:43:51: Released D3D9 texture: noise2.dds
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: noise4.dds
19:43:51: Released D3D9 texture: noise4.dds
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: grass_standing.png
19:43:51: Released D3D9 texture: grass_standing.png
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: splatting0.png
19:43:51: Released D3D9 texture: splatting0.png
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: splatting1.png
19:43:51: Released D3D9 texture: splatting1.png
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: splatting2.png
19:43:51: Released D3D9 texture: splatting2.png
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: splatting3.png
19:43:51: Released D3D9 texture: splatting3.png
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: splatting4.png
19:43:51: Released D3D9 texture: splatting4.png
19:43:51: D3D9 device: 0x[0x3978fa0] destroy. Releasing D3D9 texture: splatting5.png
19:43:51: Released D3D9 texture: splatting5.png
19:43:51: D3D9 : Shutting down cleanly.
19:43:51: Unregistering ResourceManager for type Texture
19:43:51: Unregistering ResourceManager for type GpuProgram
19:43:51: D3D9 : Direct3D9 Rendering Subsystem destroyed.
19:43:51: Plugin successfully uninstalled
19:43:51: Unloading library .\RenderSystem_Direct3D9
19:43:51: Unregistering ResourceManager for type Material

MyGUI init code:
void TApp::InitGui()
{
mLog->logMessage("[GUI] Initializing MyGUI...");
mPlatform = new MyGUI::OgrePlatform();
mPlatform->initialise(mWindow, mSceneMgr, "GUI");
mGUI = new MyGUI::Gui();
mGUI->initialise();

MyGUI::ResourceManager::getInstance().load("MessageBoxResources.xml");

MyGUI::LayoutManager::getInstance().loadLayout("ToolTip.layout","",NULL);
mToolTip=mGUI->findWidget<MyGUI::Widget>("ToolTip_Window");
mToolTip->setVisible(false);

mChatActive=false;

MyGUI::LayoutManager::getInstance().loadLayout("Test.layout","",NULL);

mLog->logMessage("[GUI] Done Initializing MyGUI...");
}


Normally I don't load my layouts directly in the Init fuction but as it is not working I'm doing so for testing. If anybody knows whats wrong please tell me.

Regards
-trilader

Altren

17-02-2011 22:55:39

Show layout that is not visible after load.

trilader

18-02-2011 05:53:21

Here is my test layout that I created with the 3.2 layout editor.
<?xml version="1.0" encoding="UTF-8"?>
<MyGUI type="Layout" version="3.2.0">
<Widget type="Window" skin="WindowC" position_real="0.4 0.4 0.2 0.2" name="InfoWindow">
<Property key="Colour" value="1 1 1 "/>
<Property key="AutoAlpha" value="true"/>
<Property key="Movable" value="false"/>
<Property key="Caption" value="Info"/>
<Property key="TextColour" value="1 1 1"/>
<Widget type="Button" skin="Button" position_real="0.3 0.8 0.4 0.15" name="InfoButton">
<Property key="Caption" value="OK"/>
</Widget>
<Widget type="ProgressBar" skin="ProgressBarFill" position_real="0.05 0.65 0.9 0.1" name="InfoProgress"/>
<Widget type="TextBox" skin="TextBox" position_real="0.05 0.05 0.9 0.5" name="InfoText">
<Property key="Caption" value="Lorem Ipsum..."/>s
</Widget>
</Widget>
</MyGUI>

Altren

18-02-2011 08:31:44

You should specify layer for root widget. Otherwise widgets are created, but Gui don't know where to render them.
We are going to add warning in LayoutEditor when root widget's layer is not specified.

Altren

18-02-2011 12:54:01

Added warning in log. (svn revision4154)

mikekknd

09-04-2011 03:46:22

Hi, my cursor could not display after I switch from 3.0 to 3.2. The log is giving me the Skin 'ImageBox' not found error.

20:24:22 | Core | Info | * Initialise: RenderManager | ..\..\..\..\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreRenderManager.cpp | 35
20:24:22 | Core | Info | RenderManager successfully initialized | ..\..\..\..\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreRenderManager.cpp | 63
20:24:22 | Core | Info | * Initialise: DataManager | ..\..\..\..\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreDataManager.cpp | 26
20:24:22 | Core | Info | DataManager successfully initialized | ..\..\..\..\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreDataManager.cpp | 30
20:24:22 | Core | Info | * Initialise: Gui | ..\..\MyGUIEngine\src\MyGUI_Gui.cpp | 75
20:24:22 | Core | Info | * MyGUI version 3.2.0.4077 | ..\..\MyGUIEngine\src\MyGUI_Gui.cpp | 82
20:24:22 | Core | Info | * Initialise: ResourceManager | ..\..\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 48
20:24:22 | Core | Info | ResourceManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 56
20:24:22 | Core | Info | * Initialise: LayerManager | ..\..\MyGUIEngine\src\MyGUI_LayerManager.cpp | 49
20:24:22 | Core | Info | LayerManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_LayerManager.cpp | 57
20:24:22 | Core | Info | * Initialise: WidgetManager | ..\..\MyGUIEngine\src\MyGUI_WidgetManager.cpp | 67
20:24:22 | Core | Info | WidgetManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_WidgetManager.cpp | 98
20:24:22 | Core | Info | * Initialise: InputManager | ..\..\MyGUIEngine\src\MyGUI_InputManager.cpp | 58
20:24:22 | Core | Info | InputManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_InputManager.cpp | 76
20:24:22 | Core | Info | * Initialise: SubWidgetManager | ..\..\MyGUIEngine\src\MyGUI_SubWidgetManager.cpp | 49
20:24:22 | Core | Info | SubWidgetManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_SubWidgetManager.cpp | 69
20:24:22 | Core | Info | * Initialise: SkinManager | ..\..\MyGUIEngine\src\MyGUI_SkinManager.cpp | 53
20:24:22 | Core | Info | SkinManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_SkinManager.cpp | 61
20:24:22 | Core | Info | * Initialise: FontManager | ..\..\MyGUIEngine\src\MyGUI_FontManager.cpp | 48
20:24:22 | Core | Info | FontManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_FontManager.cpp | 57
20:24:22 | Core | Info | * Initialise: ControllerManager | ..\..\MyGUIEngine\src\MyGUI_ControllerManager.cpp | 46
20:24:22 | Core | Info | ControllerManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_ControllerManager.cpp | 56
20:24:22 | Core | Info | * Initialise: PointerManager | ..\..\MyGUIEngine\src\MyGUI_PointerManager.cpp | 60
20:24:22 | Core | Info | PointerManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_PointerManager.cpp | 78
20:24:22 | Core | Info | * Initialise: ClipboardManager | ..\..\MyGUIEngine\src\MyGUI_ClipboardManager.cpp | 87
20:24:22 | Core | Info | ClipboardManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_ClipboardManager.cpp | 101
20:24:22 | Core | Info | * Initialise: LayoutManager | ..\..\MyGUIEngine\src\MyGUI_LayoutManager.cpp | 45
20:24:22 | Core | Info | LayoutManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_LayoutManager.cpp | 50
20:24:22 | Core | Info | * Initialise: DynLibManager | ..\..\MyGUIEngine\src\MyGUI_DynLibManager.cpp | 41
20:24:22 | Core | Info | DynLibManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_DynLibManager.cpp | 45
20:24:22 | Core | Info | * Initialise: PluginManager | ..\..\MyGUIEngine\src\MyGUI_PluginManager.cpp | 45
20:24:22 | Core | Info | PluginManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_PluginManager.cpp | 49
20:24:22 | Core | Info | * Initialise: LanguageManager | ..\..\MyGUIEngine\src\MyGUI_LanguageManager.cpp | 45
20:24:22 | Core | Info | LanguageManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_LanguageManager.cpp | 49
20:24:22 | Core | Info | * Initialise: FactoryManager | ..\..\MyGUIEngine\src\MyGUI_FactoryManager.cpp | 40
20:24:22 | Core | Info | FactoryManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_FactoryManager.cpp | 42
20:24:22 | Core | Info | * Initialise: ToolTipManager | ..\..\MyGUIEngine\src\MyGUI_ToolTipManager.cpp | 48
20:24:22 | Core | Info | ToolTipManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_ToolTipManager.cpp | 60
20:24:22 | Core | Info | Load ini file 'core_theme.xml' | ..\..\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
20:24:22 | Core | Info | Load ini file 'core_language.xml' | ..\..\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
20:24:22 | Core | Info | Load ini file 'core_font.xml' | ..\..\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
20:24:22 | Core | Info | ResourceTrueTypeFont 'font_DejaVuSans.17' using texture size 512 x 256 | ..\..\MyGUIEngine\src\MyGUI_ResourceTrueTypeFont.cpp | 206
20:24:22 | Core | Info | ResourceTrueTypeFont 'font_DejaVuSans.17' using real height 17 pixels | ..\..\MyGUIEngine\src\MyGUI_ResourceTrueTypeFont.cpp | 207
20:24:22 | Core | Info | ResourceTrueTypeFont 'font_DejaVuSans.14' using texture size 256 x 256 | ..\..\MyGUIEngine\src\MyGUI_ResourceTrueTypeFont.cpp | 206
20:24:22 | Core | Info | ResourceTrueTypeFont 'font_DejaVuSans.14' using real height 14 pixels | ..\..\MyGUIEngine\src\MyGUI_ResourceTrueTypeFont.cpp | 207
20:24:23 | Core | Info | Load ini file 'core_resource.xml' | ..\..\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
20:24:23 | Core | Info | Load ini file 'core_skin.xml' | ..\..\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
20:24:23 | Core | Info | Register value : 'HCenter' = 0 | c:\users\mike\desktop\mygui_3.2.0_rc1\mygui_3.2.0_rc1\myguiengine\include\MyGUI_Align.h | 238
20:24:23 | Core | Info | Register value : 'VCenter' = 0 | c:\users\mike\desktop\mygui_3.2.0_rc1\mygui_3.2.0_rc1\myguiengine\include\MyGUI_Align.h | 239
20:24:23 | Core | Info | Register value : 'Center' = 0 | c:\users\mike\desktop\mygui_3.2.0_rc1\mygui_3.2.0_rc1\myguiengine\include\MyGUI_Align.h | 240
20:24:23 | Core | Info | Register value : 'Left' = 2 | c:\users\mike\desktop\mygui_3.2.0_rc1\mygui_3.2.0_rc1\myguiengine\include\MyGUI_Align.h | 241
20:24:23 | Core | Info | Register value : 'Right' = 4 | c:\users\mike\desktop\mygui_3.2.0_rc1\mygui_3.2.0_rc1\myguiengine\include\MyGUI_Align.h | 242
20:24:23 | Core | Info | Register value : 'HStretch' = 6 | c:\users\mike\desktop\mygui_3.2.0_rc1\mygui_3.2.0_rc1\myguiengine\include\MyGUI_Align.h | 243
20:24:23 | Core | Info | Register value : 'Top' = 8 | c:\users\mike\desktop\mygui_3.2.0_rc1\mygui_3.2.0_rc1\myguiengine\include\MyGUI_Align.h | 244
20:24:23 | Core | Info | Register value : 'Bottom' = 16 | c:\users\mike\desktop\mygui_3.2.0_rc1\mygui_3.2.0_rc1\myguiengine\include\MyGUI_Align.h | 245
20:24:23 | Core | Info | Register value : 'VStretch' = 24 | c:\users\mike\desktop\mygui_3.2.0_rc1\mygui_3.2.0_rc1\myguiengine\include\MyGUI_Align.h | 246
20:24:23 | Core | Info | Register value : 'Stretch' = 30 | c:\users\mike\desktop\mygui_3.2.0_rc1\mygui_3.2.0_rc1\myguiengine\include\MyGUI_Align.h | 247
20:24:23 | Core | Info | Register value : 'Default' = 10 | c:\users\mike\desktop\mygui_3.2.0_rc1\mygui_3.2.0_rc1\myguiengine\include\MyGUI_Align.h | 248
20:24:23 | Core | Info | Load ini file 'core_pointer.xml' | ..\..\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
20:24:23 | Core | Info | Load ini file 'core_layer.xml' | ..\..\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
20:24:23 | Core | Info | Load ini file 'core_settings.xml' | ..\..\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
20:24:23 | Core | Error | Skin 'ImageBox' not found. Replaced with default skin. [] | ..\..\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
20:24:23 | Core | Warning | Texture 'myIconSet.png' have non power of two size | ..\..\MyGUIEngine\src\MyGUI_TextureUtility.cpp | 76
20:24:23 | Core | Info | Gui successfully initialized | ..\..\MyGUIEngine\src\MyGUI_Gui.cpp | 136

Altren

09-04-2011 11:59:16

I guess you forgot to update MyGUI_Media folder.

mikekknd

09-04-2011 15:29:24

oh.. the media files actually changed!? thanks for the help, problem solved :D

Kyllan

02-05-2011 11:48:54

Hi,

Firstly, thanks for all the good work on MyGUI. It is hard work to keep a project like this up and running.

I am working on a project using Mogre 1.7.1 which I built from source. I then built MyGUI 3.2 from source as well and referenced MyGUI.Sharp from my project.

The problem I am facing now is probably concerned with the wrapper. I am trying to initialise MyGUI as another post earlier in this topic suggests:

mLog->logMessage("[GUI] Initializing MyGUI...");
mPlatform = new MyGUI::OgrePlatform();
mPlatform->initialise(mWindow, mSceneMgr, "GUI");
mGUI = new MyGUI::Gui();
mGUI->initialise();


I am attempting to call the equivalent methods from C# through the Mogre wrapper, but I cannot access the OgrePlatform class from within my application. I am using the namespace like this:

using MyGUI.Sharp;

I can then access the Gui class like this:

MyGUI.Sharp.Gui.Instance;

but I cannot see the OgrePlatform class anywhere:

MyGUI.Sharp.OgrePlatform;

Has this just not been wrapped yet? Should I even be using the wrapper to instantiate and initialise MyGUI like this? If you could give me a quick example of how I would get MyGUI started from within a C# application that would be greatly appreciated.

Also, if I just comment out my initialisation and run the application then the first call to MyGUI crashes my application. I assume this is because none of the Managers have been instantiated. I cannot be sure though, because MyGUI doesn't create a mygui.log file like it used to (probably because it has not been initialised?). It also doesn't output anything to the console. The TestApp in the Wrapper project (the one that comes from the source code for MyGUI) also crashes seemingly in the same way.

Thank you in advance for any help you could offer regarding this problem. (Please let me know if I should move this post to its own thread or anywhere else)

Altren

02-05-2011 14:22:41

There is MyGUI.OgrePlatform.Export that you need to initialise platform.
Export.Initialise()do all initialisation stuff for you.

Kyllan

02-05-2011 15:44:30

Thank you for your reply.

Do you mean I should call

MyGUI.OgrePlatform.Export


from my C# application?

I see the method in the MyGUI_OgrePlatform.h file in the source code for MyGUI, but I don't see where it is exported through the wrapper / pInvoke.

I've tried two things:

1. As I've shown before, I tried accessing the OgrePlatform class/namespace from the MyGUI.Sharp namespace from within my C# application. But the MyGui.OgrePlatform namespace does not exist.

2. I've tried adding the MyGUI.OgrePlatform.Export_d.dll as a reference in my C# project, but I get an error that says A reference to MyGUI.OgrePlatform.Export_d.dll could not be added. Please make sure that the file is accessible, and that it is a valid assembly or COM component.. So I guess this is a c++ dll and can therefore not be included as a reference from a C# application.

So I'm not sure how to call the code that you suggested I call... do I need to wrap something else before I can call your code?

Kyllan

05-05-2011 10:13:38

Please, if anyone has an idea or if you could paste me your initialization code as an example I can investigate it further. Any ideas are welcome.

nevarim

11-06-2011 15:44:32

hi all

i cannot find messageboxresources.xml in last release, its normal?
where i can find it? i must build it?

thanks
Neva

Altren

12-06-2011 18:17:19

Media\Common\MessageBox

nevarim

12-06-2011 19:45:00

i don't know why but in release 3.01 i cannot find either MessageBox.h and messageboxresources.xml

messagebox is included in release 3.01? i have downloaded agan release but nothing :(


Neva

Altren

13-06-2011 11:43:27

It is included in 3.2, and you are writing in topic related to 3.2 - why you use 3.0.1 then?

nevarim

13-06-2011 13:54:41

right :(

i have downloaded ir from mygui.info homepage

it's not updated?

where i can find latest release?


Neva

nevarim

13-06-2011 13:55:49

found :D its in topic head :D

nevarim

27-08-2011 18:03:06

hi

there is a tutoruial for using new component messagebox?

thanks

Neva

doDo

10-01-2012 22:45:30

Hello.

I have a little problem here which I don't understand. I got Ogre3d 1.7.3 prebuilt + MyGUI 3.2, , Visual Studio 2010, OS win7 32. I've followed by hints but at compile Layout Editor, Visual is throwing out this:

1>------ Build started: Project: ZERO_CHECK, Configuration: Debug Win32 ------
1>Build started 2012-01-10 23:15:49.
1>InitializeBuildStatus:
1> Creating "Win32\Debug\ZERO_CHECK\ZERO_CHECK.unsuccessfulbuild" because "AlwaysCreate" was specified.
1>FinalizeBuildStatus:
1> Deleting file "Win32\Debug\ZERO_CHECK\ZERO_CHECK.unsuccessfulbuild".
1> Touching "Win32\Debug\ZERO_CHECK\ZERO_CHECK.lastbuildstate".
1>
1>Build succeeded.
1>
1>Time Elapsed 00:00:00.47
2>------ Build started: Project: Common, Configuration: Debug Win32 ------
2>Build started 2012-01-10 23:15:50.
2>InitializeBuildStatus:
2> Touching "Common.dir\Debug\Common.unsuccessfulbuild".
2>CustomBuild:
2> All outputs are up-to-date.
2>ClCompile:
2> BaseManager.cpp
3>------ Build started: Project: Plugin_BerkeliumWidget, Configuration: Debug Win32 ------
3>Build started 2012-01-10 23:15:50.
3>
3>Build succeeded.
3>
3>Time Elapsed 00:00:00.00
2>d:\ogre3d\ogresdk_vc10_v1-7-3\include\ogre\boost\thread\win32\thread_heap_alloc.hpp(97): error C2061: syntax error : identifier 'heap_memory'
2> D:\OGRE3D\OgreSDK_vc10_v1-7-3\include\OGRE\boost/thread/detail/thread.hpp(134) : see reference to function template instantiation 'T *boost::detail::heap_new<boost::detail::thread_data<F>,void(__cdecl *)(void)>(A1 &&)' being compiled
2> with
2> [
2> T=boost::detail::thread_data<void (__cdecl *)(void)>,
2> F=void (__cdecl *)(void),
2> A1=void (__cdecl *)(void)
2> ]
2>
2>Build FAILED.
2>
2>Time Elapsed 00:00:08.20
4>------ Build started: Project: LayoutEditor, Configuration: Debug Win32 ------
4>Build started 2012-01-10 23:15:58.
4>InitializeBuildStatus:
4> Touching "LayoutEditor.dir\Debug\LayoutEditor.unsuccessfulbuild".
4>CustomBuild:
4> All outputs are up-to-date.
4>ClCompile:
4> All outputs are up-to-date.
4> Application.cpp
4>d:\ogre3d\ogresdk_vc10_v1-7-3\include\ogre\boost\thread\win32\thread_heap_alloc.hpp(97): error C2061: syntax error : identifier 'heap_memory'
4> D:\OGRE3D\OgreSDK_vc10_v1-7-3\include\OGRE\boost/thread/detail/thread.hpp(134) : see reference to function template instantiation 'T *boost::detail::heap_new<boost::detail::thread_data<F>,void(__cdecl *)(void)>(A1 &&)' being compiled
4> with
4> [
4> T=boost::detail::thread_data<void (__cdecl *)(void)>,
4> F=void (__cdecl *)(void),
4> A1=void (__cdecl *)(void)
4> ]
4> EditorState.cpp
4>d:\ogre3d\ogresdk_vc10_v1-7-3\include\ogre\boost\thread\win32\thread_heap_alloc.hpp(97): error C2061: syntax error : identifier 'heap_memory'
4> D:\OGRE3D\OgreSDK_vc10_v1-7-3\include\OGRE\boost/thread/detail/thread.hpp(134) : see reference to function template instantiation 'T *boost::detail::heap_new<boost::detail::thread_data<F>,void(__cdecl *)(void)>(A1 &&)' being compiled
4> with
4> [
4> T=boost::detail::thread_data<void (__cdecl *)(void)>,
4> F=void (__cdecl *)(void),
4> A1=void (__cdecl *)(void)
4> ]
4> MyGUI_FilterNoneSkin.cpp
4>d:\ogre3d\ogresdk_vc10_v1-7-3\include\ogre\boost\thread\win32\thread_heap_alloc.hpp(97): error C2061: syntax error : identifier 'heap_memory'
4> D:\OGRE3D\OgreSDK_vc10_v1-7-3\include\OGRE\boost/thread/detail/thread.hpp(134) : see reference to function template instantiation 'T *boost::detail::heap_new<boost::detail::thread_data<F>,void(__cdecl *)(void)>(A1 &&)' being compiled
4> with
4> [
4> T=boost::detail::thread_data<void (__cdecl *)(void)>,
4> F=void (__cdecl *)(void),
4> A1=void (__cdecl *)(void)
4> ]
4> Generating Code...
4>
4>Build FAILED.
4>
4>Time Elapsed 00:00:21.11
========== Build: 1 succeeded, 3 failed, 4 up-to-date, 0 skipped ==========



I bet, I have to include something but no idea what is it. It seems, it doesn't identify structure that it should or it looks like different. I saw on this forum that somenone wrote the ogre1.7.2 is working fine against MyGUI 3.2RC1 so I believe my version is also compatible.

Altren

11-01-2012 08:41:51

Check if you have MYGUI_CHECK_MEMORY_LEAKS flag enabled in CMake. It is not compatible with boost.
What about includes - you already have includes to Ogre and boost and you don't need any other includes.

doDo

11-01-2012 15:32:17

It is checked.

>>> <<<

doDo

11-01-2012 15:38:13

Sorry, for potential multiple posts but I missed text message about admin's authorisation images.

Memory leaks are checked and not red after configuration process. Here is the screenshot.

doDo

11-01-2012 17:03:12

If application should start with a black screen and mouse pointer at the centre, It works. Thanks a lot with helping me. :)

Edit: What else I have to do to see anything while Layout Editor is running? I see black screen and mouse pointer, nothing more. In the FAQ is there something about it but if so I have to create Ogre application, for example that created by ogre wizard and then apply myGUI into it and then launch?

Edit2: May I ask you for simple list of things to do to run Layout Editor properly? I've tried but I lost the plot by the way. It's hard to get it all at once if you're newbie.

Altren

12-01-2012 13:13:06

LayoutEditor is not empty by default, so something is wrong. Check MyGUI.log.
Code for adding MyGUI into your application:
http://www.ogre3d.org/tikiwiki/MyGUI+quickstart

doDo

12-01-2012 16:05:06

MyGUI.log tells me

\OgrePlatform\src\MyGUI_OgreDataManager.cpp | 54
16:42:56 | Core | Error | ResourceManager : 'Editor.xml', not found | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 153
16:42:56 | Core | Info | Gui successfully initialized | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_Gui.cpp | 136
16:42:56 | Core | Warning | Cannot locate resource PointersW32.xml in resource group General or any other group. | D:\MyGUI_3.2.0_RC1\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreDataManager.cpp | 54
16:42:56 | Core | Error | ResourceManager : 'PointersW32.xml', not found | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 153
16:42:56 | Core | Warning | Cannot locate resource EditorLayers.xml in resource group General or any other group. | D:\MyGUI_3.2.0_RC1\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreDataManager.cpp | 54
16:42:56 | Core | Error | ResourceManager : 'EditorLayers.xml', not found | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 153
16:42:56 | Core | Warning | Cannot locate resource EditorSettings.xml in resource group General or any other group. | D:\MyGUI_3.2.0_RC1\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreDataManager.cpp | 54
16:42:56 | Core | Error | ResourceManager : 'EditorSettings.xml', not found | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 153
16:42:56 | Core | Error | Language 'Polish' is not found | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LanguageManager.cpp | 125
16:42:56 | Core | Warning | Cannot locate resource Settings.xml in resource group General or any other group. | D:\MyGUI_3.2.0_RC1\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreDataManager.cpp | 54
16:42:56 | LayoutEditor | Error | Editor : 'Settings.xml', tag 'MyGUI' not found | D:\MyGUI_3.2.0_RC1\Tools\LayoutEditor\SettingsManager.cpp | 68
16:42:56 | LayoutEditor | Error | Editor : 'Failed to open XML file' , file='le_user_settings.xml' , line=0 , col=0 | D:\MyGUI_3.2.0_RC1\Tools\LayoutEditor\SettingsManager.cpp | 60
16:42:56 | Core | Warning | Cannot locate resource ColourPanel.layout in resource group General or any other group. | D:\MyGUI_3.2.0_RC1\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreDataManager.cpp | 54
16:42:56 | Core | Error | ResourceManager : 'ColourPanel.layout', not found | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 153
16:42:56 | Core | Critical | Layout 'ColourPanel.layout' couldn't be loaded | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LayoutManager.cpp | 83


It seems it couldn't find thehe files. I've found them in ..\MyGUI_3.2.0_RC1\Media\Tools\LayoutEditor. But how to attach it to become visible for the program?

And one more question. Properly compiled Layout Editor is an independent existence or I have to include it somehow to my OgreProject first? I thought LE is able to create subproject file which one contain newly created myGUI menu and then I can bind this with my OgreProject.

Altren

12-01-2012 19:46:13

For some reason all resources from Media not found - check that you not moved any binary files, xml files near them or Media folder.
By default CMake generate some files and after build you have next structure:
Folder with LayoutEditor.exe, resources.xml in same folder with next content (here's one generated for my settings):
<Paths>
<Path root="true">D:/my-gui/trunk/Media</Path>
<Path>D:/my-gui/trunk/Media/MyGUI_Media</Path>
</Paths>
Check that paths in resources.xml are correct in your case.

doDo

12-01-2012 22:06:22

It's move on a little. Sorry for that long code but I don't want to miss sth important. Changing path in resource.xml helped. But later I encountered problem with missing *.layout files. I've found for example OpenSaveFileDialog.layout here: ..\MyGUI\Media\Common\Tools but no idea what do to with them. Where I should put it or how may I include these files? I've tried add another path in resources.xml but It didn't help.

22:55:16 | Core | Info | * Initialise: RenderManager | D:\MyGUI_3.2.0_RC1\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreRenderManager.cpp | 35
22:55:16 | Core | Info | RenderManager successfully initialized | D:\MyGUI_3.2.0_RC1\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreRenderManager.cpp | 63
22:55:16 | Core | Info | * Initialise: DataManager | D:\MyGUI_3.2.0_RC1\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreDataManager.cpp | 26
22:55:16 | Core | Info | DataManager successfully initialized | D:\MyGUI_3.2.0_RC1\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreDataManager.cpp | 30
22:55:16 | Core | Info | * Initialise: Gui | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_Gui.cpp | 75
22:55:16 | Core | Info | * MyGUI version 3.2.0 | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_Gui.cpp | 87
22:55:16 | Core | Info | * Initialise: ResourceManager | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 48
22:55:16 | Core | Info | ResourceManager successfully initialized | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 56
22:55:16 | Core | Info | * Initialise: LayerManager | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LayerManager.cpp | 49
22:55:16 | Core | Info | LayerManager successfully initialized | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LayerManager.cpp | 57
22:55:16 | Core | Info | * Initialise: WidgetManager | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_WidgetManager.cpp | 67
22:55:16 | Core | Info | WidgetManager successfully initialized | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_WidgetManager.cpp | 98
22:55:16 | Core | Info | * Initialise: InputManager | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_InputManager.cpp | 58
22:55:16 | Core | Info | InputManager successfully initialized | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_InputManager.cpp | 76
22:55:16 | Core | Info | * Initialise: SubWidgetManager | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SubWidgetManager.cpp | 49
22:55:16 | Core | Info | SubWidgetManager successfully initialized | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SubWidgetManager.cpp | 69
22:55:16 | Core | Info | * Initialise: SkinManager | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 53
22:55:16 | Core | Info | SkinManager successfully initialized | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 61
22:55:16 | Core | Info | * Initialise: FontManager | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_FontManager.cpp | 48
22:55:16 | Core | Info | FontManager successfully initialized | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_FontManager.cpp | 57
22:55:16 | Core | Info | * Initialise: ControllerManager | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ControllerManager.cpp | 46
22:55:16 | Core | Info | ControllerManager successfully initialized | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ControllerManager.cpp | 56
22:55:16 | Core | Info | * Initialise: PointerManager | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_PointerManager.cpp | 60
22:55:16 | Core | Info | PointerManager successfully initialized | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_PointerManager.cpp | 78
22:55:16 | Core | Info | * Initialise: ClipboardManager | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ClipboardManager.cpp | 87
22:55:16 | Core | Info | ClipboardManager successfully initialized | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ClipboardManager.cpp | 101
22:55:16 | Core | Info | * Initialise: LayoutManager | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LayoutManager.cpp | 45
22:55:16 | Core | Info | LayoutManager successfully initialized | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LayoutManager.cpp | 50
22:55:16 | Core | Info | * Initialise: DynLibManager | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_DynLibManager.cpp | 41
22:55:16 | Core | Info | DynLibManager successfully initialized | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_DynLibManager.cpp | 45
22:55:16 | Core | Info | * Initialise: PluginManager | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_PluginManager.cpp | 45
22:55:16 | Core | Info | PluginManager successfully initialized | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_PluginManager.cpp | 49
22:55:16 | Core | Info | * Initialise: LanguageManager | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LanguageManager.cpp | 45
22:55:16 | Core | Info | LanguageManager successfully initialized | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LanguageManager.cpp | 49
22:55:16 | Core | Info | * Initialise: FactoryManager | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_FactoryManager.cpp | 40
22:55:16 | Core | Info | FactoryManager successfully initialized | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_FactoryManager.cpp | 42
22:55:16 | Core | Info | * Initialise: ToolTipManager | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ToolTipManager.cpp | 48
22:55:16 | Core | Info | ToolTipManager successfully initialized | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ToolTipManager.cpp | 60
22:55:16 | Core | Info | Load ini file 'EditorTheme.xml' | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
22:55:16 | Core | Info | Load ini file 'EditorLanguage.xml' | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
22:55:16 | Core | Info | Load ini file 'MessageBoxResources.xml' | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
22:55:16 | Core | Warning | Cannot locate resource MessageBoxResources.xml in resource group General or any other group. | D:\MyGUI_3.2.0_RC1\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreDataManager.cpp | 54
22:55:16 | Core | Error | ResourceManager : 'MessageBoxResources.xml', not found | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 153
22:55:16 | Core | Info | Load ini file 'MyGUI_Fonts.xml' | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
22:55:16 | Core | Info | ResourceTrueTypeFont 'DejaVuSansFont.17' using texture size 512 x 256 | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceTrueTypeFont.cpp | 206
22:55:16 | Core | Info | ResourceTrueTypeFont 'DejaVuSansFont.17' using real height 17 pixels | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceTrueTypeFont.cpp | 207
22:55:16 | Core | Info | Load ini file 'MyGUI_Images.xml' | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
22:55:16 | Core | Info | Load ini file 'MyGUI_CommonSkins.xml' | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
22:55:16 | Core | Info | Load ini file 'MyGUI_BlackOrangeTheme.xml' | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
22:55:16 | Core | Warning | Cannot locate resource MyGUI_BlackOrangeTheme.xml in resource group General or any other group. | D:\MyGUI_3.2.0_RC1\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreDataManager.cpp | 54
22:55:16 | Core | Error | ResourceManager : 'MyGUI_BlackOrangeTheme.xml', not found | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 153
22:55:16 | Core | Info | Load ini file 'MyGUI_Pointers.xml' | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
22:55:16 | Core | Info | Load ini file 'SelectionSkins.xml' | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
22:55:16 | Core | Warning | Cannot locate resource SelectionSkins.xml in resource group General or any other group. | D:\MyGUI_3.2.0_RC1\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreDataManager.cpp | 54
22:55:16 | Core | Error | ResourceManager : 'SelectionSkins.xml', not found | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 153
22:55:16 | Core | Info | Load ini file 'TextureViewerSkins.xml' | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
22:55:16 | Core | Warning | Cannot locate resource TextureViewerSkins.xml in resource group General or any other group. | D:\MyGUI_3.2.0_RC1\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreDataManager.cpp | 54
22:55:16 | Core | Error | ResourceManager : 'TextureViewerSkins.xml', not found | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 153
22:55:16 | Core | Info | Load ini file 'EditorReplaceSkins.xml' | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
22:55:16 | Core | Info | Load ini file 'FrameworkSkin.xml' | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
22:55:16 | Core | Warning | Cannot locate resource FrameworkSkin.xml in resource group General or any other group. | D:\MyGUI_3.2.0_RC1\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreDataManager.cpp | 54
22:55:16 | Core | Error | ResourceManager : 'FrameworkSkin.xml', not found | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 153
22:55:16 | Core | Info | Gui successfully initialized | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_Gui.cpp | 136
22:55:16 | Core | Warning | Cannot locate resource PointersW32.xml in resource group General or any other group. | D:\MyGUI_3.2.0_RC1\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreDataManager.cpp | 54
22:55:16 | Core | Error | ResourceManager : 'PointersW32.xml', not found | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 153
22:55:16 | Core | Error | Language 'Polish' is not found | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LanguageManager.cpp | 125
22:55:16 | LayoutEditor | Error | Editor : 'Failed to open XML file' , file='le_user_settings.xml' , line=0 , col=0 | D:\MyGUI_3.2.0_RC1\Tools\LayoutEditor\SettingsManager.cpp | 60
22:55:16 | Core | Error | Skin 'WindowCX' not found. Replaced with default skin. [ColourPanel.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PanelSkin' not found. Replaced with default skin. [ColourPanel.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PanelSkin' not found. Replaced with default skin. [ColourPanel.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'SliderVEmpty' not found. Replaced with default skin. [ColourPanel.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PanelSkin' not found. Replaced with default skin. [ColourPanel.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'BackgroundTile' not found. Replaced with default skin. [ColourPanel.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'SliderVEmpty' not found. Replaced with default skin. [ColourPanel.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PanelSkin' not found. Replaced with default skin. [ColourPanel.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'BackgroundTile' not found. Replaced with default skin. [ColourPanel.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'WhiteSkin' not found. Replaced with default skin. [ColourPanel.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'TextBox' not found. Replaced with default skin. [ColourPanel.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'TextBox' not found. Replaced with default skin. [ColourPanel.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'TextBox' not found. Replaced with default skin. [ColourPanel.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'EditBox' not found. Replaced with default skin. [ColourPanel.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'EditBox' not found. Replaced with default skin. [ColourPanel.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'EditBox' not found. Replaced with default skin. [ColourPanel.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'Button' not found. Replaced with default skin. [ColourPanel.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'Button' not found. Replaced with default skin. [ColourPanel.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'TextBox' not found. Replaced with default skin. [ColourPanel.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'EditBox' not found. Replaced with default skin. [ColourPanel.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PanelSkin' not found. Replaced with default skin. [EditorToolTip.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'WordWrapEmpty' not found. Replaced with default skin. [EditorToolTip.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Info | Load ini file 'Widgets.xml' | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
22:55:16 | Core | Info | Load ini file 'WidgetsBackwardCompatibility.xml' | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
22:55:16 | Core | Info | Load ini file 'Values.xml' | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
22:55:16 | Core | Info | Load ini file 'Ignore.xml' | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
22:55:16 | Core | Info | Load ini file 'Hotkeys.xml' | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
22:55:16 | Core | Info | Load ini file 'SkinReplaces.xml' | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
22:55:16 | Core | Info | Load ini file 'EditorPlugin.xml' | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
22:55:16 | Core | Info | Load ini file 'StrangeButtonPlugin.xml' | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
22:55:16 | Core | Info | Loading library Plugin_StrangeButton.dll | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_DynLib.cpp | 49
22:55:16 | Core | Error | Plugin 'Plugin_StrangeButton.dll' not found | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_PluginManager.cpp | 73
22:55:16 | Core | Info | Load ini file 'HikariWidgetPlugin.xml' | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
22:55:16 | Core | Info | Loading library Plugin_HikariWidget.dll | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_DynLib.cpp | 49
22:55:16 | Core | Error | Plugin 'Plugin_HikariWidget.dll' not found | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_PluginManager.cpp | 73
22:55:16 | Core | Info | Load ini file 'BerkeliumWidgetPlugin.xml' | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 130
22:55:16 | Core | Info | Loading library Plugin_BerkeliumWidget.dll | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_DynLib.cpp | 49
22:55:16 | Core | Error | Plugin 'Plugin_BerkeliumWidget.dll' not found | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_PluginManager.cpp | 73
22:55:16 | Core | Error | Texture 'wallpaper0.png' not found | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_TextureUtility.cpp | 54
22:55:16 | Core | Error | Skin 'MenuBar' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenu' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuLine' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuLine' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuLine' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuLine' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuSeparator' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuLine' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuLine' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuLine' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuLine' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuSeparator' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuLine' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenu' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuSeparator' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuLine' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'MenuBarButton' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenu' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuLine' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuLine' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuLine' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuSeparator' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuLine' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuLine' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuLine' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuSeparator' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuLine' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenu' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'MenuBarButton' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenu' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuLine' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuLine' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'MenuBarButton' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenu' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'MenuBarButton' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenu' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuLine' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuLine' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'MenuBarButton' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenu' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuLine' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuLine' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuLine' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuLine' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuLine' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PopupMenuLine' not found. Replaced with default skin. [MainMenuControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'TabControl' not found. Replaced with default skin. [ToolsControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'ScrollViewEmpty' not found. Replaced with default skin. [PropertiesPanelView.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PanelSkin' not found. Replaced with default skin. [PanelCell.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'TextBox' not found. Replaced with default skin. [PanelCell.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'ButtonExpand2Skin' not found. Replaced with default skin. [PanelCell.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PanelSkin' not found. Replaced with default skin. [PanelCell.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'TextBox' not found. Replaced with default skin. [PanelCell.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'ButtonExpand2Skin' not found. Replaced with default skin. [PanelCell.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PanelSkin' not found. Replaced with default skin. [PanelCell.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'TextBox' not found. Replaced with default skin. [PanelCell.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'ButtonExpand2Skin' not found. Replaced with default skin. [PanelCell.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PanelSkin' not found. Replaced with default skin. [PanelCell.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'TextBox' not found. Replaced with default skin. [PanelCell.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'ButtonExpand2Skin' not found. Replaced with default skin. [PanelCell.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'EditBox' not found. Replaced with default skin. [PanelItems.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'ListBox' not found. Replaced with default skin. [PanelItems.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'Button' not found. Replaced with default skin. [PanelItems.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'Button' not found. Replaced with default skin. [PanelItems.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PanelSkin' not found. Replaced with default skin. [PanelCell.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'TextBox' not found. Replaced with default skin. [PanelCell.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'ButtonExpand2Skin' not found. Replaced with default skin. [PanelCell.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'EditBox' not found. Replaced with default skin. [PanelUserData.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'EditBox' not found. Replaced with default skin. [PanelUserData.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'Button' not found. Replaced with default skin. [PanelUserData.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'Button' not found. Replaced with default skin. [PanelUserData.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'MultiListBox' not found. Replaced with default skin. [PanelUserData.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'PanelSkin' not found. Replaced with default skin. [PanelCell.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'TextBox' not found. Replaced with default skin. [PanelCell.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'ButtonExpand2Skin' not found. Replaced with default skin. [PanelCell.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'Button' not found. Replaced with default skin. [PanelControllers.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'Button' not found. Replaced with default skin. [PanelControllers.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'ComboBox' not found. Replaced with default skin. [PanelControllers.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'ListBox' not found. Replaced with default skin. [PanelControllers.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'TabControl' not found. Replaced with default skin. [WidgetsWindow.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'Button' not found. Replaced with default skin. [WidgetsWindow.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'ItemBoxEmpty' not found. Replaced with default skin. [] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'ItemBoxEmpty' not found. Replaced with default skin. [] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'ItemBoxEmpty' not found. Replaced with default skin. [] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'ListBox' not found. Replaced with default skin. [ProjectControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Error | Skin 'TextBox' not found. Replaced with default skin. [ProjectControl.layout] | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_SkinManager.cpp | 122
22:55:16 | Core | Warning | Cannot locate resource OpenSaveFileDialog.layout in resource group General or any other group. | D:\MyGUI_3.2.0_RC1\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreDataManager.cpp | 54
22:55:16 | Core | Error | ResourceManager : 'OpenSaveFileDialog.layout', not found | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 153
22:55:16 | Core | Critical | Layout 'OpenSaveFileDialog.layout' couldn't be loaded | D:\MyGUI_3.2.0_RC1\MyGUIEngine\src\MyGUI_LayoutManager.cpp | 83

Altren

13-01-2012 10:00:12

Show me your generated resources.xml file and where you have binaries and source files on your disk, I just want to check what you've got and what's wrong with it.
By default you don't need to do any actions at all after building any demo or tool that comes with MyGUI and you are able to run it from folder where it was built.

Oh, and by the way - what compiler and IDE do you use?

doDo

13-01-2012 13:06:20

My config is: Ogre 1.7.3 prebuilt + MyGUI 3.2 RC1 + Visual Studio 2010 + Win7 x86


Paths
Path to downloaded MyGUI: D:\MyGUI_3.2.0_RC1
Path to copied (from download package) MyGUI_Media: D:\MyGUI_3.2.0_RC1\MojBuild\Media (MojBuild - means CMake creation folder, I generated my build there)
Path to downloaded dependencies: D:\MyGUI_3.2.0_RC1\Dependencies

In release folder (D:\MyGUI_3.2.0_RC1\MojBuild\bin\release) where LE.exe appears I got: MyGUI.log, ogre.cfg, Ogre.log, OgreMain.dll, plugins.cfg, RenderSystem>Direct3D9.dll, RenderSystem_GL.dll, resources.xml and WrapperGenerator.exe

This is how looks my resources.xml
<?xml version="1.0" encoding="UTF-8"?>

<Paths>
<Path root="true">D:/MyGUI_3.2.0_RC1/MojBuild/Media</Path>
<Path>D:/MyGUI_3.2.0_RC1/MojBuild/Media/MyGUI_Media</Path>
</Paths>




In addition, from MyGUI.sln only DemoKeeper seems to be a trouble maker. The rest of do not making any trouble if I compile them.

And I almost forgot. When I am trying to compile LE run in debug mode application opens and suddenly error appears which inform me that program catch exception. In release mode there is no such problem, but still I see black screen.

Sord

03-03-2012 13:41:53

Hi

I have weird problem with upgrading. I use upgraded Ogre (1.7.3 -> 1.7.4) and MyGui (3.0.1 -> 3.2.0). Program crashed pretty randomly. One layout crash at first use, another at second and some works well. Have any idea where I should start finding problem? There is no anything intresting in log file (just warnings using old names).

Debug call stack:

MyGUIEngine_d.dll!std::_Iterator_base12::_Adopt(const std::_Container_base12 * _Parent) Line 146 + 0x6 bytes C++
MyGUIEngine_d.dll!std::_Vector_const_iterator<std::_Vector_val<MyGUI::Widget *,std::allocator<MyGUI::Widget *> > >::_Vector_const_iterator<std::_Vector_val<MyGUI::Widget *,std::allocator<MyGUI::Widget *> > >(MyGUI::Widget * * _Parg, const std::_Container_base12 * _Pvector) Line 47 C++
MyGUIEngine_d.dll!std::_Vector_iterator<std::_Vector_val<MyGUI::Widget *,std::allocator<MyGUI::Widget *> > >::_Vector_iterator<std::_Vector_val<MyGUI::Widget *,std::allocator<MyGUI::Widget *> > >(MyGUI::Widget * * _Parg, const std::_Container_base12 * _Pvector) Line 305 C++
MyGUIEngine_d.dll!std::vector<MyGUI::Widget *,std::allocator<MyGUI::Widget *> >::begin() Line 782 + 0x13 bytes C++
MyGUIEngine_d.dll!MyGUI::Widget::_updateAlpha() Line 466 + 0x12 bytes C++
MyGUIEngine_d.dll!MyGUI::Widget::setAlpha(float _alpha) Line 457 C++
MyGUIEngine_d.dll!MyGUI::ControllerFadeAlpha::addTime(MyGUI::Widget * _widget, float _time) Line 86 C++
MyGUIEngine_d.dll!MyGUI::ControllerManager::frameEntered(float _time) Line 146 + 0x2f bytes C++
MyGUIEngine_d.dll!MyGUI::delegates::CMethodDelegate1<MyGUI::ControllerManager,float>::invoke(float p1) Line 116 + 0x1d bytes C++
MyGUIEngine_d.dll!MyGUI::delegates::CMultiDelegate1<float>::operator()(float p1) Line 325 + 0x23 bytes C++
MyGUIEngine_d.dll!MyGUI::Gui::frameEvent(float _time) Line 348 C++
MyGUIEngine_d.dll!MyGUI::RenderManager::onFrameEvent(float _time) Line 64 C++
Bullet Ogre.exe!MyGUI::OgreRenderManager::renderQueueStarted(unsigned char queueGroupId, const std::basic_string<char,std::char_traits<char>,std::allocator<char> > & invocation, bool & skipThisInvocation) Line 195 + 0x33 bytes C++
OgreMain_d.dll!5101e74e()
[Frames below may be incorrect and/or missing, no symbols loaded for OgreMain_d.dll]
OgreMain_d.dll!51017dfa()
OgreMain_d.dll!51017ac6()
OgreMain_d.dll!5101472a()
OgreMain_d.dll!50b013f3()
OgreMain_d.dll!511f3fae()
OgreMain_d.dll!50f67b5b()
RenderSystem_Direct3D9_d.dll!53bfba31()
OgreMain_d.dll!50f67a3e()
OgreMain_d.dll!50f678ec()
OgreMain_d.dll!50f69f91()
OgreMain_d.dll!50f2de07()
OgreMain_d.dll!50fe7d07()
OgreMain_d.dll!50fe57f9()
Bullet Ogre.exe!AppStateManager::start(AppState * state) Line 92 + 0x10 bytes C++
Bullet Ogre.exe!DemoApp::startDemo() Line 38 C++
Bullet Ogre.exe!WinMain(HINSTANCE__ * hInst, HINSTANCE__ * __formal, char * strCmdLine, HINSTANCE__ * __formal) Line 22 C++
Bullet Ogre.exe!__tmainCRTStartup() Line 547 + 0x2c bytes C
Bullet Ogre.exe!WinMainCRTStartup() Line 371 C
kernel32.dll!762a339a()
ntdll.dll!77109ef2()
ntdll.dll!77109ec5()



Crash position:

#if _ITERATOR_DEBUG_LEVEL == 2
if (_Myproxy != _Parent_proxy)
{ // change parentage
_Lockit _Lock(_LOCK_DEBUG);
_Orphan_me();
_Mynextiter = _Parent_proxy->_Myfirstiter; //<---
_Parent_proxy->_Myfirstiter = this;
_Myproxy = _Parent_proxy;
}

Sord

06-03-2012 10:35:16

Hi again.

I am totally jammed there and still:

Unhandled exception at 0x534846c2 (MyGUIEngine_d.dll) in Bullet Ogre.exe: 0xC0000005: Access violation reading location 0xfdfdfe01.


I am trying trunk build, fixed classes names to new style and with ogre 1.7.3 (insted of 1.7.4). Also I am deleted almost everything "unnecessary" from my project and there is nothing else than Ogre's advanced framework where SDKtrays are replaced by MyGUI. Just when I go -> MenuState -> GameState -> PauseState -> MenuState... loop usually second time when I go pauseState program crash to that error. And of course everything works well with mygui 3.0.1.

Edit: Now it work after removing autoalpha from everything. If I understand right alpha controller try use deleted widgets. Bug???