add missing tools/pngdump to the repo
[gbajam22] / src / scoredb.h
1 /*
2 Score-keeping for GBA with SRAM cartridge (originally part of gbatris)
3 Copyright (C) 2019-2022  John Tsiombikas <nuclear@member.fsf.org>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program.  If not, see <https://www.gnu.org/licenses/>.
17 */
18 #ifndef SCOREDB_H_
19 #define SCOREDB_H_
20
21 #define NAME_SIZE       4
22
23 struct score_entry {
24         char name[8];
25         uint32_t time;
26         uint16_t score;
27         uint8_t level, unused;
28 } __attribute__((packed));
29
30 /* last entry is used just to keep the last entered name
31  * and present it as a default choice in the highscore UI
32  */
33 struct score_entry scores[11];
34
35 int last_score_rank;
36
37 int load_scores(void);
38 void save_scores(void);
39 void save_score(char *name, int score, int time, int level);
40 int is_highscore(int score);
41
42 #endif  /* SCOREDB_H_ */