1
0
Fork 0
mirror of https://github.com/k4zmu2a/SpaceCadetPinball.git synced 2025-12-15 07:00:58 +01:00

score, high_score ready.

Added dialog rc.
This commit is contained in:
oz 2020-12-12 16:36:20 +03:00
parent fe254ef03c
commit 2da95a2e8a
9 changed files with 720 additions and 39 deletions

View file

@ -3,23 +3,14 @@
struct scoreStruct
{
int Unknown1;
int Unknown2;
int Score;
bool DirtyFlag;
gdrv_bitmap8* BackgroundBmp;
int Short1;
int Short2;
int Short3;
int Short4;
char* Bitmap8Bit1;
char* Bitmap8Bit2;
char* Bitmap8Bit3;
char* Bitmap8Bit4;
char* Bitmap8Bit5;
char* Bitmap8Bit6;
char* Bitmap8Bit7;
char* Bitmap8Bit8;
char* Bitmap8Bit9;
char* Bitmap8Bit10;
int OffsetX;
int OffsetY;
int Width;
int Height;
gdrv_bitmap8* CharBmp[10];
};
struct score_msg_font_type
@ -47,4 +38,8 @@ public:
static scoreStruct* dup(scoreStruct* score, int scoreIndex);
static void load_msg_font(LPCSTR lpName);
static void unload_msg_font();
static void erase(scoreStruct* score, int blitFlag);
static void set(scoreStruct* score, int value);
static void update(scoreStruct* score);
static void string_format(int score, char* str);
};