2 petites questions d'un linuxien

Vous débutez et vous avez besoin d'aide ? N'hésitez pas à poser vos questions
choubibar
Messages : 21
Inscription : jeu. 18/mars/2010 16:21

2 petites questions d'un linuxien

Message par choubibar »

Bonjour,

J'utilise la version demo purebasic sur mon kubuntu histoire de découvrir et me faire un peu la main avant un éventuel achat...

En explorant les gadgets pour apprendre, j'ai certains paramètres qui ne fonctionnent pas (voir exemple code simple ci-dessous)

Code : Tout sélectionner

If OpenWindow(0, 0, 0, 320, 80, "Test du ProgressBarGadget",  #PB_Window_ScreenCentered)
SetWindowColor(0,$4532FF) ; changement de couleur fenêtre OK
    TextGadget       (1,  10, 10, 250,  20, "ProgressBar", #PB_Text_Center)
    ProgressBarGadget(0,  10, 30, 250,  30, 0, 100)  ; bien que le flag "smooth" ne soit pas utiliser, pas de blocks sous linux  
    GadgetToolTip(0,"Ceci est une barre de progression") ;OK   
    SetGadgetState   (0, 50) 
    SetGadgetColor(1,#PB_Gadget_BackColor,$00FF00) ; changement de couleur texte et fond OK
    SetGadgetColor(1,#PB_Gadget_FrontColor,$0F00F0); OK
    SetGadgetColor(0,#PB_Gadget_BackColor,RGB(0,56,83)); pas OK
    SetGadgetColor(0,#PB_Gadget_FrontColor,$FF0F00);pas OK
    Repeat : Until WaitWindowEvent()=#PB_Event_CloseWindow
  EndIf
Première question : est-ce une erreur de ma part ? comment y remédier ?

Seconde question : comment utilise-t-on les gadget3D sous linux ? J'ai systématiquement un "Invalid access memory" sur la ligne d'initialisation "InitEngine3D()"

ça sera tout pour cette première série de questions :mrgreen:

merci de votre aide

@+ ;)
Avatar de l’utilisateur
venom
Messages : 3128
Inscription : jeu. 29/juil./2004 16:33
Localisation : Klyntar
Contact :

Re: 2 petites questions d'un linuxien

Message par venom »

Salut choubibar,

je n'est pas de distrib sous la main mais je sais que sous windows dans les options du compilateur si tu coche la case activé le support des thèmes et bien SetGadgetColor() ne sert a rien regarde de ce coté.





@++
Windows 10 x64, PureBasic 5.73 x86 & x64
GPU : radeon HD6370M, CPU : p6200 2.13Ghz
mdsv41
Messages : 25
Inscription : mar. 08/sept./2009 15:49

Re: 2 petites questions d'un linuxien

Message par mdsv41 »

Salut,

J'ai testé ton code sous ubuntu 9.10, et il marche.
Par contre, la barre de progression s'arrête en plein milieu. Est-ce normal?

@+
Manuel
Grand débutant en PureBasic 4.41
Linux Mint 9 - Mandriva powerpack 2010.0
choubibar
Messages : 21
Inscription : jeu. 18/mars/2010 16:21

Re: 2 petites questions d'un linuxien

Message par choubibar »

Bonsoir,

Je vais chercher dans les options pour voir si je peux désactiver le theme par défaut sous linux.

Oui le code fonctionne, il ne prend pas en compte certains paramètres, pour la progressbar au milieu c'est normal je l'ai mise à 50/100 pour voir l'incidence de front et back color

merci

@+ ;)
comtois
Messages : 5186
Inscription : mer. 21/janv./2004 17:48
Contact :

Re: 2 petites questions d'un linuxien

Message par comtois »

choubibar a écrit : Seconde question : comment utilise-t-on les gadget3D sous linux ? J'ai systématiquement un "Invalid access memory" sur la ligne d'initialisation "InitEngine3D()"
@+ ;)
Dans les options du compilateur, il faut renseigner le paramètre bibliothèque sous système en écrivant OpenGL.
http://purebasic.developpez.com/
Je ne réponds à aucune question technique en PV, utilisez le forum, il est fait pour ça, et la réponse peut profiter à tous.
choubibar
Messages : 21
Inscription : jeu. 18/mars/2010 16:21

Re: 2 petites questions d'un linuxien

Message par choubibar »

Bonjour,

OpenGL ça doit être pour windows... j'ai qd même tester sans résultat

J'ai également tester Gtk2.0, gtk-2.0 etc avec différents paths sans succès, je me demande si le problème ne vient pas de engine3d.so, je vais farfouiller de ce côté là...

merci

@+ ;)
choubibar
Messages : 21
Inscription : jeu. 18/mars/2010 16:21

Re: 2 petites questions d'un linuxien

Message par choubibar »

Salut,

j'ai progressé un peu...

j'ai copié engine3d.so dans /usr/lib

mis opengl à la place de OpenGL

et ajouté la bibliothèque suivante libxxf86vm-dev

pour l'instant ce n'est pas génial, ça plante purebasic ensuite mais j'avance :mrgreen:

@+ ;)
G-Rom
Messages : 3641
Inscription : dim. 10/janv./2010 5:29

Re: 2 petites questions d'un linuxien

Message par G-Rom »

pas besoin de copié la lib dans usr/lib
se soir j'aurais du temps pour t'aider à lancer tout ca sans problème.
choubibar
Messages : 21
Inscription : jeu. 18/mars/2010 16:21

Re: 2 petites questions d'un linuxien

Message par choubibar »

re moi,

après 2 plantages système en utilisant ce que j'avais indiqué plus haut, je laisse tomber l'idée de tester les gadgets3D sous kubuntu pour l'instant en attendant ton aide.

si cela vous arrive, il faut faire un recovery mode + fsck (filesystem check) et tout refixer à la main et vous récupèrerez tout sans souci...

je retourne à mon exploration de purebasic et ses différents gagdgets avant d'aller fouiller un peu plus.

au passage, dommage qu'il n'y ait pas de visual designer sous linux comme dans monodevelop par exemple, cela oblige sous linux à faire preuve de bcp d'imagination comme en programmation C ou sous nano-X.

@+ ;)
G-Rom
Messages : 3641
Inscription : dim. 10/janv./2010 5:29

