forked from Nebuleon/ativayeban
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathhigh_score.c
188 lines (171 loc) · 4.96 KB
/
high_score.c
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
/*
Copyright (c) 2015, Cong Xu
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
#include "high_score.h"
#include <stdio.h>
#include "cfgpath.h"
#include "init.h"
#include "main.h"
#include "text.h"
#include "utils.h"
#define HIGH_SCORE_FILE "falling_time_high_scores"
#define MAX_HIGH_SCORES 20
CArray HighScores;
void HighScoresInit(void)
{
CArrayInit(&HighScores, sizeof(HighScore));
char buf[MAX_PATH];
get_user_config_file(buf, MAX_PATH, HIGH_SCORE_FILE);
if (strlen(buf) == 0)
{
printf("Error: cannot find config file path\n");
return;
}
FILE *f = fopen(buf, "r");
if (f == NULL)
{
// No high score file found
return;
}
while (fgets(buf, sizeof buf, f))
{
HighScore hs;
struct tm tm;
sscanf(
buf, "%d %04d-%02d-%02d %02d:%02d:%02d",
&hs.Score, &tm.tm_year, &tm.tm_mon, &tm.tm_mday,
&tm.tm_hour, &tm.tm_min, &tm.tm_sec);
// Time correction
tm.tm_year -= 1900;
tm.tm_mon--;
hs.Time = mktime(&tm);
CArrayPushBack(&HighScores, &hs);
}
fclose(f);
}
void HighScoresFree(void)
{
CArrayTerminate(&HighScores);
}
void HighScoresAdd(const int s)
{
// Find the right position to add the score
// Scores are in descending order
HighScore hsNew;
hsNew.Score = s;
hsNew.Time = time(NULL);
bool inserted = false;
for (int i = 0; i < (int)HighScores.size; i++)
{
const HighScore *hs = CArrayGet(&HighScores, i);
if (hs->Score <= s)
{
CArrayInsert(&HighScores, i, &hsNew);
inserted = true;
break;
}
}
if (!inserted)
{
CArrayPushBack(&HighScores, &hsNew);
}
// Save to file
char buf[MAX_PATH];
get_user_config_file(buf, MAX_PATH, HIGH_SCORE_FILE);
if (strlen(buf) == 0)
{
printf("Error: cannot find config file path\n");
return;
}
FILE *f = fopen(buf, "w");
if (f == NULL)
{
printf("Error: cannot open config file %s\n", buf);
return;
}
for (int i = 0; i < MIN((int)HighScores.size, MAX_HIGH_SCORES); i++)
{
const HighScore *hs = CArrayGet(&HighScores, i);
struct tm *ptm = gmtime(&hs->Time);
strftime(buf, sizeof buf, "%Y-%m-%d %H:%M:%S", ptm);
fprintf(f, "%d %s\n", hs->Score, buf);
}
fclose(f);
}
TTF_Font *hsFont = NULL;
#define HIGH_SCORE_DISPLAY_DY 20.0f
#define HIGH_SCORE_DISPLAY_DDY 20.0f
#define TEXT_COUNTER_LENGTH 1.5f
#define TEXT_BLUE_LOW 64
#define TEXT_BLUE_HIGH 196
void HighScoreDisplayInit(HighScoreDisplay *h)
{
h->y = SCREEN_HEIGHT;
h->dy = -HIGH_SCORE_DISPLAY_DY;
h->h = 0;
h->textCounter = 0;
}
void HighScoreDisplayUpdate(HighScoreDisplay *h, const Uint32 ms)
{
// If display reached top or bottom of screen, scroll the other way
if (h->y >= SCREEN_HEIGHT - h->h && h->y >= 0)
{
h->dy -= HIGH_SCORE_DISPLAY_DDY * ms / 1000;
if (h->dy < -HIGH_SCORE_DISPLAY_DY) h->dy = -HIGH_SCORE_DISPLAY_DY;
}
else if (h->y <= 0 && h->y + h->h <= SCREEN_HEIGHT)
{
h->dy += HIGH_SCORE_DISPLAY_DDY * ms / 1000;
if (h->dy > HIGH_SCORE_DISPLAY_DY) h->dy = HIGH_SCORE_DISPLAY_DY;
}
h->y += h->dy * ms / 1000;
h->textCounter += ms / TEXT_COUNTER_LENGTH / 1000;
if (h->textCounter > 1.0f) h->textCounter -= 1.0f;
}
void HighScoreDisplayDraw(HighScoreDisplay *h)
{
char buf[2048];
strcpy(buf, "High Scores\n\n");
const bool countHeight = h->h == 0;
if (countHeight) h->h += TTF_FontHeight(hsFont) * 2;
for (int i = 0; i < (int)HighScores.size; i++)
{
const HighScore *hs = CArrayGet(&HighScores, i);
char lbuf[256];
struct tm *ptm = gmtime(&hs->Time);
char tbuf[256];
strftime(tbuf, sizeof tbuf, "%Y-%m-%d", ptm);
sprintf(lbuf, "#%d %d (%s)\n", i + 1, hs->Score, tbuf);
strcat(buf, lbuf);
if (countHeight)
{
h->h += TTF_FontHeight(hsFont);
}
}
// Pulsate
const float scalar =
h->textCounter > 0.5f ? 1.0f - h->textCounter : h->textCounter;
SDL_Color c;
c.b = TEXT_BLUE_LOW + (Uint8)((TEXT_BLUE_HIGH - TEXT_BLUE_LOW) * scalar);
c.r = c.g = c.b / 2;
TextRenderCentered(hsFont, buf, (int)h->y, c);
}