Mercurial > minori
annotate src/core/anime.cc @ 284:e66ffc338d82
anime: refactor title structure to a map
| author | Paper <paper@paper.us.eu.org> | 
|---|---|
| date | Wed, 08 May 2024 16:21:05 -0400 | 
| parents | 9b6e12c14a1e | 
| children | 53e3c015a973 | 
| rev | line source | 
|---|---|
| 9 | 1 /* | 
| 2 * anime.cpp: defining of custom anime-related | |
| 3 * datatypes & variables | |
| 4 */ | |
| 5 #include "core/anime.h" | |
| 279 | 6 #include "core/anime_season.h" | 
| 9 | 7 #include "core/date.h" | 
| 8 #include "core/session.h" | |
| 211 
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
 Paper <mrpapersonic@gmail.com> parents: 
195diff
changeset | 9 #include "core/strings.h" | 
| 178 
bc8d2ccff09c
win32/dark: use existing STL classes for dwmapi
 Paper <mrpapersonic@gmail.com> parents: 
81diff
changeset | 10 | 
| 9 | 11 #include <algorithm> | 
| 12 #include <string> | |
| 13 #include <vector> | |
| 275 
22f9aacf6ac1
osx: don't dereference NULL pointers
 Paper <paper@paper.us.eu.org> parents: 
265diff
changeset | 14 #include <cassert> | 
| 9 | 15 | 
| 16 namespace Anime { | |
| 17 | |
| 18 /* User list data */ | |
| 19 bool Anime::IsInUserList() const { | |
| 264 | 20 if (list_info_.has_value()) | 
| 9 | 21 return true; | 
| 22 return false; | |
| 23 } | |
| 24 | |
| 25 void Anime::AddToUserList() { | |
| 265 
ff0b2052b234
*: add missing utf8proc files
 Paper <paper@paper.us.eu.org> parents: 
264diff
changeset | 26 ListInformation list; | 
| 264 | 27 list_info_.emplace(list); | 
| 9 | 28 } | 
| 29 | |
| 30 void Anime::RemoveFromUserList() { | |
| 31 list_info_.reset(); | |
| 32 } | |
| 33 | |
| 34 ListStatus Anime::GetUserStatus() const { | |
| 264 | 35 assert(list_info_.has_value()); | 
| 9 | 36 return list_info_->status; | 
| 37 } | |
| 38 | |
| 39 int Anime::GetUserProgress() const { | |
| 264 | 40 assert(list_info_.has_value()); | 
| 9 | 41 return list_info_->progress; | 
| 42 } | |
| 43 | |
| 44 int Anime::GetUserScore() const { | |
| 264 | 45 assert(list_info_.has_value()); | 
| 9 | 46 return list_info_->score; | 
| 47 } | |
| 48 | |
| 185 
62e336597bb7
anime list: add support for different score formats
 Paper <mrpapersonic@gmail.com> parents: 
183diff
changeset | 49 std::string Anime::GetUserPresentableScore() const { | 
| 264 | 50 assert(list_info_.has_value()); | 
| 279 | 51 | 
| 185 
62e336597bb7
anime list: add support for different score formats
 Paper <mrpapersonic@gmail.com> parents: 
183diff
changeset | 52 const int score = list_info_->score; | 
| 
62e336597bb7
anime list: add support for different score formats
 Paper <mrpapersonic@gmail.com> parents: 
183diff
changeset | 53 if (score == 0) | 
| 
62e336597bb7
anime list: add support for different score formats
 Paper <mrpapersonic@gmail.com> parents: 
183diff
changeset | 54 return ""; | 
| 
62e336597bb7
anime list: add support for different score formats
 Paper <mrpapersonic@gmail.com> parents: 
183diff
changeset | 55 | 
| 
62e336597bb7
anime list: add support for different score formats
 Paper <mrpapersonic@gmail.com> parents: 
183diff
changeset | 56 switch (session.config.anime_list.score_format) { | 
| 279 | 57 case ScoreFormat::Point10Decimal: | 
| 211 
7cf53145de11
strings: use templates for ToInt, std::to_string -> Strings::ToUtf8String
 Paper <mrpapersonic@gmail.com> parents: 
195diff
changeset | 58 return Strings::ToUtf8String(score / 10) + "." + Strings::ToUtf8String(score % 10); | 
| 279 | 59 case ScoreFormat::Point10: return Strings::ToUtf8String(score / 10); | 
| 60 case ScoreFormat::Point5: { | |
| 185 
62e336597bb7
anime list: add support for different score formats
 Paper <mrpapersonic@gmail.com> parents: 
183diff
changeset | 61 std::string stars = ""; | 
| 
62e336597bb7
anime list: add support for different score formats
 Paper <mrpapersonic@gmail.com> parents: 
183diff
changeset | 62 | 
| 
62e336597bb7
anime list: add support for different score formats
 Paper <mrpapersonic@gmail.com> parents: 
183diff
changeset | 63 for (int i = 0; i < 100; i += 20) | 
| 
62e336597bb7
anime list: add support for different score formats
 Paper <mrpapersonic@gmail.com> parents: 
183diff
changeset | 64 stars.append((i <= score) ? "★" : "☆"); | 
| 
62e336597bb7
anime list: add support for different score formats
 Paper <mrpapersonic@gmail.com> parents: 
183diff
changeset | 65 | 
| 
62e336597bb7
anime list: add support for different score formats
 Paper <mrpapersonic@gmail.com> parents: 
183diff
changeset | 66 return stars; | 
| 
62e336597bb7
anime list: add support for different score formats
 Paper <mrpapersonic@gmail.com> parents: 
183diff
changeset | 67 } | 
| 279 | 68 case ScoreFormat::Point3: { | 
| 185 
62e336597bb7
anime list: add support for different score formats
 Paper <mrpapersonic@gmail.com> parents: 
183diff
changeset | 69 if (score >= 100) | 
| 
62e336597bb7
anime list: add support for different score formats
 Paper <mrpapersonic@gmail.com> parents: 
183diff
changeset | 70 return ":)"; | 
| 
62e336597bb7
anime list: add support for different score formats
 Paper <mrpapersonic@gmail.com> parents: 
183diff
changeset | 71 else if (score >= 66) | 
| 
62e336597bb7
anime list: add support for different score formats
 Paper <mrpapersonic@gmail.com> parents: 
183diff
changeset | 72 return ":|"; | 
| 
62e336597bb7
anime list: add support for different score formats
 Paper <mrpapersonic@gmail.com> parents: 
183diff
changeset | 73 else if (score >= 33) | 
| 
62e336597bb7
anime list: add support for different score formats
 Paper <mrpapersonic@gmail.com> parents: 
183diff
changeset | 74 return ":("; | 
| 
62e336597bb7
anime list: add support for different score formats
 Paper <mrpapersonic@gmail.com> parents: 
183diff
changeset | 75 else | 
| 
62e336597bb7
anime list: add support for different score formats
 Paper <mrpapersonic@gmail.com> parents: 
183diff
changeset | 76 return ""; | 
| 
62e336597bb7
anime list: add support for different score formats
 Paper <mrpapersonic@gmail.com> parents: 
183diff
changeset | 77 } | 
| 
62e336597bb7
anime list: add support for different score formats
 Paper <mrpapersonic@gmail.com> parents: 
183diff
changeset | 78 default: | 
| 279 | 79 case ScoreFormat::Point100: return Strings::ToUtf8String(score); | 
| 185 
62e336597bb7
anime list: add support for different score formats
 Paper <mrpapersonic@gmail.com> parents: 
183diff
changeset | 80 } | 
| 
62e336597bb7
anime list: add support for different score formats
 Paper <mrpapersonic@gmail.com> parents: 
183diff
changeset | 81 } | 
| 
62e336597bb7
anime list: add support for different score formats
 Paper <mrpapersonic@gmail.com> parents: 
183diff
changeset | 82 | 
| 9 | 83 Date Anime::GetUserDateStarted() const { | 
| 264 | 84 assert(list_info_.has_value()); | 
| 9 | 85 return list_info_->started; | 
| 86 } | |
| 87 | |
| 88 Date Anime::GetUserDateCompleted() const { | |
| 264 | 89 assert(list_info_.has_value()); | 
| 9 | 90 return list_info_->completed; | 
| 91 } | |
| 92 | |
| 93 bool Anime::GetUserIsPrivate() const { | |
| 264 | 94 assert(list_info_.has_value()); | 
| 9 | 95 return list_info_->is_private; | 
| 96 } | |
| 97 | |
| 98 unsigned int Anime::GetUserRewatchedTimes() const { | |
| 264 | 99 assert(list_info_.has_value()); | 
| 9 | 100 return list_info_->rewatched_times; | 
| 101 } | |
| 102 | |
| 103 bool Anime::GetUserIsRewatching() const { | |
| 264 | 104 assert(list_info_.has_value()); | 
| 9 | 105 return list_info_->rewatching; | 
| 106 } | |
| 107 | |
| 108 uint64_t Anime::GetUserTimeUpdated() const { | |
| 264 | 109 assert(list_info_.has_value()); | 
| 9 | 110 return list_info_->updated; | 
| 111 } | |
| 112 | |
| 113 std::string Anime::GetUserNotes() const { | |
| 264 | 114 assert(list_info_.has_value()); | 
| 9 | 115 return list_info_->notes; | 
| 116 } | |
| 117 | |
| 118 void Anime::SetUserStatus(ListStatus status) { | |
| 264 | 119 assert(list_info_.has_value()); | 
| 9 | 120 list_info_->status = status; | 
| 121 } | |
| 122 | |
| 10 | 123 void Anime::SetUserScore(int score) { | 
| 264 | 124 assert(list_info_.has_value()); | 
| 10 | 125 list_info_->score = score; | 
| 126 } | |
| 127 | |
| 9 | 128 void Anime::SetUserProgress(int progress) { | 
| 264 | 129 assert(list_info_.has_value()); | 
| 9 | 130 list_info_->progress = progress; | 
| 131 } | |
| 132 | |
| 133 void Anime::SetUserDateStarted(Date const& started) { | |
| 264 | 134 assert(list_info_.has_value()); | 
| 9 | 135 list_info_->started = started; | 
| 136 } | |
| 137 | |
| 138 void Anime::SetUserDateCompleted(Date const& completed) { | |
| 264 | 139 assert(list_info_.has_value()); | 
| 9 | 140 list_info_->completed = completed; | 
| 141 } | |
| 142 | |
| 143 void Anime::SetUserIsPrivate(bool is_private) { | |
| 264 | 144 assert(list_info_.has_value()); | 
| 9 | 145 list_info_->is_private = is_private; | 
| 146 } | |
| 147 | |
| 148 void Anime::SetUserRewatchedTimes(int rewatched) { | |
| 264 | 149 assert(list_info_.has_value()); | 
| 9 | 150 list_info_->rewatched_times = rewatched; | 
| 151 } | |
| 152 | |
| 153 void Anime::SetUserIsRewatching(bool rewatching) { | |
| 264 | 154 assert(list_info_.has_value()); | 
| 9 | 155 list_info_->rewatching = rewatching; | 
| 156 } | |
| 157 | |
| 158 void Anime::SetUserTimeUpdated(uint64_t updated) { | |
| 264 | 159 assert(list_info_.has_value()); | 
| 9 | 160 list_info_->updated = updated; | 
| 161 } | |
| 162 | |
| 163 void Anime::SetUserNotes(std::string const& notes) { | |
| 264 | 164 assert(list_info_.has_value()); | 
| 9 | 165 list_info_->notes = notes; | 
| 166 } | |
| 167 | |
| 168 /* Series data */ | |
| 169 int Anime::GetId() const { | |
| 170 return info_.id; | |
| 171 } | |
| 172 | |
| 284 
e66ffc338d82
anime: refactor title structure to a map
 Paper <paper@paper.us.eu.org> parents: 
280diff
changeset | 173 /* note: this should use std::optional */ | 
| 
e66ffc338d82
anime: refactor title structure to a map
 Paper <paper@paper.us.eu.org> parents: 
280diff
changeset | 174 std::optional<std::string> Anime::GetTitle(TitleLanguage language) const { | 
| 
e66ffc338d82
anime: refactor title structure to a map
 Paper <paper@paper.us.eu.org> parents: 
280diff
changeset | 175 if (info_.titles.find(language) == info_.titles.end()) | 
| 
e66ffc338d82
anime: refactor title structure to a map
 Paper <paper@paper.us.eu.org> parents: 
280diff
changeset | 176 return std::nullopt; | 
| 9 | 177 | 
| 284 
e66ffc338d82
anime: refactor title structure to a map
 Paper <paper@paper.us.eu.org> parents: 
280diff
changeset | 178 return info_.titles.at(language); | 
| 9 | 179 } | 
| 180 | |
| 181 std::vector<std::string> Anime::GetTitleSynonyms() const { | |
| 284 
e66ffc338d82
anime: refactor title structure to a map
 Paper <paper@paper.us.eu.org> parents: 
280diff
changeset | 182 /* mainly for the GUI */ | 
| 9 | 183 std::vector<std::string> result; | 
| 195 
975a3f0965e2
locale: only attempt loading locales after QApplication is init'd
 Paper <mrpapersonic@gmail.com> parents: 
186diff
changeset | 184 | 
| 
975a3f0965e2
locale: only attempt loading locales after QApplication is init'd
 Paper <mrpapersonic@gmail.com> parents: 
186diff
changeset | 185 auto add_to_synonyms = [this](std::vector<std::string>& vec, std::string key) { | 
| 
975a3f0965e2
locale: only attempt loading locales after QApplication is init'd
 Paper <mrpapersonic@gmail.com> parents: 
186diff
changeset | 186 if (!key.empty() && !std::count(vec.begin(), vec.end(), key) && key != GetUserPreferredTitle()) | 
| 
975a3f0965e2
locale: only attempt loading locales after QApplication is init'd
 Paper <mrpapersonic@gmail.com> parents: 
186diff
changeset | 187 vec.push_back(key); | 
| 
975a3f0965e2
locale: only attempt loading locales after QApplication is init'd
 Paper <mrpapersonic@gmail.com> parents: 
186diff
changeset | 188 }; | 
| 
975a3f0965e2
locale: only attempt loading locales after QApplication is init'd
 Paper <mrpapersonic@gmail.com> parents: 
186diff
changeset | 189 | 
| 284 
e66ffc338d82
anime: refactor title structure to a map
 Paper <paper@paper.us.eu.org> parents: 
280diff
changeset | 190 for (const auto& lang : TitleLanguages) | 
| 
e66ffc338d82
anime: refactor title structure to a map
 Paper <paper@paper.us.eu.org> parents: 
280diff
changeset | 191 if (info_.titles.find(lang) != info_.titles.end()) | 
| 
e66ffc338d82
anime: refactor title structure to a map
 Paper <paper@paper.us.eu.org> parents: 
280diff
changeset | 192 add_to_synonyms(result, info_.titles.at(lang)); | 
| 195 
975a3f0965e2
locale: only attempt loading locales after QApplication is init'd
 Paper <mrpapersonic@gmail.com> parents: 
186diff
changeset | 193 | 
| 
975a3f0965e2
locale: only attempt loading locales after QApplication is init'd
 Paper <mrpapersonic@gmail.com> parents: 
186diff
changeset | 194 for (auto& synonym : info_.synonyms) | 
| 
975a3f0965e2
locale: only attempt loading locales after QApplication is init'd
 Paper <mrpapersonic@gmail.com> parents: 
186diff
changeset | 195 add_to_synonyms(result, synonym); | 
| 
975a3f0965e2
locale: only attempt loading locales after QApplication is init'd
 Paper <mrpapersonic@gmail.com> parents: 
186diff
changeset | 196 | 
| 9 | 197 return result; | 
| 198 } | |
| 199 | |
| 200 int Anime::GetEpisodes() const { | |
| 201 return info_.episodes; | |
| 202 } | |
| 203 | |
| 204 SeriesStatus Anime::GetAiringStatus() const { | |
| 205 return info_.status; | |
| 206 } | |
| 207 | |
| 208 Date Anime::GetAirDate() const { | |
| 209 return info_.air_date; | |
| 210 } | |
| 211 | |
| 212 std::vector<std::string> Anime::GetGenres() const { | |
| 213 return info_.genres; | |
| 214 } | |
| 215 | |
| 216 std::vector<std::string> Anime::GetProducers() const { | |
| 217 return info_.producers; | |
| 218 } | |
| 219 | |
| 220 SeriesFormat Anime::GetFormat() const { | |
| 221 return info_.format; | |
| 222 } | |
| 223 | |
| 224 SeriesSeason Anime::GetSeason() const { | |
| 279 | 225 std::optional<Date::Month> month = info_.air_date.GetMonth(); | 
| 226 return (month.has_value() ? GetSeasonForMonth(month.value()) : SeriesSeason::Unknown); | |
| 9 | 227 } | 
| 228 | |
| 229 int Anime::GetAudienceScore() const { | |
| 230 return info_.audience_score; | |
| 231 } | |
| 232 | |
| 233 std::string Anime::GetSynopsis() const { | |
| 234 return info_.synopsis; | |
| 235 } | |
| 236 | |
| 237 int Anime::GetDuration() const { | |
| 238 return info_.duration; | |
| 239 } | |
| 240 | |
| 66 
6481c5aed3e1
posters: add poster widget...
 Paper <mrpapersonic@gmail.com> parents: 
36diff
changeset | 241 std::string Anime::GetPosterUrl() const { | 
| 
6481c5aed3e1
posters: add poster widget...
 Paper <mrpapersonic@gmail.com> parents: 
36diff
changeset | 242 return info_.poster_url; | 
| 
6481c5aed3e1
posters: add poster widget...
 Paper <mrpapersonic@gmail.com> parents: 
36diff
changeset | 243 } | 
| 
6481c5aed3e1
posters: add poster widget...
 Paper <mrpapersonic@gmail.com> parents: 
36diff
changeset | 244 | 
| 67 
442065432549
poster: make posters link to AniList
 Paper <mrpapersonic@gmail.com> parents: 
66diff
changeset | 245 std::string Anime::GetServiceUrl() const { | 
| 183 
01d259b9c89f
pages/torrents.cc: parse feed descriptions separately
 Paper <mrpapersonic@gmail.com> parents: 
178diff
changeset | 246 /* todo: add support for other services... */ | 
| 279 | 247 switch (session.config.service) { | 
| 248 case Service::AniList: return "https://anilist.co/anime/" + Strings::ToUtf8String(GetId()); | |
| 249 default: return ""; | |
| 250 } | |
| 67 
442065432549
poster: make posters link to AniList
 Paper <mrpapersonic@gmail.com> parents: 
66diff
changeset | 251 } | 
| 
442065432549
poster: make posters link to AniList
 Paper <mrpapersonic@gmail.com> parents: 
66diff
changeset | 252 | 
| 9 | 253 void Anime::SetId(int id) { | 
| 254 info_.id = id; | |
| 255 } | |
| 256 | |
| 284 
e66ffc338d82
anime: refactor title structure to a map
 Paper <paper@paper.us.eu.org> parents: 
280diff
changeset | 257 void Anime::SetTitle(TitleLanguage language, const std::string& title) { | 
| 
e66ffc338d82
anime: refactor title structure to a map
 Paper <paper@paper.us.eu.org> parents: 
280diff
changeset | 258 info_.titles[language] = title; | 
| 9 | 259 } | 
| 260 | |
| 261 void Anime::SetTitleSynonyms(std::vector<std::string> const& synonyms) { | |
| 262 info_.synonyms = synonyms; | |
| 263 } | |
| 264 | |
| 265 void Anime::AddTitleSynonym(std::string const& synonym) { | |
| 266 info_.synonyms.push_back(synonym); | |
| 267 } | |
| 268 | |
| 269 void Anime::SetEpisodes(int episodes) { | |
| 270 info_.episodes = episodes; | |
| 271 } | |
| 272 | |
| 273 void Anime::SetAiringStatus(SeriesStatus status) { | |
| 274 info_.status = status; | |
| 275 } | |
| 276 | |
| 277 void Anime::SetAirDate(Date const& date) { | |
| 278 info_.air_date = date; | |
| 279 } | |
| 280 | |
| 281 void Anime::SetGenres(std::vector<std::string> const& genres) { | |
| 282 info_.genres = genres; | |
| 283 } | |
| 284 | |
| 285 void Anime::SetProducers(std::vector<std::string> const& producers) { | |
| 286 info_.producers = producers; | |
| 287 } | |
| 288 | |
| 289 void Anime::SetFormat(SeriesFormat format) { | |
| 290 info_.format = format; | |
| 291 } | |
| 292 | |
| 293 void Anime::SetAudienceScore(int audience_score) { | |
| 294 info_.audience_score = audience_score; | |
| 295 } | |
| 296 | |
| 297 void Anime::SetSynopsis(std::string synopsis) { | |
| 298 info_.synopsis = synopsis; | |
| 299 } | |
| 300 | |
| 301 void Anime::SetDuration(int duration) { | |
| 302 info_.duration = duration; | |
| 303 } | |
| 304 | |
| 66 
6481c5aed3e1
posters: add poster widget...
 Paper <mrpapersonic@gmail.com> parents: 
36diff
changeset | 305 void Anime::SetPosterUrl(std::string url) { | 
| 
6481c5aed3e1
posters: add poster widget...
 Paper <mrpapersonic@gmail.com> parents: 
36diff
changeset | 306 info_.poster_url = url; | 
| 
6481c5aed3e1
posters: add poster widget...
 Paper <mrpapersonic@gmail.com> parents: 
36diff
changeset | 307 } | 
| 
6481c5aed3e1
posters: add poster widget...
 Paper <mrpapersonic@gmail.com> parents: 
36diff
changeset | 308 | 
| 9 | 309 std::string Anime::GetUserPreferredTitle() const { | 
| 284 
e66ffc338d82
anime: refactor title structure to a map
 Paper <paper@paper.us.eu.org> parents: 
280diff
changeset | 310 std::optional<std::string> title = GetTitle(session.config.anime_list.language); | 
| 
e66ffc338d82
anime: refactor title structure to a map
 Paper <paper@paper.us.eu.org> parents: 
280diff
changeset | 311 if (title.has_value()) | 
| 
e66ffc338d82
anime: refactor title structure to a map
 Paper <paper@paper.us.eu.org> parents: 
280diff
changeset | 312 return title.value(); | 
| 
e66ffc338d82
anime: refactor title structure to a map
 Paper <paper@paper.us.eu.org> parents: 
280diff
changeset | 313 | 
| 
e66ffc338d82
anime: refactor title structure to a map
 Paper <paper@paper.us.eu.org> parents: 
280diff
changeset | 314 title = GetTitle(TitleLanguage::Romaji); | 
| 
e66ffc338d82
anime: refactor title structure to a map
 Paper <paper@paper.us.eu.org> parents: 
280diff
changeset | 315 if (title.has_value()) | 
| 
e66ffc338d82
anime: refactor title structure to a map
 Paper <paper@paper.us.eu.org> parents: 
280diff
changeset | 316 return title.value(); | 
| 
e66ffc338d82
anime: refactor title structure to a map
 Paper <paper@paper.us.eu.org> parents: 
280diff
changeset | 317 | 
| 
e66ffc338d82
anime: refactor title structure to a map
 Paper <paper@paper.us.eu.org> parents: 
280diff
changeset | 318 /* what? */ | 
| 
e66ffc338d82
anime: refactor title structure to a map
 Paper <paper@paper.us.eu.org> parents: 
280diff
changeset | 319 return std::string(); | 
| 9 | 320 } | 
| 321 | |
| 322 } // namespace Anime | 
