ogre.rb 0.1-i386-mswin32 → 0.2-i386-mswin32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README +43 -5
- data/Rakefile +62 -163
- data/lib/application.rb +2 -1
- data/lib/application_frame_listener.rb +17 -17
- data/lib/ogre.dll +0 -0
- data/lib/ruby_ois.dll +0 -0
- data/ogre.rb +3 -0
- data/samples/Ogre.log +372 -279
- data/samples/cel_shading.rb +85 -0
- data/samples/grass.rb +1 -1
- data/samples/media/materials/programs/CelShading.cg +63 -0
- data/samples/media/materials/scripts/CelShading.material +68 -0
- data/samples/media/materials/textures/Thumbs.db +0 -0
- data/samples/media/materials/textures/cel_shading_diffuse.png +0 -0
- data/samples/media/materials/textures/cel_shading_edge.png +0 -0
- data/samples/media/materials/textures/cel_shading_specular.png +0 -0
- data/samples/ogre.cfg +1 -1
- data/samples/output +5078 -0
- data/samples/plugins.cfg +1 -1
- data/test/ogre.cfg +10 -0
- data/test/plugins.cfg +8 -0
- data/test/test_helper.rb +67 -0
- data/test/unit/Test.log +138 -0
- data/test/unit/constants_test.rb +66 -0
- data/test/unit/frame_stats_proxy_test.rb +28 -0
- data/test/unit/math_test.rb +20 -0
- data/test/unit/mesh_test.rb +15 -0
- data/test/unit/methods_test.rb +98 -0
- data/test/unit/movable_object_test.rb +19 -0
- data/test/unit/name_value_pair_list_test.rb +12 -0
- data/test/unit/overlay_element_test.rb +20 -0
- data/test/unit/render_target_test.rb +11 -0
- data/test/unit/resource_test.rb +26 -0
- data/test/unit/scene_manager_test.rb +21 -0
- metadata +45 -21
data/samples/Ogre.log
CHANGED
@@ -1,279 +1,372 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
1
|
+
15:17:57: Creating resource group General
|
2
|
+
15:17:57: Creating resource group Internal
|
3
|
+
15:17:57: Creating resource group Autodetect
|
4
|
+
15:17:57: SceneManagerFactory for type 'DefaultSceneManager' registered.
|
5
|
+
15:17:57: Registering ResourceManager for type Material
|
6
|
+
15:17:57: Registering ResourceManager for type Mesh
|
7
|
+
15:17:57: Registering ResourceManager for type Skeleton
|
8
|
+
15:17:57: MovableObjectFactory for type 'ParticleSystem' registered.
|
9
|
+
15:17:57: OverlayElementFactory for type Panel registered.
|
10
|
+
15:17:57: OverlayElementFactory for type BorderPanel registered.
|
11
|
+
15:17:57: OverlayElementFactory for type TextArea registered.
|
12
|
+
15:17:57: Registering ResourceManager for type Font
|
13
|
+
15:17:57: ArchiveFactory for archive type FileSystem registered.
|
14
|
+
15:17:57: ArchiveFactory for archive type Zip registered.
|
15
|
+
15:17:57: FreeImage version: 3.9.2
|
16
|
+
15:17:57: This program uses FreeImage, a free, open source image library supporting all common bitmap formats. See http://freeimage.sourceforge.net for details
|
17
|
+
15:17:57: 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
|
18
|
+
15:17:57: DDS codec registering
|
19
|
+
15:17:57: Registering ResourceManager for type HighLevelGpuProgram
|
20
|
+
15:17:57: Registering ResourceManager for type Compositor
|
21
|
+
15:17:57: MovableObjectFactory for type 'Entity' registered.
|
22
|
+
15:17:57: MovableObjectFactory for type 'Light' registered.
|
23
|
+
15:17:57: MovableObjectFactory for type 'BillboardSet' registered.
|
24
|
+
15:17:57: MovableObjectFactory for type 'ManualObject' registered.
|
25
|
+
15:17:57: MovableObjectFactory for type 'BillboardChain' registered.
|
26
|
+
15:17:57: MovableObjectFactory for type 'RibbonTrail' registered.
|
27
|
+
15:17:57: Loading library D:\Programming\engines\Ogre1.4.4SDK\bin\release\RenderSystem_GL
|
28
|
+
15:17:57: Installing plugin: GL RenderSystem
|
29
|
+
15:17:57: OpenGL Rendering Subsystem created.
|
30
|
+
15:17:57: Plugin successfully installed
|
31
|
+
15:17:57: Loading library D:\Programming\engines\Ogre1.4.4SDK\bin\release\RenderSystem_Direct3D9
|
32
|
+
15:17:57: Installing plugin: D3D9 RenderSystem
|
33
|
+
15:17:57: D3D9 : Direct3D9 Rendering Subsystem created.
|
34
|
+
15:17:57: D3D9: Driver Detection Starts
|
35
|
+
15:17:57: D3D9: Driver Detection Ends
|
36
|
+
15:17:57: Plugin successfully installed
|
37
|
+
15:17:57: Loading library D:\Programming\engines\Ogre1.4.4SDK\bin\release\Plugin_OctreeSceneManager
|
38
|
+
15:17:57: Installing plugin: Octree & Terrain Scene Manager
|
39
|
+
15:17:57: Plugin successfully installed
|
40
|
+
15:17:57: Loading library D:\Programming\engines\Ogre1.4.4SDK\bin\release\Plugin_ParticleFX
|
41
|
+
15:17:57: Installing plugin: ParticleFX
|
42
|
+
15:17:57: Particle Emitter Type 'Point' registered
|
43
|
+
15:17:57: Particle Emitter Type 'Box' registered
|
44
|
+
15:17:57: Particle Emitter Type 'Ellipsoid' registered
|
45
|
+
15:17:57: Particle Emitter Type 'Cylinder' registered
|
46
|
+
15:17:57: Particle Emitter Type 'Ring' registered
|
47
|
+
15:17:57: Particle Emitter Type 'HollowEllipsoid' registered
|
48
|
+
15:17:57: Particle Affector Type 'LinearForce' registered
|
49
|
+
15:17:57: Particle Affector Type 'ColourFader' registered
|
50
|
+
15:17:57: Particle Affector Type 'ColourFader2' registered
|
51
|
+
15:17:57: Particle Affector Type 'ColourImage' registered
|
52
|
+
15:17:57: Particle Affector Type 'ColourInterpolator' registered
|
53
|
+
15:17:57: Particle Affector Type 'Scaler' registered
|
54
|
+
15:17:57: Particle Affector Type 'Rotator' registered
|
55
|
+
15:17:57: Particle Affector Type 'DirectionRandomiser' registered
|
56
|
+
15:17:57: Particle Affector Type 'DeflectorPlane' registered
|
57
|
+
15:17:57: Plugin successfully installed
|
58
|
+
15:17:57: Loading library D:\Programming\engines\Ogre1.4.4SDK\bin\release\Plugin_BSPSceneManager
|
59
|
+
15:17:57: Installing plugin: BSP Scene Manager
|
60
|
+
15:17:57: Plugin successfully installed
|
61
|
+
15:17:57: Loading library D:\Programming\engines\Ogre1.4.4SDK\bin\release\Plugin_CgProgramManager
|
62
|
+
15:17:57: Installing plugin: Cg Program Manager
|
63
|
+
15:17:57: Plugin successfully installed
|
64
|
+
15:17:57: *-*-* OGRE Initialising
|
65
|
+
15:17:57: *-*-* Version 1.4.4 (Eihort)
|
66
|
+
15:17:57: Creating resource group Bootstrap
|
67
|
+
15:17:57: Added resource location './media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap'
|
68
|
+
15:17:57: Added resource location './media/' of type 'FileSystem' to resource group 'General'
|
69
|
+
15:17:57: Added resource location './media/materials' of type 'FileSystem' to resource group 'General'
|
70
|
+
15:17:57: Added resource location './media/materials/textures' of type 'FileSystem' to resource group 'General'
|
71
|
+
15:17:57: Added resource location './media/materials/scripts' of type 'FileSystem' to resource group 'General'
|
72
|
+
15:17:57: Added resource location './media/materials/programs' of type 'FileSystem' to resource group 'General'
|
73
|
+
15:17:57: Added resource location './media/models' of type 'FileSystem' to resource group 'General'
|
74
|
+
15:17:57: Added resource location './media/particles' of type 'FileSystem' to resource group 'General'
|
75
|
+
15:17:57: Added resource location './media/overlays' of type 'FileSystem' to resource group 'General'
|
76
|
+
15:17:57: Added resource location './media/packs/skybox.zip' of type 'Zip' to resource group 'General'
|
77
|
+
15:17:57: Added resource location './media/packs/dragon.zip' of type 'Zip' to resource group 'General'
|
78
|
+
15:17:57: Added resource location './media/packs/cubemap.zip' of type 'Zip' to resource group 'General'
|
79
|
+
15:17:57: Added resource location './media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General'
|
80
|
+
15:17:57: Added resource location './media/packs/chiropteraDM.pk3' of type 'Zip' to resource group 'General' with recursive option
|
81
|
+
15:17:57: D3D9 : RenderSystem Option: Allow NVPerfHUD = No
|
82
|
+
15:17:57: D3D9 : RenderSystem Option: Anti aliasing = NonMaskable 4
|
83
|
+
15:17:57: D3D9 : RenderSystem Option: Floating-point mode = Fastest
|
84
|
+
15:17:57: D3D9 : RenderSystem Option: Full Screen = No
|
85
|
+
15:17:57: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 6800 Series GPU
|
86
|
+
15:17:57: D3D9 : RenderSystem Option: VSync = No
|
87
|
+
15:17:57: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour
|
88
|
+
15:17:57: CPU Identifier & Features
|
89
|
+
15:17:57: -------------------------
|
90
|
+
15:17:57: * CPU ID: AuthenticAMD: AMD Athlon(tm) 64 Processor 3200+
|
91
|
+
15:17:57: * SSE: yes
|
92
|
+
15:17:57: * SSE2: yes
|
93
|
+
15:17:57: * SSE3: yes
|
94
|
+
15:17:57: * MMX: yes
|
95
|
+
15:17:57: * MMXEXT: yes
|
96
|
+
15:17:57: * 3DNOW: yes
|
97
|
+
15:17:57: * 3DNOWEXT: yes
|
98
|
+
15:17:57: * CMOV: yes
|
99
|
+
15:17:57: * TSC: yes
|
100
|
+
15:17:57: * FPU: yes
|
101
|
+
15:17:57: * PRO: yes
|
102
|
+
15:17:57: * HT: no
|
103
|
+
15:17:57: -------------------------
|
104
|
+
15:17:57: D3D9 : Subsystem Initialising
|
105
|
+
15:17:57: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed miscParams: FSAA=1 FSAAQuality=3 colourDepth=32 useNVPerfHUD=false vsync=false
|
106
|
+
15:17:57: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp
|
107
|
+
15:17:57: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem.
|
108
|
+
15:17:57: Registering ResourceManager for type Texture
|
109
|
+
15:17:57: Registering ResourceManager for type GpuProgram
|
110
|
+
15:17:57: D3D9: Vertex texture format supported - PF_FLOAT32_RGB
|
111
|
+
15:17:57: D3D9: Vertex texture format supported - PF_FLOAT32_RGBA
|
112
|
+
15:17:57: D3D9: Vertex texture format supported - PF_FLOAT32_R
|
113
|
+
15:17:57: RenderSystem capabilities
|
114
|
+
15:17:57: -------------------------
|
115
|
+
15:17:57: * Hardware generation of mipmaps: yes
|
116
|
+
15:17:57: * Texture blending: yes
|
117
|
+
15:17:57: * Anisotropic texture filtering: yes
|
118
|
+
15:17:57: * Dot product texture operation: yes
|
119
|
+
15:17:57: * Cube mapping: yes
|
120
|
+
15:17:57: * Hardware stencil buffer: yes
|
121
|
+
15:17:57: - Stencil depth: 8
|
122
|
+
15:17:57: - Two sided stencil support: yes
|
123
|
+
15:17:57: - Wrap stencil values: yes
|
124
|
+
15:17:57: * Hardware vertex / index buffers: yes
|
125
|
+
15:17:57: * Vertex programs: yes
|
126
|
+
15:17:57: - Max vertex program version: vs_3_0
|
127
|
+
15:17:57: * Fragment programs: yes
|
128
|
+
15:17:57: - Max fragment program version: ps_3_0
|
129
|
+
15:17:57: * Texture Compression: yes
|
130
|
+
15:17:57: - DXT: yes
|
131
|
+
15:17:57: - VTC: no
|
132
|
+
15:17:57: * Scissor Rectangle: yes
|
133
|
+
15:17:57: * Hardware Occlusion Query: yes
|
134
|
+
15:17:57: * User clip planes: yes
|
135
|
+
15:17:57: * VET_UBYTE4 vertex element type: yes
|
136
|
+
15:17:57: * Infinite far plane projection: yes
|
137
|
+
15:17:57: * Hardware render-to-texture: yes
|
138
|
+
15:17:57: * Floating point textures: yes
|
139
|
+
15:17:57: * Non-power-of-two textures: yes
|
140
|
+
15:17:57: * Volume textures: yes
|
141
|
+
15:17:57: * Multiple Render Targets: 4
|
142
|
+
15:17:57: * Point Sprites: yes
|
143
|
+
15:17:57: * Extended point parameters: yes
|
144
|
+
15:17:57: * Max Point Size: 8192
|
145
|
+
15:17:57: * Vertex texture fetch: yes
|
146
|
+
15:17:57: - Max vertex textures: 4
|
147
|
+
15:17:57: - Vertex textures shared: no
|
148
|
+
15:17:57: ***************************************
|
149
|
+
15:17:57: *** D3D9 : Subsystem Initialised OK ***
|
150
|
+
15:17:57: ***************************************
|
151
|
+
15:17:57: ResourceBackgroundQueue - threading disabled
|
152
|
+
15:17:57: Particle Renderer Type 'billboard' registered
|
153
|
+
15:17:57: SceneManagerFactory for type 'BspSceneManager' registered.
|
154
|
+
15:17:57: Registering ResourceManager for type BspLevel
|
155
|
+
15:17:57: SceneManagerFactory for type 'OctreeSceneManager' registered.
|
156
|
+
15:17:57: SceneManagerFactory for type 'TerrainSceneManager' registered.
|
157
|
+
15:17:57: Creating viewport on target 'OGRE Render Window', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0
|
158
|
+
15:17:57: Initialising resource group Bootstrap
|
159
|
+
15:17:57: Parsing scripts for resource group Bootstrap
|
160
|
+
15:17:57: Parsing script OgreCore.material
|
161
|
+
15:17:57: Parsing script OgreProfiler.material
|
162
|
+
15:17:57: Parsing script Ogre.fontdef
|
163
|
+
15:17:57: Parsing script OgreDebugPanel.overlay
|
164
|
+
15:17:57: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8R8G8B8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1.
|
165
|
+
15:17:57: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1.
|
166
|
+
15:17:57: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8R8G8B8,32x32x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1.
|
167
|
+
15:17:57: Font BlueHighwayusing texture size 512x512
|
168
|
+
15:17:57: Info: Freetype returned null for character 127 in font BlueHighway
|
169
|
+
15:17:57: Info: Freetype returned null for character 128 in font BlueHighway
|
170
|
+
15:17:57: Info: Freetype returned null for character 129 in font BlueHighway
|
171
|
+
15:17:57: Info: Freetype returned null for character 130 in font BlueHighway
|
172
|
+
15:17:57: Info: Freetype returned null for character 131 in font BlueHighway
|
173
|
+
15:17:57: Info: Freetype returned null for character 132 in font BlueHighway
|
174
|
+
15:17:57: Info: Freetype returned null for character 133 in font BlueHighway
|
175
|
+
15:17:57: Info: Freetype returned null for character 134 in font BlueHighway
|
176
|
+
15:17:57: Info: Freetype returned null for character 135 in font BlueHighway
|
177
|
+
15:17:57: Info: Freetype returned null for character 136 in font BlueHighway
|
178
|
+
15:17:57: Info: Freetype returned null for character 137 in font BlueHighway
|
179
|
+
15:17:57: Info: Freetype returned null for character 138 in font BlueHighway
|
180
|
+
15:17:57: Info: Freetype returned null for character 139 in font BlueHighway
|
181
|
+
15:17:57: Info: Freetype returned null for character 140 in font BlueHighway
|
182
|
+
15:17:57: Info: Freetype returned null for character 141 in font BlueHighway
|
183
|
+
15:17:57: Info: Freetype returned null for character 142 in font BlueHighway
|
184
|
+
15:17:57: Info: Freetype returned null for character 143 in font BlueHighway
|
185
|
+
15:17:57: Info: Freetype returned null for character 144 in font BlueHighway
|
186
|
+
15:17:57: Info: Freetype returned null for character 145 in font BlueHighway
|
187
|
+
15:17:57: Info: Freetype returned null for character 146 in font BlueHighway
|
188
|
+
15:17:57: Info: Freetype returned null for character 147 in font BlueHighway
|
189
|
+
15:17:57: Info: Freetype returned null for character 148 in font BlueHighway
|
190
|
+
15:17:57: Info: Freetype returned null for character 149 in font BlueHighway
|
191
|
+
15:17:57: Info: Freetype returned null for character 150 in font BlueHighway
|
192
|
+
15:17:57: Info: Freetype returned null for character 151 in font BlueHighway
|
193
|
+
15:17:57: Info: Freetype returned null for character 152 in font BlueHighway
|
194
|
+
15:17:57: Info: Freetype returned null for character 153 in font BlueHighway
|
195
|
+
15:17:57: Info: Freetype returned null for character 154 in font BlueHighway
|
196
|
+
15:17:57: Info: Freetype returned null for character 155 in font BlueHighway
|
197
|
+
15:17:57: Info: Freetype returned null for character 156 in font BlueHighway
|
198
|
+
15:17:57: Info: Freetype returned null for character 157 in font BlueHighway
|
199
|
+
15:17:57: Info: Freetype returned null for character 158 in font BlueHighway
|
200
|
+
15:17:57: Info: Freetype returned null for character 159 in font BlueHighway
|
201
|
+
15:17:57: Info: Freetype returned null for character 160 in font BlueHighway
|
202
|
+
15:17:57: Texture: BlueHighwayTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1.
|
203
|
+
15:17:57: Texture: ogretext.png: Loading 1 faces(PF_A8R8G8B8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1.
|
204
|
+
15:17:57: Parsing script OgreLoadingPanel.overlay
|
205
|
+
15:17:57: Finished parsing scripts for resource group Bootstrap
|
206
|
+
15:17:57: Parsing scripts for resource group Autodetect
|
207
|
+
15:17:57: Finished parsing scripts for resource group Autodetect
|
208
|
+
15:17:57: Parsing scripts for resource group General
|
209
|
+
15:17:57: Parsing script CelShading.material
|
210
|
+
15:17:57: Parsing script CloudySky.material
|
211
|
+
15:17:57: Parsing script CubeMapping.material
|
212
|
+
15:17:57: Parsing script dragon.material
|
213
|
+
15:17:57: Parsing script Flare.material
|
214
|
+
15:17:57: Parsing script Grass.material
|
215
|
+
15:17:57: Parsing script Knot.material
|
216
|
+
15:17:57: Parsing script MorningSkyBox.material
|
217
|
+
15:17:57: Parsing script Offset.material
|
218
|
+
15:17:58: Parsing script Ogre.material
|
219
|
+
15:17:58: Parsing script Razor.material
|
220
|
+
15:17:58: Parsing script Ribbon.material
|
221
|
+
15:17:58: Parsing script RustySteel.material
|
222
|
+
15:17:58: Parsing script RZR-002.material
|
223
|
+
15:17:58: Parsing script smoke.material
|
224
|
+
15:17:58: Parsing script SpaceSkyBox.material
|
225
|
+
15:17:58: Parsing script SpaceSkyPlane.material
|
226
|
+
15:17:58: Parsing script TextureEffects.material
|
227
|
+
15:17:58: Parsing script scripts/chiropteraDM.shader
|
228
|
+
15:17:58: Parsing script smoke.particle
|
229
|
+
15:17:58: Parsing script CubeMapping.overlay
|
230
|
+
15:17:58: Finished parsing scripts for resource group General
|
231
|
+
15:17:58: Parsing scripts for resource group Internal
|
232
|
+
15:17:58: Finished parsing scripts for resource group Internal
|
233
|
+
15:17:58: Loading resource group 'General' - Resources: 0 World Geometry: 1
|
234
|
+
15:17:58: Texture: @lightmap0: Loading 1 faces(PF_B8G8R8,128x128x1) with 0 generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
|
235
|
+
15:17:58: Texture: @lightmap1: Loading 1 faces(PF_B8G8R8,128x128x1) with 0 generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
|
236
|
+
15:17:58: Texture: @lightmap2: Loading 1 faces(PF_B8G8R8,128x128x1) with 0 generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
|
237
|
+
15:17:58: Texture: @lightmap3: Loading 1 faces(PF_B8G8R8,128x128x1) with 0 generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
|
238
|
+
15:17:58: Texture: @lightmap4: Loading 1 faces(PF_B8G8R8,128x128x1) with 0 generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
|
239
|
+
15:17:58: Texture: @lightmap5: Loading 1 faces(PF_B8G8R8,128x128x1) with 0 generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
|
240
|
+
15:17:58: Texture: @lightmap6: Loading 1 faces(PF_B8G8R8,128x128x1) with 0 generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
|
241
|
+
15:17:58: Texture: @lightmap7: Loading 1 faces(PF_B8G8R8,128x128x1) with 0 generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
|
242
|
+
15:17:58: Texture: @lightmap8: Loading 1 faces(PF_B8G8R8,128x128x1) with 0 generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
|
243
|
+
15:17:58: Texture: @lightmap9: Loading 1 faces(PF_B8G8R8,128x128x1) with 0 generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
|
244
|
+
15:17:58: Texture: @lightmap10: Loading 1 faces(PF_B8G8R8,128x128x1) with 0 generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
|
245
|
+
15:17:58: Texture: @lightmap11: Loading 1 faces(PF_B8G8R8,128x128x1) with 0 generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
|
246
|
+
15:17:58: Texture: @lightmap12: Loading 1 faces(PF_B8G8R8,128x128x1) with 0 generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
|
247
|
+
15:17:58: Texture: @lightmap13: Loading 1 faces(PF_B8G8R8,128x128x1) with 0 generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
|
248
|
+
15:17:58: Texture: @lightmap14: Loading 1 faces(PF_B8G8R8,128x128x1) with 0 generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
|
249
|
+
15:17:58: Texture: @lightmap15: Loading 1 faces(PF_B8G8R8,128x128x1) with 0 generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
|
250
|
+
15:17:58: Texture: @lightmap16: Loading 1 faces(PF_B8G8R8,128x128x1) with 0 generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
|
251
|
+
15:17:58: Texture: @lightmap17: Loading 1 faces(PF_B8G8R8,128x128x1) with 0 generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
|
252
|
+
15:17:58: Texture: @lightmap18: Loading 1 faces(PF_B8G8R8,128x128x1) with 0 generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
|
253
|
+
15:17:58: Texture: @lightmap19: Loading 1 faces(PF_B8G8R8,128x128x1) with 0 generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
|
254
|
+
15:17:58: Texture: @lightmap20: Loading 1 faces(PF_B8G8R8,128x128x1) with 0 generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
|
255
|
+
15:17:58: Using Q3 shader textures/chiroptera/nunukliquid
|
256
|
+
15:17:58: Texture: textures/chiroptera/npoolorange.jpg: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
|
257
|
+
15:17:58: Texture: textures/egyptsoc_trim/032-03a.jpg: Loading 1 faces(PF_R8G8B8,256x32x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x32x1.
|
258
|
+
15:17:58: Texture: textures/chiroptera/nnk05stone.jpg: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
|
259
|
+
15:17:58: Texture: textures/egyptsoc_mat/block02b.jpg: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
|
260
|
+
15:17:58: Texture: textures/egyptsoc_trim/s128-02a.jpg: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
|
261
|
+
15:17:58: Texture: textures/egyptsoc_trim/032-01a.jpg: Loading 1 faces(PF_R8G8B8,256x32x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x32x1.
|
262
|
+
15:17:58: Using Q3 shader textures/chiroptera/lig_b064-01c
|
263
|
+
15:17:58: Texture: textures/egyptsoc_sfx/lig_b064-01c.jpg: Loading 1 faces(PF_R8G8B8,256x64x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x64x1.
|
264
|
+
15:17:58: Texture: textures/egyptsoc_sfx/lig_b064-01y.blend.jpg: Loading 1 faces(PF_R8G8B8,256x64x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x64x1.
|
265
|
+
15:17:58: Texture: textures/egyptsoc_trim/128-01a.jpg: Loading 1 faces(PF_R8G8B8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x128x1.
|
266
|
+
15:17:58: Texture: textures/egyptsoc_trim/064-03b.jpg: Loading 1 faces(PF_R8G8B8,256x64x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x64x1.
|
267
|
+
15:17:58: Texture: textures/egyptsoc_trim/064-02b.jpg: Loading 1 faces(PF_R8G8B8,256x64x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x64x1.
|
268
|
+
15:17:58: Texture: textures/egyptsoc_trim/s128-02b.jpg: Loading 1 faces(PF_R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x128x1.
|
269
|
+
15:17:58: Texture: textures/egyptsoc_mat/block02a.jpg: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
|
270
|
+
15:17:58: Texture: textures/egyptsoc_trim/v064-02d.jpg: Loading 1 faces(PF_R8G8B8,64x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,64x256x1.
|
271
|
+
15:17:58: Texture: textures/egyptsoc_trim/128-comb1.jpg: Loading 1 faces(PF_R8G8B8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x128x1.
|
272
|
+
15:17:58: Texture: textures/egyptsoc_mat/block01d.jpg: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
|
273
|
+
15:17:58: Texture: textures/egyptsoc_wall/stone03a.jpg: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
|
274
|
+
15:17:58: Texture: textures/egyptsoc_trim/096-01c.jpg: Loading 1 faces(PF_R8G8B8,256x96x1) with 5 generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x96x1.
|
275
|
+
15:17:58: Texture: textures/egyptsoc_trim/v064-01d.jpg: Loading 1 faces(PF_R8G8B8,64x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,64x256x1.
|
276
|
+
15:17:58: Texture: textures/egyptsoc_floor/block06a.jpg: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
|
277
|
+
15:17:58: Texture: textures/egyptsoc_wall/stone03d.jpg: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
|
278
|
+
15:17:58: Texture: textures/egyptsoc_wall/stone03c.jpg: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
|
279
|
+
15:17:58: Texture: textures/egyptsoc_mat/block02c.jpg: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
|
280
|
+
15:17:58: Using Q3 shader textures/chiroptera/lig_064-02w1-2k
|
281
|
+
15:17:58: Texture: textures/egyptsoc_sfx/lig_064-02w1.jpg: Loading 1 faces(PF_R8G8B8,64x64x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,64x64x1.
|
282
|
+
15:17:58: Texture: textures/egyptsoc_sfx/lig_064-02w.blend.jpg: Loading 1 faces(PF_R8G8B8,64x64x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,64x64x1.
|
283
|
+
15:17:58: Texture: textures/egyptsoc_floor/block01a.jpg: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
|
284
|
+
15:17:58: Texture: textures/egyptsoc_floor/block01b.jpg: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
|
285
|
+
15:17:58: Texture: textures/egyptsoc_trim/032-01b.jpg: Loading 1 faces(PF_R8G8B8,256x32x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x32x1.
|
286
|
+
15:17:58: Texture: textures/egyptsoc_mat/block02d.jpg: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
|
287
|
+
15:17:58: Texture: textures/egyptsoc_trim/064-01b.jpg: Loading 1 faces(PF_R8G8B8,256x64x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x64x1.
|
288
|
+
15:17:58: Texture: textures/egyptsoc_trim/v064-01a.jpg: Loading 1 faces(PF_R8G8B8,64x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,64x256x1.
|
289
|
+
15:17:58: Texture: textures/egyptsoc_trim/256-03a.jpg: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
|
290
|
+
15:17:58: Using Q3 shader textures/chiroptera/jpblue_floor1a
|
291
|
+
15:17:58: Texture: textures/egyptsoc_sfx/jumppadsmall_b.jpg: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
|
292
|
+
15:17:58: Texture: textures/egyptsoc_floor/jumppad1ab.tga: Loading 1 faces(PF_A8R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1.
|
293
|
+
15:17:58: Texture: textures/egyptsoc_floor/jumppad1ab.blend.jpg: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
|
294
|
+
15:17:58: Using Q3 shader textures/chiroptera/lig_064-02b1-2k
|
295
|
+
15:17:58: Texture: textures/egyptsoc_sfx/lig_064-02b1.jpg: Loading 1 faces(PF_R8G8B8,64x64x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,64x64x1.
|
296
|
+
15:17:58: Texture: textures/egyptsoc_sfx/lig_064-02b.blend.jpg: Loading 1 faces(PF_R8G8B8,64x64x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,64x64x1.
|
297
|
+
15:17:58: Texture: textures/egyptsoc_trim/064-02c.jpg: Loading 1 faces(PF_R8G8B8,256x64x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x64x1.
|
298
|
+
15:17:58: Using Q3 shader textures/chiroptera/lig_b064-01a
|
299
|
+
15:17:58: Texture: textures/egyptsoc_sfx/lig_b064-01a.jpg: Loading 1 faces(PF_R8G8B8,256x64x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x64x1.
|
300
|
+
15:17:58: Texture: textures/egyptsoc_sfx/lig_b064-01b.blend.jpg: Loading 1 faces(PF_R8G8B8,256x64x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x64x1.
|
301
|
+
15:17:58: Texture: textures/egyptsoc_wall/stone04d.jpg: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
|
302
|
+
15:17:58: Texture: textures/egyptsoc_mat/block01c.jpg: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
|
303
|
+
15:17:58: Texture: textures/egyptsoc_trim/v064-02a.jpg: Loading 1 faces(PF_R8G8B8,64x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,64x256x1.
|
304
|
+
15:17:58: Texture: textures/egyptsoc_trim/v064-03e.jpg: Loading 1 faces(PF_R8G8B8,64x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,64x256x1.
|
305
|
+
15:17:58: Texture: textures/egyptsoc_trim/064-01c.jpg: Loading 1 faces(PF_R8G8B8,256x64x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x64x1.
|
306
|
+
15:17:58: Texture: textures/egyptsoc_trim/v128-03c.jpg: Loading 1 faces(PF_R8G8B8,128x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x256x1.
|
307
|
+
15:17:58: Texture: textures/egyptsoc_trim/v128-02d.jpg: Loading 1 faces(PF_R8G8B8,128x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x256x1.
|
308
|
+
15:17:58: Texture: textures/egyptsoc_trim/v064-02c.jpg: Loading 1 faces(PF_R8G8B8,64x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,64x256x1.
|
309
|
+
15:17:58: Texture: textures/egyptsoc_trim/v128-01a.jpg: Loading 1 faces(PF_R8G8B8,128x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x256x1.
|
310
|
+
15:17:58: Using Q3 shader textures/chiroptera/chiroptera_skybox
|
311
|
+
15:17:58: Texture: textures/egyptsoc_trim/032-04c.jpg: Loading 1 faces(PF_R8G8B8,256x32x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x32x1.
|
312
|
+
15:17:58: Texture: textures/egyptsoc_wall/stone04a.jpg: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
|
313
|
+
15:17:58: Texture: textures/egyptsoc_trim/v128-04d.jpg: Loading 1 faces(PF_R8G8B8,128x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x256x1.
|
314
|
+
15:17:58: Texture: textures/egyptsoc_trim/032-03b.jpg: Loading 1 faces(PF_R8G8B8,256x32x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x32x1.
|
315
|
+
15:17:58: Texture: textures/egyptsoc_trim/v064-02b.jpg: Loading 1 faces(PF_R8G8B8,64x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,64x256x1.
|
316
|
+
15:17:58: Texture: textures/egyptsoc_trim/v128-02a.jpg: Loading 1 faces(PF_R8G8B8,128x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x256x1.
|
317
|
+
15:17:58: Texture: textures/egyptsoc_trim/v096-01c.jpg: Loading 1 faces(PF_R8G8B8,96x128x1) with 5 generated mipmaps from Image. Internal format is PF_X8R8G8B8,96x128x1.
|
318
|
+
15:17:58: Using Q3 shader textures/chiroptera/lig_v192-01ba
|
319
|
+
15:17:58: Texture: textures/egyptsoc_sfx/lig_v192-01ba.jpg: Loading 1 faces(PF_R8G8B8,96x192x1) with 5 generated mipmaps from Image. Internal format is PF_X8R8G8B8,96x192x1.
|
320
|
+
15:17:58: Texture: textures/egyptsoc_sfx/lig_v192-01b.blend.jpg: Loading 1 faces(PF_R8G8B8,96x192x1) with 5 generated mipmaps from Image. Internal format is PF_X8R8G8B8,96x192x1.
|
321
|
+
15:17:58: Texture: textures/egyptsoc_floor/block06b.jpg: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
|
322
|
+
15:17:58: Texture: textures/egyptsoc_trim/128-03a.jpg: Loading 1 faces(PF_R8G8B8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x128x1.
|
323
|
+
15:17:58: Texture: textures/egyptsoc_trim/032-04d.jpg: Loading 1 faces(PF_R8G8B8,256x32x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x32x1.
|
324
|
+
15:17:58: Using Q3 shader textures/chiroptera/lig_b064-01b
|
325
|
+
15:17:59: Texture: textures/egyptsoc_sfx/lig_b064-01b.jpg: Loading 1 faces(PF_R8G8B8,256x64x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x64x1.
|
326
|
+
15:17:59: Texture: textures/egyptsoc_trim/v128-02b.jpg: Loading 1 faces(PF_R8G8B8,128x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x256x1.
|
327
|
+
15:17:59: Texture: textures/egyptsoc_wall/stone05a.jpg: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
|
328
|
+
15:17:59: Texture: textures/egyptsoc_wall/zbighouse-logo.jpg: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
|
329
|
+
15:17:59: Texture: textures/egyptsoc_wall/zbatcula-logo.jpg: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
|
330
|
+
15:17:59: Using Q3 shader textures/chiroptera/nunuktelep
|
331
|
+
15:17:59: Texture: textures/chiroptera/nunuktelep.jpg: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
|
332
|
+
15:17:59: Texture: textures/chiroptera/nunuktelep2.jpg: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
|
333
|
+
15:17:59: Texture: textures/egyptsoc_trim/064-04b.jpg: Loading 1 faces(PF_R8G8B8,256x64x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x64x1.
|
334
|
+
15:17:59: Texture: textures/egyptsoc_trim/v064-01c.jpg: Loading 1 faces(PF_R8G8B8,64x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,64x256x1.
|
335
|
+
15:17:59: Using Q3 shader textures/chiroptera/grate1a
|
336
|
+
15:17:59: Texture: textures/egyptsoc_floor/grate1a.tga: Loading 1 faces(PF_A8R8G8B8,128x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,128x128x1.
|
337
|
+
15:17:59: Texture: textures/egyptsoc_trim/v064-03b.jpg: Loading 1 faces(PF_R8G8B8,64x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,64x256x1.
|
338
|
+
15:17:59: Texture: textures/egyptsoc_mat/sand1b.jpg: Loading 1 faces(PF_R8G8B8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.
|
339
|
+
15:17:59: Finished loading resource group General
|
340
|
+
15:17:59: *** Initializing OIS ***
|
341
|
+
15:18:28: Unregistering ResourceManager for type BspLevel
|
342
|
+
15:18:28: *-*-* OGRE Shutdown
|
343
|
+
15:18:28: Unregistering ResourceManager for type Compositor
|
344
|
+
15:18:28: Unregistering ResourceManager for type Font
|
345
|
+
15:18:28: Unregistering ResourceManager for type Skeleton
|
346
|
+
15:18:28: Unregistering ResourceManager for type Mesh
|
347
|
+
15:18:28: Unregistering ResourceManager for type HighLevelGpuProgram
|
348
|
+
15:18:28: Uninstalling plugin: Cg Program Manager
|
349
|
+
15:18:28: Plugin successfully uninstalled
|
350
|
+
15:18:28: Unloading library D:\Programming\engines\Ogre1.4.4SDK\bin\release\Plugin_CgProgramManager
|
351
|
+
15:18:28: Uninstalling plugin: BSP Scene Manager
|
352
|
+
15:18:28: Plugin successfully uninstalled
|
353
|
+
15:18:28: Unloading library D:\Programming\engines\Ogre1.4.4SDK\bin\release\Plugin_BSPSceneManager
|
354
|
+
15:18:28: Uninstalling plugin: ParticleFX
|
355
|
+
15:18:28: Plugin successfully uninstalled
|
356
|
+
15:18:28: Unloading library D:\Programming\engines\Ogre1.4.4SDK\bin\release\Plugin_ParticleFX
|
357
|
+
15:18:28: Uninstalling plugin: Octree & Terrain Scene Manager
|
358
|
+
15:18:28: Plugin successfully uninstalled
|
359
|
+
15:18:28: Unloading library D:\Programming\engines\Ogre1.4.4SDK\bin\release\Plugin_OctreeSceneManager
|
360
|
+
15:18:28: Uninstalling plugin: D3D9 RenderSystem
|
361
|
+
15:18:28: Render Target 'OGRE Render Window' Average FPS: 232.763 Best FPS: 658.342 Worst FPS: 210.159
|
362
|
+
15:18:28: D3D9 : Shutting down cleanly.
|
363
|
+
15:18:28: Unregistering ResourceManager for type Texture
|
364
|
+
15:18:28: Unregistering ResourceManager for type GpuProgram
|
365
|
+
15:18:28: D3D9 : Direct3D9 Rendering Subsystem destroyed.
|
366
|
+
15:18:28: Plugin successfully uninstalled
|
367
|
+
15:18:28: Unloading library D:\Programming\engines\Ogre1.4.4SDK\bin\release\RenderSystem_Direct3D9
|
368
|
+
15:18:28: Uninstalling plugin: GL RenderSystem
|
369
|
+
15:18:28: *** Stopping Win32GL Subsystem ***
|
370
|
+
15:18:28: Plugin successfully uninstalled
|
371
|
+
15:18:28: Unloading library D:\Programming\engines\Ogre1.4.4SDK\bin\release\RenderSystem_GL
|
372
|
+
15:18:28: Unregistering ResourceManager for type Material
|