Mercurial > minori
annotate include/core/anime_db.h @ 177:122fad646f81
anime/db: upgrade to c++17 style, make things easier to read
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Fri, 01 Dec 2023 13:32:29 -0500 |
parents | 9b10175be389 |
children | 862d0d8619f6 |
rev | line source |
---|---|
10 | 1 #ifndef __core__anime_db_h |
2 #define __core__anime_db_h | |
85 | 3 |
10 | 4 #include "core/anime.h" |
175 | 5 #include "json/json_fwd.hpp" |
76 | 6 #include <string> |
10 | 7 #include <unordered_map> |
8 | |
9 namespace Anime { | |
10 | |
11 class Database { | |
12 public: | |
13 std::unordered_map<int, Anime> items; | |
177
122fad646f81
anime/db: upgrade to c++17 style, make things easier to read
Paper <mrpapersonic@gmail.com>
parents:
175
diff
changeset
|
14 size_t GetTotalAnimeAmount(); |
122fad646f81
anime/db: upgrade to c++17 style, make things easier to read
Paper <mrpapersonic@gmail.com>
parents:
175
diff
changeset
|
15 size_t GetTotalEpisodeAmount(); |
122fad646f81
anime/db: upgrade to c++17 style, make things easier to read
Paper <mrpapersonic@gmail.com>
parents:
175
diff
changeset
|
16 size_t GetTotalWatchedAmount(); |
122fad646f81
anime/db: upgrade to c++17 style, make things easier to read
Paper <mrpapersonic@gmail.com>
parents:
175
diff
changeset
|
17 size_t GetTotalPlannedAmount(); |
10 | 18 double GetAverageScore(); |
19 double GetScoreDeviation(); | |
177
122fad646f81
anime/db: upgrade to c++17 style, make things easier to read
Paper <mrpapersonic@gmail.com>
parents:
175
diff
changeset
|
20 size_t GetListsAnimeAmount(ListStatus status); |
83 | 21 int GetAnimeFromTitle(const std::string& title); |
173
de0a8d2f28b3
WILL NOT COMPILE: sample export ability for anime db
Paper <mrpapersonic@gmail.com>
parents:
85
diff
changeset
|
22 |
de0a8d2f28b3
WILL NOT COMPILE: sample export ability for anime db
Paper <mrpapersonic@gmail.com>
parents:
85
diff
changeset
|
23 bool GetDatabaseAsJSON(nlohmann::json& json); |
174
f88eda79c60a
anime/db: add some more json functionality, still doesn't compile :/
Paper <mrpapersonic@gmail.com>
parents:
173
diff
changeset
|
24 bool SaveDatabaseToDisk(); |
f88eda79c60a
anime/db: add some more json functionality, still doesn't compile :/
Paper <mrpapersonic@gmail.com>
parents:
173
diff
changeset
|
25 |
f88eda79c60a
anime/db: add some more json functionality, still doesn't compile :/
Paper <mrpapersonic@gmail.com>
parents:
173
diff
changeset
|
26 bool ParseDatabaseJSON(const nlohmann::json& json); |
177
122fad646f81
anime/db: upgrade to c++17 style, make things easier to read
Paper <mrpapersonic@gmail.com>
parents:
175
diff
changeset
|
27 bool LoadDatabaseFromDisk(); |
10 | 28 }; |
29 | |
11 | 30 extern Database db; |
10 | 31 |
32 } // namespace Anime | |
85 | 33 |
34 | |
10 | 35 #endif // __core__anime_db_h |