X-Git-Url: https://jasonwoof.com/gitweb/?p=vor.git;a=blobdiff_plain;f=rocks.c;h=fc18bf36bdf3a4a96b12fb9d7cafe2499b0cd817;hp=76663c62064b3857be780fde1d758a436df4e8c5;hb=3ef599c7104a20c4f5268dbefb6590aa3e285663;hpb=ad299216a04916210587c3b0f377c1ce9076b94a diff --git a/rocks.c b/rocks.c index 76663c6..fc18bf3 100644 --- a/rocks.c +++ b/rocks.c @@ -3,6 +3,7 @@ #include #include +#include "common.h" #include "config.h" #include "file.h" #include "globals.h" @@ -25,10 +26,6 @@ struct shape rock_shapes[NROCKS]; // timers for rock generation. float rtimers[4]; -int32_t rcnt, lrcnt; -int32_t rsum, rsamples; -float ravg; - uint32_t nrocks; uint32_t nrocks_timer; uint32_t nrocks_inc_ticks = 2*60*1000/(F_ROCKS-I_ROCKS); @@ -68,14 +65,12 @@ reset_rocks(void) for(i = 0; i= nrocks_inc_ticks) { nrocks_timer -= nrocks_inc_ticks; nrocks++; @@ -166,7 +157,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]*s_frame; while(rtimers[i] >= 1) { rtimers[i] -= 1; j=0; @@ -210,7 +201,6 @@ new_rocks(void) } rockptr->active = 1; - rcnt++; } } } @@ -225,25 +215,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(lrcnt == -1 && rcnt == nrocks) lrcnt = 0; - if(rcnt != lrcnt && lrcnt != -1) { - lrcnt = rcnt; - rsum += rcnt-nrocks; rsamples++; - ravg = (float) rsum / rsamples; - printf("%.2f%%\n", 100.0 * ravg / nrocks); - } - */ } void