-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtopscores.h
More file actions
44 lines (30 loc) · 776 Bytes
/
topscores.h
File metadata and controls
44 lines (30 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#ifndef __TOPSCORES_H__
#define __TOPSCORES_H__
#include <list>
#include <string>
#include "widgets.h"
#define MAX_SCORES 10
class TopScores
{
public:
typedef struct {
std::wstring name;
int score;
} Entry;
typedef std::list<Entry> ScoresList;
private:
ScoresList scores;
bool modifed;
public:
TopScores();
~TopScores();
public:
int add(const std::wstring &name, int scores);
void save();
ScoresList& getScores();
int getMaxScore();
bool isFull() { return scores.size() >= MAX_SCORES; };
};
void showScoresWindow(Area *area, TopScores *scores, int highlightPos=-1);
std::wstring enterNameDialog(Area *area);
#endif