[solved]button not working.

JKFOZZY

03-06-2010 20:08:58

Hi,

I'am trying to build a flight game. This is the first game that i try to create with an GUI. I read a article on the wiki and also read the code from the demo applications. But i didnĀ“t succeed in creating a button. There is no button visibile.

Here is my code.:

CustomGUI::CustomGUI(RenderWindow* a_Window, SceneManager* a_SceneMgr) : m_Window(a_Window), m_SceneMgr(a_SceneMgr)
{
m_Platform = new MyGUI::OgrePlatform();
m_Platform->initialise(m_Window, m_SceneMgr);
m_GUI = new MyGUI::Gui();
m_GUI->initialise();

MyGUI::ButtonPtr button = m_GUI->createWidget<MyGUI::Button>("Button", 10, 10, 300, 26, MyGUI::Align::Default, "Main");
button->setCaption("exit");

}


And here is my myGUI log.:
----------------------------------------------------------------------------------------------------------------------------------
loging report for : 06/03/2010 21:19:19
----------------------------------------------------------------------------------------------------------------------------------

21:19:19 | Platform | Info | * Initialise: OgreRenderManager | ..\..\..\..\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreRenderManager.cpp | 26
21:19:19 | Platform | Info | OgreRenderManager successfully initialized | ..\..\..\..\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreRenderManager.cpp | 54
21:19:19 | Platform | Info | * Initialise: OgreDataManager | ..\..\..\..\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreDataManager.cpp | 45
21:19:19 | Platform | Info | OgreDataManager successfully initialized | ..\..\..\..\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreDataManager.cpp | 49
21:19:19 | Core | Info | * Initialise: Gui | ..\..\MyGUIEngine\src\MyGUI_Gui.cpp | 82
21:19:19 | Core | Info | * MyGUI version 3.0.1 | ..\..\MyGUIEngine\src\MyGUI_Gui.cpp | 86
21:19:19 | Core | Info | * Initialise: ResourceManager | ..\..\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 43
21:19:19 | Core | Info | ResourceManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 51
21:19:19 | Core | Info | * Initialise: LayerManager | ..\..\MyGUIEngine\src\MyGUI_LayerManager.cpp | 44
21:19:19 | Core | Info | LayerManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_LayerManager.cpp | 52
21:19:19 | Core | Info | * Initialise: WidgetManager | ..\..\MyGUIEngine\src\MyGUI_WidgetManager.cpp | 66
21:19:19 | Core | Info | WidgetManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_WidgetManager.cpp | 105
21:19:19 | Core | Info | * Initialise: InputManager | ..\..\MyGUIEngine\src\MyGUI_InputManager.cpp | 41
21:19:19 | Core | Info | InputManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_InputManager.cpp | 58
21:19:19 | Core | Info | * Initialise: SubWidgetManager | ..\..\MyGUIEngine\src\MyGUI_SubWidgetManager.cpp | 44
21:19:19 | Core | Info | SubWidgetManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_SubWidgetManager.cpp | 64
21:19:19 | Core | Info | * Initialise: SkinManager | ..\..\MyGUIEngine\src\MyGUI_SkinManager.cpp | 46
21:19:19 | Core | Info | SkinManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_SkinManager.cpp | 54
21:19:19 | Core | Info | * Initialise: FontManager | ..\..\MyGUIEngine\src\MyGUI_FontManager.cpp | 43
21:19:19 | Core | Info | FontManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_FontManager.cpp | 52
21:19:19 | Core | Info | * Initialise: ControllerManager | ..\..\MyGUIEngine\src\MyGUI_ControllerManager.cpp | 41
21:19:19 | Core | Info | ControllerManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_ControllerManager.cpp | 51
21:19:19 | Core | Info | * Initialise: PointerManager | ..\..\MyGUIEngine\src\MyGUI_PointerManager.cpp | 51
21:19:19 | Core | Info | PointerManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_PointerManager.cpp | 69
21:19:19 | Core | Info | * Initialise: ClipboardManager | ..\..\MyGUIEngine\src\MyGUI_ClipboardManager.cpp | 82
21:19:19 | Core | Info | ClipboardManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_ClipboardManager.cpp | 96
21:19:19 | Core | Info | * Initialise: LayoutManager | ..\..\MyGUIEngine\src\MyGUI_LayoutManager.cpp | 42
21:19:19 | Core | Info | LayoutManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_LayoutManager.cpp | 48
21:19:19 | Core | Info | * Initialise: DynLibManager | ..\..\MyGUIEngine\src\MyGUI_DynLibManager.cpp | 34
21:19:19 | Core | Info | DynLibManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_DynLibManager.cpp | 36
21:19:19 | Core | Info | * Initialise: PluginManager | ..\..\MyGUIEngine\src\MyGUI_PluginManager.cpp | 36
21:19:19 | Core | Info | PluginManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_PluginManager.cpp | 40
21:19:19 | Core | Info | * Initialise: LanguageManager | ..\..\MyGUIEngine\src\MyGUI_LanguageManager.cpp | 40
21:19:19 | Core | Info | LanguageManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_LanguageManager.cpp | 44
21:19:19 | Core | Info | * Initialise: FactoryManager | ..\..\MyGUIEngine\src\MyGUI_FactoryManager.cpp | 34
21:19:19 | Core | Info | FactoryManager successfully initialized | ..\..\MyGUIEngine\src\MyGUI_FactoryManager.cpp | 37
21:19:19 | Core | Info | Load ini file 'core_theme.xml' | ..\..\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 152
21:19:19 | Core | Info | Load ini file 'core_language.xml' | ..\..\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 152
21:19:19 | Core | Info | Load ini file 'core_font.xml' | ..\..\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 152
21:19:19 | Core | Info | ResourceTrueTypeFont 'font_DejaVuSans.17' using texture size 512 x 256 | ..\..\MyGUIEngine\src\MyGUI_ResourceTrueTypeFont.cpp | 203
21:19:19 | Core | Info | ResourceTrueTypeFont 'font_DejaVuSans.17' using real height 17 pixels | ..\..\MyGUIEngine\src\MyGUI_ResourceTrueTypeFont.cpp | 204
21:19:19 | Core | Info | ResourceTrueTypeFont 'font_DejaVuSans.14' using texture size 256 x 256 | ..\..\MyGUIEngine\src\MyGUI_ResourceTrueTypeFont.cpp | 203
21:19:19 | Core | Info | ResourceTrueTypeFont 'font_DejaVuSans.14' using real height 14 pixels | ..\..\MyGUIEngine\src\MyGUI_ResourceTrueTypeFont.cpp | 204
21:19:19 | Core | Error | Texture 'core_micro_font.PNG' not found | ..\..\MyGUIEngine\src\MyGUI_TextureUtility.cpp | 55
21:19:19 | Platform | Error | Texture 'core_micro_font.PNG' not found, set default texture | ..\..\..\..\Platforms\Ogre\OgrePlatform\src\MyGUI_OgreTexture.cpp | 237
21:19:19 | Core | Info | Load ini file 'core_resource.xml' | ..\..\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 152
21:19:19 | Core | Info | Load ini file 'core_skin.xml' | ..\..\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 152
21:19:19 | Core | Info | Register value : 'HCenter' = 0 | c:\users\jordi\documents\mygui_3.0.1_source\mygui3.0\myguiengine\include\MyGUI_Align.h | 177
21:19:19 | Core | Info | Register value : 'VCenter' = 0 | c:\users\jordi\documents\mygui_3.0.1_source\mygui3.0\myguiengine\include\MyGUI_Align.h | 178
21:19:19 | Core | Info | Register value : 'Center' = 0 | c:\users\jordi\documents\mygui_3.0.1_source\mygui3.0\myguiengine\include\MyGUI_Align.h | 179
21:19:19 | Core | Info | Register value : 'Left' = 2 | c:\users\jordi\documents\mygui_3.0.1_source\mygui3.0\myguiengine\include\MyGUI_Align.h | 180
21:19:19 | Core | Info | Register value : 'Right' = 4 | c:\users\jordi\documents\mygui_3.0.1_source\mygui3.0\myguiengine\include\MyGUI_Align.h | 181
21:19:19 | Core | Info | Register value : 'HStretch' = 6 | c:\users\jordi\documents\mygui_3.0.1_source\mygui3.0\myguiengine\include\MyGUI_Align.h | 182
21:19:19 | Core | Info | Register value : 'Top' = 8 | c:\users\jordi\documents\mygui_3.0.1_source\mygui3.0\myguiengine\include\MyGUI_Align.h | 183
21:19:19 | Core | Info | Register value : 'Bottom' = 16 | c:\users\jordi\documents\mygui_3.0.1_source\mygui3.0\myguiengine\include\MyGUI_Align.h | 184
21:19:19 | Core | Info | Register value : 'VStretch' = 24 | c:\users\jordi\documents\mygui_3.0.1_source\mygui3.0\myguiengine\include\MyGUI_Align.h | 185
21:19:19 | Core | Info | Register value : 'Stretch' = 30 | c:\users\jordi\documents\mygui_3.0.1_source\mygui3.0\myguiengine\include\MyGUI_Align.h | 186
21:19:19 | Core | Info | Register value : 'Default' = 10 | c:\users\jordi\documents\mygui_3.0.1_source\mygui3.0\myguiengine\include\MyGUI_Align.h | 187
21:19:19 | Core | Info | Register value : 'HRelative' = 32 | c:\users\jordi\documents\mygui_3.0.1_source\mygui3.0\myguiengine\include\MyGUI_Align.h | 188
21:19:19 | Core | Info | Register value : 'VRelative' = 64 | c:\users\jordi\documents\mygui_3.0.1_source\mygui3.0\myguiengine\include\MyGUI_Align.h | 189
21:19:19 | Core | Info | Register value : 'Relative' = 96 | c:\users\jordi\documents\mygui_3.0.1_source\mygui3.0\myguiengine\include\MyGUI_Align.h | 190
21:19:19 | Core | Error | Texture 'core.png' not found | ..\..\MyGUIEngine\src\MyGUI_TextureUtility.cpp | 55
21:19:20 | Core | Info | Load ini file 'core_pointer.xml' | ..\..\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 152
21:19:20 | Core | Info | Load ini file 'core_layer.xml' | ..\..\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 152
21:19:20 | Core | Info | Load ini file 'core_settings.xml' | ..\..\MyGUIEngine\src\MyGUI_ResourceManager.cpp | 152
21:19:20 | Core | Error | Texture 'core_pointer.png' not found | ..\..\MyGUIEngine\src\MyGUI_TextureUtility.cpp | 55
21:19:20 | Core | Info | Gui successfully initialized | ..\..\MyGUIEngine\src\MyGUI_Gui.cpp | 129


