X-Git-Url: https://jasonwoof.com/gitweb/?p=vor.git;a=blobdiff_plain;f=globals.h;h=fb68ef6c8d36c3d3bc5a75c22841170e2c979662;hp=35c77f5d0e8d1903ec17ae2e585a81ada15954d6;hb=3ef599c7104a20c4f5268dbefb6590aa3e285663;hpb=0179e60b6196d115000cb77fcd4cc880eecb177f diff --git a/globals.h b/globals.h index 35c77f5..fb68ef6 100644 --- a/globals.h +++ b/globals.h @@ -62,16 +62,18 @@ 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 gamerate; // 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. +extern float t_frame; // length of this frame (in ticks = 1/20th second) +extern float s_frame; // length of this frame (seconds) +extern int ms_frame; // length of this frame (milliseconds) +extern int ms_end; // end of this frame (milliseconds) + +extern int nships,score; extern int gameover; extern int maneuver; -extern int sound_flag, music_flag; -extern int tail_plume; // display big engine at the back? -extern int friction; // should there be friction? extern float fadetimer, faderate; extern int pausedown, paused;