Re: 2 petites questions d'un linuxien

Message par G-Rom »

- Créer un exécutable qui utilise le subsystem opengl , et qui utilise la commande initengine3D()
- Lance ton exécutable par le biais d'un terminal.
- Donne moi ton erreur.
choubibar
Messages : 21
Inscription : jeu. 18/mars/2010 16:21

Re: 2 petites questions d'un linuxien

Message par choubibar »

Bonjour,

J'ai donc utilisé la solution toute faite de l'exemple "3DGadget.pb"

Apparemment, c'est le fichier include qui cause qques soucis "Screen3Drequester.pb"

Ci dessous le log console, le log ogre et le log CEGUI

Merci de ton aide

@+ ;)


Log console :

Code : Tout sélectionner

Creating resource group General                                
Creating resource group Internal                               
Creating resource group Autodetect                             
SceneManagerFactory for type 'DefaultSceneManager' registered. 
Registering ResourceManager for type Material                  
Registering ResourceManager for type Mesh                      
Registering ResourceManager for type Skeleton                  
MovableObjectFactory for type 'ParticleSystem' registered.     
OverlayElementFactory for type Panel registered.               
OverlayElementFactory for type BorderPanel registered.         
OverlayElementFactory for type TextArea registered.            
Registering ResourceManager for type Font                      
ArchiveFactory for archive type FileSystem registered.         
ArchiveFactory for archive type Zip registered.                
FreeImage version: 3.10.0                                      
This program uses FreeImage, a free, open source image library supporting all common bitmap formats. See http://freeimage.sourceforge.net for details
Supported formats: bmp,ico,jpg,jif,jpeg,jpe,koa,iff,lbm,pbm,pbm,pcd,pcx,pgm,pgm,png,ppm,ppm,ras,tga,targa,tif,tiff,wap,wbmp,wbm,psd,cut,xbm,xpm,dds,gif,g3,sgi,j2k,j2c,jp2
DDS codec registering                                                                                                                                                     
Registering ResourceManager for type HighLevelGpuProgram                                                                                                                  
Registering ResourceManager for type Compositor                                                                                                                           
MovableObjectFactory for type 'Entity' registered.                                                                                                                        
MovableObjectFactory for type 'Light' registered.                                                                                                                         
MovableObjectFactory for type 'BillboardSet' registered.                                                                                                                  
MovableObjectFactory for type 'ManualObject' registered.                                                                                                                  
MovableObjectFactory for type 'BillboardChain' registered.                                                                                                                
MovableObjectFactory for type 'RibbonTrail' registered.                                                                                                                   
plugins.cfg not found, automatic plugin loading disabled.                                                                                                                 
*-*-* OGRE Initialising                                                                                                                                                   
*-*-* Version 1.6.2 (Shoggoth)                                                                                                                                            
OpenGL Rendering Subsystem created.                                                                                                                                       
Particle Emitter Type 'Point' registered                                                                                                                                  
Particle Emitter Type 'Box' registered                                                                                                                                    
Particle Emitter Type 'Ellipsoid' registered                                                                                                                              
Particle Emitter Type 'Cylinder' registered                                                                                                                               
Particle Emitter Type 'Ring' registered                                                                                                                                   
Particle Emitter Type 'HollowEllipsoid' registered                                                                                                                        
Particle Affector Type 'LinearForce' registered                                                                                                                                     
Particle Affector Type 'ColourFader' registered                                                                                                                                     
Particle Affector Type 'ColourFader2' registered                                                                                                                                    
Particle Affector Type 'ColourImage' registered                                                                                                                                     
Particle Affector Type 'ColourInterpolator' registered                                                                                                                              
Particle Affector Type 'Scaler' registered                                                                                                                                          
Particle Affector Type 'Rotator' registered                                                                                                                                         
Particle Affector Type 'DirectionRandomiser' registered                                                                                                                             
Particle Affector Type 'DeflectorPlane' registered                                                                                                                                  
CPU Identifier & Features                                                                                                                                                           
-------------------------                                                                                                                                                           
 *   CPU ID: GenuineIntel: Mobile Intel(R) Pentium(R) 4 - M CPU 2.20GHz                                                                                                             
 *      SSE: yes                                                                                                                                                                    
 *     SSE2: yes                                                                                                                                                                    
 *     SSE3: no                                                                                                                                                                     
 *      MMX: yes                                                                                                                                                                    
 *   MMXEXT: yes                                                                                                                                                                    
 *    3DNOW: no                                                                                                                                                                     
 * 3DNOWEXT: no                                                                                                                                                                     
 *     CMOV: yes                                                                                                                                                                    
 *      TSC: yes                                                                                                                                                                    
 *      FPU: yes                                                                                                                                                                    
 *      PRO: no                                                                                                                                                                     
 *       HT: yes                                                                                                                                                                    
-------------------------                                                                                                                                                           
******************************                                                                                                                                                      
*** Starting GLX Subsystem ***                                                                                                                                                      
******************************                                                                                                                                                      
SceneManagerFactory for type 'OctreeSceneManager' registered.                                                                                                                       
SceneManagerFactory for type 'TerrainSceneManager' registered.                                                                                                                      
SceneManagerFactory for type 'BspSceneManager' registered.                                                                                                                          
Registering ResourceManager for type BspLevel                                                                                                                                       
Added resource location './Data/' of type 'FileSystem' to resource group 'General'                                                                                                  
Added resource location './GUI/' of type 'FileSystem' to resource group 'General'                                                                                                   
Exception: file: PureBasicDLL.cpp, line: 272                                                                                                                                        
GLRenderSystem::_createRenderWindow "PureBasic Ogre", 800x600 windowed  miscParams: FSAA=0 displayFrequency=0 parentWindowHandle=119537785 vsync=true                               
GLXWindow::create used FBConfigID = 108                                                                                                                                             
GL_VERSION = 1.3 Mesa 7.6                                                                                                                                                           
GL_VENDOR = Tungsten Graphics, Inc.                                                                                                                                                 
GL_RENDERER = Mesa DRI R200 (RV250 4C66) 20090101 AGP 4x x86/MMX/SSE2 TCL                                                                                                           
GL_EXTENSIONS = GL_ARB_draw_buffers GL_ARB_imaging GL_ARB_multisample GL_ARB_multitexture GL_ARB_point_parameters GL_ARB_point_sprite GL_ARB_texture_border_clamp GL_ARB_texture_compression GL_ARB_texture_cube_map GL_ARB_texture_env_add GL_ARB_texture_env_combine GL_ARB_texture_env_crossbar GL_ARB_texture_env_dot3 GL_ARB_texture_mirrored_repeat GL_ARB_texture_rectangle GL_ARB_transpose_matrix GL_ARB_vertex_buffer_object GL_ARB_vertex_program GL_ARB_window_pos GL_EXT_abgr GL_EXT_bgra GL_EXT_blend_color GL_EXT_blend_equation_separate GL_EXT_blend_func_separate GL_EXT_blend_logic_op GL_EXT_blend_minmax GL_EXT_blend_subtract GL_EXT_compiled_vertex_array GL_EXT_convolution GL_EXT_copy_texture GL_EXT_draw_range_elements GL_EXT_fog_coord GL_EXT_histogram GL_EXT_multi_draw_arrays GL_EXT_packed_depth_stencil GL_EXT_packed_pixels GL_EXT_point_parameters GL_EXT_polygon_offset GL_EXT_rescale_normal GL_EXT_secondary_color GL_EXT_separate_specular_color GL_EXT_stencil_wrap GL_EXT_subtexture GL_EXT_texture GL_EXT_texture3D GL_EXT_texture_edge_clamp GL_EXT_texture_env_add GL_EXT_texture_env_combine GL_EXT_texture_env_dot3 GL_EXT_texture_filter_anisotropic GL_EXT_texture_lod_bias GL_EXT_texture_mirror_clamp GL_EXT_texture_object GL_EXT_texture_rectangle GL_EXT_vertex_array GL_APPLE_packed_pixels GL_ATI_blend_equation_separate GL_ATI_texture_env_combine3 GL_ATI_texture_mirror_once GL_ATI_fragment_shader GL_IBM_multimode_draw_arrays GL_IBM_rasterpos_clip GL_IBM_texture_mirrored_repeat GL_INGR_blend_func_separate GL_MESA_pack_invert GL_MESA_window_pos GL_NV_blend_square GL_NV_light_max_exponent GL_NV_texture_rectangle GL_NV_texgen_reflection GL_OES_read_format GL_SGI_color_matrix GL_SGI_color_table GL_SGIS_generate_mipmap GL_SGIS_texture_border_clamp GL_SGIS_texture_edge_clamp GL_SGIS_texture_lod GL_SUN_multi_draw_arrays                                                                                                                                                     
Supported GLX extensions: GLX_ARB_get_proc_address GLX_ARB_multisample GLX_EXT_import_context GLX_EXT_visual_info GLX_EXT_visual_rating GLX_MESA_allocate_memory GLX_MESA_copy_sub_buffer GLX_MESA_swap_control GLX_MESA_swap_frame_usage GLX_OML_swap_method GLX_SGI_make_current_read GLX_SGI_swap_control GLX_SGI_video_sync GLX_SGIS_multisample GLX_SGIX_fbconfig GLX_SGIX_visual_select_group                                                                                                                                                         
***************************                                                                                                                                                         
*** GL Renderer Started ***                                                                                                                                                         
***************************                                                                                                                                                         
Registering ResourceManager for type GpuProgram                                                                                                                                     
GL: Using framebuffer copy for rendering to textures (worst)                                                                                                                        
GL: Warning: RenderTexture size is restricted to size of framebuffer. If you are on Linux, consider using GLX instead of SDL.                                                       
RenderSystem capabilities                                                                                                                                                           
-------------------------                                                                                                                                                           
RenderSystem Name: OpenGL Rendering Subsystem                                                                                                                                       
GPU Vendor: unknown                                                                                                                                                                 
Device Name: Mesa DRI R200 (RV250 4C66) 20090101 AGP 4x x86/MMX/SSE2 TCL                                                                                                            
Driver Version: 1.3.0.0                                                                                                                                                             
 * Fixed function pipeline: yes                                                                                                                                                     
 * Hardware generation of mipmaps: yes                                                                                                                                              
 * Texture blending: yes                                                                                                                                                            
 * Anisotropic texture filtering: yes                                                                                                                                               
 * Dot product texture operation: yes                                                                                                                                               
 * Cube mapping: yes                                                                                                                                                                
 * Hardware stencil buffer: yes                                                                                                                                                     
   - Stencil depth: 8                                                                                                                                                               
   - Two sided stencil support: no                                                                                                                                                  
   - Wrap stencil values: yes                                                                                                                                                       
 * Hardware vertex / index buffers: yes                                                                                                                                             
 * Vertex programs: yes                                                                                                                                                             
 * Fragment programs: yes                                                                                                                                                           
 * Geometry programs: no                                                                                                                                                            
 * Supported Shader Profiles: arbvp1 ps_1_1 ps_1_2 ps_1_3 ps_1_4                                                                                                                    
 * Texture Compression: yes                                                                                                                                                         
   - DXT: no                                                                                                                                                                        
   - VTC: no                                                                                                                                                                        
 * Scissor Rectangle: yes                                                                                                                                                           
 * Hardware Occlusion Query: no                                                                                                                                                     
 * User clip planes: yes                                                                                                                                                            
 * VET_UBYTE4 vertex element type: yes                                                                                                                                              
 * Infinite far plane projection: yes                                                                                                                                               
 * Hardware render-to-texture: no                                                                                                                                                   
 * Floating point textures: no                                                                                                                                                      
 * Non-power-of-two textures: no                                                                                                                                                    
 * Volume textures: yes                                                                                                                                                             
 * Multiple Render Targets: 1                                                                                                                                                       
   - With different bit depths: no                                                                                                                                                  
 * Point Sprites: yes                                                                                                                                                               
 * Extended point parameters: no                                                                                                                                                    
 * Max Point Size: 1                                                                                                                                                                
 * Vertex texture fetch: no                                                                                                                                                         
 * Render to Vertex Buffer : no                                                                                                                                                     
 * GL 1.5 without VBO workaround: no                                                                                                                                                
 * Frame Buffer objects: no                                                                                                                                                         
 * Frame Buffer objects (ARB extension): no                                                                                                                                         
 * Frame Buffer objects (ATI extension): no                                                                                                                                         
 * PBuffer suppport: no                                                                                                                                                             
 * GL 1.5 without HW-occlusion workaround: no                                                                                                                                       
Registering ResourceManager for type Texture                                                                                                                                        
ResourceBackgroundQueue - threading disabled                                                                                                                                        
Particle Renderer Type 'billboard' registered                                                                                                                                       
Error loading texture desert07_fr.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_fr.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)                             
Error loading texture desert07_bk.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_bk.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)                             
Error loading texture desert07_lf.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_lf.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)                             
Error loading texture desert07_rt.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_rt.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)                             
Error loading texture desert07_up.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_up.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)                             
Error loading texture desert07_dn.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_dn.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)                             
Error loading texture desert07_fr.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_fr.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)                             
Error loading texture desert07_bk.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_bk.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)                             
Error loading texture desert07_lf.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_lf.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)                             
Error loading texture desert07_rt.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_rt.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)                             
Error loading texture desert07_up.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_up.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)                             
Error loading texture desert07_dn.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_dn.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)                             
Error loading texture desert07_fr.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_fr.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)                             
Error loading texture desert07_bk.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_bk.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)                             
Error loading texture desert07_lf.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_lf.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)                             
Error loading texture desert07_rt.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_rt.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)                             
Error loading texture desert07_up.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_up.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)                             
Error loading texture desert07_dn.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_dn.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)                             
Error loading texture desert07_fr.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_fr.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)                             
Error loading texture desert07_bk.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_bk.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)                             
Error loading texture desert07_lf.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_lf.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)                             
Error loading texture desert07_rt.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_rt.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
Error loading texture desert07_up.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_up.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
Error loading texture desert07_dn.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_dn.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
Error loading texture desert07_fr.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_fr.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
Error loading texture desert07_bk.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_bk.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
Error loading texture desert07_lf.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_lf.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
Error loading texture desert07_rt.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_rt.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
Error loading texture desert07_up.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_up.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
Error loading texture desert07_dn.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_dn.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
Error loading texture desert07_fr.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_fr.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
Error loading texture desert07_bk.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_bk.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
Error loading texture desert07_lf.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_lf.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
Error loading texture desert07_rt.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_rt.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
Error loading texture desert07_up.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_up.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
Error loading texture desert07_dn.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_dn.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
Error loading texture desert07_fr.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_fr.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
Error loading texture desert07_bk.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_bk.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
Error loading texture desert07_lf.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_lf.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
Error loading texture desert07_rt.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_rt.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
Error loading texture desert07_up.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_up.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
Error loading texture desert07_dn.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_dn.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
Error loading texture desert07_fr.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_fr.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
Error loading texture desert07_bk.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_bk.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
Error loading texture desert07_lf.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_lf.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
Error loading texture desert07_rt.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_rt.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
Error loading texture desert07_up.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_up.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
Error loading texture desert07_dn.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_dn.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
Exception: file: Window3D.cpp, line: 100
Exception: file: Gadget3D/ButtonGadget3D.cpp, line: 69
test3D: include/CEGUISingleton.h :73 : CEGUI::Singleton<T>::Singleton() [with T = CEGUI::System]:  L'assertion « !ms_Singleton » a échoué.
Abandon
choubibar
Messages : 21
Inscription : jeu. 18/mars/2010 16:21

