JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
b075f0dcd4c2ba1f153f507dccfb878771cf3d09
[vor.git] / main.c
1 /* Variations on RockDodger
2  * Space Rocks copyright (C) 2001 Paul Holt <pad@pcholt.com>
3  *
4  * Project fork 2004, Jason Woofenden and Joshua Grams.
5  * (a whole bunch of modifications and project rename)
6
7  * This program is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU General Public License as published by the
9  * Free Software Foundation; either version 2 of the License, or (at your
10  * option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20  */
21
22 #include <argp.h>
23 #include <math.h>
24 #include <SDL.h>
25 #include <SDL_image.h>
26 #include <stdarg.h>
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <string.h>
30
31 #include "SFont.h"
32
33 #include "args.h"
34 #include "common.h"
35 #include "config.h"
36 #include "dust.h"
37 #include "file.h"
38 #include "globals.h"
39 #include "mt.h"
40 #include "rocks.h"
41 #include "score.h"
42 #include "sprite.h"
43 #include "sound.h"
44
45 // ************************************* VARS
46 // SDL_Surface global variables
47 SDL_Surface 
48         *surf_screen,   // Screen
49         *surf_b_variations, // "variations" banner
50         *surf_b_on, // "on" banner
51         *surf_b_rockdodger, // "rockdodger" banner
52         *surf_b_game,   // Title element "game"
53         *surf_b_over,   // Title element "over"
54         *surf_life,     // Indicator of number of ships remaining
55         *surf_rock[NROCKS],     // THE ROCKS
56         *surf_font_big; // The big font
57         
58
59 SFont_Font *g_font;
60
61 // Structure global variables
62 struct enginedots edot[MAXENGINEDOTS], *dotptr = edot;
63 struct bangdots bdot[MAXBANGDOTS], *bdotptr = bdot;
64
65 // Other global variables
66 char topline[1024];
67 char *initerror = "";
68
69 struct ship ship = { SHIP_SPRITE, NULL, XSIZE/2, YSIZE/2, SCREENDXMIN, 0.0 };
70           
71 float screendx = SCREENDXMIN, screendy = 0.0;
72 float xscroll, yscroll;
73 float back_dist;
74
75 // all movement is based on t_frame.
76 float t_frame;  // length of this frame (in ticks = 1/20th second)
77 int ms_frame;   // length of this frame (milliseconds)
78 int ms_end;     // end of this frame (milliseconds)
79
80 float bangx, bangy, bangdx, bangdy;
81
82 int score;
83
84 float fadetimer = 0, faderate;
85
86 int pausedown = 0, paused = 0;
87
88 // bangdot start (bd1) and end (bd2) position:
89 int bd1 = 0, bd2 = 0;
90
91 enum states {
92         TITLE_PAGE,
93         GAMEPLAY,
94         DEAD_PAUSE,
95         GAME_OVER,
96         HIGH_SCORE_ENTRY,
97         HIGH_SCORE_DISPLAY
98 };
99 enum states state = TITLE_PAGE;
100 float state_timeout = 600.0;
101
102 #define NSEQUENCE 2
103 char *sequence[] = {
104         "Press SPACE to start",
105         "http://jasonwoof.org/vor"
106 };
107
108 int bangdotlife, nbangdots;
109 Uint16 heatcolor[W*3];
110
111 char *data_dir;
112 extern char *optarg;
113 extern int optind, opterr, optopt;
114
115 #define TO_TICKS(seconds) ((seconds)*20*opt_gamespeed)
116
117 // ************************************* FUNCS
118
119 void
120 init_engine_dots() {
121         int i;
122         for(i = 0; i<MAXENGINEDOTS; i++) {
123                 edot[i].active = 0;
124         }
125 }
126
127 void
128 new_bang_dots(int xbang, int ybang, int dx, int dy, SDL_Surface *s)
129 {
130         int x,y,endcount;
131         uint16_t *pixel,c;
132         uint32_t colorkey;
133         int row_inc;
134         double theta,r;
135         int begin_generate;
136
137         begin_generate = SDL_GetTicks();
138         pixel = s->pixels;
139         row_inc = s->pitch/sizeof(uint16_t) - s->w;
140         colorkey = s->format->colorkey;
141
142         SDL_LockSurface(s);
143
144         endcount = 0;
145         while (endcount<3) {
146                 pixel = s->pixels;
147                 for(y=0; y<s->h; y++) {
148                         for(x = 0; x<s->w; x++) {
149                                 c = *pixel++;
150                                 if(c && c != colorkey) {
151                                         theta = frnd()*M_PI*2;
152                                         r = frnd(); r = 1 - r*r;
153                                         // r = 1 - frnd()*frnd();
154
155                                         bdot[bd2].dx = 45*r*cos(theta) + dx;
156                                         bdot[bd2].dy = 45*r*sin(theta) + dy;
157                                         bdot[bd2].x = x + xbang;
158                                         bdot[bd2].y = y + ybang;
159                                         bdot[bd2].c = 0;
160                                         bdot[bd2].life = 100;
161                                         bdot[bd2].decay = frnd()*3 + 1;
162                                         bdot[bd2].active = 1;
163
164                                         // Replace the last few bang dots with the pixels from the exploding object
165                                         if(endcount>0) bdot[bd2].c = c;
166
167                                         bd2 = (bd2+1) % MAXBANGDOTS;
168                                 }
169                                 pixel += row_inc;
170                         }
171                 }
172                 if(SDL_GetTicks() - begin_generate > 7) endcount++;
173         }
174
175         SDL_UnlockSurface(s);
176 }
177
178 void
179 draw_bang_dots(SDL_Surface *s)
180 {
181         int i;
182         int first_i, last_i;
183         uint16_t *pixels, *pixel, c;
184         int row_inc = s->pitch/sizeof(uint16_t);
185
186         pixels = (uint16_t *) s->pixels;
187         first_i = -1;
188         last_i = 0;
189
190         for(i=0; i<MAXBANGDOTS; i++) {
191                 if(!bdot[i].active) continue;
192
193                 // decrement life and maybe kill
194                 bdot[i].life -= bdot[i].decay;
195                 if(bdot[i].life<0) { bdot[i].active = 0; continue; }
196
197                 // move and clip
198                 bdot[i].x += bdot[i].dx*t_frame - xscroll;
199                 bdot[i].y += bdot[i].dy*t_frame - yscroll;
200                 if(bdot[i].x < 0 || bdot[i].x >= XSIZE || bdot[i].y < 0 || bdot[i].y >= YSIZE) {
201                         bdot[i].active = 0;
202                         continue;
203                 }
204
205                 // check collisions
206                 if(pixel_collides(bdot[i].x, bdot[i].y)) { bdot[i].active = 0; continue; }
207
208                 pixel = pixels + row_inc*(int)(bdot[i].y) + (int)(bdot[i].x);
209                 if(bdot[i].c) c = bdot[i].c; else c = heatcolor[(int)(bdot[i].life)*3];
210                 *pixel = c;
211         }
212 }
213
214
215 void
216 new_engine_dots(int n, int dir) {
217         int i;
218         float a, r;  // angle, random length
219         float dx, dy;
220         float hx, hy; // half ship width/height.
221         static const int s[4] = { 2, 1, 0, 1 };
222
223         hx = ship.image->w / 2;
224         hy = ship.image->h / 2;
225
226         for(i = 0; i<n; i++) {
227                 if(dotptr->active == 0) {
228                         a = frnd()*M_PI + (dir-1)*M_PI_2;
229                         r = sin(frnd()*M_PI);
230                         dx = r * cos(a);
231                         dy = r * -sin(a);  // screen y is "backwards".
232
233                         dotptr->active = 1;
234                         dotptr->x = ship.x + s[dir]*hx + (frnd()-0.5)*3;
235                         dotptr->y = ship.y + s[(dir+1)&3]*hy + (frnd()-0.5)*3;
236                         if(dir&1) {
237                                 dotptr->dx = ship.dx + 2*dx;
238                                 dotptr->dy = ship.dy + 20*dy;
239                                 dotptr->life = 60 * fabs(dy);
240                         } else {
241                                 dotptr->dx = ship.dx + 20*dx;
242                                 dotptr->dy = ship.dy + 2*dy;
243                                 dotptr->life = 60 * fabs(dx);
244                         }
245
246                         if(dotptr - edot < MAXENGINEDOTS-1) dotptr++;
247                         else dotptr = edot;
248                 }
249         }
250 }
251
252 void
253 draw_engine_dots(SDL_Surface *s) {
254         int i;
255         uint16_t c;
256         uint16_t *pixels = (uint16_t *) s->pixels;
257         int row_inc = s->pitch/sizeof(uint16_t);
258         int heatindex;
259
260         for(i = 0; i<MAXENGINEDOTS; i++) {
261                 if(!edot[i].active) continue;
262                 edot[i].x += edot[i].dx*t_frame - xscroll;
263                 edot[i].y += edot[i].dy*t_frame - yscroll;
264                 edot[i].life -= t_frame*3;
265                 if(edot[i].life < 0
266                                 || edot[i].x<0 || edot[i].x >= XSIZE
267                                 || edot[i].y<0 || edot[i].y >= YSIZE) {
268                         edot[i].active = 0;
269                         continue;
270                 }
271                 if(pixel_collides(edot[i].x, edot[i].y)) { edot[i].active = 0; continue; }
272                 heatindex = edot[i].life * 6;
273                 c = heatindex>3*W ? heatcolor[3*W-1] : heatcolor[heatindex];
274                 pixels[row_inc*(int)(edot[i].y) + (int)(edot[i].x)] = c;
275         }
276 }
277
278 void
279 drawdots(SDL_Surface *s) {
280         int m;
281
282         // Create engine dots out the side we're moving from
283         for(m = 0; m<4; m++) {
284                 if(ship.jets & 1<<m) { // 'jets' is a bit field
285                         new_engine_dots(80,m);
286                 }
287         }
288
289         move_dust();
290
291         SDL_LockSurface(s);
292         draw_dust(s);
293         draw_engine_dots(s);
294         draw_bang_dots(s);
295         SDL_UnlockSurface(s);
296 }
297
298 SDL_Surface *
299 load_image(char *filename)
300 {
301         SDL_Surface *tmp, *img = NULL;
302         char *s = add_data_path(filename);
303         if(s) {
304                 tmp = IMG_Load(s);
305                 free(s);
306                 if(tmp) {
307                         img = SDL_DisplayFormat(tmp);
308                         SDL_FreeSurface(tmp);
309                 }
310         }
311         return img;
312 }
313
314 void
315 load_ship(void)
316 {
317         load_sprite(SPRITE(&ship), "sprites/ship.png");
318 }
319
320 int
321 init(void) {
322
323         int i;
324         char *s;
325         Uint32 flag;
326
327         // Where are our data files?
328         if(!find_files()) exit(1);
329         read_high_score_table();
330
331         if(opt_sound) {
332                 // Initialize SDL with audio and video
333                 if(SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO) != 0) {
334                         opt_sound = 0;
335                         fputs("Can't open sound, starting without it\n", stderr);
336                         atexit(SDL_Quit);
337                 } else {
338                         atexit(SDL_Quit);
339                         atexit(SDL_CloseAudio);
340                         opt_sound = init_sound();
341                 }
342         } else {
343                 // Initialize with video only
344                 CONDERROR(SDL_Init(SDL_INIT_VIDEO) != 0);
345                 atexit(SDL_Quit);
346         }
347
348         play_tune(TUNE_TITLE_PAGE);
349
350         // Attempt to get the required video size
351         flag = SDL_DOUBLEBUF | SDL_HWSURFACE;
352         if(opt_fullscreen) flag |= SDL_FULLSCREEN;
353         surf_screen = SDL_SetVideoMode(XSIZE,YSIZE,16,flag);
354
355         // Set the title bar text
356         SDL_WM_SetCaption("Variations on Rockdodger", "VoR");
357
358         NULLERROR(surf_screen);
359
360         // Set the heat color from the range 0 (cold) to 300 (blue-white)
361         for(i = 0; i<W*3; i++) {
362                 heatcolor[i] = SDL_MapRGB(
363                         surf_screen->format,
364                         (i<W)?(i*M/W):(M),(i<W)?0:(i<2*W)?((i-W)*M/W):M,(i<2*W)?0:((i-W)*M/W) // Got that?
365                 );
366         }
367
368         // Load the banners
369         NULLERROR(surf_b_variations = load_image("banners/variations.png"));
370         NULLERROR(surf_b_on = load_image("banners/on.png"));
371         NULLERROR(surf_b_rockdodger = load_image("banners/rockdodger.png"));
372
373         NULLERROR(surf_b_game = load_image("banners/game.png"));
374         NULLERROR(surf_b_over = load_image("banners/over.png"));
375
376         // Load the life indicator (small ship) graphic.
377         NULLERROR(surf_life = load_image("indicators/life.png"));
378
379         // Load the font image
380         s = add_data_path(BIG_FONT_FILE);
381         if(s) {
382                 NULLERROR(surf_font_big = IMG_Load(s));
383                 free(s);
384                 g_font = SFont_InitFont(surf_font_big);
385         }
386
387         init_engine_dots();
388         init_dust();
389
390         init_sprites();
391
392         // Remove the mouse cursor
393 #ifdef SDL_DISABLE
394         SDL_ShowCursor(SDL_DISABLE);
395 #endif
396
397         return 0;
398 }
399
400 int
401 draw() {
402         int i;
403         SDL_Rect dest;
404         int bang, x;
405         char *text;
406         float fadegame,fadeover;
407
408         bang = 0;
409
410         // Draw a fully black background
411         SDL_FillRect(surf_screen,NULL,0);
412
413         // Draw the background dots
414         drawdots(surf_screen);
415
416         // Draw ship
417         if(state == GAMEPLAY) draw_sprite(SPRITE(&ship));
418
419         draw_rocks();
420
421         // Draw the life indicators.
422         if(state == GAMEPLAY || state == DEAD_PAUSE || state == GAME_OVER) {
423                 for(i = 0; i<ship.lives-1; i++) {
424                         dest.x = (i + 1)*(surf_life->w + 10);
425                         dest.y = 20;
426                         SDL_BlitSurface(surf_life, NULL, surf_screen, &dest);
427                 }
428         }
429
430         // Draw the score
431         snprintscore_line(topline, 50, score);
432         SFont_Write(surf_screen, g_font, XSIZE-250, 0, topline);
433
434         // If it's game over, show the game over graphic in the dead centre
435         switch (state) {
436                 case GAME_OVER:
437                         if(fadetimer<3.0/faderate) {
438                                 fadegame = fadetimer/(3.0/faderate);
439                         } else {
440                                 fadegame = 1.0;
441                         }
442
443                         if(fadetimer<3.0/faderate) {
444                                 fadeover = 0.0;
445                         } else if(fadetimer<6.0/faderate) {
446                                 fadeover = ((3.0/faderate)-fadetimer)/(6.0/faderate);
447                         } else {
448                                 fadeover = 1.0;
449                         }
450
451                         dest.x = (XSIZE-surf_b_game->w)/2;
452                         dest.y = (YSIZE-surf_b_game->h)/2-40;
453                         SDL_SetAlpha(surf_b_game, SDL_SRCALPHA, (int)(fadegame*(200 + 55*cos(fadetimer += t_frame/1.0))));
454                         SDL_BlitSurface(surf_b_game,NULL,surf_screen,&dest);
455
456                         dest.x = (XSIZE-surf_b_over->w)/2;
457                         dest.y = (YSIZE-surf_b_over->h)/2 + 40;
458                         SDL_SetAlpha(surf_b_over, SDL_SRCALPHA, (int)(fadeover*(200 + 55*sin(fadetimer))));
459                         SDL_BlitSurface(surf_b_over,NULL,surf_screen,&dest);
460                 break;
461
462                 case TITLE_PAGE:
463
464                         dest.x = (XSIZE-surf_b_variations->w)/2 + cos(fadetimer/6.5)*10;
465                         dest.y = (YSIZE/2-surf_b_variations->h)/2 + sin(fadetimer/5.0)*10;
466                         SDL_SetAlpha(surf_b_variations, SDL_SRCALPHA, (int)(200 + 55*sin(fadetimer += t_frame/2.0)));
467                         SDL_BlitSurface(surf_b_variations,NULL,surf_screen,&dest);
468
469                         dest.x = (XSIZE-surf_b_on->w)/2 + cos((fadetimer + 1.0)/6.5)*10;
470                         dest.y = (YSIZE/2-surf_b_on->h)/2 + surf_b_variations->h + 20 + sin((fadetimer + 1.0)/5.0)*10;
471                         SDL_SetAlpha(surf_b_on, SDL_SRCALPHA, (int)(200 + 55*sin(fadetimer-1.0)));
472                         SDL_BlitSurface(surf_b_on,NULL,surf_screen,&dest);
473
474                         dest.x = (XSIZE-surf_b_rockdodger->w)/2 + cos((fadetimer + 2.0)/6.5)*10;
475                         dest.y = (YSIZE/2-surf_b_rockdodger->h)/2 + surf_b_variations->h + surf_b_on->h + 40 + sin((fadetimer + 2.0)/5)*10;
476                         SDL_SetAlpha(surf_b_rockdodger, SDL_SRCALPHA, (int)(200 + 55*sin(fadetimer-2.0)));
477                         SDL_BlitSurface(surf_b_rockdodger,NULL,surf_screen,&dest);
478
479                         text = "Version " VERSION;
480                         x = (XSIZE-SFont_TextWidth(g_font,text))/2 + sin(fadetimer/4.5)*10;
481                         SFont_Write(surf_screen,g_font,x,YSIZE-50 + sin(fadetimer/2)*5,text);
482
483                         text = sequence[(int)(fadetimer/40)%NSEQUENCE];
484                         //text = "Press SPACE to start!";
485                         x = (XSIZE-SFont_TextWidth(g_font,text))/2 + cos(fadetimer/4.5)*10;
486                         SFont_Write(surf_screen,g_font,x,YSIZE-100 + cos(fadetimer/3)*5,text);
487                 break;
488
489                 case HIGH_SCORE_ENTRY:
490                         play_tune(TUNE_HIGH_SCORE_ENTRY);
491                         if(!process_score_input()) {  // done inputting name
492
493                                 // Change state to briefly show high scores page
494                                 state = HIGH_SCORE_DISPLAY;
495                                 state_timeout = 200;
496
497                                 // Write the high score table to the file
498                                 write_high_score_table();
499                 
500                                 play_tune(TUNE_TITLE_PAGE);
501                         }
502                 // FALL THROUGH TO
503                 case HIGH_SCORE_DISPLAY:
504                         // Display de list o high scores mon.
505                         display_scores(surf_screen, 150,50);
506                         break;
507                 case GAMEPLAY:
508                 case DEAD_PAUSE:
509                         ; // no action necessary
510         }
511
512         if(state == GAMEPLAY) {
513                 Sprite *r = collides(SPRITE(&ship));
514                 if(r) {
515                         bounce(r, SPRITE(&ship));
516                 }
517         }
518
519         ms_frame = SDL_GetTicks() - ms_end;
520         ms_end += ms_frame;
521         if(ms_frame>200 || ms_frame<0) {
522                 // We won't run at all below 5 frames per second.
523                 // This also happens if we were paused, grr.
524                 t_frame = 0;
525                 ms_frame = 0;
526         } else {
527                 t_frame = opt_gamespeed * ms_frame / 50;
528                 if(state == GAMEPLAY) score += ms_frame;
529         }
530
531         // Update the surface
532         SDL_Flip(surf_screen);
533
534
535         return bang;
536 }
537
538 int
539 gameloop() {
540         Uint8 *keystate = SDL_GetKeyState(NULL);
541         float tmp;
542
543
544         for(;;) {
545                 if(!paused) {
546                         // Count down the game loop timer, and change state when it gets to zero or less;
547
548                         if((state_timeout -= t_frame*3) < 0) {
549                                 switch(state) {
550                                         case DEAD_PAUSE:
551                                                 // Create a new ship and start all over again
552                                                 state = GAMEPLAY;
553                                                 play_tune(TUNE_GAMEPLAY);
554                                                 break;
555                                         case GAME_OVER:
556                                                 if(new_high_score(score)) {
557                                                         SDL_Event e;
558                                                         state = HIGH_SCORE_ENTRY;
559                                                         state_timeout = 5.0e6;
560                                                         SDL_EnableUNICODE(1);
561                                                         while(SDL_PollEvent(&e))
562                                                                 ;
563                                                 } else if(!keystate[SDLK_SPACE]) {
564                                                         state = HIGH_SCORE_DISPLAY;
565                                                         state_timeout = 400;
566                                                 }
567                                                 break;
568                                         case HIGH_SCORE_DISPLAY:
569                                                 state = TITLE_PAGE;
570                                                 state_timeout = 500.0;
571                                                 break;
572                                         case HIGH_SCORE_ENTRY:
573                                                 break;
574                                         case TITLE_PAGE:
575                                                 state = HIGH_SCORE_DISPLAY;
576                                                 state_timeout = 200.0;
577                                                 break;
578                                         case GAMEPLAY:
579                                                 ; // no action necessary
580                                 }
581                         } else {
582                                 if(state == DEAD_PAUSE) {
583                                         float blast_radius;
584                                         if(state_timeout >= DEAD_PAUSE_LENGTH - 20.0) {
585                                                 blast_radius = BLAST_RADIUS * (DEAD_PAUSE_LENGTH - state_timeout) / 20.0;
586                                                 blast_rocks(bangx, bangy, blast_radius);
587                                         }
588
589                                         if(bangx < 60) bangx = 60;
590                                 }
591                         }
592
593                         new_rocks();
594
595                         // SCROLLING
596                         tmp = (ship.y+ship.dy*t_frame-YSCROLLTO)/25 + (ship.dy-screendy);
597                         screendy += tmp * t_frame/12;
598                         tmp = (ship.x+ship.dx*t_frame-XSCROLLTO)/25 + (ship.dx-screendx);
599                         screendx += tmp * t_frame/12;
600                         // taper off so we don't hit the barrier abruptly.
601                         // (if we would hit in < 2 seconds, adjust to 2 seconds).
602                         if(back_dist + (screendx - SCREENDXMIN)*TO_TICKS(2) < 0) {
603                                 screendx = SCREENDXMIN - (back_dist/TO_TICKS(2));
604                         }
605
606                         back_dist += (screendx - SCREENDXMIN)*t_frame;
607                         if(opt_max_lead >= 0) back_dist = min(back_dist, opt_max_lead);
608
609                         xscroll = screendx * t_frame;
610                         yscroll = screendy * t_frame;
611
612                         // move bang center
613                         bangx += bangdx*t_frame - xscroll;
614                         bangy += bangdy*t_frame - yscroll;
615
616                         move_sprite(SPRITE(&ship));
617                         move_sprites();
618
619
620                         // BOUNCE X
621                         if(ship.x<0 || ship.x>XSIZE-ship.image->w) {
622                                 // BOUNCE from left and right wall
623                                 ship.x -= (ship.dx-screendx)*t_frame;
624                                 ship.dx = screendx - (ship.dx-screendx)*opt_bounciness;
625                         }
626
627                         // BOUNCE Y
628                         if(ship.y<0 || ship.y>YSIZE-ship.image->h) {
629                                 // BOUNCE from top and bottom wall
630                                 ship.y -= (ship.dy-screendy)*t_frame;
631                                 ship.dy = screendy - (ship.dy-screendy)*opt_bounciness;
632                         }
633
634
635                         if(draw() && state == GAMEPLAY) {
636                                 // Died
637                                 play_sound(SOUND_BANG); // Play the explosion sound
638                                 bangx = ship.x; bangy = ship.y; bangdx = ship.dx; bangdy = ship.dy;
639                                         new_bang_dots(ship.x,ship.y,ship.dx,ship.dy,ship.image);
640                                         ship.dx *= 0.5; ship.dy *= 0.5;
641                                 if(ship.dx < SCREENDXMIN) ship.dx = SCREENDXMIN;
642                                 if(--ship.lives <= 0) {
643                                         state = GAME_OVER;
644                                         ship.dx = SCREENDXMIN; ship.dy = 0;
645                                         state_timeout = 200.0;
646                                         fadetimer = 0.0;
647                                         faderate = t_frame;
648                                 }
649                                 else {
650                                         state = DEAD_PAUSE;
651                                         state_timeout = DEAD_PAUSE_LENGTH;
652                                 }
653                         }
654
655                         SDL_PumpEvents();
656                         keystate = SDL_GetKeyState(NULL);
657
658                         // new game
659                         if(keystate[SDLK_SPACE] && (state == HIGH_SCORE_DISPLAY || state == TITLE_PAGE)) {
660
661                                 reset_rocks();
662
663                                 ship.lives = 4;
664                                 score = 0;
665
666                                 state = GAMEPLAY;
667                                 play_tune(TUNE_GAMEPLAY);
668
669                                 ship.x = XSIZE/2.2; ship.y = YSIZE/2;
670                                 ship.dx = screendx; ship.dy = screendy;
671                         }
672
673                         ship.jets = 0;
674                 } else {
675                         SDL_PumpEvents();
676                         keystate = SDL_GetKeyState(NULL);
677                 }
678
679                 if(state == GAMEPLAY) {
680                         if(!paused) {
681                                 if(keystate[SDLK_LEFT]  | keystate[SDLK_h]) { ship.dx -= 1.5*t_frame; ship.jets |= 1<<0;}
682                                 if(keystate[SDLK_DOWN]  | keystate[SDLK_t]) { ship.dy += 1.5*t_frame; ship.jets |= 1<<1;}
683                                 if(keystate[SDLK_RIGHT] | keystate[SDLK_n]) { ship.dx += 1.5*t_frame; ship.jets |= 1<<2;}
684                                 if(keystate[SDLK_UP]    | keystate[SDLK_c]) { ship.dy -= 1.5*t_frame; ship.jets |= 1<<3;}
685                                 if(keystate[SDLK_3])            { SDL_SaveBMP(surf_screen, "snapshot.bmp"); }
686                         }
687
688                         if(keystate[SDLK_p] | keystate[SDLK_s]) {
689                                 if(!pausedown) {
690                                         paused = !paused;
691                                         pausedown = 1;
692                                 }
693                         } else {
694                                 pausedown = 0;
695                         }
696                 } else if(state == GAME_OVER) {
697                         if(keystate[SDLK_SPACE]) {
698                                 state_timeout = -1;
699                         }
700                 }
701
702                 if(state != HIGH_SCORE_ENTRY && (keystate[SDLK_q] || keystate[SDLK_ESCAPE])) {
703                         return 0;
704                 }
705
706         }
707 }
708
709 int
710 main(int argc, char **argv) {
711         init_opts();
712         argp_parse(&argp, argc, argv, 0, 0, 0);
713
714         if(init()) {
715                 printf ("ta: '%s'\n",initerror);
716                 return 1;
717         }
718
719         gameloop();
720
721         return 0;
722 }