X-Git-Url: https://jasonwoof.com/gitweb/?p=vor.git;a=blobdiff_plain;f=globals.h;h=bf5e1daf02f0429fa424d040d95ad16f83c56fa5;hp=8d0d962cb154ec607a32cacfad6955f6a818928f;hb=2b5dd5bc0eb1739dd744de6f565d0f3a7ae02c95;hpb=841f94c4182f8dff0253db9bae4922c3c9039a5f diff --git a/globals.h b/globals.h index 8d0d962..bf5e1da 100644 --- a/globals.h +++ b/globals.h @@ -51,22 +51,18 @@ extern char topline[1024]; extern char *initerror; extern struct shape shipshape; -extern float shipx,shipy; // X position, 0..XSIZE -extern float shipdx,shipdy; // Change in X position per tick. +extern float shipx,shipy; // ship position on screen +extern float shipdx,shipdy; // ship speed (pixels/tick) extern float screendx, screendy; extern float xscroll, yscroll; extern float yscroll; extern float scrollvel; -// all movement is based on s_frame. +// All movement is based on t_frame. +// All speeds are pixels/tick, with 20 ticks per second. 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 float fadetimer, faderate; extern int pausedown, paused;