Mercurial > minori
annotate include/core/anime.h @ 297:1d59a3f72c52
CI: new and improved windows build
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Mon, 13 May 2024 03:00:10 -0400 |
parents | 53e3c015a973 |
children | b1f4d1867ab1 |
rev | line source |
---|---|
261
3ec7804abf17
include: make header guards more sane
Paper <paper@paper.us.eu.org>
parents:
260
diff
changeset
|
1 #ifndef MINORI_CORE_ANIME_H_ |
3ec7804abf17
include: make header guards more sane
Paper <paper@paper.us.eu.org>
parents:
260
diff
changeset
|
2 #define MINORI_CORE_ANIME_H_ |
3ec7804abf17
include: make header guards more sane
Paper <paper@paper.us.eu.org>
parents:
260
diff
changeset
|
3 |
9 | 4 #include "core/date.h" |
5 #include <array> | |
6 #include <map> | |
7 #include <vector> | |
264 | 8 #include <optional> |
9 | 9 |
10 namespace Anime { | |
11 | |
12 enum class ListStatus { | |
279 | 13 NotInList = 0, |
14 Current, | |
15 Completed, | |
16 Paused, | |
17 Dropped, | |
18 Planning | |
19 }; | |
20 | |
21 constexpr std::array<ListStatus, 5> ListStatuses{ | |
22 ListStatus::Current, ListStatus::Completed, ListStatus::Paused, | |
23 ListStatus::Dropped, ListStatus::Planning | |
9 | 24 }; |
25 | |
279 | 26 enum class SeriesStatus { |
27 Unknown = 0, | |
28 Finished, | |
29 Releasing, | |
30 NotYetReleased, | |
31 Cancelled, | |
32 Hiatus | |
33 }; | |
9 | 34 |
279 | 35 constexpr std::array<SeriesStatus, 6> SeriesStatuses{ |
36 SeriesStatus::Unknown, | |
37 SeriesStatus::Finished, | |
38 SeriesStatus::Releasing, | |
39 SeriesStatus::NotYetReleased, | |
40 SeriesStatus::Cancelled, | |
41 SeriesStatus::Hiatus | |
9 | 42 }; |
43 | |
44 enum class SeriesFormat { | |
279 | 45 Unknown = 0, |
46 Tv, | |
47 TvShort, | |
48 Movie, | |
49 Special, | |
50 Ova, | |
51 Ona, | |
52 Music | |
53 }; | |
54 | |
55 constexpr std::array<SeriesFormat, 8> SeriesFormats{ | |
56 SeriesFormat::Unknown, | |
57 SeriesFormat::Tv, | |
58 SeriesFormat::TvShort, | |
59 SeriesFormat::Movie, | |
60 SeriesFormat::Special, | |
61 SeriesFormat::Ova, | |
62 SeriesFormat::Ona, | |
63 SeriesFormat::Music | |
9 | 64 }; |
65 | |
66 enum class SeriesSeason { | |
279 | 67 Unknown = 0, |
68 Winter, | |
69 Spring, | |
70 Summer, | |
71 Fall | |
9 | 72 }; |
73 | |
260
dd211ff68b36
pages/seasons: add initial functionality
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
74 constexpr std::array<SeriesSeason, 4> SeriesSeasons{ |
279 | 75 SeriesSeason::Winter, SeriesSeason::Spring, |
76 SeriesSeason::Summer, SeriesSeason::Fall | |
260
dd211ff68b36
pages/seasons: add initial functionality
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
77 }; |
dd211ff68b36
pages/seasons: add initial functionality
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
78 |
9 | 79 enum class TitleLanguage { |
279 | 80 Romaji, |
81 Native, | |
82 English | |
9 | 83 }; |
84 | |
279 | 85 constexpr std::array<TitleLanguage, 3> TitleLanguages{TitleLanguage::Romaji, TitleLanguage::Native, TitleLanguage::English}; |
86 | |
87 enum class Service { | |
88 None, | |
286
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
89 AniList, |
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
90 MyAnimeList, |
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
91 Kitsu |
9 | 92 }; |
93 | |
286
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
94 /* this doesn't include MAL and Kitsu because they aren't really |
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
95 * "valid" services yet. */ |
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
96 constexpr std::array<Service, 3> Services{ |
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
97 Service::AniList, |
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
98 Service::MyAnimeList, |
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
99 Service::Kitsu |
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
100 }; |
279 | 101 |
185
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
184
diff
changeset
|
102 enum class ScoreFormat { |
279 | 103 Point100, // 0-100 |
104 Point10Decimal, // 0.0-10.0 | |
105 Point10, // 0-10 | |
106 Point5, // 0-5, should be represented in stars | |
107 Point3 // 1-3, should be represented in smileys | |
185
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
184
diff
changeset
|
108 }; |
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
184
diff
changeset
|
109 |
279 | 110 constexpr std::array<ScoreFormat, 5> ScoreFormats{ScoreFormat::Point100, ScoreFormat::Point10Decimal, |
111 ScoreFormat::Point10, ScoreFormat::Point5, ScoreFormat::Point3}; | |
189 | 112 |
9 | 113 struct ListInformation { |
258 | 114 int id = 0; |
115 int progress = 0; | |
279 | 116 int score = 0; // this will ALWAYS be in POINT_100 format internally |
117 ListStatus status = ListStatus::NotInList; | |
258 | 118 Date started; |
119 Date completed; | |
120 bool is_private = false; | |
121 unsigned int rewatched_times = 0; | |
122 bool rewatching = false; | |
123 uint64_t updated = 0; | |
124 std::string notes; | |
9 | 125 }; |
126 | |
127 struct SeriesInformation { | |
258 | 128 int id; |
286
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
129 std::map<Service, std::string> ids; |
284
e66ffc338d82
anime: refactor title structure to a map
Paper <paper@paper.us.eu.org>
parents:
279
diff
changeset
|
130 std::map<TitleLanguage, std::string> titles; |
258 | 131 std::vector<std::string> synonyms; |
132 int episodes = 0; | |
279 | 133 SeriesStatus status = SeriesStatus::Unknown; |
258 | 134 Date air_date; |
135 std::vector<std::string> genres; | |
136 std::vector<std::string> producers; | |
279 | 137 SeriesFormat format = SeriesFormat::Unknown; |
258 | 138 int audience_score = 0; |
139 std::string synopsis; | |
140 int duration = 0; | |
141 std::string poster_url; | |
9 | 142 }; |
143 | |
144 class Anime { | |
258 | 145 public: |
146 /* User list data */ | |
147 ListStatus GetUserStatus() const; | |
148 int GetUserProgress() const; | |
149 int GetUserScore() const; | |
150 std::string GetUserPresentableScore() const; | |
151 Date GetUserDateStarted() const; | |
152 Date GetUserDateCompleted() const; | |
153 bool GetUserIsPrivate() const; | |
154 unsigned int GetUserRewatchedTimes() const; | |
155 bool GetUserIsRewatching() const; | |
156 uint64_t GetUserTimeUpdated() const; | |
157 std::string GetUserNotes() const; | |
9 | 158 |
258 | 159 void SetUserStatus(ListStatus status); |
160 void SetUserScore(int score); | |
161 void SetUserProgress(int progress); | |
162 void SetUserDateStarted(Date const& started); | |
163 void SetUserDateCompleted(Date const& completed); | |
164 void SetUserIsPrivate(bool is_private); | |
165 void SetUserRewatchedTimes(int rewatched); | |
166 void SetUserIsRewatching(bool rewatching); | |
167 void SetUserTimeUpdated(uint64_t updated); | |
168 void SetUserNotes(std::string const& notes); | |
9 | 169 |
258 | 170 /* Series data */ |
171 int GetId() const; | |
286
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
172 std::optional<std::string> GetServiceId(Service service) const; |
284
e66ffc338d82
anime: refactor title structure to a map
Paper <paper@paper.us.eu.org>
parents:
279
diff
changeset
|
173 std::optional<std::string> GetTitle(TitleLanguage language) const; |
258 | 174 std::vector<std::string> GetTitleSynonyms() const; |
175 int GetEpisodes() const; | |
176 SeriesStatus GetAiringStatus() const; | |
177 Date GetAirDate() const; | |
178 std::vector<std::string> GetGenres() const; | |
179 std::vector<std::string> GetProducers() const; | |
180 SeriesFormat GetFormat() const; | |
181 SeriesSeason GetSeason() const; | |
182 int GetAudienceScore() const; | |
183 std::string GetSynopsis() const; | |
184 int GetDuration() const; | |
185 std::string GetPosterUrl() const; | |
286
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
186 std::optional<std::string> GetServiceUrl(Service service) const; |
9 | 187 |
258 | 188 void SetId(int id); |
286
53e3c015a973
anime: initial cross-service support
Paper <paper@paper.us.eu.org>
parents:
284
diff
changeset
|
189 void SetServiceId(Service service, const std::string& id); |
284
e66ffc338d82
anime: refactor title structure to a map
Paper <paper@paper.us.eu.org>
parents:
279
diff
changeset
|
190 void SetTitle(TitleLanguage language, const std::string& title); |
258 | 191 void SetTitleSynonyms(std::vector<std::string> const& synonyms); |
192 void AddTitleSynonym(std::string const& synonym); | |
193 void SetEpisodes(int episodes); | |
194 void SetAiringStatus(SeriesStatus status); | |
195 void SetAirDate(Date const& date); | |
196 void SetGenres(std::vector<std::string> const& genres); | |
197 void SetProducers(std::vector<std::string> const& producers); | |
198 void SetFormat(SeriesFormat format); | |
199 void SetAudienceScore(int audience_score); | |
200 void SetSynopsis(std::string synopsis); | |
201 void SetDuration(int duration); | |
202 void SetPosterUrl(std::string poster); | |
9 | 203 |
258 | 204 std::string GetUserPreferredTitle() const; |
9 | 205 |
258 | 206 /* User stuff */ |
207 void AddToUserList(); | |
208 bool IsInUserList() const; | |
209 void RemoveFromUserList(); | |
9 | 210 |
258 | 211 private: |
212 SeriesInformation info_; | |
264 | 213 std::optional<struct ListInformation> list_info_ = std::nullopt; |
9 | 214 }; |
215 | |
216 } // namespace Anime | |
217 | |
261
3ec7804abf17
include: make header guards more sane
Paper <paper@paper.us.eu.org>
parents:
260
diff
changeset
|
218 #endif // MINORI_CORE_ANIME_H_ |