X-Git-Url: https://jasonwoof.com/gitweb/?p=vor.git;a=blobdiff_plain;f=main.c;h=ecdc4e6c80e559405eaff05d22332dea2010da0c;hp=bd0c158f37d6c1c4126715f148ecffd3f286e555;hb=28956e4738468200963dad131b05a24d92f0baa9;hpb=21570ddf054d9850eb924bcdc53be9e19581232a diff --git a/main.c b/main.c index bd0c158..ecdc4e6 100644 --- a/main.c +++ b/main.c @@ -68,7 +68,7 @@ char topline[1024]; char *initerror = ""; struct shape shipshape; -float shipx,shipy = 240.0; // X position, 0..XSIZE +float shipx = 320.0, shipy = 240.0; // X position, 0..XSIZE float shipdx,shipdy; // Change in X position per tick. float screendx = 7.5, screendy = 0.0; float xscroll, yscroll; @@ -128,25 +128,18 @@ init_engine_dots() { void init_space_dots() { - int i,intensity; + int i,b; for(i = 0; iformat,intensity,intensity,intensity); - + sdot[i].z = MAXDUSTDEPTH*sqrt(rnd()); + b = (MAXDUSTDEPTH - sdot[i].z) * 255.0 / MAXDUSTDEPTH; + sdot[i].color = SDL_MapRGB(surf_screen->format, b, b, b); } } void -makebangdots(int xbang, int ybang, int dx, int dy, SDL_Surface *s, int power) { +make_bang_dots(int xbang, int ybang, int dx, int dy, SDL_Surface *s, int power) { // TODO - stop generating dots after a certain amount of time has passed, to cope with slower CPUs. // TODO - generate and display dots in a circular buffer @@ -226,8 +219,8 @@ draw_bang_dots(SDL_Surface *s) { //last_i = i + 1; rawpixel[(int)(s->pitch/2*(int)(bdot[i].y)) + (int)(bdot[i].x)] = bdot[i].c ? bdot[i].c : heatcolor[(int)(bdot[i].life*3)]; bdot[i].life -= bdot[i].decay; - bdot[i].x += bdot[i].dx*gamerate; - bdot[i].y += bdot[i].dy*gamerate-yscroll; + bdot[i].x += bdot[i].dx*gamerate - xscroll; + bdot[i].y += bdot[i].dy*gamerate - yscroll; if(bdot[i].life<0) bdot[i].active = 0; @@ -257,16 +250,12 @@ draw_space_dots(SDL_Surface *s) { sdot[i].y = 0; } rawpixel[(int)(s->pitch/2*(int)sdot[i].y) + (int)(sdot[i].x)] = sdot[i].color; - sdot[i].x += sdot[i].dx*gamerate; - sdot[i].y -= yscroll; - if(sdot[i].y > YSIZE) { - sdot[i].y -= YSIZE; - } else if(sdot[i].y < 0) { - sdot[i].y += YSIZE; - } - if(sdot[i].x<0) { - sdot[i].x = XSIZE; - } + sdot[i].x -= xscroll / (1 + sdot[i].z); + sdot[i].y -= yscroll / (1 + sdot[i].z); + if(sdot[i].y >= XSIZE) sdot[i].x -= XSIZE; + else if(sdot[i].x < 0) sdot[i].x = XSIZE-1; + if(sdot[i].y > YSIZE) sdot[i].y -= YSIZE; + else if(sdot[i].y < 0) sdot[i].y += YSIZE-1; } } @@ -278,7 +267,7 @@ draw_engine_dots(SDL_Surface *s) { for(i = 0; iYSIZE) { edot[i].active = 0; @@ -679,7 +668,6 @@ gameloop() { // Create a new ship and start all over again state = GAMEPLAY; play_tune(1); - shipx -= 50; break; case GAME_OVER: state = HIGH_SCORE_ENTRY; @@ -736,19 +724,29 @@ gameloop() { shipdy *= pow((double)0.9,(double)gamerate); } + // INERTIA + shipx += shipdx*gamerate; + shipy += shipdy*gamerate; + // SCROLLING - tmp = shipy - (YSIZE / 2); - tmp += 25 * shipdy; - tmp /= -25; - tmp = ((screendy * (gamerate - 12)) + (tmp * gamerate)) / 12; - screendy = -tmp; + if(state == GAMEPLAY) { + tmp = shipy - (YSIZE / 2); + tmp += shipdy * 25; + tmp /= -25; + tmp = ((screendy * (gamerate - 12)) + (tmp * gamerate)) / 12; + screendy = -tmp; + tmp = shipx - (XSIZE / 2); + tmp += shipdx * 25; + tmp /= -25; + tmp = ((screendx * (gamerate - 12)) + (tmp * gamerate)) / 12; + screendx = -tmp; + } else if(state != DEAD_PAUSE) screendx = 7.5; + xscroll = screendx * gamerate; yscroll = screendy * gamerate; + shipx -= xscroll; + shipy -= yscroll; - // INERTIA - shipx += shipdx*gamerate; - shipy += shipdy*gamerate - yscroll; - move_rocks(); @@ -756,7 +754,7 @@ gameloop() { if(shipx<0 || shipx>XSIZE-surf_ship->w) { // BOUNCE from left and right wall shipx -= shipdx*gamerate; - shipdx *= -0.99; + shipdx *= -99; } // BOUNCE Y @@ -770,10 +768,10 @@ gameloop() { if(draw() && state == GAMEPLAY) { // Play the explosion sound play_sound(0); - makebangdots(shipx,shipy,shipdx,shipdy,surf_ship,30); - shipdx = 0; - shipdy = 0; + make_bang_dots(shipx,shipy,shipdx,shipdy,surf_ship,30); + shipdx *= 0.5; shipdy *= 0.5; if(--nships <= 0) { + shipdx = 0; shipdy = 0; gameover = 1; state = GAME_OVER; state_timeout = 200.0; @@ -800,10 +798,8 @@ gameloop() { play_tune(1); gameover = 0; - shipx = 0; - shipy = YSIZE/2; - shipdx = -1; - shipdy = 0; + shipx = XSIZE/2; shipy = YSIZE/2; + shipdx = screendx; shipdy = screendy; } maneuver = 0;