ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libgender/test.C
(Generate patch)

Comparing libgender/test.C (file contents):
Revision 1.24 by root, Tue Oct 5 02:42:12 2004 UTC vs.
Revision 1.82 by root, Thu Nov 4 15:43:53 2004 UTC

1#include <stdlib.h> 1#include <stdlib.h>
2#include <stdio.h> 2#include <stdio.h>
3#include <string.h> 3#include <string.h>
4#include <math.h> 4#include <math.h>
5#include <sh/sh.hpp>
6 5
7using namespace SH; 6#include "opengl.h"
8 7
9#include "SDL.h" 8#include "SDL.h"
10
11#include "SDL_opengl.h" 9#include "SDL_opengl.h"
12
13/* Undefine this if you want a flat cube instead of a rainbow cube */
14#define SHADED_CUBE
15
16/* Define this to be the name of the logo image to use with -logo */
17#define LOGO_FILE "icon.bmp"
18 10
19static SDL_Surface *global_image = NULL; 11static SDL_Surface *global_image = NULL;
20static GLuint global_texture = 0; 12static GLuint global_texture = 0;
21 13
14#include "util.h"
22#include "entity.h" 15#include "entity.h"
23
24#include "txtprt_import.h" 16#include "txtprt_import.h"
17
18#include "shader.h"
25 19
26/**********************************************************************/ 20/**********************************************************************/
27 21
28view camera; 22view camera;
29vec3 camera_velocity; 23vec3 camera_velocity;
24float camera_angle, camera_angle2, camera_velocity_angle, camera_velocity_angle2;
30float camera_velocity_factor = 10; 25float camera_velocity_factor = 80;
31
32ShColor3f color = ShColor3f(.5, 0.9, 0.2);
33ShPoint3f lightPos = ShPoint3f(0.0, 10.0, 10.0);
34ShMatrix4x4f mvp;
35ShProgram vsh, fsh;
36
37void
38init_shaders ()
39{
40 {
41 vsh = SH_BEGIN_PROGRAM ("gpu:vertex")
42 ShInputNormal3f normal;
43 ShInputPosition4f p;
44
45 ShOutputPoint4f ov;
46 ShOutputNormal3f on;
47 ShOutputVector3f lvv;
48 ShOutputPosition4f opd;
49
50 opd = mvp | p;
51 on = normalize (mvp | normal);
52 ov = -normalize (mvp | p);
53 lvv = normalize (lightPos - (mvp | p) (0, 1, 2));
54 SH_END;
55 }
56
57 // declare and initialize diffuse color
58 ShColor3f kd = ShColor3f (0.5, 0.7, 0.9);
59
60 {
61 fsh = SH_BEGIN_PROGRAM ("gpu:fragment")
62 ShInputVector4f v;
63 ShInputNormal3f n;
64 ShInputVector3f lvv;
65 ShInputPosition4f p;
66
67 ShOutputColor3f out;
68 out (0, 1, 2) = color * dot (normalize (n), normalize (lvv));
69 out(0,1,2) = kd;
70 SH_END;
71 }
72}
73 26
74void 27void
75HotKey_ToggleFullScreen (void) 28HotKey_ToggleFullScreen (void)
76{ 29{
77 SDL_Surface *screen; 30 SDL_Surface *screen;
78 31
79 screen = SDL_GetVideoSurface (); 32 screen = SDL_GetVideoSurface ();
33
80 if (SDL_WM_ToggleFullScreen (screen)) 34 if (SDL_WM_ToggleFullScreen (screen))
81 printf ("Toggled fullscreen mode - now %s\n", 35 printf ("Toggled fullscreen mode - now %s\n",
82 (screen->flags & SDL_FULLSCREEN) ? "fullscreen" : "windowed"); 36 (screen->flags & SDL_FULLSCREEN) ? "fullscreen" : "windowed");
83 else 37 else
84 printf ("Unable to toggle fullscreen mode\n"); 38 printf ("Unable to toggle fullscreen mode\n");
89{ 43{
90 SDL_GrabMode mode; 44 SDL_GrabMode mode;
91 45
92 printf ("Ctrl-G: toggling input grab!\n"); 46 printf ("Ctrl-G: toggling input grab!\n");
93 mode = SDL_WM_GrabInput (SDL_GRAB_QUERY); 47 mode = SDL_WM_GrabInput (SDL_GRAB_QUERY);
48
94 if (mode == SDL_GRAB_ON) 49 if (mode == SDL_GRAB_ON)
95 printf ("Grab was on\n"); 50 printf ("Grab was on\n");
96 else 51 else
97 printf ("Grab was off\n"); 52 printf ("Grab was off\n");
98 53
99 mode = SDL_WM_GrabInput (mode ? SDL_GRAB_OFF : SDL_GRAB_ON); 54 mode = SDL_WM_GrabInput (mode ? SDL_GRAB_OFF : SDL_GRAB_ON);
55
100 if (mode == SDL_GRAB_ON) 56 if (mode == SDL_GRAB_ON)
101 printf ("Grab is now on\n"); 57 printf ("Grab is now on\n");
102 else 58 else
103 printf ("Grab is now off\n"); 59 printf ("Grab is now off\n");
104} 60}
114HandleEvent (SDL_Event * event) 70HandleEvent (SDL_Event * event)
115{ 71{
116 int done; 72 int done;
117 73
118 done = 0; 74 done = 0;
75
119 switch (event->type) 76 switch (event->type)
120 { 77 {
121 case SDL_ACTIVEEVENT: 78 case SDL_ACTIVEEVENT:
122 /* See what happened */ 79 /* See what happened */
123 printf ("app %s ", event->active.gain ? "gained" : "lost"); 80 printf ("app %s ", event->active.gain ? "gained" : "lost");
124 if (event->active.state & SDL_APPACTIVE) 81 if (event->active.state & SDL_APPACTIVE)
125 {
126 printf ("active "); 82 printf ("active ");
127 }
128 else if (event->active.state & SDL_APPMOUSEFOCUS) 83 else if (event->active.state & SDL_APPMOUSEFOCUS)
129 {
130 printf ("mouse "); 84 printf ("mouse ");
131 }
132 else if (event->active.state & SDL_APPINPUTFOCUS) 85 else if (event->active.state & SDL_APPINPUTFOCUS)
133 {
134 printf ("input "); 86 printf ("input ");
135 }
136 87
137 printf ("focus\n"); 88 printf ("focus\n");
138 break; 89 break;
139 90
140#define VELOCITY 10
141 case SDL_KEYDOWN: 91 case SDL_KEYDOWN:
142 if (event->key.keysym.sym == SDLK_UP) camera_velocity.z--; 92 if (event->key.keysym.sym == SDLK_UP) camera_velocity.z--;
143 if (event->key.keysym.sym == SDLK_DOWN) camera_velocity.z++; 93 if (event->key.keysym.sym == SDLK_DOWN) camera_velocity.z++;
144 if (event->key.keysym.sym == SDLK_LEFT) camera_velocity.x--;
145 if (event->key.keysym.sym == SDLK_RIGHT) camera_velocity.x++; 94 if (event->key.keysym.sym == SDLK_RIGHT) camera_velocity_angle++;
95 if (event->key.keysym.sym == SDLK_LEFT) camera_velocity_angle--;
96 if (event->key.keysym.sym == SDLK_PAGEUP) camera_velocity_angle2++;
97 if (event->key.keysym.sym == SDLK_PAGEDOWN) camera_velocity_angle2--;
146 if (event->key.keysym.sym == SDLK_a) camera_velocity.y--; 98 if (event->key.keysym.sym == SDLK_e) camera_velocity.y--;
147 if (event->key.keysym.sym == SDLK_s) camera_velocity.y++; 99 if (event->key.keysym.sym == SDLK_q) camera_velocity.y++;
148 if (event->key.keysym.sym == SDLK_v) camera_velocity_factor *= 1.5; 100 if (event->key.keysym.sym == SDLK_v) camera_velocity_factor *= 1.5;
149 if (event->key.keysym.sym == SDLK_b) camera_velocity_factor /= 1.5; 101 if (event->key.keysym.sym == SDLK_b) camera_velocity_factor /= 1.5;
150 102
151 if (event->key.keysym.sym == SDLK_ESCAPE) 103 if (event->key.keysym.sym == SDLK_ESCAPE)
152 done = 1; 104 done = 1;
153 105
154 if ((event->key.keysym.sym == SDLK_g) && 106 if ((event->key.keysym.sym == SDLK_g) &&
166 break; 118 break;
167 119
168 case SDL_KEYUP: 120 case SDL_KEYUP:
169 if (event->key.keysym.sym == SDLK_UP) camera_velocity.z++; 121 if (event->key.keysym.sym == SDLK_UP) camera_velocity.z++;
170 if (event->key.keysym.sym == SDLK_DOWN) camera_velocity.z--; 122 if (event->key.keysym.sym == SDLK_DOWN) camera_velocity.z--;
171 if (event->key.keysym.sym == SDLK_LEFT) camera_velocity.x++; 123 if (event->key.keysym.sym == SDLK_LEFT) camera_velocity_angle++;
172 if (event->key.keysym.sym == SDLK_RIGHT) camera_velocity.x--; 124 if (event->key.keysym.sym == SDLK_RIGHT) camera_velocity_angle--;
125 if (event->key.keysym.sym == SDLK_PAGEUP) camera_velocity_angle2--;
126 if (event->key.keysym.sym == SDLK_PAGEDOWN) camera_velocity_angle2++;
173 if (event->key.keysym.sym == SDLK_a) camera_velocity.y++; 127 if (event->key.keysym.sym == SDLK_e) camera_velocity.y++;
174 if (event->key.keysym.sym == SDLK_s) camera_velocity.y--; 128 if (event->key.keysym.sym == SDLK_q) camera_velocity.y--;
175 break; 129 break;
176 130
177 case SDL_QUIT: 131 case SDL_QUIT:
178 done = 1; 132 done = 1;
179 break; 133 break;
180 } 134 }
181 135
182 return (done); 136 return (done);
183} 137}
184 138
185/* Quick utility function for texture creation */ 139void draw_floor (int size, int dx, int dy, int dz)
186static int
187power_of_two (int input)
188{ 140{
189 int value = 1; 141 int x, z, ry;
190 142
191 while (value < input) 143 for (x = 0; x < 10; x++)
192 {
193 value <<= 1;
194 } 144 {
195 return value; 145 for (z = 0; z < 10; z++)
196} 146 {
147 vector<vertex_t2f_n3f_v3f> pts;
148 pts.push_back (vertex_t2f_n3f_v3f (point ( 0, 0, 0), vec3 (0, 1, 0), tex2 (0, 0)));
149 pts.push_back (vertex_t2f_n3f_v3f (point ( 0, 0, size), vec3 (0, 1, 0), tex2 (0, 1)));
150 pts.push_back (vertex_t2f_n3f_v3f (point (size, 0, size), vec3 (0, 1, 0), tex2 (1, 1)));
151 pts.push_back (vertex_t2f_n3f_v3f (point (size, 0, 0), vec3 (0, 1, 0), tex2 (1, 0)));
197 152
198GLuint 153 geometry_quads *q = new geometry_quads;
199SDL_GL_LoadTexture (SDL_Surface * surface, GLfloat * texcoord) 154 //q->m = new simple_material;
200{ 155 q->set (pts);
201 GLuint texture; 156 entity *e = new entity (q);
202 int w, h; 157 e->move (vec3 (dx + x * size, dy, dz + z * size));
203 SDL_Surface *image; 158 e->show ();
204 SDL_Rect area; 159 }
205 Uint32 saved_flags;
206 Uint8 saved_alpha;
207
208 /* Use the surface width and height expanded to powers of 2 */
209 w = power_of_two (surface->w);
210 h = power_of_two (surface->h);
211 texcoord[0] = 0.0f; /* Min X */
212 texcoord[1] = 0.0f; /* Min Y */
213 texcoord[2] = (GLfloat) surface->w / w; /* Max X */
214 texcoord[3] = (GLfloat) surface->h / h; /* Max Y */
215
216 image = SDL_CreateRGBSurface (SDL_SWSURFACE, w, h, 32,
217#if SDL_BYTEORDER == SDL_LIL_ENDIAN /* OpenGL RGBA masks */
218 0x000000FF, 0x0000FF00, 0x00FF0000, 0xFF000000
219#else
220 0xFF000000, 0x00FF0000, 0x0000FF00, 0x000000FF
221#endif
222 );
223 if (image == NULL)
224 { 160 }
225 return 0; 161}
162
163void draw_test_nurb ()
164{
165 geometry_nurbs *q = new geometry_nurbs;
166 q->set ();
167 entity *e = new entity (q);
168 e->move (vec3 (10, 3, -4));
169 e->show ();
170}
171
172void fisch (vec3 center, GLfloat radius, int depth)
173{
174 entity *planet = new entity (new geometry_sphere (testmat, radius));
175 planet->move (center);
176 planet->show ();
177
178 if (--depth)
226 } 179 {
180 GLfloat r2 = radius * .1F;
181 GLfloat r3 = radius + r2;
227 182
228 /* Save the alpha blending attributes */ 183 fisch (center + vec3 (r3, 0, 0), r2, depth);
229 saved_flags = surface->flags & (SDL_SRCALPHA | SDL_RLEACCELOK); 184 fisch (center + vec3 (0, 0, r3), r2, depth);
230 saved_alpha = surface->format->alpha; 185 fisch (center + vec3 (-r3, 0, 0), r2, depth);
231 if ((saved_flags & SDL_SRCALPHA) == SDL_SRCALPHA)
232 { 186 }
233 SDL_SetAlpha (surface, 0, 0);
234 }
235
236 /* Copy the surface into the GL texture image */
237 area.x = 0;
238 area.y = 0;
239 area.w = surface->w;
240 area.h = surface->h;
241 SDL_BlitSurface (surface, &area, image, &area);
242
243 /* Restore the alpha blending attributes */
244 if ((saved_flags & SDL_SRCALPHA) == SDL_SRCALPHA)
245 {
246 SDL_SetAlpha (surface, saved_flags, saved_alpha);
247 }
248
249 /* Create an OpenGL texture for the image */
250 glGenTextures (1, &texture);
251 glBindTexture (GL_TEXTURE_2D, texture);
252 glTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
253 glTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
254 glTexImage2D (GL_TEXTURE_2D,
255 0,
256 GL_RGBA, w, h, 0, GL_RGBA, GL_UNSIGNED_BYTE, image->pixels);
257 SDL_FreeSurface (image); /* No longer needed */
258
259 return texture;
260} 187}
261 188
189extern void draw_level ();
262int 190int
263RunGLTest (int argc, char *argv[], 191RunGLTest (int argc, char *argv[],
264 int logo, int slowly, int bpp, float gamma, int noframe, int fsaa) 192 int logo, int slowly, int bpp, float gamma, int noframe, int fsaa)
265{ 193{
266 int i; 194 int i;
267 int rgb_size[3]; 195 int rgb_size[3];
268 int w = 640; 196 int w = 640;
269 int h = 480; 197 int h = 480;
270 int done = 0; 198 int done = 0;
271 int frames; 199 int frames;
272 Uint32 start_time, this_time;
273 Uint32 video_flags; 200 Uint32 video_flags;
274 int value; 201 int value;
202 GLenum gl_error;
275 203
276 if (SDL_Init (SDL_INIT_VIDEO) < 0) 204 if (SDL_Init (SDL_INIT_VIDEO) < 0)
277 { 205 {
278 fprintf (stderr, "Couldn't initialize SDL: %s\n", SDL_GetError ()); 206 fprintf (stderr, "Couldn't initialize SDL: %s\n", SDL_GetError ());
279 exit (1); 207 exit (1);
321 } 249 }
322 250
323 SDL_GL_SetAttribute (SDL_GL_RED_SIZE, rgb_size[0]); 251 SDL_GL_SetAttribute (SDL_GL_RED_SIZE, rgb_size[0]);
324 SDL_GL_SetAttribute (SDL_GL_GREEN_SIZE, rgb_size[1]); 252 SDL_GL_SetAttribute (SDL_GL_GREEN_SIZE, rgb_size[1]);
325 SDL_GL_SetAttribute (SDL_GL_BLUE_SIZE, rgb_size[2]); 253 SDL_GL_SetAttribute (SDL_GL_BLUE_SIZE, rgb_size[2]);
326 SDL_GL_SetAttribute (SDL_GL_DEPTH_SIZE, 16); 254 SDL_GL_SetAttribute (SDL_GL_DEPTH_SIZE, 24);
327 SDL_GL_SetAttribute (SDL_GL_DOUBLEBUFFER, 1); 255 SDL_GL_SetAttribute (SDL_GL_DOUBLEBUFFER, 1);
328 256
329 if (fsaa) 257 if (fsaa)
330 { 258 {
331 SDL_GL_SetAttribute (SDL_GL_MULTISAMPLEBUFFERS, 1); 259 SDL_GL_SetAttribute (SDL_GL_MULTISAMPLEBUFFERS, 1);
337 fprintf (stderr, "Couldn't set GL mode: %s\n", SDL_GetError ()); 265 fprintf (stderr, "Couldn't set GL mode: %s\n", SDL_GetError ());
338 SDL_Quit (); 266 SDL_Quit ();
339 exit (1); 267 exit (1);
340 } 268 }
341 269
342 printf ("Screen BPP: %d\n", SDL_GetVideoSurface ()->format->BitsPerPixel); 270 //printf ("Screen BPP: %d\n", SDL_GetVideoSurface ()->format->BitsPerPixel);
343 printf ("\n"); 271 //printf ("\n");
344 printf ("Vendor : %s\n", glGetString (GL_VENDOR)); 272 //printf ("Vendor : %s\n", glGetString (GL_VENDOR));
345 printf ("Renderer : %s\n", glGetString (GL_RENDERER)); 273 //printf ("Renderer : %s\n", glGetString (GL_RENDERER));
346 printf ("Version : %s\n", glGetString (GL_VERSION)); 274 //printf ("Version : %s\n", glGetString (GL_VERSION));
347 printf ("Extensions : %s\n", glGetString (GL_EXTENSIONS)); 275 //printf ("Extensions : %s\n", glGetString (GL_EXTENSIONS));
348 printf ("\n"); 276 printf ("\n");
349 277
350 SDL_GL_GetAttribute (SDL_GL_RED_SIZE, &value); 278 SDL_GL_GetAttribute (SDL_GL_RED_SIZE, &value);
351 printf ("SDL_GL_RED_SIZE: requested %d, got %d\n", rgb_size[0], value); 279 printf ("SDL_GL_RED_SIZE: requested %d, got %d\n", rgb_size[0], value);
352 SDL_GL_GetAttribute (SDL_GL_GREEN_SIZE, &value); 280 SDL_GL_GetAttribute (SDL_GL_GREEN_SIZE, &value);
372 300
373 /* Set the gamma for the window */ 301 /* Set the gamma for the window */
374 if (gamma != 0.0) 302 if (gamma != 0.0)
375 SDL_SetGamma (gamma, gamma, gamma); 303 SDL_SetGamma (gamma, gamma, gamma);
376 304
377 // load a entity 305 testmat = new test_material;
306
307 entity *planet = new entity (new geometry_sphere (testmat, 10));
308 planet->move (vec3 (0, 0, -20));
309 planet->show ();
310
378 for (int i = 0; i < 7; i++) 311 for (int i = 0; i < 20; i++)
379 { 312 {
313 // load a entity
380 txtprt_parser p; 314 txtprt_parser p;
381 entity_transform *f = new entity_transform; 315 geometry *g;
382 entity *e;
383 try 316 try
384 { 317 {
385 e = p.read ("test.blasc"); 318 g = p.read ("test.blasc");
319 }
386 } catch (txtprt_i_exception & e) 320 catch (txtprt_i_exception & e)
387 { 321 {
388 cout << "ERR: " << e.msg << endl; 322 cout << "ERR: " << e.msg << endl;
389 } 323 }
390 f->set (e); 324
391 f->update (gl_matrix::translation (vec3 (0, -1, -i*5))); 325 entity *e = new entity (g);
326 e->move (vec3 (i*5, -3, -i*10));
392 f->show (); 327 e->show ();
328 }
329
393 } 330 {
331 fisch (vec3 (0, 0, -2e9), 1e9, 8);
332 //entity *planet = new entity (new geometry_sphere (1e9));
333 //planet->move (vec3 (0, 0, -1.5e9));
334 //planet->show ();
335 }
394 336
337 {
338 entity *planet = new entity (new geometry_sphere (testmat, 4e15));
339 planet->move (vec3 (0, 0, 1e17));
340 planet->show ();
341 }
342
343 //draw_floor (10, -500, -10, -1000);
344 draw_level ();
345
346
347 {
348 geometry_heightfield *hf = new geometry_heightfield (100000., 100000.);
349 entity *e = new entity (hf);
350 e->move (vec3 (-100000, -100000 * 0.01, -100000));
351 e->show ();
352 }
353
354 //draw_test_nurb ();
355
356 //camera.orig.x = 108; camera.orig.y = 0; camera.orig.z = -368;
395 camera.orig.x = camera.orig.y = camera.orig.z = 0; 357 camera.orig.x = 0; camera.orig.y = 0; camera.orig.z = 0;
396 camera.p = point (0, 0, 10); 358 camera.p = point (0, 0, 10);
397 camera.d = vec3 (0, 0, -1); 359 camera.d = vec3 (0, 0, -1);
398 camera.u = vec3 (0, 1, 0); 360 camera.u = vec3 (0, 1, 0);
399 camera.w = w; camera.h = h; 361 camera.w = w; camera.h = h;
400 camera.fov = 90; 362 camera.fov = 40.;
401
402 glMatrixMode (GL_MODELVIEW);
403 glLoadIdentity ();
404 363
405 glEnable (GL_CULL_FACE); 364 glEnable (GL_CULL_FACE);
406 glEnable (GL_DEPTH_TEST); 365 glDisable (GL_ALPHA_TEST);
407 shInit(); 366 glDisable (GL_BLEND);
408 shSetBackend("arb");
409 glEnable(GL_VERTEX_PROGRAM_ARB);
410 glEnable(GL_FRAGMENT_PROGRAM_ARB);
411
412 init_shaders();
413 shBind(vsh);
414 shBind(fsh);
415 glShadeModel (GL_SMOOTH);
416
417 glEnable (GL_LIGHTING);
418 //GLfloat lightc[4] = { 1, 0.1, 0.1, 1 };
419 //glLightf (GL_LIGHT0, GL_QUADRATIC_ATTENUATION);
420 //glLightfv (GL_LIGHT0, GL_DIFFUSE, lightc);
421 glEnable (GL_LIGHT0);
422 367
423 /* Loop until done. */ 368 /* Loop until done. */
424 start_time = SDL_GetTicks ();
425 frames = 0; 369 frames = 0;
426 370
427 draw_context c (camera); 371 linear_light mylight;
372 mylight.radius = 100000;
373 mylight.c = colour (1., 1, 1, 1.);
374 mylight.intensity = 1.F;
375
376 pass pass_light (&mylight);
428 377
429 while (!done) 378 while (!done)
430 { 379 {
431 GLenum gl_error;
432 char *sdl_error; 380 char *sdl_error;
433 SDL_Event event; 381 SDL_Event event;
434 382
435 glClear (GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); 383 camera_angle += 180 * camera_velocity_angle * timer.diff;
384 camera_angle2 += 180 * camera_velocity_angle2 * timer.diff;
436 385
437 camera.p.x += (camera_velocity_factor * camera_velocity.x) * timer.diff; 386 vec3 geradeaus = matrix::rotation (-camera_angle, vec3 (0, 1, 0)) * vec3 (0, 0, -1);
438 camera.p.y += (camera_velocity_factor * camera_velocity.y) * timer.diff; 387 vec3 right = matrix::rotation (90., vec3 (0, 1, 0)) * geradeaus;
439 camera.p.z += (camera_velocity_factor * camera_velocity.z) * timer.diff;
440 388
441 GLfloat lightp[4]; 389 camera.d = matrix::rotation (camera_angle2, right) * geradeaus;
390 camera.u = cross (camera.d, right);
391
392 camera.p = camera.p - camera.d * (camera_velocity_factor * timer.diff) * camera_velocity.z;
393 camera.p = camera.p - camera.u * (camera_velocity_factor * timer.diff) * camera_velocity.y;
394
395 mylight.orig = camera.orig;
442 lightp[0] = camera.p.x; 396 mylight.p = camera.p;
443 lightp[1] = camera.p.y;
444 lightp[2] = camera.p.z;
445 lightp[3] = 1;
446 glLightfv (GL_LIGHT0, GL_POSITION, lightp);
447 397
448#if 0 398 //mylight.intensity = max (sinf (timer.now) + 1.2F, 0.2F);
449 static GLfloat ry; 399
450 ry += 0.001;
451 camera.d.x = cos (ry);
452 camera.d.z = sin (ry); 400 camera.begin ();
453 //camera.d.y = sin (ry * 0.1); 401 camera.render (view::DEPTH, pass_depth);
454#endif 402 camera.render (view::POSTDEPTH, pass_depth);
455 403 camera.render (view::LIGHTED, pass_light);
456 c.mode = draw_context::DEPTH;
457 camera.draw (c); 404 camera.end ();
458 c.mode = draw_context::LIGHTED;
459 camera.draw (c);
460 405
461 SDL_GL_SwapBuffers (); 406 SDL_GL_SwapBuffers ();
462 timer.frame (); 407 timer.frame ();
463 408
409#if 0
464 /* Check for error conditions. */ 410 /* Check for error conditions. */
465 gl_error = glGetError (); 411 gl_error = glGetError ();
466 412
467 if (gl_error != GL_NO_ERROR)
468 fprintf (stderr, "testgl: OpenGL error: %d\n", gl_error); 413 if (gl_error != GL_NO_ERROR) fprintf (stderr, "testgl: OpenGL error: %d\n", gl_error);
469 414
470 sdl_error = SDL_GetError (); 415 sdl_error = SDL_GetError ();
471 416
472 if (sdl_error[0] != '\0') 417 if (sdl_error[0] != '\0')
473 { 418 {
474 fprintf (stderr, "testgl: SDL error '%s'\n", sdl_error); 419 fprintf (stderr, "testgl: SDL error '%s'\n", sdl_error);
475 SDL_ClearError (); 420 SDL_ClearError ();
476 } 421 }
477 422
478 /* Allow the user to see what's happening */ 423 /* Allow the user to see what's happening */
479 //SDL_Delay (20); 424 //SDL_Delay (40);
425#endif
480 426
481 /* Check if there's a pending event. */ 427 /* Check if there's a pending event. */
482 while (SDL_PollEvent (&event)) 428 while (SDL_PollEvent (&event))
483 done = HandleEvent (&event); 429 done = HandleEvent (&event);
484 430
485
486 ++frames; 431 ++frames;
487 }
488
489 /* Print out the frames per second */
490 this_time = SDL_GetTicks ();
491 if (this_time != start_time)
492 {
493 printf ("%2.2f FPS\n",
494 ((float) frames / (this_time - start_time)) * 1000.0);
495 } 432 }
496 433
497 if (global_image) 434 if (global_image)
498 { 435 {
499 SDL_FreeSurface (global_image); 436 SDL_FreeSurface (global_image);
500 global_image = NULL; 437 global_image = NULL;
501 } 438 }
439
502 if (global_texture) 440 if (global_texture)
503 { 441 {
504 glDeleteTextures (1, &global_texture); 442 glDeleteTextures (1, &global_texture);
505 global_texture = 0; 443 global_texture = 0;
506 } 444 }
507 445
508 /* Destroy our GL context, etc. */ 446 /* Destroy our GL context, etc. */
509 SDL_Quit (); 447 SDL_Quit ();
510 return (0); 448 return (0);
511} 449}
512
513int 450int
514main (int argc, char *argv[]) 451main (int argc, char *argv[])
515{ 452{
516 int i, logo; 453 int i, logo;
517 int numtests; 454 int numtests;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines