X-Git-Url: https://jasonwoof.com/gitweb/?p=vor.git;a=blobdiff_plain;f=globals.h;h=4eb58f11717e753852870094357aba67b4ddf992;hp=3fb2a05ee160acc64d2ad24fa208a8c1fcaf6031;hb=286cb1818d7d2787c8a19f5cf34947e7300bc536;hpb=189cc09109987a44aa8af4419a2d106d675a3ea0 diff --git a/globals.h b/globals.h index 3fb2a05..4eb58f1 100644 --- a/globals.h +++ b/globals.h @@ -62,11 +62,15 @@ extern float shipx,shipy; // X position, 0..XSIZE extern float shipdx,shipdy; // Change in X position per tick. extern float screendx, screendy; extern float xscroll, yscroll; -extern float framelen; // this controls the speed of everything that moves. extern float yscroll; extern float scrollvel; -extern int nships,score,initticks,ticks_since_last, last_ticks; +// all movement is based on s_frame. +float t_frame; // length of this frame (in ticks = 1/20th second) +int ms_frame; // length of this frame (milliseconds) +int ms_end; // end of this frame (milliseconds) + +extern int nships,score; extern int gameover; extern int maneuver; extern float fadetimer, faderate;