JKFOZZY.

my.name

03-06-2010 22:39:45

add MyGUI_Media folder to Ogre resource system.

JKFOZZY

04-06-2010 07:07:25

Hi,

Thank you for your'e response. You say that i need to add the MyGUI_Media folder to the resource system. I already thit that. Could there be someting else that causes this problem?

FileSystem=C:/Users/Jordi/Documents/Visual Studio 2008/Projects/FlightGame/FlightGame/media/gui/Media/MyGUI_Media


JKFOZZY.

my.name

04-06-2010 10:30:48

show me Ogre.log

JKFOZZY

04-06-2010 12:13:19

Hi,

I'am now at school. When i am at home i will send you my Ogre.log

JKFOZZY.

JKFOZZY

04-06-2010 16:11:57

Hi,

I'am back from school. So here as i promissed my Ogre.log.:

23:28:26: Creating resource group General
23:28:26: Creating resource group Internal
23:28:26: Creating resource group Autodetect
23:28:26: SceneManagerFactory for type 'DefaultSceneManager' registered.
23:28:26: Registering ResourceManager for type Material
23:28:26: Registering ResourceManager for type Mesh
23:28:26: Registering ResourceManager for type Skeleton
23:28:26: MovableObjectFactory for type 'ParticleSystem' registered.
23:28:26: OverlayElementFactory for type Panel registered.
23:28:26: OverlayElementFactory for type BorderPanel registered.
23:28:26: OverlayElementFactory for type TextArea registered.
23:28:26: Registering ResourceManager for type Font
23:28:26: ArchiveFactory for archive type FileSystem registered.
23:28:26: ArchiveFactory for archive type Zip registered.
23:28:26: DDS codec registering
23:28:26: FreeImage version: 3.13.1
23:28:26: This program uses FreeImage, a free, open source image library supporting all common bitmap formats. See http://freeimage.sourceforge.net for details
23:28:26: 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
23:28:26: Registering ResourceManager for type HighLevelGpuProgram
23:28:26: Registering ResourceManager for type Compositor
23:28:26: MovableObjectFactory for type 'Entity' registered.
23:28:26: MovableObjectFactory for type 'Light' registered.
23:28:26: MovableObjectFactory for type 'BillboardSet' registered.
23:28:26: MovableObjectFactory for type 'ManualObject' registered.
23:28:26: MovableObjectFactory for type 'BillboardChain' registered.
23:28:26: MovableObjectFactory for type 'RibbonTrail' registered.
23:28:26: Loading library .\RenderSystem_Direct3D9_d
23:28:26: Installing plugin: D3D9 RenderSystem
23:28:26: D3D9 : Direct3D9 Rendering Subsystem created.
23:28:26: D3D9: Driver Detection Starts
23:28:26: D3D9: Driver Detection Ends
23:28:26: Plugin successfully installed
23:28:26: Loading library .\RenderSystem_GL_d
23:28:26: Installing plugin: GL RenderSystem
23:28:26: OpenGL Rendering Subsystem created.
23:28:26: Plugin successfully installed
23:28:26: Loading library .\Plugin_ParticleFX_d
23:28:26: Installing plugin: ParticleFX
23:28:26: Particle Emitter Type 'Point' registered
23:28:26: Particle Emitter Type 'Box' registered
23:28:26: Particle Emitter Type 'Ellipsoid' registered
23:28:26: Particle Emitter Type 'Cylinder' registered
23:28:26: Particle Emitter Type 'Ring' registered
23:28:26: Particle Emitter Type 'HollowEllipsoid' registered
23:28:26: Particle Affector Type 'LinearForce' registered
23:28:26: Particle Affector Type 'ColourFader' registered
23:28:26: Particle Affector Type 'ColourFader2' registered
23:28:26: Particle Affector Type 'ColourImage' registered
23:28:26: Particle Affector Type 'ColourInterpolator' registered
23:28:26: Particle Affector Type 'Scaler' registered
23:28:26: Particle Affector Type 'Rotator' registered
23:28:26: Particle Affector Type 'DirectionRandomiser' registered
23:28:26: Particle Affector Type 'DeflectorPlane' registered
23:28:26: Plugin successfully installed
23:28:26: Loading library .\Plugin_BSPSceneManager_d
23:28:26: Installing plugin: BSP Scene Manager
23:28:26: Plugin successfully installed
23:28:26: Loading library .\Plugin_CgProgramManager_d
23:28:26: Installing plugin: Cg Program Manager
23:28:26: Plugin successfully installed
23:28:26: Loading library .\Plugin_PCZSceneManager_d
23:28:26: Installing plugin: Portal Connected Zone Scene Manager
23:28:26: PCZone Factory Type 'ZoneType_Default' registered
23:28:26: Plugin successfully installed
23:28:26: Loading library .\Plugin_OctreeZone_d
23:28:26: Installing plugin: Octree Zone Factory
23:28:26: Plugin successfully installed
23:28:26: Loading library .\Plugin_OctreeSceneManager_d
23:28:26: Installing plugin: Octree & Terrain Scene Manager
23:28:26: Plugin successfully installed
23:28:26: Loading library .\OgreOggSound_d
23:28:26: Installing plugin: OgreOggSound
23:28:26: MovableObjectFactory for type 'OgreOggISound' registered.
23:28:26: Plugin successfully installed
23:28:26: Loading library .\ParticleUniverse_d
23:28:26: Installing plugin: ParticleUniverse
23:28:26: MovableObjectFactory for type 'PUParticleSystem' registered.
23:28:26: MovableObjectFactory for type 'BoxSet' registered.
23:28:26: MovableObjectFactory for type 'SphereSet' registered.
23:28:26: ParticleUniverse: Particle Renderer Type 'Beam' registered
23:28:26: ParticleUniverse: Particle Renderer Type 'Billboard' registered
23:28:26: ParticleUniverse: Particle Renderer Type 'Box' registered
23:28:26: ParticleUniverse: Particle Renderer Type 'Sphere' registered
23:28:26: ParticleUniverse: Particle Renderer Type 'Entity' registered
23:28:26: ParticleUniverse: Particle Renderer Type 'RibbonTrail' registered
23:28:26: ParticleUniverse: Particle Renderer Type 'Light' registered
23:28:26: ParticleUniverse: Particle Emitter Type 'Point' registered
23:28:26: ParticleUniverse: Particle Emitter Type 'Line' registered
23:28:26: ParticleUniverse: Particle Emitter Type 'Box' registered
23:28:26: ParticleUniverse: Particle Emitter Type 'Circle' registered
23:28:26: ParticleUniverse: Particle Emitter Type 'SphereSurface' registered
23:28:26: ParticleUniverse: Particle Emitter Type 'Vertex' registered
23:28:26: ParticleUniverse: Particle Emitter Type 'MeshSurface' registered
23:28:26: ParticleUniverse: Particle Emitter Type 'Position' registered
23:28:26: ParticleUniverse: Particle Emitter Type 'Slave' registered
23:28:26: ParticleUniverse: Particle Affector Type 'Dummy01' registered
23:28:26: ParticleUniverse: Particle Affector Type 'LinearForce' registered
23:28:26: ParticleUniverse: Particle Affector Type 'Gravity' registered
23:28:26: ParticleUniverse: Particle Affector Type 'ParticleFollower' registered
23:28:26: ParticleUniverse: Particle Affector Type 'Vortex' registered
23:28:26: ParticleUniverse: Particle Affector Type 'Randomiser' registered
23:28:26: ParticleUniverse: Particle Affector Type 'Line' registered
23:28:26: ParticleUniverse: Particle Affector Type 'Scale' registered
23:28:26: ParticleUniverse: Particle Affector Type 'GeometryRotator' registered
23:28:26: ParticleUniverse: Particle Affector Type 'TextureRotator' registered
23:28:26: ParticleUniverse: Particle Affector Type 'TextureAnimator' registered
23:28:26: ParticleUniverse: Particle Affector Type 'Jet' registered
23:28:26: ParticleUniverse: Particle Affector Type 'Align' registered
23:28:26: ParticleUniverse: Particle Affector Type 'FlockCentering' registered
23:28:26: ParticleUniverse: Particle Affector Type 'CollisionAvoidance' registered
23:28:26: ParticleUniverse: Particle Affector Type 'VelocityMatching' registered
23:28:26: ParticleUniverse: Particle Affector Type 'Colour' registered
23:28:26: ParticleUniverse: Particle Affector Type 'SineForce' registered
23:28:26: ParticleUniverse: Particle Affector Type 'Dummy02' registered
23:28:26: ParticleUniverse: Particle Affector Type 'SphereCollider' registered
23:28:26: ParticleUniverse: Particle Affector Type 'PlaneCollider' registered
23:28:26: ParticleUniverse: Particle Affector Type 'BoxCollider' registered
23:28:26: ParticleUniverse: Particle Affector Type 'InterParticleCollider' registered
23:28:26: ParticleUniverse: Particle Affector Type 'PathFollower' registered
23:28:26: ParticleUniverse: Particle Observer Type 'OnExpire' registered
23:28:26: ParticleUniverse: Particle Observer Type 'OnEmission' registered
23:28:26: ParticleUniverse: Particle Observer Type 'OnCount' registered
23:28:26: ParticleUniverse: Particle Observer Type 'OnEventFlag' registered
23:28:26: ParticleUniverse: Particle Observer Type 'OnCollision' registered
23:28:26: ParticleUniverse: Particle Observer Type 'OnVelocity' registered
23:28:26: ParticleUniverse: Particle Observer Type 'OnTime' registered
23:28:26: ParticleUniverse: Particle Observer Type 'OnPosition' registered
23:28:26: ParticleUniverse: Particle Observer Type 'OnClear' registered
23:28:26: ParticleUniverse: Particle Observer Type 'OnQuota' registered
23:28:26: ParticleUniverse: Particle Observer Type 'OnRandom' registered
23:28:26: ParticleUniverse: Particle EventHandler Type 'DoExpire' registered
23:28:26: ParticleUniverse: Particle EventHandler Type 'DoFreeze' registered
23:28:26: ParticleUniverse: Particle EventHandler Type 'DoPlacementParticle' registered
23:28:26: ParticleUniverse: Particle EventHandler Type 'DoStopSystem' registered
23:28:26: ParticleUniverse: Particle EventHandler Type 'DoEnableComponent' registered
23:28:26: ParticleUniverse: Particle EventHandler Type 'DoAffector' registered
23:28:26: ParticleUniverse: Particle EventHandler Type 'DoScale' registered
23:28:26: ParticleUniverse: Particle Extern Type 'Gravity' registered
23:28:26: ParticleUniverse: Particle Extern Type 'SphereCollider' registered
23:28:26: ParticleUniverse: Particle Extern Type 'BoxCollider' registered
23:28:26: ParticleUniverse: Particle Extern Type 'Vortex' registered
23:28:26: ParticleUniverse: Particle Extern Type 'SceneDecorator' registered
23:28:26: ParticleUniverse: Particle Behaviour Type 'Slave' registered
23:28:26: Plugin successfully installed
23:28:26: Loading library .\caelum_d
23:28:26: Installing plugin: Caelum
23:28:26: Caelum plugin version 0.5.0 installed
23:28:26: Registering ResourceManager for type PropertyScript
23:28:26: Plugin successfully installed
23:28:26: *-*-* OGRE Initialising
23:28:26: *-*-* Version 1.7.1 (Cthugha)
23:28:26: Creating resource group Essential
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/thumbnails' of type 'FileSystem' to resource group 'Essential'
23:28:26: Added resource location 'C:/Users/Jordi/Documents/Visual Studio 2008/Projects/FlightGame/FlightGame/media/gui/Media/MyGUI_Media' of type 'FileSystem' to resource group 'Essential'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\OgreMusic' of type 'FileSystem' to resource group 'Essential'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Caelum-0.5.0\Caelum-0.5.0\main\resources' of type 'FileSystem' to resource group 'Essential'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/media/models' of type 'FileSystem' to resource group 'Essential'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/media/materials' of type 'FileSystem' to resource group 'Essential'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/media/ParticleUniverse/core' of type 'FileSystem' to resource group 'Essential'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/media/ParticleUniverse/examples/materials' of type 'FileSystem' to resource group 'Essential'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/media/ParticleUniverse/examples/models' of type 'FileSystem' to resource group 'Essential'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/media/ParticleUniverse/examples/scripts' of type 'FileSystem' to resource group 'Essential'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/media/ParticleUniverse/examples/textures' of type 'FileSystem' to resource group 'Essential'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/media/ParticleUniverse/examples/ogre' of type 'FileSystem' to resource group 'Essential'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/media/ParticleUniverse/mediapack/materials' of type 'FileSystem' to resource group 'Essential'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/media/ParticleUniverse/mediapack/models' of type 'FileSystem' to resource group 'Essential'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/media/ParticleUniverse/mediapack/scripts' of type 'FileSystem' to resource group 'Essential'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/media/ParticleUniverse/mediapack/textures' of type 'FileSystem' to resource group 'Essential'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/packs/SdkTrays.zip' of type 'Zip' to resource group 'Essential'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media' of type 'FileSystem' to resource group 'General'
23:28:26: Creating resource group Popular
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/fonts' of type 'FileSystem' to resource group 'Popular'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/materials/programs' of type 'FileSystem' to resource group 'Popular'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/materials/scripts' of type 'FileSystem' to resource group 'Popular'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/materials/textures' of type 'FileSystem' to resource group 'Popular'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/materials/textures/nvidia' of type 'FileSystem' to resource group 'Popular'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/models' of type 'FileSystem' to resource group 'Popular'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/particle' of type 'FileSystem' to resource group 'Popular'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/DeferredShadingMedia' of type 'FileSystem' to resource group 'Popular'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/PCZAppMedia' of type 'FileSystem' to resource group 'Popular'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/RTShaderLib' of type 'FileSystem' to resource group 'Popular'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/RTShaderLib/materials' of type 'FileSystem' to resource group 'Popular'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/packs/cubemap.zip' of type 'Zip' to resource group 'Popular'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'Popular'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/packs/dragon.zip' of type 'Zip' to resource group 'Popular'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/packs/fresneldemo.zip' of type 'Zip' to resource group 'Popular'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/packs/ogretestmap.zip' of type 'Zip' to resource group 'Popular'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/packs/ogredance.zip' of type 'Zip' to resource group 'Popular'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/packs/Sinbad.zip' of type 'Zip' to resource group 'Popular'
23:28:26: Added resource location 'C:\Users\Jordi\Documents\Visual Studio 2008\Projects\FlightGame\FlightGame\media/packs/skybox.zip' of type 'Zip' to resource group 'Popular'
23:28:26: D3D9 : RenderSystem Option: Allow NVPerfHUD = No
23:28:26: D3D9 : RenderSystem Option: FSAA = 0
23:28:26: D3D9 : RenderSystem Option: Floating-point mode = Fastest
23:28:26: D3D9 : RenderSystem Option: Full Screen = Yes
23:28:26: D3D9 : RenderSystem Option: Rendering Device = Monitor-1-NVIDIA GeForce GTX 260
23:28:26: D3D9 : RenderSystem Option: Resource Creation Policy = Create on all devices
23:28:26: D3D9 : RenderSystem Option: VSync = No
23:28:26: D3D9 : RenderSystem Option: VSync Interval = 1
23:28:26: D3D9 : RenderSystem Option: Video Mode = 1440 x 900 @ 32-bit colour
23:28:26: D3D9 : RenderSystem Option: sRGB Gamma Conversion = No
23:28:27: CPU Identifier & Features
23:28:27: -------------------------
23:28:27: * CPU ID: AuthenticAMD: AMD Phenom(tm) II X3 720 Processor
23:28:27: * SSE: yes
23:28:27: * SSE2: yes
23:28:27: * SSE3: yes
23:28:27: * MMX: yes
23:28:27: * MMXEXT: yes
23:28:27: * 3DNOW: yes
23:28:27: * 3DNOWEXT: yes
23:28:27: * CMOV: yes
23:28:27: * TSC: yes
23:28:27: * FPU: yes
23:28:27: * PRO: yes
23:28:27: * HT: no
23:28:27: -------------------------
23:28:27: D3D9 : Subsystem Initialising
23:28:27: Registering ResourceManager for type Texture
23:28:27: Registering ResourceManager for type GpuProgram
23:28:27: D3D9RenderSystem::_createRenderWindow "FlightGame Render Window", 1440x900 fullscreen miscParams: FSAA=0 FSAAHint= colourDepth=32 gamma=false monitorIndex=0 useNVPerfHUD=false vsync=false vsyncInterval=1
23:28:27: D3D9 : Created D3D9 Rendering Window 'FlightGame Render Window' : 1440x900, 32bpp
23:28:27: D3D9 : Multi head disabled. It causes application run time crashes when used in Vista + SP 1 or 2 combination
23:28:28: D3D9: Vertex texture format supported - PF_FLOAT16_RGB
23:28:28: D3D9: Vertex texture format supported - PF_FLOAT16_RGBA
23:28:28: D3D9: Vertex texture format supported - PF_FLOAT32_RGB
23:28:28: D3D9: Vertex texture format supported - PF_FLOAT32_RGBA
23:28:28: D3D9: Vertex texture format supported - PF_FLOAT16_R
23:28:28: D3D9: Vertex texture format supported - PF_FLOAT32_R
23:28:28: D3D9: Vertex texture format supported - PF_FLOAT16_GR
23:28:28: D3D9: Vertex texture format supported - PF_FLOAT32_GR
23:28:28: RenderSystem capabilities
23:28:28: -------------------------
23:28:28: RenderSystem Name: Direct3D9 Rendering Subsystem
23:28:28: GPU Vendor: nvidia
23:28:28: Device Name: Monitor-1-NVIDIA GeForce GTX 260
23:28:28: Driver Version: 8.17.11.9621
23:28:28: * Fixed function pipeline: yes
23:28:28: * Hardware generation of mipmaps: yes
23:28:28: * Texture blending: yes
23:28:28: * Anisotropic texture filtering: yes
23:28:28: * Dot product texture operation: yes
23:28:28: * Cube mapping: yes
23:28:28: * Hardware stencil buffer: yes
23:28:28: - Stencil depth: 8
23:28:28: - Two sided stencil support: yes
23:28:28: - Wrap stencil values: yes
23:28:28: * Hardware vertex / index buffers: yes
23:28:28: * Vertex programs: yes
23:28:28: * Number of floating-point constants for vertex programs: 256
23:28:28: * Number of integer constants for vertex programs: 16
23:28:28: * Number of boolean constants for vertex programs: 16
23:28:28: * Fragment programs: yes
23:28:28: * Number of floating-point constants for fragment programs: 224
23:28:28: * Number of integer constants for fragment programs: 16
23:28:28: * Number of boolean constants for fragment programs: 16
23:28:28: * Geometry programs: no
23:28:28: * Number of floating-point constants for geometry programs: 0
23:28:28: * Number of integer constants for geometry programs: 0
23:28:28: * Number of boolean constants for geometry programs: 0
23:28:28: * 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
23:28:28: * Texture Compression: yes
23:28:28: - DXT: yes
23:28:28: - VTC: no
23:28:28: - PVRTC: no
23:28:28: * Scissor Rectangle: yes
23:28:28: * Hardware Occlusion Query: yes
23:28:28: * User clip planes: yes
23:28:28: * VET_UBYTE4 vertex element type: yes
23:28:28: * Infinite far plane projection: yes
23:28:28: * Hardware render-to-texture: yes
23:28:28: * Floating point textures: yes
23:28:28: * Non-power-of-two textures: yes
23:28:28: * Volume textures: yes
23:28:28: * Multiple Render Targets: 4
23:28:28: - With different bit depths: yes
23:28:28: * Point Sprites: yes
23:28:28: * Extended point parameters: yes
23:28:28: * Max Point Size: 10
23:28:28: * Vertex texture fetch: yes
23:28:28: * Number of world matrices: 0
23:28:28: * Number of texture units: 8
23:28:28: * Stencil buffer depth: 8
23:28:28: * Number of vertex blend matrices: 0
23:28:28: - Max vertex textures: 4
23:28:28: - Vertex textures shared: no
23:28:28: * Render to Vertex Buffer : no
23:28:28: * DirectX per stage constants: yes
23:28:28: ***************************************
23:28:28: *** D3D9 : Subsystem Initialised OK ***
23:28:28: ***************************************
23:28:28: DefaultWorkQueue('Root') initialising on thread 006BCC48.
23:28:28: DefaultWorkQueue('Root')::WorkerFunc - thread 04669A50 starting.
23:28:28: DefaultWorkQueue('Root')::WorkerFunc - thread 0466FE90 starting.
23:28:28: Particle Renderer Type 'billboard' registered
23:28:28: SceneManagerFactory for type 'BspSceneManager' registered.
23:28:28: Registering ResourceManager for type BspLevel
23:28:28: SceneManagerFactory for type 'PCZSceneManager' registered.
23:28:28: MovableObjectFactory for type 'PCZLight' registered.
23:28:28: MovableObjectFactory for type 'Portal' registered.
23:28:28: MovableObjectFactory for type 'AntiPortal' registered.
23:28:28: PCZone Factory Type 'ZoneType_Octree' registered
23:28:28: PCZone Factory Type 'ZoneType_Terrain' registered
23:28:28: SceneManagerFactory for type 'OctreeSceneManager' registered.
23:28:28: SceneManagerFactory for type 'TerrainSceneManager' registered.
23:28:28: DefaultWorkQueue('Root')::WorkerFunc - thread 04666FD8 starting.
23:28:28: Parsing scripts for resource group Autodetect
23:28:28: Finished parsing scripts for resource group Autodetect
23:28:28: Parsing scripts for resource group Essential
23:28:28: Parsing script DepthRender.program
23:28:28: Parsing script GroundFog.program
23:28:28: Parsing script Haze.program
23:28:28: Parsing script MinimalCompositorVP.program
23:28:28: Parsing script DepthComposer.material
23:28:29: Parsing script GroundFog.material
23:28:29: Parsing script LayeredClouds.material
23:28:29: Parsing script moon.material
23:28:29: Parsing script PointStarfield.material
23:28:29: Parsing script Precipitation.material
23:28:29: Parsing script SkyDome.material
23:28:29: Parsing script Starfield.material
23:28:29: Parsing script Sun.material
23:28:29: Parsing script pu_viewer.material
23:28:29: Parsing script pued.material
23:28:29: Parsing script pu_example.material
23:28:29: Parsing script pu_mediapack_01.material
23:28:30: Parsing script SdkTrays.material
23:28:30: Parsing script DepthComposer.compositor
23:28:30: Parsing script Precipitation.compositor
23:28:30: Parsing script pu_example_generic.pua
23:28:30: ParticleUniverse: Alias 'defaultBillboardRenderer' registered
23:28:30: ParticleUniverse: Alias 'flatBillboardRenderer' registered
23:28:30: ParticleUniverse: Alias 'simpleEmitter' registered
23:28:30: Parsing script pu_mediapack.pua
23:28:30: ParticleUniverse: Alias 'PUMediaPack/ColourAffectorFade_01' registered
23:28:30: ParticleUniverse: Alias 'PUMediaPack/ColourAffectorFade_02' registered
23:28:30: ParticleUniverse: Alias 'PUMediaPack/ColourAffectorFade_03' registered
23:28:30: ParticleUniverse: Alias 'PUMediaPack/ColourAffectorFade_04' registered
23:28:30: ParticleUniverse: Alias 'PUMediaPack/ColourAffectorFade_05' registered
23:28:30: ParticleUniverse: Alias 'PUMediaPack/ColourAffectorFade_06' registered
23:28:30: ParticleUniverse: Alias 'PUMediaPack/ColourAffectorFade_07' registered
23:28:30: ParticleUniverse: Alias 'PUMediaPack/OnClearDoStopSystem' registered
23:28:30: Parsing script explosion.pu
23:28:30: ParticleUniverse: Particle System Template 'CopyOfPUMediaPack/Explosion' registered
23:28:30: Texture: pu_nucleus.png: Loading 1 faces(PF_A8R8G8B8,64x64x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,64x64x1.
23:28:30: Texture: pu_fire_01_64x64.png: Loading 1 faces(PF_R8G8B8,64x64x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,64x64x1.
23:28:30: Texture: pump_atlas_smoke.png: Loading 1 faces(PF_A8R8G8B8,2048x2048x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,2048x2048x1.
23:28:30: Parsing script explosion2.pu
23:28:30: ParticleUniverse: Particle System Template 'CopyOfexplosionSystem' registered
23:28:30: Texture: pu_smoke_02_128x128.png: Loading 1 faces(PF_A8R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,128x128x1.
23:28:30: Parsing script pu_example_11_20.pu
23:28:30: ParticleUniverse: Particle System Template 'example_011' registered
23:28:31: Texture: pu_green_ball.png: Loading 1 faces(PF_A8R8G8B8,64x64x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,64x64x1.
23:28:31: ParticleUniverse: Particle System Template 'example_012' registered
23:28:31: Texture: pu_dot_03_64x64.png: Loading 1 faces(PF_R8G8B8,64x64x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,64x64x1.
23:28:31: ParticleUniverse: Particle System Template 'example_013' registered
23:28:31: ParticleUniverse: Particle System Template 'example_014' registered
23:28:31: Texture: pump_flare_01.png: Loading 1 faces(PF_A8R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,512x512x1.
23:28:31: Mesh: Loading fxpression.mesh.
23:28:31: WARNING: fxpression.mesh is an older format ([MeshSerializer_v1.40]); you should upgrade it as soon as possible using the OgreMeshUpgrade tool.
23:28:31: ParticleUniverse: Particle System Template 'example_015' registered
23:28:31: Texture: pu_flare_12_256x256.png: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
23:28:31: ParticleUniverse: Particle System Template 'example_016' registered
23:28:31: Texture: pu_dirt_256x512.png: Loading 1 faces(PF_A8R8G8B8,256x512x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x512x1.
23:28:31: ParticleUniverse: Particle System Template 'example_017' registered
23:28:31: ParticleUniverse: Particle System Template 'example_018' registered
23:28:31: Texture: pu_hart.png: Loading 1 faces(PF_A8R8G8B8,152x139x1) with 5 generated mipmaps from Image. Internal format is PF_A8R8G8B8,152x139x1.
23:28:31: ParticleUniverse: Particle System Template 'example_019' registered
23:28:31: ParticleUniverse: Particle System Template 'example_020' registered
23:28:31: Parsing script pu_example_1_10.pu
23:28:31: ParticleUniverse: Alias 'PointEmitter' registered
23:28:31: ParticleUniverse: Alias 'LinearForce' registered
23:28:31: ParticleUniverse: Particle System Template 'example_001' registered
23:28:31: ParticleUniverse: Particle System Template 'example_002' registered
23:28:31: ParticleUniverse: Particle System Template 'example_003' registered
23:28:31: Texture: pu_beam_02.png: Loading 1 faces(PF_R8G8B8,128x1x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x1x1.
23:28:31: ParticleUniverse: Particle System Template 'example_004' registered
23:28:31: ParticleUniverse: Particle System Template 'example_005' registered
23:28:31: ParticleUniverse: Particle System Template 'example_006' registered
23:28:31: Texture: crate6.png: Loading 1 faces(PF_R8G8B8,341x512x1) with 5 generated mipmaps from Image. Internal format is PF_X8R8G8B8,341x512x1.
23:28:31: ParticleUniverse: Particle System Template 'example_007' registered
23:28:31: Texture: pu_flare.png: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
23:28:31: ParticleUniverse: Particle System Template 'example_008' registered
23:28:31: ParticleUniverse: Particle System Template 'example_009' registered
23:28:31: ParticleUniverse: Particle System Template 'example_010' registered
23:28:31: Parsing script pu_example_21_30.pu
23:28:31: ParticleUniverse: Particle System Template 'example_021' registered
23:28:31: ParticleUniverse: Particle System Template 'example_022' registered
23:28:31: Texture: pu_ribbontrail.png: Loading 1 faces(PF_R8G8B8,128x1x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x1x1.
23:28:31: ParticleUniverse: Particle System Template 'example_023' registered
23:28:31: ParticleUniverse: Particle System Template 'example_024' registered
23:28:31: ParticleUniverse: Particle System Template 'example_025' registered
23:28:31: ParticleUniverse: Particle System Template 'example_026' registered
23:28:31: ParticleUniverse: Particle System Template 'example_027' registered
23:28:31: Texture: steelhead.png: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
23:28:31: ParticleUniverse: Particle System Template 'example_028' registered
23:28:31: ParticleUniverse: Particle System Template 'example_029' registered
23:28:31: Texture: interpolate.png: Loading 1 faces(PF_A8R8G8B8,384x384x1) with 5 generated mipmaps from Image. Internal format is PF_A8R8G8B8,384x384x1.
23:28:31: ParticleUniverse: Particle System Template 'example_030' registered
23:28:31: Texture: pu_beam_01.png: Loading 1 faces(PF_R8G8B8,128x1x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x1x1.
23:28:31: Parsing script pu_example_31_40.pu
23:28:31: ParticleUniverse: Particle System Template 'example_031' registered
23:28:31: Texture: pu_sand_336x330.png: Loading 1 faces(PF_A8R8G8B8,336x330x1) with 5 generated mipmaps from Image. Internal format is PF_A8R8G8B8,336x330x1.
23:28:31: Parsing script pu_example_various_1.pu
23:28:32: ParticleUniverse: Particle System Template 'FXpression' registered
23:28:32: Texture: pu_plate.jpg: Loading 1 faces(PF_R8G8B8,300x225x1) with 5 generated mipmaps from Image. Internal format is PF_X8R8G8B8,300x225x1.
23:28:32: ParticleUniverse: Particle System Template 'explosionSystem' registered
23:28:32: ParticleUniverse: Particle System Template 'electricBeamSystem' registered
23:28:32: Texture: pu_lightning_20x64.png: Loading 1 faces(PF_A8R8G8B8,20x64x1) with 5 generated mipmaps from Image. Internal format is PF_A8R8G8B8,20x64x1.
23:28:32: ParticleUniverse: Particle System Template 'lodSystem' registered
23:28:32: Texture: pu_rain.png: Loading 1 faces(PF_R8G8B8,64x64x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,64x64x1.
23:28:32: ParticleUniverse: Particle System Template 'advancedLodSystem' registered
23:28:32: Texture: pu_barrel_02.png: Loading 1 faces(PF_R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1.
23:28:32: Texture: pu_barrel_01.png: Loading 1 faces(PF_R8G8B8,98x117x1) with 5 generated mipmaps from Image. Internal format is PF_X8R8G8B8,98x117x1.
23:28:32: ParticleUniverse: Particle System Template 'rainSystem_1' registered
23:28:32: Texture: pu_rain_01.png: Loading 1 faces(PF_L16,32x1050x1) with 5 generated mipmaps from Image. Internal format is PF_L16,32x1050x1.
23:28:32: Texture: pu_circle.png: Loading 1 faces(PF_A8R8G8B8,64x64x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,64x64x1.
23:28:32: ParticleUniverse: Particle System Template 'rainSystem_2' registered
23:28:32: Parsing script pu_example_various_2.pu
23:28:32: ParticleUniverse: Particle System Template 'tornadoSystem' registered
23:28:32: Texture: pu_stone.jpeg: Loading 1 faces(PF_R8G8B8,480x360x1) with 5 generated mipmaps from Image. Internal format is PF_X8R8G8B8,480x360x1.
23:28:32: ParticleUniverse: Particle System Template 'flameSystem' registered
23:28:32: Texture: pu_flame.png: Loading 1 faces(PF_R8G8B8,64x64x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,64x64x1.
23:28:32: ParticleUniverse: Particle System Template 'fireSystem' registered
23:28:32: Texture: pu_smoke_brown_336x330.png: Loading 1 faces(PF_A8R8G8B8,336x330x1) with 5 generated mipmaps from Image. Internal format is PF_A8R8G8B8,336x330x1.
23:28:32: ParticleUniverse: Particle System Template 'windyFireSystem' registered
23:28:32: ParticleUniverse: Particle System Template 'softParticlesSystem' registered
23:28:32: Parsing script pu_physx.pu
23:28:32: ParticleUniverse: Particle System Template 'PhysXParticles' registered
23:28:32: Compiler error: invalid parameters in pu_physx.pu(33)
23:28:32: ParticleUniverse: Particle System Template 'PhysXFluid' registered
23:28:32: Compiler error: invalid parameters in pu_physx.pu(112)
23:28:32: Texture: pu_bbal.png: Loading 1 faces(PF_R8G8B8,486x365x1) with 5 generated mipmaps from Image. Internal format is PF_X8R8G8B8,486x365x1.
23:28:32: Compiler error: invalid parameters in pu_physx.pu(155)
23:28:32: Parsing script pu_mediapack_01.pu
23:28:32: ParticleUniverse: Particle System Template 'PUMediaPack/Bubbles' registered
23:28:32: Texture: pump_bubble.png: Loading 1 faces(PF_A8R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,512x512x1.
23:28:32: Texture: pump_bubble_blurred.png: Loading 1 faces(PF_A8R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,512x512x1.
23:28:32: ParticleUniverse: Particle System Template 'PUMediaPack/Teleport' registered
23:28:32: Texture: pump_streak_01.png: Loading 1 faces(PF_A8R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1.
23:28:32: Texture: pump_flare_04.png: Loading 1 faces(PF_A8R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1.
23:28:32: ParticleUniverse: Particle System Template 'PUMediaPack/Atomicity' registered
23:28:32: Texture: pump_streak_02.png: Loading 1 faces(PF_A8R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1.
23:28:32: ParticleUniverse: Particle System Template 'PUMediaPack/LineStreak' registered
23:28:32: Texture: pump_streak_04.png: Loading 1 faces(PF_A8R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1.
23:28:32: ParticleUniverse: Particle System Template 'PUMediaPack/SpiralStars' registered
23:28:32: Texture: pump_flare_05.png: Loading 1 faces(PF_A8R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1.
23:28:32: ParticleUniverse: Particle System Template 'PUMediaPack/TimeShift' registered
23:28:32: Texture: pump_watch.png: Loading 1 faces(PF_A8R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,512x512x1.
23:28:32: Texture: pump_hourglass.png: Loading 1 faces(PF_A8R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,512x512x1.
23:28:32: Parsing script pu_mediapack_02.pu
23:28:33: ParticleUniverse: Particle System Template 'PUMediaPack/Leaves' registered
23:28:33: Texture: pump_leave.png: Loading 1 faces(PF_A8R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,512x512x1.
23:28:33: ParticleUniverse: Particle System Template 'PUMediaPack/FlareShield' registered
23:28:33: ParticleUniverse: Alias 'PUMediaPack/LightningBolt/PointEmitter' registered
23:28:33: ParticleUniverse: Particle System Template 'PUMediaPack/LightningBolt' registered
23:28:33: Texture: pump_smoke_01.png: Loading 1 faces(PF_A8R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,512x512x1.
23:28:33: Texture: pump_lightning_01.png: Loading 1 faces(PF_A8R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,512x512x1.
23:28:33: Texture: pump_lightning_02.png: Loading 1 faces(PF_A8R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,512x512x1.
23:28:33: Texture: pump_lightning_03.png: Loading 1 faces(PF_A8R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,512x512x1.
23:28:33: Texture: pump_lightning_04.png: Loading 1 faces(PF_A8R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,512x512x1.
23:28:33: ParticleUniverse: Particle System Template 'PUMediaPack/PsychoBurn' registered
23:28:33: Texture: pump_star_03.png: Loading 1 faces(PF_A8R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,512x512x1.
23:28:33: Texture: pump_genesis_01.png: Loading 1 faces(PF_A8R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,512x512x1.
23:28:33: Texture: pump_genesis_02.png: Loading 1 faces(PF_A8R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,512x512x1.
23:28:33: ParticleUniverse: Particle System Template 'PUMediaPack/Hypno' registered
23:28:33: Texture: pump_swirl_01.png: Loading 1 faces(PF_A8R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,512x512x1.
23:28:33: ParticleUniverse: Particle System Template 'PUMediaPack/Smoke' registered
23:28:33: ParticleUniverse: Particle System Template 'PUMediaPack/CanOfWorms' registered
23:28:33: ParticleUniverse: Particle System Template 'PUMediaPack/Propulsion' registered
23:28:33: Parsing script pu_mediapack_03.pu
23:28:33: ParticleUniverse: Particle System Template 'PUMediaPack/BlackHole' registered
23:28:33: Texture: pump_streak_03.png: Loading 1 faces(PF_A8R8G8B8,24x128x1) with 5 generated mipmaps from Image. Internal format is PF_A8R8G8B8,24x128x1.
23:28:33: ParticleUniverse: Particle System Template 'PUMediaPack/ColouredStreaks' registered
23:28:33: ParticleUniverse: Particle System Template 'PUMediaPack/Woosh' registered
23:28:33: Texture: pump_ring_04.png: Loading 1 faces(PF_A8R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,512x512x1.
23:28:33: ParticleUniverse: Particle System Template 'PUMediaPack/DirtExplosion' registered
23:28:33: Texture: pump_dirt_01.png: Loading 1 faces(PF_A8R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,512x512x1.
23:28:33: ParticleUniverse: Particle System Template 'PUMediaPack/ElectroShield' registered
23:28:33: Texture: pump_spark_01.png: Loading 1 faces(PF_A8R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,512x512x1.


that is the firt part of the ogre log. I'am not allowed to post more than 60000 characters so in my second post i give you the second part.

JKFOZZY.

JKFOZZY

04-06-2010 16:13:14

Here is the second part of my Ogre.log.:

23:28:33: ParticleUniverse: Alias 'PUMediaPack/Fire/BoxEmitter' registered
23:28:33: ParticleUniverse: Alias 'PUMediaPack/Fire/GravityAffectorLarge' registered
23:28:33: ParticleUniverse: Alias 'PUMediaPack/Fire/GravityAffectorSmall' registered
23:28:33: ParticleUniverse: Alias 'PUMediaPack/Fire/ScaleAffectorLarge' registered
23:28:33: ParticleUniverse: Alias 'PUMediaPack/Fire/ScaleAffectorSmall' registered
23:28:33: ParticleUniverse: Alias 'PUMediaPack/Fire/ParticleFollower' registered
23:28:33: ParticleUniverse: Alias 'PUMediaPack/Fire/ColourAffector' registered
23:28:33: ParticleUniverse: Particle System Template 'PUMediaPack/Fireplace_01' registered
23:28:33: Texture: pump_flame_01.png: Loading 1 faces(PF_A8R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,128x128x1.
23:28:33: Texture: pump_flame_02.png: Loading 1 faces(PF_A8R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,128x128x1.
23:28:33: ParticleUniverse: Particle System Template 'PUMediaPack/Fireplace_02' registered
23:28:33: Texture: pump_flame_03.png: Loading 1 faces(PF_A8R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,128x128x1.
23:28:33: Texture: pump_flame_04.png: Loading 1 faces(PF_A8R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,128x128x1.
23:28:34: Parsing script pu_mediapack_04.pu
23:28:34: ParticleUniverse: Particle System Template 'PUMediaPack/Explosion' registered
23:28:34: Parsing script pu_mediapack_05.pu
23:28:34: ParticleUniverse: Particle System Template 'PUMediaPack/Snow' registered
23:28:34: Texture: pump_snow_01.png: Loading 1 faces(PF_A8R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,512x512x1.
23:28:34: Parsing script SdkTrays.fontdef
23:28:34: Parsing script SdkTrays.overlay
23:28:34: Bad element attribute line: '# you can offset the image to change the cursor "hotspot"' for element SdkTrays/Cursor in overlay
23:28:34: Texture: sdk_cursor.png: Loading 1 faces(PF_A8R8G8B8,32x32x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1.
23:28:34: Texture: sdk_tray.png: Loading 1 faces(PF_A8R8G8B8,64x64x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,64x64x1.
23:28:34: Texture: sdk_button_up.png: Loading 1 faces(PF_A8R8G8B8,128x32x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,128x32x1.
23:28:34: Texture: sdk_text_box.png: Loading 1 faces(PF_A8R8G8B8,32x32x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1.
23:28:34: Texture: sdk_mini_tray.png: Loading 1 faces(PF_A8R8G8B8,32x32x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1.
23:28:34: Texture: sdk_track.png: Loading 1 faces(PF_A8R8G8B8,16x32x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,16x32x1.
23:28:34: Texture: sdk_handle.png: Loading 1 faces(PF_A8R8G8B8,16x16x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,16x16x1.
23:28:34: Texture: sdk_mini_text_box.png: Loading 1 faces(PF_A8R8G8B8,32x32x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1.
23:28:34: Texture: sdk_label.png: Loading 1 faces(PF_A8R8G8B8,32x32x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1.
23:28:34: Texture: sdk_separator.png: Loading 1 faces(PF_A8R8G8B8,64x16x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,64x16x1.
23:28:34: Texture: sdk_logo.png: Loading 1 faces(PF_A8R8G8B8,128x64x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,128x64x1.
23:28:34: Texture: sdk_shade.png: Loading 1 faces(PF_A8R8G8B8,64x48x1) with 5 generated mipmaps from Image. Internal format is PF_A8R8G8B8,64x48x1.
23:28:34: Texture: sdk_frame.png: Loading 1 faces(PF_A8R8G8B8,32x32x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1.
23:28:34: Texture: sdk_mini_text_box_over.png: Loading 1 faces(PF_A8R8G8B8,32x32x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1.
23:28:34: Texture: sdk_pulse.png: Loading 1 faces(PF_R8G8B8,8x1x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,8x1x1.
23:28:34: Finished parsing scripts for resource group Essential
23:28:34: Parsing scripts for resource group General
23:28:34: Finished parsing scripts for resource group General
23:28:34: Parsing scripts for resource group Internal
23:28:34: Finished parsing scripts for resource group Internal
23:28:34: Parsing scripts for resource group Popular
23:28:34: Parsing script Examples.program
23:28:34: Parsing script StdQuad_vp.program
23:28:34: Parsing script deferred_post.program
23:28:34: Parsing script ShadowCaster.program
23:28:34: Parsing script airflow.material
23:28:34: Parsing script ASCII.material
23:28:34: Parsing script ASMSwizzle.material
23:28:34: Compiler error: object unsupported by render system in ASMSwizzle.material(1)
23:28:34: Parsing script bigcity.material
23:28:34: Parsing script BlackAndWhite.material
23:28:34: Parsing script Bloom.material
23:28:34: Parsing script Bloom2.material
23:28:34: Parsing script carrier.material
23:28:35: Parsing script CGSwizzle.material
23:28:35: Parsing script city.material
23:28:35: Parsing script CompositorDemo.material
23:28:35: Parsing script DepthShadowmap.material
23:28:35: Parsing script Dither.material
23:28:35: Parsing script DOF.material
23:28:35: Parsing script Embossed.material
23:28:35: Parsing script Example-Water.material
23:28:35: Parsing script Examples-Advanced.material
23:28:36: Parsing script Examples-DynTex.material
23:28:36: Parsing script Examples-Water.material
23:28:36: Parsing script Examples.material
23:28:37: OGRE EXCEPTION(2:InvalidParametersException): Parameter called camObjPos does not exist. in GpuProgramParameters::_findNamedConstantDefinition at ..\..\..\..\OgreMain\src\OgreGpuProgramParams.cpp (line 1433)
23:28:37: Compiler error: invalid parameters in Examples.material(837): setting of constant failed
23:28:37: Parsing script facial.material
23:28:37: Parsing script Glass.material
23:28:37: Parsing script GLSLSwizzle.material
23:28:37: Parsing script Halftone.material
23:28:37: Parsing script hdr.material
23:28:38: Parsing script HeatVision.material
23:28:38: Parsing script hornet..material
23:28:38: Parsing script Hurt.material
23:28:38: Parsing script instancing.material
23:28:38: Parsing script Invert.material
23:28:38: Parsing script IsoSurf.material
23:28:38: Parsing script Laplace.material
23:28:38: Parsing script mikoyan.material
23:28:38: Parsing script MotionBlur.material
23:28:38: Parsing script MRTtest.material
23:28:38: Parsing script NightVision.material
23:28:38: Parsing script Ocean.material
23:28:39: Parsing script OffsetMapping.material
23:28:39: Parsing script Ogre.material
23:28:39: Parsing script OldMovie.material
23:28:39: Parsing script OldTV.material
23:28:39: Parsing script ParticleGS.material
23:28:39: OGRE EXCEPTION(7:InternalErrorException): Unable to compile Cg program Ogre/ParticleGS/GenerateVS: CG ERROR : "The compile returned an error."
(0) : error C6015: Output 'POSITION' not completely written
in CgProgram::loadFromSource at ..\..\..\..\..\PlugIns\CgProgramManager\src\OgreCgProgramManagerDll.cpp (line 67)
23:28:39: High-level program Ogre/ParticleGS/GenerateVS encountered an error during loading and is thus not supported.
OGRE EXCEPTION(7:InternalErrorException): Unable to compile Cg program Ogre/ParticleGS/GenerateVS: CG ERROR : "The compile returned an error."
(0) : error C6015: Output 'POSITION' not completely written
in CgProgram::loadFromSource at ..\..\..\..\..\PlugIns\CgProgramManager\src\OgreCgProgramManagerDll.cpp (line 67)
23:28:39: OGRE EXCEPTION(7:InternalErrorException): Unable to compile Cg program Ogre/ParticleGS/DisplayVS: CG ERROR : "The compile returned an error."
(249) : warning C7050: "output.color" might be used before being initialized
(0) : error C6015: Output 'POSITION' not completely written
in CgProgram::loadFromSource at ..\..\..\..\..\PlugIns\CgProgramManager\src\OgreCgProgramManagerDll.cpp (line 67)
23:28:39: High-level program Ogre/ParticleGS/DisplayVS encountered an error during loading and is thus not supported.
OGRE EXCEPTION(7:InternalErrorException): Unable to compile Cg program Ogre/ParticleGS/DisplayVS: CG ERROR : "The compile returned an error."
(249) : warning C7050: "output.color" might be used before being initialized
(0) : error C6015: Output 'POSITION' not completely written
in CgProgram::loadFromSource at ..\..\..\..\..\PlugIns\CgProgramManager\src\OgreCgProgramManagerDll.cpp (line 67)
23:28:39: OGRE EXCEPTION(7:InternalErrorException): Unable to compile Cg program Ogre/ParticleGS/DisplayPS: CG ERROR : "The compile returned an error."
(323) : fatal error C9999: unexpected cast operation
in CgProgram::loadFromSource at ..\..\..\..\..\PlugIns\CgProgramManager\src\OgreCgProgramManagerDll.cpp (line 67)
23:28:39: High-level program Ogre/ParticleGS/DisplayPS encountered an error during loading and is thus not supported.
OGRE EXCEPTION(7:InternalErrorException): Unable to compile Cg program Ogre/ParticleGS/DisplayPS: CG ERROR : "The compile returned an error."
(323) : fatal error C9999: unexpected cast operation
in CgProgram::loadFromSource at ..\..\..\..\..\PlugIns\CgProgramManager\src\OgreCgProgramManagerDll.cpp (line 67)
23:28:39: Parsing script Penguin.material
23:28:39: Parsing script Posterize.material
23:28:39: Parsing script pssm.material
23:28:39: Parsing script RadialBlur.material
23:28:40: Parsing script RZR-002.material
23:28:40: Parsing script ShaderSystem.material
23:28:40: Parsing script shadows.material
23:28:40: Parsing script SharpenEdges.material
23:28:40: Parsing script sibenik.material
23:28:40: Parsing script smoke.material
23:28:40: Parsing script Tiling.material
23:28:40: Parsing script torpedoship.material
23:28:40: Parsing script VarianceShadowmap.material
23:28:40: Parsing script warship.material
23:28:40: Parsing script deferreddemo.material
23:28:40: Parsing script deferred_post.material
23:28:40: Parsing script deferred_post_minilight.material
23:28:40: Parsing script ShadowCaster.material
23:28:40: Parsing script ssao.material
23:28:41: Parsing script ROOM.material
23:28:41: Parsing script RTShaderSystem.material
23:28:41: Compiler error: unknown error in RTShaderSystem.material(23): token "rtshader_system" is not recognized
23:28:41: Compiler error: unknown error in RTShaderSystem.material(52): token "rtshader_system" is not recognized
23:28:41: Compiler error: unknown error in RTShaderSystem.material(81): token "rtshader_system" is not recognized
23:28:41: Compiler error: unknown error in RTShaderSystem.material(110): token "rtshader_system" is not recognized
23:28:41: Compiler error: unknown error in RTShaderSystem.material(146): token "rtshader_system" is not recognized
23:28:41: Compiler error: unknown error in RTShaderSystem.material(81): token "rtshader_system" is not recognized
23:28:41: Compiler error: unknown error in RTShaderSystem.material(162): token "rtshader_system" is not recognized
23:28:41: Compiler error: unknown error in RTShaderSystem.material(81): token "rtshader_system" is not recognized
23:28:41: Compiler error: unknown error in RTShaderSystem.material(110): token "rtshader_system" is not recognized
23:28:41: Parsing script RomanBath.material
23:28:41: Parsing script Sinbad.material
23:28:41: Parsing script AfterBurner.particle
23:28:41: Parsing script airflow.particle
23:28:41: Parsing script emitted_emitter.particle
23:28:41: Parsing script Examples-Water.particle
23:28:41: Parsing script Examples.particle
23:28:41: Parsing script smoke.particle
23:28:41: Parsing script Examples.compositor
23:28:41: Parsing script deferred.compositor
23:28:41: Parsing script ssao.compositor
23:28:41: Parsing script TestSkyScript.os
23:28:41: Parsing script sample.fontdef
23:28:41: Finished parsing scripts for resource group Popular
23:28:41: Caelum: Initialising Caelum system...
23:28:41: Caelum: Creating required internal resource group 'Caelum'
23:28:41: Creating resource group Caelum
23:28:41: Caelum: Creating caelum sub-components.
23:28:41: Texture: EarthClearSky2.png: Loading 1 faces(PF_A8R8G8B8,64x64x1) with 0 generated mipmaps from Image. Internal format is PF_A8R8G8B8,64x64x1.
23:28:41: Texture: AtmosphereDepth.png: Loading 1 faces(PF_R8G8B8,32x1x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,32x1x1.
23:28:41: Caelum: Creating CaelumSphericDome sphere mesh resource...
23:28:41: Caelum: generateSphericDome DONE
23:28:41: Texture: sun_disc.png: Loading 1 faces(PF_A8R8G8B8,128x128x1) with 0 generated mipmaps from Image. Internal format is PF_A8R8G8B8,128x128x1.
23:28:41: D3D9 : Loading 2D Texture, image name : 'moon_disc.dds' with 5 mip map levels
23:28:41: D3D9 : Loading 2D Texture, image name : 'noise1.dds' with 5 mip map levels
23:28:41: D3D9 : Loading 2D Texture, image name : 'noise2.dds' with 5 mip map levels
23:28:41: D3D9 : Loading 2D Texture, image name : 'noise4.dds' with 5 mip map levels
23:28:41: Caelum: DONE initializing
23:28:41: *** Initializing OIS ***
23:28:42: Mesh: Loading carrier.mesh.
23:28:42: Texture: grey4.jpg: Loading 1 faces(PF_R8G8B8,577x462x1) with 5 generated mipmaps from Image. Internal format is PF_X8R8G8B8,577x462x1.
23:28:42: Texture: fence2.png: Loading 1 faces(PF_A8R8G8B8,101x22x1) with 5 generated mipmaps from Image. Internal format is PF_A8R8G8B8,101x22x1.
23:28:42: Texture: blue.jpg: Loading 1 faces(PF_R8G8B8,535x428x1) with 5 generated mipmaps from Image. Internal format is PF_X8R8G8B8,535x428x1.
23:28:42: Texture: runway1.jpg: Loading 1 faces(PF_R8G8B8,1012x187x1) with 5 generated mipmaps from Image. Internal format is PF_X8R8G8B8,1012x187x1.
23:28:42: Texture: malitex.png: Loading 1 faces(PF_A8R8G8B8,366x633x1) with 5 generated mipmaps from Image. Internal format is PF_A8R8G8B8,366x633x1.
23:28:42: Texture: grid.png: Loading 1 faces(PF_A8R8G8B8,492x536x1) with 5 generated mipmaps from Image. Internal format is PF_A8R8G8B8,492x536x1.
23:28:43: Texture: american_flag.png: Loading 1 faces(PF_A8R8G8B8,316x377x1) with 5 generated mipmaps from Image. Internal format is PF_A8R8G8B8,316x377x1.
23:28:43: Mesh: Loading bigcity.mesh.
23:28:43: Mesh: Loading knot.mesh.
23:28:43: Texture: MtlPlat2.jpg: Loading 1 faces(PF_R8G8B8,780x511x1) with 5 generated mipmaps from Image. Internal format is PF_X8R8G8B8,780x511x1.
23:28:43: Mesh: Loading hornet.mesh.
23:28:43: Texture: DARKGREY.JPG: Loading 1 faces(PF_R8G8B8,1x1x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1x1x1.
23:28:43: Texture: LIGHGREY.JPG: Loading 1 faces(PF_R8G8B8,1x1x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1x1x1.
23:28:43: *** --- AVAILABLE DEVICES --- ***
23:28:43: *** --- Generic Software
23:28:43: *** --- Choosing: Generic Software (Default device)
23:28:43: *** --- OpenAL Device successfully created
23:28:43: *** --- OpenAL Context successfully created
23:28:43: *** --- SUPPORTED FORMATS
23:28:43: *** --- AL_FORMAT_MONO16 -- Monophonic Sound
23:28:43: *** --- AL_FORMAT_STEREO16 -- Stereo Sound
23:28:43: *** --- AL_FORMAT_QUAD16 -- 4 Channel Sound
23:28:43: *** --- AL_FORMAT_51CHN16 -- 5.1 Surround Sound
23:28:43: *** --- AL_FORMAT_61CHN16 -- 6.1 Surround Sound
23:28:43: *** --- AL_FORMAT_71CHN16 -- 7.1 Surround Sound
23:28:43: *** --- EFX Detected
23:28:43: *** --- 1 Auxiliary Effect Slot(s)
23:28:43: *** --- 1 Auxiliary Send(s) per Source
23:28:43: *** --- EFFECTS SUPPORTED:
23:28:43: *** --- 'Reverb' Support: YES
23:28:43: *** --- 'EAX Reverb' Support: YES
23:28:43: *** --- 'Chorus' Support: NO
23:28:43: *** --- 'Distortion' Support: NO
23:28:43: *** --- 'Echo' Support: NO
23:28:43: *** --- 'Flanger' Support: NO
23:28:43: *** --- 'Frequency shifter' Support: NO
23:28:43: *** --- 'Vocal Morpher' Support: NO
23:28:43: *** --- 'Pitch shifter' Support: NO
23:28:43: *** --- 'Ring modulator' Support: NO
23:28:43: *** --- 'Autowah' Support: NO
23:28:43: *** --- 'Compressor' Support: NO
23:28:43: *** --- 'Equalizer' Support: NO
23:28:43: *** --- FILTERS SUPPORTED:
23:28:43: *** --- 'Low Pass' Support: YES
23:28:43: *** --- 'High Pass' Support: NO
23:28:43: *** --- 'Band Pass' Support: NO
23:28:43: *** --- XRAM NOT Detected
23:28:43: *** --- EAX 2.0 Detected
23:28:43: Mesh: Loading warship.mesh.
23:28:43: Mesh: Loading torpedoship.mesh.
23:28:43: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource 649.TIF in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 753)
23:28:43: Error loading texture 649.TIF. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource 649.TIF in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 753)
23:28:43: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource TAVOLA.JPG in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 753)
23:28:43: Error loading texture TAVOLA.JPG. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource TAVOLA.JPG in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 753)
23:28:43: Font SdkTrays/Captionusing texture size 512x256
23:28:43: Info: Freetype returned null for character 160 in font SdkTrays/Caption
23:28:43: Texture: SdkTrays/CaptionTexture: Loading 1 faces(PF_BYTE_LA,512x256x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x256x1.
23:28:43: Font SdkTrays/Valueusing texture size 512x512
23:28:44: Info: Freetype returned null for character 127 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 128 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 129 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 130 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 131 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 132 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 133 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 134 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 135 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 136 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 137 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 138 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 139 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 140 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 141 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 142 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 143 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 144 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 145 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 146 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 147 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 148 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 149 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 150 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 151 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 152 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 153 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 154 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 155 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 156 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 157 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 158 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 159 in font SdkTrays/Value
23:28:44: Info: Freetype returned null for character 160 in font SdkTrays/Value
23:28:44: Texture: SdkTrays/ValueTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1.
23:28:44: Texture: flare.png: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
23:29:16: DefaultWorkQueue('Root') shutting down on thread 006BCC48.
23:29:16: DefaultWorkQueue('Root')::WorkerFunc - thread 04669A50 stopped.
23:29:16: DefaultWorkQueue('Root')::WorkerFunc - thread 04666FD8 stopped.
23:29:16: DefaultWorkQueue('Root')::WorkerFunc - thread 0466FE90 stopped.
23:29:16: PCZone Factory Type 'ZoneType_Octree' unregistered
23:29:16: PCZone Factory Type 'ZoneType_Terrain' unregistered
23:29:16: Unregistering ResourceManager for type BspLevel
23:29:16: *-*-* OGRE Shutdown
23:29:16: Unregistering ResourceManager for type Compositor
23:29:16: Unregistering ResourceManager for type Font
23:29:16: Unregistering ResourceManager for type Skeleton
23:29:16: Unregistering ResourceManager for type Mesh
23:29:16: Unregistering ResourceManager for type HighLevelGpuProgram
23:29:16: Uninstalling plugin: Caelum
23:29:16: Unregistering ResourceManager for type PropertyScript
23:29:16: Caelum plugin uninstalled
23:29:16: Plugin successfully uninstalled
23:29:16: Unloading library .\caelum_d
23:29:16: Uninstalling plugin: ParticleUniverse
23:29:16: Plugin successfully uninstalled
23:29:16: Unloading library .\ParticleUniverse_d
23:29:16: Uninstalling plugin: OgreOggSound
23:29:16: Plugin successfully uninstalled
23:29:16: Unloading library .\OgreOggSound_d
23:29:16: Uninstalling plugin: Octree & Terrain Scene Manager
23:29:16: Plugin successfully uninstalled
23:29:16: Unloading library .\Plugin_OctreeSceneManager_d
23:29:16: Uninstalling plugin: Octree Zone Factory
23:29:16: Plugin successfully uninstalled
23:29:16: Unloading library .\Plugin_OctreeZone_d
23:29:16: Uninstalling plugin: Portal Connected Zone Scene Manager
23:29:16: Plugin successfully uninstalled
23:29:16: Unloading library .\Plugin_PCZSceneManager_d
23:29:16: Uninstalling plugin: Cg Program Manager
23:29:16: Plugin successfully uninstalled
23:29:16: Unloading library .\Plugin_CgProgramManager_d
23:29:17: Uninstalling plugin: BSP Scene Manager
23:29:17: Plugin successfully uninstalled
23:29:17: Unloading library .\Plugin_BSPSceneManager_d
23:29:17: Uninstalling plugin: ParticleFX
23:29:17: Plugin successfully uninstalled
23:29:17: Unloading library .\Plugin_ParticleFX_d
23:29:17: Uninstalling plugin: GL RenderSystem
23:29:17: *** Stopping Win32GL Subsystem ***
23:29:17: Plugin successfully uninstalled
23:29:17: Unloading library .\RenderSystem_GL_d
23:29:17: Uninstalling plugin: D3D9 RenderSystem
23:29:17: D3D9 device: 0x[03CD1A00] destroy. Releasing D3D9 texture: EarthClearSky2.png
23:29:17: Released D3D9 texture: EarthClearSky2.png
23:29:17: D3D9 device: 0x[03CD1A00] destroy. Releasing D3D9 texture: AtmosphereDepth.png
23:29:17: Released D3D9 texture: AtmosphereDepth.png
23:29:17: D3D9 device: 0x[03CD1A00] destroy. Releasing D3D9 texture: sun_disc.png
23:29:17: Released D3D9 texture: sun_disc.png
23:29:17: D3D9 device: 0x[03CD1A00] destroy. Releasing D3D9 texture: moon_disc.dds
23:29:17: Released D3D9 texture: moon_disc.dds
23:29:17: D3D9 device: 0x[03CD1A00] destroy. Releasing D3D9 texture: 167044536_TrueTypeFont
23:29:17: Released D3D9 texture: 167044536_TrueTypeFont
23:29:17: D3D9 device: 0x[03CD1A00] destroy. Releasing D3D9 texture: 167782488_TrueTypeFont
23:29:17: Released D3D9 texture: 167782488_TrueTypeFont
23:29:17: D3D9 : Shutting down cleanly.
23:29:17: Unregistering ResourceManager for type Texture
23:29:17: Unregistering ResourceManager for type GpuProgram
23:29:17: D3D9 : Direct3D9 Rendering Subsystem destroyed.
23:29:17: Plugin successfully uninstalled
23:29:17: Unloading library .\RenderSystem_Direct3D9_d
23:29:17: Unregistering ResourceManager for type Material


JKFOZZY.

JKFOZZY

05-06-2010 22:08:54

Hi,

I got my button almost working. I get the text "exit". But i don't get the button image.

JKFOZZY.

Altren

06-06-2010 23:48:37

You probably used non-default resource group for MyGUI_Media - either use "General" or set group in OgrePlatform initialisation.
http://www.ogre3d.org/wiki/index.php/MyGUI_FAQ (2nd question)

JKFOZZY

08-06-2010 06:18:57

Hi,

I set the resource group to "General". That worked good. I can see my buttons now. Thank you for your'e help.

JKFOZZY.

JKFOZZY

10-06-2010 23:14:45

Hi,

I have a question about this line of code i read this on the mygui wiki.:
button->eventMouseButtonClick = MyGUI::newDelegate(CLASS_POINTER, &CLASS_NAME::METHOD_NAME);

Could you explain what this line of code does? I have only a few months of experience with c++. :oops:

I've tryed to use that line of code for my project but i get a compiler error.
1>c:\users\jordi\documents\visual studio 2008\projects\flightgame\flightgame\customgui.cpp(14) : error C2039: 'setShutDown' : is not a member of 'CustomGUI'
1> c:\users\jordi\documents\visual studio 2008\projects\flightgame\flightgame\customgui.h(16) : see declaration of 'CustomGUI'
1>c:\users\jordi\documents\visual studio 2008\projects\flightgame\flightgame\customgui.cpp(14) : error C2065: 'setShutDown' : undeclared identifier


JKFOZZY.