1
0
Fork 0
mirror of https://github.com/k4zmu2a/SpaceCadetPinball.git synced 2024-10-18 04:36:13 +02:00
SpaceCadetPinball/SpaceCadetPinball/high_score.h
Muzychenko Andrey cc06d35bc7 Fixed high score insertion for multiple players.
Refactored high_score.
Issue #131.
2022-04-11 10:28:20 +03:00

36 lines
689 B
C++

#pragma once
struct high_score_struct
{
char Name[32];
int Score;
};
struct high_score_entry
{
high_score_struct Entry;
int Position;
};
class high_score
{
public:
static high_score_struct highscore_table[5];
static int read();
static int write();
static int get_score_position(int score);
static void show_high_score_dialog();
static void show_and_set_high_score_dialog(high_score_entry score);
static void RenderHighScoreDialog();
private:
static bool dlg_enter_name;
static high_score_entry DlgData;
static bool ShowDialog;
static std::vector<high_score_entry> ScoreQueue;
static void clear_table();
static void place_new_score_into(high_score_entry data);
};