X-Git-Url: https://jasonwoof.com/gitweb/?p=vor.git;a=blobdiff_plain;f=rocks.c;h=ceddd4bf755db09667d987a6b10856133431a591;hp=607431dada316ced97c294d36e27884985f77e97;hb=1aa8a0df26ef582dee4ffe3aa2f17f1f1a42b3c9;hpb=0e26db03c5aca3622a007b607368b250e40b7f2c diff --git a/rocks.c b/rocks.c index 607431d..ceddd4b 100644 --- a/rocks.c +++ b/rocks.c @@ -3,9 +3,11 @@ #include #include +#include "common.h" #include "config.h" #include "file.h" #include "globals.h" +#include "mt.h" #include "rocks.h" #include "shape.h" @@ -25,23 +27,16 @@ struct shape rock_shapes[NROCKS]; // timers for rock generation. float rtimers[4]; -uint32_t rcnt; - uint32_t nrocks; -uint32_t nrocks_timer; -uint32_t nrocks_inc_ticks = 2*60*1000/(F_ROCKS-I_ROCKS); +float nrocks_timer; +float nrocks_inc_ticks = 2*60*20/(F_ROCKS-I_ROCKS); // constants for rock generation. -#define KH 32.0 // 32 s for a speed=1 rock to cross the screen horizontally. -#define KV 24.0 // 24 s for a speed=1 rock to cross the screen vertically. +#define KH (32.0*20) // 32 s for a speed=1 rock to cross the screen horizontally. +#define KV (24.0*20) // 24 s for a speed=1 rock to cross the screen vertically. #define RDX 2.5 // range for rock dx values (+/-) #define RDY 2.5 // range for rock dy values (+/-) -float rnd(void); - -#define crnd() (2*(rnd()-0.5)) - - int init_rocks(void) { @@ -55,6 +50,7 @@ init_rocks(void) NULLERROR(surf_rock[i] = SDL_DisplayFormat(temp)); get_shape(surf_rock[i], &rock_shapes[i]); } + reset_rocks(); return 0; } @@ -66,13 +62,12 @@ reset_rocks(void) for(i = 0; i= nrocks_inc_ticks) { nrocks_timer -= nrocks_inc_ticks; nrocks++; + printf("nrocks = %d.\n", nrocks); } } @@ -163,7 +155,7 @@ new_rocks(void) // loop through the four sides of the screen for(i=0; i<4; i++) { // see if we generate a rock for this side this frame - rtimers[i] += ti[i]*gamerate/20; + rtimers[i] += ti[i]*t_frame; while(rtimers[i] >= 1) { rtimers[i] -= 1; j=0; @@ -178,27 +170,27 @@ new_rocks(void) switch(i) { case RIGHT: rockptr->x = XSIZE; - rockptr->y = rnd()*(YSIZE + rockptr->image->h); + rockptr->y = frnd()*(YSIZE + rockptr->image->h); rockptr->dx = -weighted_rnd_range(rmin[i], rmax[i]) + screendx; rockptr->dy = RDY*crnd(); break; case LEFT: rockptr->x = -rockptr->image->w; - rockptr->y = rnd()*(YSIZE + rockptr->image->h); + rockptr->y = frnd()*(YSIZE + rockptr->image->h); rockptr->dx = weighted_rnd_range(rmin[i], rmax[i]) + screendx; rockptr->dy = RDY*crnd(); break; case BOTTOM: - rockptr->x = rnd()*(XSIZE + rockptr->image->w); + rockptr->x = frnd()*(XSIZE + rockptr->image->w); rockptr->y = YSIZE; rockptr->dx = RDX*crnd(); rockptr->dy = -weighted_rnd_range(rmin[i], rmax[i]) + screendy; break; case TOP: - rockptr->x = rnd()*(XSIZE + rockptr->image->w); + rockptr->x = frnd()*(XSIZE + rockptr->image->w); rockptr->y = -rockptr->image->h; rockptr->dx = RDX*crnd(); @@ -207,7 +199,6 @@ new_rocks(void) } rockptr->active = 1; - rcnt++; } } } @@ -222,18 +213,15 @@ move_rocks(void) for(i = 0; i < MAXROCKS; i++) { if(rock[i].active) { // move - rock[i].x += (rock[i].dx-screendx)*gamerate; - rock[i].y += (rock[i].dy-screendy)*gamerate; + rock[i].x += (rock[i].dx-screendx)*t_frame; + rock[i].y += (rock[i].dy-screendy)*t_frame; // clip if(rock[i].x < -rock[i].image->w || rock[i].x >= XSIZE || rock[i].y < -rock[i].image->h || rock[i].y >= YSIZE) { rock[i].active = 0; - rcnt--; } } } - // if(rcnt < nrocks) printf("-%d.\n", nrocks-rcnt); - // else printf("%d.\n", rcnt-nrocks); } void