-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScoreboard.cpp
167 lines (143 loc) · 3.83 KB
/
Scoreboard.cpp
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
#include "main.h"
void displayStrokeCharacters(void* font, string c, float lnWidth, float x, float y, float scale) {
glPushMatrix();
glLineWidth(lnWidth);
glTranslatef(x, y, 0.0f);
glScalef(scale, scale, scale);
for (int i = 0; i < c.size(); i++)
glutStrokeCharacter(font, c[i]);
glPopMatrix();
}
Scoreboard::Scoreboard()
{
score = 0;
counter = 0;
lastClearTime = clock();
scoreByTime = 0;
leaderboard = map<pair<int, int>, string, cmpByScore>();
loadLeaderboard();
}
int Scoreboard::getScore()
{
return score;
}
void Scoreboard::addScore(int score)
{
this->score += score;
}
void Scoreboard::setLastClearTime()
{
lastClearTime = clock();
}
void Scoreboard::draw(bool isMapMoving)
{
glColor3f(0.0f, 0.0f, 0.0f);
clock_t time = getLeftTime(lastClearTime);
int time_left = getLeftTime(lastClearTime);
float scale = 1 / 2800.0f;
if (!isMapMoving) {
if (time_left <= 50) glColor3f(5.0f, 0.0f, 0.0f);
displayStrokeCharacters(GLUT_STROKE_MONO_ROMAN, to_string(time_left), 2.6f, - 0.7f, 0.96f, scale);
glColor3f(0.0f, 0.0f, 0.0f);
displayStrokeCharacters(GLUT_STROKE_MONO_ROMAN, to_string(stages.getLevel()), 2.6f, 0.08f, 0.96f, scale);
displayStrokeCharacters(GLUT_STROKE_MONO_ROMAN, to_string(score), 2.6f, 0.78f, 0.96f, scale);
}
else {
displayStrokeCharacters(GLUT_STROKE_MONO_ROMAN, to_string(scoreByTime), 2.6f, - 0.7f, 0.96f, scale);
displayStrokeCharacters(GLUT_STROKE_MONO_ROMAN, to_string(stages.getLevel()), 2.6f, 0.08f, 0.96f, scale);
displayStrokeCharacters(GLUT_STROKE_MONO_ROMAN, to_string(score), 2.6f, 0.78f, 0.96f, scale);
}
if (time_left == 0) {
player.setLife(0);
}
}
void Scoreboard::displayLeaderboard()
{
if (counter > 5) counter = 5;
float padding = 0.0f;
gamestart ? glColor3f(1.0f, 1.0f, 1.0f) : glColor3f(0.0f, 0.0f, 0.0f) ;
if (!gamestart) padding = 0.2f;
auto itr = leaderboard.begin();
float scale = 1 / 1600.0f;
for (int i = 0; i < counter; i++) {
string score = to_string((*itr).first.second);
string name = (*itr).second;
score.insert(score.begin(), 5 - score.size(), ' ');
string line = to_string(i + 1) + ' ' + score + ' ' + name;
displayStrokeCharacters(GLUT_STROKE_MONO_ROMAN, line, 2.6f, -0.427f, padding-0.35f - 0.10*i, scale);
itr = next(itr);
}
}
int Scoreboard::getLeftTime(clock_t lastClearTime)
{
int time = (int)(clock() - lastClearTime);
return 100 - time/1000;
}
void Scoreboard::changeLeftTimeToScore(clock_t lastClearTime)
{
scoreByTime = getLeftTime(lastClearTime);
}
void Scoreboard::addScoreByTime()
{
if (scoreByTime > 0) {
score += 1;
scoreByTime -= 1;
}
}
void Scoreboard::reset()
{
score = 0;
lastClearTime = clock();
scoreByTime = 0;
saved = false;
fixed = false;
}
void Scoreboard::computeFinalScore()
{
if (!fixed) {
score = score + getLeftTime(lastClearTime);
fixed = true;
}
}
void Scoreboard::displayFinalScore()
{
displayStrokeCharacters(GLUT_STROKE_MONO_ROMAN, to_string(score), 2.6f, 0.1f, -0.17f, 1/1000.0f);
}
void Scoreboard::loadLeaderboard()
{
if (_access("leaderboard.txt", 0) == -1) ofstream("leaderboard.txt").close(); // make file if "leaderboard.txt" does not exists.
counter = 0;
fstream ifs("leaderboard.txt");
int id; int sc; string name;
while (ifs >> id >> sc >> name) {
leaderboard.insert(make_pair(make_pair(id, sc), name));
counter++;
}
ifs.close();
}
void Scoreboard::writeLeaderboard()
{
fstream ofs("leaderboard.txt");
for (auto itr = leaderboard.begin(); itr != leaderboard.end(); itr++) {
ofs << (*itr).first.first << ' ' << (*itr).first.second << ' ' << (*itr).second << endl;
}
ofs.close();
}
void Scoreboard::addMyrecord(string name)
{
int length = leaderboard.size();
leaderboard.insert(make_pair(make_pair(length + 1, score), name));
}
bool Scoreboard::isSaved()
{
return saved;
}
void Scoreboard::save()
{
saved = true;
writeLeaderboard();
}
void Scoreboard::setCounter(int i)
{
counter += i;
}