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

Comparing libgender/test.C (file contents):
Revision 1.18 by root, Mon Oct 4 07:04:58 2004 UTC vs.
Revision 1.68 by root, Thu Oct 21 21:20:09 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 5
6#include "opengl.h"
7
6#include "SDL.h" 8#include "SDL.h"
7
8#include "SDL_opengl.h" 9#include "SDL_opengl.h"
9
10/* Undefine this if you want a flat cube instead of a rainbow cube */
11#define SHADED_CUBE
12
13/* Define this to be the name of the logo image to use with -logo */
14#define LOGO_FILE "icon.bmp"
15 10
16static SDL_Surface *global_image = NULL; 11static SDL_Surface *global_image = NULL;
17static GLuint global_texture = 0; 12static GLuint global_texture = 0;
18 13
14#include "util.h"
19#include "entity.h" 15#include "entity.h"
20
21#include "txtprt_import.h" 16#include "txtprt_import.h"
22 17
23/**********************************************************************/ 18/**********************************************************************/
24 19
25view camera; 20view camera;
26vec3 camera_velocity; 21vec3 camera_velocity;
22float camera_angle, camera_angle2, camera_velocity_angle, camera_velocity_angle2;
23float camera_velocity_factor = 80;
27 24
28void 25void
29HotKey_ToggleFullScreen (void) 26HotKey_ToggleFullScreen (void)
30{ 27{
31 SDL_Surface *screen; 28 SDL_Surface *screen;
74 { 71 {
75 case SDL_ACTIVEEVENT: 72 case SDL_ACTIVEEVENT:
76 /* See what happened */ 73 /* See what happened */
77 printf ("app %s ", event->active.gain ? "gained" : "lost"); 74 printf ("app %s ", event->active.gain ? "gained" : "lost");
78 if (event->active.state & SDL_APPACTIVE) 75 if (event->active.state & SDL_APPACTIVE)
79 {
80 printf ("active "); 76 printf ("active ");
81 }
82 else if (event->active.state & SDL_APPMOUSEFOCUS) 77 else if (event->active.state & SDL_APPMOUSEFOCUS)
83 {
84 printf ("mouse "); 78 printf ("mouse ");
85 }
86 else if (event->active.state & SDL_APPINPUTFOCUS) 79 else if (event->active.state & SDL_APPINPUTFOCUS)
87 {
88 printf ("input "); 80 printf ("input ");
89 }
90 81
91 printf ("focus\n"); 82 printf ("focus\n");
92 break; 83 break;
93 84
94#define VELOCITY 10
95 case SDL_KEYDOWN: 85 case SDL_KEYDOWN:
96 if (event->key.keysym.sym == SDLK_UP) camera_velocity.z -= VELOCITY; 86 if (event->key.keysym.sym == SDLK_UP) camera_velocity.z--;
97 if (event->key.keysym.sym == SDLK_DOWN) camera_velocity.z += VELOCITY; 87 if (event->key.keysym.sym == SDLK_DOWN) camera_velocity.z++;
98 if (event->key.keysym.sym == SDLK_LEFT) camera_velocity.x -= VELOCITY;
99 if (event->key.keysym.sym == SDLK_RIGHT) camera_velocity.x += VELOCITY; 88 if (event->key.keysym.sym == SDLK_RIGHT) camera_velocity_angle++;
89 if (event->key.keysym.sym == SDLK_LEFT) camera_velocity_angle--;
90 if (event->key.keysym.sym == SDLK_PAGEUP) camera_velocity_angle2++;
91 if (event->key.keysym.sym == SDLK_PAGEDOWN) camera_velocity_angle2--;
92 if (event->key.keysym.sym == SDLK_e) camera_velocity.y--;
93 if (event->key.keysym.sym == SDLK_q) camera_velocity.y++;
94 if (event->key.keysym.sym == SDLK_v) camera_velocity_factor *= 1.5;
95 if (event->key.keysym.sym == SDLK_b) camera_velocity_factor /= 1.5;
100 96
101 if (event->key.keysym.sym == SDLK_ESCAPE) 97 if (event->key.keysym.sym == SDLK_ESCAPE)
102 done = 1; 98 done = 1;
103 99
104 if ((event->key.keysym.sym == SDLK_g) && 100 if ((event->key.keysym.sym == SDLK_g) &&
114 HotKey_ToggleFullScreen (); 110 HotKey_ToggleFullScreen ();
115 111
116 break; 112 break;
117 113
118 case SDL_KEYUP: 114 case SDL_KEYUP:
119 if (event->key.keysym.sym == SDLK_UP) camera_velocity.z += VELOCITY; 115 if (event->key.keysym.sym == SDLK_UP) camera_velocity.z++;
120 if (event->key.keysym.sym == SDLK_DOWN) camera_velocity.z -= VELOCITY; 116 if (event->key.keysym.sym == SDLK_DOWN) camera_velocity.z--;
121 if (event->key.keysym.sym == SDLK_LEFT) camera_velocity.x += VELOCITY; 117 if (event->key.keysym.sym == SDLK_LEFT) camera_velocity_angle++;
122 if (event->key.keysym.sym == SDLK_RIGHT) camera_velocity.x -= VELOCITY; 118 if (event->key.keysym.sym == SDLK_RIGHT) camera_velocity_angle--;
119 if (event->key.keysym.sym == SDLK_PAGEUP) camera_velocity_angle2--;
120 if (event->key.keysym.sym == SDLK_PAGEDOWN) camera_velocity_angle2++;
121 if (event->key.keysym.sym == SDLK_e) camera_velocity.y++;
122 if (event->key.keysym.sym == SDLK_q) camera_velocity.y--;
123 break; 123 break;
124 124
125 case SDL_QUIT: 125 case SDL_QUIT:
126 done = 1; 126 done = 1;
127 break; 127 break;
128 } 128 }
129 129
130 return (done); 130 return (done);
131} 131}
132 132
133/* Quick utility function for texture creation */ 133void draw_floor (int size, int dx, int dy, int dz)
134static int
135power_of_two (int input)
136{ 134{
137 int value = 1; 135 int x, z, ry;
138 136
139 while (value < input) 137 for (x = 0; x < 10; x++)
140 {
141 value <<= 1;
142 } 138 {
143 return value; 139 for (z = 0; z < 10; z++)
144} 140 {
141 vector<vertex_t2f_n3f_v3f> pts;
142 pts.push_back (vertex_t2f_n3f_v3f (point ( 0, 0, 0), vec3 (0, 1, 0), tex2 (0, 0)));
143 pts.push_back (vertex_t2f_n3f_v3f (point ( 0, 0, size), vec3 (0, 1, 0), tex2 (0, 1)));
144 pts.push_back (vertex_t2f_n3f_v3f (point (size, 0, size), vec3 (0, 1, 0), tex2 (1, 1)));
145 pts.push_back (vertex_t2f_n3f_v3f (point (size, 0, 0), vec3 (0, 1, 0), tex2 (1, 0)));
145 146
146GLuint 147 geometry_quads *q = new geometry_quads;
147SDL_GL_LoadTexture (SDL_Surface * surface, GLfloat * texcoord) 148 q->m = new simple_material;
148{ 149 q->set (pts);
149 GLuint texture; 150 entity *e = new entity (q);
150 int w, h; 151 e->move (vec3 (dx + x * size, dy, dz + z * size));
151 SDL_Surface *image; 152 e->show ();
152 SDL_Rect area; 153 }
153 Uint32 saved_flags;
154 Uint8 saved_alpha;
155
156 /* Use the surface width and height expanded to powers of 2 */
157 w = power_of_two (surface->w);
158 h = power_of_two (surface->h);
159 texcoord[0] = 0.0f; /* Min X */
160 texcoord[1] = 0.0f; /* Min Y */
161 texcoord[2] = (GLfloat) surface->w / w; /* Max X */
162 texcoord[3] = (GLfloat) surface->h / h; /* Max Y */
163
164 image = SDL_CreateRGBSurface (SDL_SWSURFACE, w, h, 32,
165#if SDL_BYTEORDER == SDL_LIL_ENDIAN /* OpenGL RGBA masks */
166 0x000000FF, 0x0000FF00, 0x00FF0000, 0xFF000000
167#else
168 0xFF000000, 0x00FF0000, 0x0000FF00, 0x000000FF
169#endif
170 );
171 if (image == NULL)
172 { 154 }
173 return 0; 155}
156
157void draw_test_nurb ()
158{
159 geometry_nurbs *q = new geometry_nurbs;
160 q->set ();
161 entity *e = new entity (q);
162 e->move (vec3 (10, 3, -4));
163 e->show ();
164}
165
166void fisch (vec3 center, GLfloat radius, int depth)
167{
168 entity *planet = new entity (new geometry_sphere (radius));
169 planet->move (center);
170 planet->show ();
171
172 if (--depth)
174 } 173 {
174 GLfloat r2 = radius * .1F;
175 GLfloat r3 = radius + r2;
175 176
176 /* Save the alpha blending attributes */ 177 fisch (center + vec3 (r3, 0, 0), r2, depth);
177 saved_flags = surface->flags & (SDL_SRCALPHA | SDL_RLEACCELOK); 178 fisch (center + vec3 (0, 0, r3), r2, depth);
178 saved_alpha = surface->format->alpha; 179 fisch (center + vec3 (-r3, 0, 0), r2, depth);
179 if ((saved_flags & SDL_SRCALPHA) == SDL_SRCALPHA)
180 { 180 }
181 SDL_SetAlpha (surface, 0, 0);
182 }
183
184 /* Copy the surface into the GL texture image */
185 area.x = 0;
186 area.y = 0;
187 area.w = surface->w;
188 area.h = surface->h;
189 SDL_BlitSurface (surface, &area, image, &area);
190
191 /* Restore the alpha blending attributes */
192 if ((saved_flags & SDL_SRCALPHA) == SDL_SRCALPHA)
193 {
194 SDL_SetAlpha (surface, saved_flags, saved_alpha);
195 }
196
197 /* Create an OpenGL texture for the image */
198 glGenTextures (1, &texture);
199 glBindTexture (GL_TEXTURE_2D, texture);
200 glTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
201 glTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
202 glTexImage2D (GL_TEXTURE_2D,
203 0,
204 GL_RGBA, w, h, 0, GL_RGBA, GL_UNSIGNED_BYTE, image->pixels);
205 SDL_FreeSurface (image); /* No longer needed */
206
207 return texture;
208} 181}
209 182
183extern void draw_level ();
210int 184int
211RunGLTest (int argc, char *argv[], 185RunGLTest (int argc, char *argv[],
212 int logo, int slowly, int bpp, float gamma, int noframe, int fsaa) 186 int logo, int slowly, int bpp, float gamma, int noframe, int fsaa)
213{ 187{
214 int i; 188 int i;
215 int rgb_size[3]; 189 int rgb_size[3];
216 int w = 640; 190 int w = 640;
217 int h = 480; 191 int h = 480;
218 int done = 0; 192 int done = 0;
219 int frames; 193 int frames;
220 Uint32 start_time, this_time;
221 Uint32 video_flags; 194 Uint32 video_flags;
222 int value; 195 int value;
196 GLenum gl_error;
223 197
224 if (SDL_Init (SDL_INIT_VIDEO) < 0) 198 if (SDL_Init (SDL_INIT_VIDEO) < 0)
225 { 199 {
226 fprintf (stderr, "Couldn't initialize SDL: %s\n", SDL_GetError ()); 200 fprintf (stderr, "Couldn't initialize SDL: %s\n", SDL_GetError ());
227 exit (1); 201 exit (1);
320 294
321 /* Set the gamma for the window */ 295 /* Set the gamma for the window */
322 if (gamma != 0.0) 296 if (gamma != 0.0)
323 SDL_SetGamma (gamma, gamma, gamma); 297 SDL_SetGamma (gamma, gamma, gamma);
324 298
325 // load a entity 299 entity *planet = new entity (new geometry_sphere (10));
300 planet->move (vec3 (0, 0, -20));
301 planet->show ();
302
303#if 1
326 for (int i = 0; i < 7; i++) 304 for (int i = 0; i < 20; i++)
327 { 305 {
306 // load a entity
328 txtprt_parser p; 307 txtprt_parser p;
329 entity_transform *f = new entity_transform; 308 geometry *g;
330 entity *e;
331 try 309 try
332 { 310 {
333 e = p.read ("test.blasc"); 311 g = p.read ("test.blasc");
312 }
334 } catch (txtprt_i_exception & e) 313 catch (txtprt_i_exception & e)
335 { 314 {
336 cout << "ERR: " << e.msg << endl; 315 cout << "ERR: " << e.msg << endl;
337 } 316 }
338 f->set (e); 317
339 f->m.translate (vec3 (0, -1, -i*5)); 318 entity *e = new entity (g);
319 e->move (vec3 (i*5, -3, -i*10));
340 f->show (); 320 e->show ();
321 }
322
341 } 323 {
324 fisch (vec3 (0, 0, -2e9), 1e9, 8);
325 //entity *planet = new entity (new geometry_sphere (1e9));
326 //planet->move (vec3 (0, 0, -1.5e9));
327 //planet->show ();
328 }
342 329
330 {
331 entity *planet = new entity (new geometry_sphere (4e15));
332 planet->move (vec3 (0, 0, 1e17));
333 planet->show ();
334 }
335
336 draw_floor (10, -500, -10, -1000);
337 draw_level ();
338 //draw_test_nurb ();
339#endif
340
341 //camera.orig.x = 108; camera.orig.y = 0; camera.orig.z = -368;
343 camera.orig.x = camera.orig.y = camera.orig.z = 0; 342 camera.orig.x = 0; camera.orig.y = 0; camera.orig.z = 0;
344 camera.p = point (0, 0, 10); 343 camera.p = point (0, 0, 10);
345 camera.d = vec3 (0, 0, -1); 344 camera.d = vec3 (0, 0, -1);
346 camera.u = vec3 (0, 1, 0); 345 camera.u = vec3 (0, 1, 0);
347 camera.w = w; camera.h = h; 346 camera.w = w; camera.h = h;
348 camera.fov = 90; 347 camera.fov = 40.;
349
350 glMatrixMode (GL_MODELVIEW);
351 glLoadIdentity ();
352 348
353 glEnable (GL_CULL_FACE); 349 glEnable (GL_CULL_FACE);
354 glEnable (GL_DEPTH_TEST); 350 glDisable (GL_ALPHA_TEST);
355 glShadeModel (GL_SMOOTH); 351 glDisable (GL_BLEND);
356 352
357 glEnable (GL_LIGHTING); 353 init_shaders ();
358 //GLfloat lightc[4] = { 1, 0.1, 0.1, 1 }; 354
359 //glLightf (GL_LIGHT0, GL_QUADRATIC_ATTENUATION); 355 osama_material osa_mat;
360 //glLightfv (GL_LIGHT0, GL_DIFFUSE, lightc);
361 glEnable (GL_LIGHT0);
362 356
363 /* Loop until done. */ 357 /* Loop until done. */
364 start_time = SDL_GetTicks ();
365 frames = 0; 358 frames = 0;
366 359
367 draw_context c (camera);
368
369 while (!done) 360 while (!done)
370 { 361 {
371 GLenum gl_error;
372 char *sdl_error; 362 char *sdl_error;
373 SDL_Event event; 363 SDL_Event event;
374 364
375 glClear (GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
376
377 camera.p.x += camera_velocity.x * timer.diff; 365 camera_angle += 180 * camera_velocity_angle * timer.diff;
378 camera.p.y += camera_velocity.y * timer.diff; 366 camera_angle2 += 180 * camera_velocity_angle2 * timer.diff;
379 camera.p.z += camera_velocity.z * timer.diff;
380 367
381 GLfloat lightp[4]; 368 vec3 geradeaus = matrix::rotation (-camera_angle, vec3 (0, 1, 0)) * vec3 (0, 0, -1);
382 lightp[0] = camera.p.x; 369 vec3 right = matrix::rotation (90., vec3 (0, 1, 0)) * geradeaus;
383 lightp[1] = camera.p.y;
384 lightp[2] = camera.p.z;
385 lightp[3] = 1;
386 glLightfv (GL_LIGHT0, GL_POSITION, lightp);
387 370
388#if 0 371 camera.d = matrix::rotation (camera_angle2, right) * geradeaus;
389 static GLfloat ry; 372 camera.u = cross (camera.d, right);
390 ry += 0.001; 373
391 camera.d.x = cos (ry); 374 camera.p = camera.p - camera.d * (camera_velocity_factor * timer.diff) * camera_velocity.z;
375 camera.p = camera.p - camera.u * (camera_velocity_factor * timer.diff) * camera_velocity.y;
376
377 osa_mat.begin ();
378
392 camera.d.z = sin (ry); 379 camera.begin ();
393 //camera.d.y = sin (ry * 0.1); 380 camera.render (view::DEPTH);
394#endif 381 camera.render (view::POSTDEPTH);
395 382 camera.render (view::LIGHTED);
396 c.mode = draw_context::DEPTH;
397 camera.draw (c); 383 camera.end ();
398 c.mode = draw_context::LIGHTED;
399 camera.draw (c);
400 384
401 SDL_GL_SwapBuffers (); 385 SDL_GL_SwapBuffers ();
402 timer.frame (); 386 timer.frame ();
403 387
388 osa_mat.end ();
389
390#if 0
404 /* Check for error conditions. */ 391 /* Check for error conditions. */
405 gl_error = glGetError (); 392 gl_error = glGetError ();
406 393
407 if (gl_error != GL_NO_ERROR)
408 fprintf (stderr, "testgl: OpenGL error: %d\n", gl_error); 394 if (gl_error != GL_NO_ERROR) fprintf (stderr, "testgl: OpenGL error: %d\n", gl_error);
409 395
410 sdl_error = SDL_GetError (); 396 sdl_error = SDL_GetError ();
411 397
412 if (sdl_error[0] != '\0') 398 if (sdl_error[0] != '\0')
413 { 399 {
414 fprintf (stderr, "testgl: SDL error '%s'\n", sdl_error); 400 fprintf (stderr, "testgl: SDL error '%s'\n", sdl_error);
415 SDL_ClearError (); 401 SDL_ClearError ();
416 } 402 }
417 403
418 /* Allow the user to see what's happening */ 404 /* Allow the user to see what's happening */
419 //SDL_Delay (20); 405 //SDL_Delay (40);
406#endif
420 407
421 /* Check if there's a pending event. */ 408 /* Check if there's a pending event. */
422 while (SDL_PollEvent (&event)) 409 while (SDL_PollEvent (&event))
423 done = HandleEvent (&event); 410 done = HandleEvent (&event);
424 411
412
425 ++frames; 413 ++frames;
426 }
427
428 /* Print out the frames per second */
429 this_time = SDL_GetTicks ();
430 if (this_time != start_time)
431 {
432 printf ("%2.2f FPS\n",
433 ((float) frames / (this_time - start_time)) * 1000.0);
434 } 414 }
435 415
436 if (global_image) 416 if (global_image)
437 { 417 {
438 SDL_FreeSurface (global_image); 418 SDL_FreeSurface (global_image);
446 426
447 /* Destroy our GL context, etc. */ 427 /* Destroy our GL context, etc. */
448 SDL_Quit (); 428 SDL_Quit ();
449 return (0); 429 return (0);
450} 430}
451
452int 431int
453main (int argc, char *argv[]) 432main (int argc, char *argv[])
454{ 433{
455 int i, logo; 434 int i, logo;
456 int numtests; 435 int numtests;
458 int slowly; 437 int slowly;
459 float gamma = 0.0; 438 float gamma = 0.0;
460 int noframe = 0; 439 int noframe = 0;
461 int fsaa = 0; 440 int fsaa = 0;
462 441
442 shader::debdebdebdebug ();//D
443
463 logo = 0; 444 logo = 0;
464 slowly = 0; 445 slowly = 0;
465 numtests = 1; 446 numtests = 1;
466 for (i = 1; argv[i]; ++i) 447 for (i = 1; argv[i]; ++i)
467 { 448 {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines