Mercurial > minori
annotate include/gui/translate/anime.h @ 258:862d0d8619f6
*: HUUUGE changes
animia has been renamed to animone, so instead of thinking of a
health condition, you think of a beautiful flower :)
I've also edited some of the code for animone, but I have no idea
if it even works or not because I don't have a mac or windows
machine lying around. whoops!
... anyway, all of the changes divergent from Anisthesia are now
licensed under BSD. it's possible that I could even rewrite most
of the code to where I don't even have to keep the MIT license,
but that's thinking too far into the future
I've been slacking off on implementing the anime seasons page,
mostly out of laziness. I think I'd have to create another db file
specifically for the seasons
anyway, this code is being pushed *primarily* because the hard drive
it's on is failing! yay :)
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Mon, 01 Apr 2024 02:43:44 -0400 |
parents | 649786bae914 |
children | 3ec7804abf17 |
rev | line source |
---|---|
185
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
174
diff
changeset
|
1 #ifndef __gui__translate__anime_h |
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
174
diff
changeset
|
2 #define __gui__translate__anime_h |
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
174
diff
changeset
|
3 |
10 | 4 #include "core/anime.h" |
5 | |
6 namespace Translate { | |
7 | |
15 | 8 std::string ToString(const Anime::ListStatus status); |
9 std::string ToString(const Anime::SeriesFormat format); | |
10 std::string ToString(const Anime::SeriesSeason season); | |
11 std::string ToString(const Anime::SeriesStatus status); | |
90
c4bb49c2f6eb
config: improve handling of vars
Paper <mrpapersonic@gmail.com>
parents:
15
diff
changeset
|
12 std::string ToString(const Anime::Services service); |
174
f88eda79c60a
anime/db: add some more json functionality, still doesn't compile :/
Paper <mrpapersonic@gmail.com>
parents:
90
diff
changeset
|
13 std::string ToString(const Anime::TitleLanguage language); |
185
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
174
diff
changeset
|
14 std::string ToString(const Anime::ScoreFormat format); |
174
f88eda79c60a
anime/db: add some more json functionality, still doesn't compile :/
Paper <mrpapersonic@gmail.com>
parents:
90
diff
changeset
|
15 |
f88eda79c60a
anime/db: add some more json functionality, still doesn't compile :/
Paper <mrpapersonic@gmail.com>
parents:
90
diff
changeset
|
16 std::string ToLocalString(const Anime::ListStatus status); |
f88eda79c60a
anime/db: add some more json functionality, still doesn't compile :/
Paper <mrpapersonic@gmail.com>
parents:
90
diff
changeset
|
17 std::string ToLocalString(const Anime::SeriesFormat format); |
f88eda79c60a
anime/db: add some more json functionality, still doesn't compile :/
Paper <mrpapersonic@gmail.com>
parents:
90
diff
changeset
|
18 std::string ToLocalString(const Anime::SeriesSeason season); |
f88eda79c60a
anime/db: add some more json functionality, still doesn't compile :/
Paper <mrpapersonic@gmail.com>
parents:
90
diff
changeset
|
19 std::string ToLocalString(const Anime::SeriesStatus status); |
f88eda79c60a
anime/db: add some more json functionality, still doesn't compile :/
Paper <mrpapersonic@gmail.com>
parents:
90
diff
changeset
|
20 std::string ToLocalString(const Anime::Services service); |
f88eda79c60a
anime/db: add some more json functionality, still doesn't compile :/
Paper <mrpapersonic@gmail.com>
parents:
90
diff
changeset
|
21 std::string ToLocalString(const Anime::TitleLanguage language); |
189 | 22 std::string ToLocalString(const Anime::ScoreFormat language); |
174
f88eda79c60a
anime/db: add some more json functionality, still doesn't compile :/
Paper <mrpapersonic@gmail.com>
parents:
90
diff
changeset
|
23 |
f88eda79c60a
anime/db: add some more json functionality, still doesn't compile :/
Paper <mrpapersonic@gmail.com>
parents:
90
diff
changeset
|
24 Anime::ListStatus ToListStatus(const std::string& str); |
f88eda79c60a
anime/db: add some more json functionality, still doesn't compile :/
Paper <mrpapersonic@gmail.com>
parents:
90
diff
changeset
|
25 Anime::SeriesFormat ToSeriesFormat(const std::string& str); |
f88eda79c60a
anime/db: add some more json functionality, still doesn't compile :/
Paper <mrpapersonic@gmail.com>
parents:
90
diff
changeset
|
26 Anime::SeriesSeason ToSeriesSeason(const std::string& str); |
f88eda79c60a
anime/db: add some more json functionality, still doesn't compile :/
Paper <mrpapersonic@gmail.com>
parents:
90
diff
changeset
|
27 Anime::SeriesStatus ToSeriesStatus(const std::string& str); |
90
c4bb49c2f6eb
config: improve handling of vars
Paper <mrpapersonic@gmail.com>
parents:
15
diff
changeset
|
28 Anime::Services ToService(const std::string& str); |
c4bb49c2f6eb
config: improve handling of vars
Paper <mrpapersonic@gmail.com>
parents:
15
diff
changeset
|
29 Anime::TitleLanguage ToLanguage(const std::string& str); |
185
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
174
diff
changeset
|
30 Anime::ScoreFormat ToScoreFormat(const std::string& str); |
10 | 31 |
32 } // namespace Translate | |
185
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
174
diff
changeset
|
33 |
62e336597bb7
anime list: add support for different score formats
Paper <mrpapersonic@gmail.com>
parents:
174
diff
changeset
|
34 #endif // __gui__translate__anime_h |