X-Git-Url: https://jasonwoof.com/gitweb/?p=vor.git;a=blobdiff_plain;f=globals.h;h=0b76cd7bb3cabf8c490d7ac4e595e7e0930dcf0c;hp=24e016e81e74827c8da193c2243bf42dea4ff73a;hb=HEAD;hpb=51d56bfe5830a41e61f4ceefb75217f647d994fe diff --git a/globals.h b/globals.h index 24e016e..0b76cd7 100644 --- a/globals.h +++ b/globals.h @@ -3,26 +3,7 @@ #include #include -#include "SFont.h" - -struct bangdots { - // Bang dots have the same colour as shield dots. - // Bang dots get darker as they age. - // Some are coloured the same as the ex-ship. - float x,y,dx,dy; - Uint16 c; // when zero, use heatcolor[bangdotlife] - float life; // When reduced to 0, set active = 0 - int active; - float decay;// Amount by which to reduce life each time dot is drawn -}; -struct enginedots { - // Engine dots stream out the back of the ship, getting darker as they go. - int active; - float x,y,dx,dy; - // The life of an engine dot - // is a number starting at between 0 and 50 and counting backward. - float life; // When reduced to 0, set active = 0 -}; +#include "font.h" // ************************************* VARS // SDL_Surface global variables @@ -38,11 +19,9 @@ extern SDL_Surface *surf_rock[NROCKS], // THE ROCKS *surf_font_big; // The big font -extern SFont_Font *g_font; +extern float t_frame; -// Structure global variables -extern struct enginedots edot[MAXENGINEDOTS], *dotptr; -extern struct bangdots bdot[MAXBANGDOTS], *bdotptr; +extern font *g_font; // Other global variables extern char topline[1024];