Re: 2 petites questions d'un linuxien

Message par choubibar »

suite de mon message ...

log OGRE :

Code : Tout sélectionner

15:46:03: Creating resource group General
15:46:03: Creating resource group Internal
15:46:03: Creating resource group Autodetect
15:46:03: SceneManagerFactory for type 'DefaultSceneManager' registered.
15:46:03: Registering ResourceManager for type Material
15:46:03: Registering ResourceManager for type Mesh
15:46:03: Registering ResourceManager for type Skeleton
15:46:03: MovableObjectFactory for type 'ParticleSystem' registered.
15:46:03: OverlayElementFactory for type Panel registered.
15:46:03: OverlayElementFactory for type BorderPanel registered.
15:46:03: OverlayElementFactory for type TextArea registered.
15:46:03: Registering ResourceManager for type Font
15:46:03: ArchiveFactory for archive type FileSystem registered.
15:46:03: ArchiveFactory for archive type Zip registered.
15:46:03: FreeImage version: 3.10.0
15:46:03: This program uses FreeImage, a free, open source image library supporting all common bitmap formats. See http://freeimage.sourceforge.net for details
15:46:03: Supported formats: bmp,ico,jpg,jif,jpeg,jpe,koa,iff,lbm,pbm,pbm,pcd,pcx,pgm,pgm,png,ppm,ppm,ras,tga,targa,tif,tiff,wap,wbmp,wbm,psd,cut,xbm,xpm,dds,gif,g3,sgi,j2k,j2c,jp2
15:46:03: DDS codec registering
15:46:03: Registering ResourceManager for type HighLevelGpuProgram
15:46:03: Registering ResourceManager for type Compositor
15:46:03: MovableObjectFactory for type 'Entity' registered.
15:46:03: MovableObjectFactory for type 'Light' registered.
15:46:03: MovableObjectFactory for type 'BillboardSet' registered.
15:46:03: MovableObjectFactory for type 'ManualObject' registered.
15:46:03: MovableObjectFactory for type 'BillboardChain' registered.
15:46:03: MovableObjectFactory for type 'RibbonTrail' registered.
15:46:03: OGRE EXCEPTION(6:FileNotFoundException): 'plugins.cfg' file not found! in ConfigFile::load at OgreConfigFile.cpp (line 84)
15:46:03: plugins.cfg not found, automatic plugin loading disabled.
15:46:03: *-*-* OGRE Initialising
15:46:03: *-*-* Version 1.6.2 (Shoggoth)
15:46:03: OpenGL Rendering Subsystem created.
15:46:03: Particle Emitter Type 'Point' registered
15:46:03: Particle Emitter Type 'Box' registered
15:46:03: Particle Emitter Type 'Ellipsoid' registered
15:46:03: Particle Emitter Type 'Cylinder' registered
15:46:03: Particle Emitter Type 'Ring' registered
15:46:03: Particle Emitter Type 'HollowEllipsoid' registered
15:46:03: Particle Affector Type 'LinearForce' registered
15:46:03: Particle Affector Type 'ColourFader' registered
15:46:03: Particle Affector Type 'ColourFader2' registered
15:46:03: Particle Affector Type 'ColourImage' registered
15:46:03: Particle Affector Type 'ColourInterpolator' registered
15:46:03: Particle Affector Type 'Scaler' registered
15:46:03: Particle Affector Type 'Rotator' registered
15:46:03: Particle Affector Type 'DirectionRandomiser' registered
15:46:03: Particle Affector Type 'DeflectorPlane' registered
15:46:03: CPU Identifier & Features
15:46:03: -------------------------
15:46:03:  *   CPU ID: GenuineIntel: Mobile Intel(R) Pentium(R) 4 - M CPU 2.20GHz
15:46:03:  *      SSE: yes
15:46:03:  *     SSE2: yes
15:46:03:  *     SSE3: no
15:46:03:  *      MMX: yes
15:46:03:  *   MMXEXT: yes
15:46:03:  *    3DNOW: no
15:46:03:  * 3DNOWEXT: no
15:46:03:  *     CMOV: yes
15:46:03:  *      TSC: yes
15:46:03:  *      FPU: yes
15:46:03:  *      PRO: no
15:46:03:  *       HT: yes
15:46:03: -------------------------
15:46:03: ******************************
*** Starting GLX Subsystem ***
******************************
15:46:03: SceneManagerFactory for type 'OctreeSceneManager' registered.
15:46:03: SceneManagerFactory for type 'TerrainSceneManager' registered.
15:46:03: SceneManagerFactory for type 'BspSceneManager' registered.
15:46:03: Registering ResourceManager for type BspLevel
15:46:03: Added resource location './Data/' of type 'FileSystem' to resource group 'General'
15:46:03: Added resource location './GUI/' of type 'FileSystem' to resource group 'General'
15:46:03: OGRE EXCEPTION(7:InternalErrorException): ./Data/skybox.zip - error whilst opening archive: Unable to read zip file. in ZipArchive::checkZzipError at OgreZip.cpp (line 259)
15:46:14: GLRenderSystem::_createRenderWindow "PureBasic Ogre", 800x600 windowed  miscParams: FSAA=0 displayFrequency=0 parentWindowHandle=119537785 vsync=true 
15:46:14: GLXWindow::create used FBConfigID = 108
15:46:14: GL_VERSION = 1.3 Mesa 7.6
15:46:14: GL_VENDOR = Tungsten Graphics, Inc.
15:46:14: GL_RENDERER = Mesa DRI R200 (RV250 4C66) 20090101 AGP 4x x86/MMX/SSE2 TCL
15:46:14: GL_EXTENSIONS = GL_ARB_draw_buffers GL_ARB_imaging GL_ARB_multisample GL_ARB_multitexture GL_ARB_point_parameters GL_ARB_point_sprite GL_ARB_texture_border_clamp GL_ARB_texture_compression GL_ARB_texture_cube_map GL_ARB_texture_env_add GL_ARB_texture_env_combine GL_ARB_texture_env_crossbar GL_ARB_texture_env_dot3 GL_ARB_texture_mirrored_repeat GL_ARB_texture_rectangle GL_ARB_transpose_matrix GL_ARB_vertex_buffer_object GL_ARB_vertex_program GL_ARB_window_pos GL_EXT_abgr GL_EXT_bgra GL_EXT_blend_color GL_EXT_blend_equation_separate GL_EXT_blend_func_separate GL_EXT_blend_logic_op GL_EXT_blend_minmax GL_EXT_blend_subtract GL_EXT_compiled_vertex_array GL_EXT_convolution GL_EXT_copy_texture GL_EXT_draw_range_elements GL_EXT_fog_coord GL_EXT_histogram GL_EXT_multi_draw_arrays GL_EXT_packed_depth_stencil GL_EXT_packed_pixels GL_EXT_point_parameters GL_EXT_polygon_offset GL_EXT_rescale_normal GL_EXT_secondary_color GL_EXT_separate_specular_color GL_EXT_stencil_wrap GL_EXT_subtexture GL_EXT_texture GL_EXT_texture3D GL_EXT_texture_edge_clamp GL_EXT_texture_env_add GL_EXT_texture_env_combine GL_EXT_texture_env_dot3 GL_EXT_texture_filter_anisotropic GL_EXT_texture_lod_bias GL_EXT_texture_mirror_clamp GL_EXT_texture_object GL_EXT_texture_rectangle GL_EXT_vertex_array GL_APPLE_packed_pixels GL_ATI_blend_equation_separate GL_ATI_texture_env_combine3 GL_ATI_texture_mirror_once GL_ATI_fragment_shader GL_IBM_multimode_draw_arrays GL_IBM_rasterpos_clip GL_IBM_texture_mirrored_repeat GL_INGR_blend_func_separate GL_MESA_pack_invert GL_MESA_window_pos GL_NV_blend_square GL_NV_light_max_exponent GL_NV_texture_rectangle GL_NV_texgen_reflection GL_OES_read_format GL_SGI_color_matrix GL_SGI_color_table GL_SGIS_generate_mipmap GL_SGIS_texture_border_clamp GL_SGIS_texture_edge_clamp GL_SGIS_texture_lod GL_SUN_multi_draw_arrays
15:46:14: Supported GLX extensions: GLX_ARB_get_proc_address GLX_ARB_multisample GLX_EXT_import_context GLX_EXT_visual_info GLX_EXT_visual_rating GLX_MESA_allocate_memory GLX_MESA_copy_sub_buffer GLX_MESA_swap_control GLX_MESA_swap_frame_usage GLX_OML_swap_method GLX_SGI_make_current_read GLX_SGI_swap_control GLX_SGI_video_sync GLX_SGIS_multisample GLX_SGIX_fbconfig GLX_SGIX_visual_select_group 
15:46:14: ***************************
15:46:14: *** GL Renderer Started ***
15:46:14: ***************************
15:46:14: Registering ResourceManager for type GpuProgram
15:46:14: GL: Using framebuffer copy for rendering to textures (worst)
15:46:14: GL: Warning: RenderTexture size is restricted to size of framebuffer. If you are on Linux, consider using GLX instead of SDL.
15:46:14: RenderSystem capabilities
15:46:14: -------------------------
15:46:14: RenderSystem Name: OpenGL Rendering Subsystem
15:46:14: GPU Vendor: unknown
15:46:14: Device Name: Mesa DRI R200 (RV250 4C66) 20090101 AGP 4x x86/MMX/SSE2 TCL
15:46:14: Driver Version: 1.3.0.0
15:46:14:  * Fixed function pipeline: yes
15:46:14:  * Hardware generation of mipmaps: yes
15:46:14:  * Texture blending: yes
15:46:14:  * Anisotropic texture filtering: yes
15:46:14:  * Dot product texture operation: yes
15:46:14:  * Cube mapping: yes
15:46:14:  * Hardware stencil buffer: yes
15:46:14:    - Stencil depth: 8
15:46:14:    - Two sided stencil support: no
15:46:14:    - Wrap stencil values: yes
15:46:14:  * Hardware vertex / index buffers: yes
15:46:14:  * Vertex programs: yes
15:46:14:  * Fragment programs: yes
15:46:14:  * Geometry programs: no
15:46:14:  * Supported Shader Profiles: arbvp1 ps_1_1 ps_1_2 ps_1_3 ps_1_4
15:46:14:  * Texture Compression: yes
15:46:14:    - DXT: no
15:46:14:    - VTC: no
15:46:14:  * Scissor Rectangle: yes
15:46:14:  * Hardware Occlusion Query: no
15:46:14:  * User clip planes: yes
15:46:14:  * VET_UBYTE4 vertex element type: yes
15:46:14:  * Infinite far plane projection: yes
15:46:14:  * Hardware render-to-texture: no
15:46:14:  * Floating point textures: no
15:46:14:  * Non-power-of-two textures: no
15:46:14:  * Volume textures: yes
15:46:14:  * Multiple Render Targets: 1
15:46:14:    - With different bit depths: no
15:46:14:  * Point Sprites: yes
15:46:14:  * Extended point parameters: no
15:46:14:  * Max Point Size: 1
15:46:14:  * Vertex texture fetch: no
15:46:14:  * Render to Vertex Buffer : no
15:46:14:  * GL 1.5 without VBO workaround: no
15:46:14:  * Frame Buffer objects: no
15:46:14:  * Frame Buffer objects (ARB extension): no
15:46:14:  * Frame Buffer objects (ATI extension): no
15:46:14:  * PBuffer suppport: no
15:46:14:  * GL 1.5 without HW-occlusion workaround: no
15:46:14: Registering ResourceManager for type Texture
15:46:14: ResourceBackgroundQueue - threading disabled
15:46:14: Particle Renderer Type 'billboard' registered
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_fr.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_fr.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_fr.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_bk.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_bk.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_bk.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_lf.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_lf.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_lf.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_rt.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_rt.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_rt.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_up.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_up.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_up.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_dn.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_dn.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_dn.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_fr.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_fr.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_fr.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_bk.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_bk.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_bk.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_lf.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_lf.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_lf.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_rt.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_rt.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_rt.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_up.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_up.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_up.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_dn.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_dn.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_dn.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_fr.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_fr.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_fr.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_bk.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_bk.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_bk.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_lf.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_lf.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_lf.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_rt.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_rt.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_rt.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_up.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_up.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_up.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_dn.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_dn.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_dn.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_fr.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_fr.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_fr.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_bk.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_bk.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_bk.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_lf.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_lf.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_lf.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_rt.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_rt.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_rt.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_up.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_up.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_up.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_dn.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_dn.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_dn.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_fr.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_fr.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_fr.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_bk.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_bk.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_bk.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_lf.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_lf.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_lf.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_rt.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_rt.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_rt.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_up.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_up.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_up.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_dn.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_dn.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_dn.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_fr.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_fr.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_fr.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_bk.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_bk.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_bk.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_lf.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_lf.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_lf.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_rt.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_rt.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_rt.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_up.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_up.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_up.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_dn.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_dn.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_dn.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_fr.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_fr.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_fr.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_bk.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_bk.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_bk.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_lf.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_lf.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_lf.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_rt.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_rt.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_rt.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_up.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_up.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_up.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_dn.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_dn.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_dn.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_fr.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_fr.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_fr.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_bk.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_bk.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_bk.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_lf.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_lf.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_lf.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_rt.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_rt.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_rt.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_up.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_up.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_up.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_dn.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: Error loading texture desert07_dn.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource desert07_dn.jpg in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
15:46:14: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource TaharezLook.scheme in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
choubibar
Messages : 21
Inscription : jeu. 18/mars/2010 16:21

Re: 2 petites questions d'un linuxien

Message par choubibar »

Le log CEGUI est sensiblement le même avec à chaque fois un file not found exception que je ne sais pas encore résoudre

merci

@+ ;)
G-Rom
Messages : 3641
Inscription : dim. 10/janv./2010 5:29

Re: 2 petites questions d'un linuxien

Message par G-Rom »

Error loading texture desert07_fr.jpg. Texture layer will be blank. Loading the texture failed with the following exception: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource

A prioris , le chemin qui charge la skybox semble pas bon.
Les chemins sont Linux sont différents & sensible à la case.

./monchemin n'est pas égal à ./MonChemin

utilise aussi les / au lieu des \ ( comme sous windows )
choubibar
Messages : 21
Inscription : jeu. 18/mars/2010 16:21

Re: 2 petites questions d'un linuxien

Message par choubibar »

Bonjour,

j'ai remplacé les paths vers les dossiers Data, Gui et vers l'archive skybox (lignes 22,23,24) avec mes paths complets comme je le fais parfois en C pour certains includes, sans succès, donc le plantage ne viens pas de là, je vais continuer à fouiller...

@+ ;)
Répondre