2020-11-01 18:45:29 +03:00
|
|
|
#pragma once
|
2020-11-15 17:39:00 +03:00
|
|
|
#include "gdrv.h"
|
2020-11-01 18:45:29 +03:00
|
|
|
|
2020-11-07 18:41:14 +03:00
|
|
|
struct scoreStruct
|
2020-11-01 18:45:29 +03:00
|
|
|
{
|
2020-12-12 16:36:20 +03:00
|
|
|
int Score;
|
|
|
|
bool DirtyFlag;
|
2020-11-15 17:39:00 +03:00
|
|
|
gdrv_bitmap8* BackgroundBmp;
|
2020-12-12 16:36:20 +03:00
|
|
|
int OffsetX;
|
|
|
|
int OffsetY;
|
|
|
|
int Width;
|
|
|
|
int Height;
|
|
|
|
gdrv_bitmap8* CharBmp[10];
|
2020-11-01 18:45:29 +03:00
|
|
|
};
|
|
|
|
|
2020-12-03 17:47:36 +03:00
|
|
|
struct score_msg_font_type
|
|
|
|
{
|
2020-12-11 19:03:13 +03:00
|
|
|
int GapWidth;
|
|
|
|
int Height;
|
2021-10-10 12:22:21 +03:00
|
|
|
gdrv_bitmap8* Chars[128]{};
|
2020-12-11 19:03:13 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2020-11-01 18:45:29 +03:00
|
|
|
class score
|
|
|
|
{
|
|
|
|
public:
|
2020-12-03 17:47:36 +03:00
|
|
|
static score_msg_font_type* msg_fontp;
|
2020-11-07 18:41:14 +03:00
|
|
|
static int init();
|
2020-11-15 17:39:00 +03:00
|
|
|
static scoreStruct* create(LPCSTR fieldName, gdrv_bitmap8* renderBgBmp);
|
2020-11-01 18:45:29 +03:00
|
|
|
static scoreStruct* dup(scoreStruct* score, int scoreIndex);
|
2020-12-11 19:03:13 +03:00
|
|
|
static void load_msg_font(LPCSTR lpName);
|
2020-12-04 18:35:47 +03:00
|
|
|
static void unload_msg_font();
|
2020-12-12 16:36:20 +03:00
|
|
|
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);
|
2020-11-01 18:45:29 +03:00
|
|
|
};
|