Mercurial > minori
view src/gui/translate/anilist.cpp @ 75:d3e9310598b1
*: refactor some stuff
text: "TextParagraph"s are now called sections, because that's the
actual word for it :P
text: new classes: Line and OneLineSection, solves many problems with
paragraphs that are only one line long (ex. going out of bounds)
http: reworked http stuff to allow threaded get requests, also moved it
to its own file to (hopefully) remove clutter
eventually I'll make a threaded post request method and use that in
the "basic" function
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Wed, 04 Oct 2023 01:42:30 -0400 |
parents | 3d2decf093bb |
children |
line wrap: on
line source
#include "gui/translate/anilist.h" namespace Translate { namespace AniList { Anime::SeriesStatus ToSeriesStatus(std::string status) { const std::unordered_map<std::string, Anime::SeriesStatus> map = { {"FINISHED", Anime::SeriesStatus::FINISHED }, {"RELEASING", Anime::SeriesStatus::RELEASING }, {"NOT_YET_RELEASED", Anime::SeriesStatus::NOT_YET_RELEASED}, {"CANCELLED", Anime::SeriesStatus::CANCELLED }, {"HIATUS", Anime::SeriesStatus::HIATUS } }; if (map.find(status) == map.end()) return Anime::SeriesStatus::UNKNOWN; return map.at(status); } Anime::SeriesSeason ToSeriesSeason(std::string season) { const std::unordered_map<std::string, Anime::SeriesSeason> map = { {"WINTER", Anime::SeriesSeason::WINTER}, {"SPRING", Anime::SeriesSeason::SPRING}, {"SUMMER", Anime::SeriesSeason::SUMMER}, {"FALL", Anime::SeriesSeason::FALL } }; if (map.find(season) == map.end()) return Anime::SeriesSeason::UNKNOWN; return map.at(season); } Anime::SeriesFormat ToSeriesFormat(std::string format) { const std::unordered_map<std::string, enum Anime::SeriesFormat> map = { {"TV", Anime::SeriesFormat::TV }, {"TV_SHORT", Anime::SeriesFormat::TV_SHORT}, {"MOVIE", Anime::SeriesFormat::MOVIE }, {"SPECIAL", Anime::SeriesFormat::SPECIAL }, {"OVA", Anime::SeriesFormat::OVA }, {"ONA", Anime::SeriesFormat::ONA }, {"MUSIC", Anime::SeriesFormat::MUSIC }, {"MANGA", Anime::SeriesFormat::MANGA }, {"NOVEL", Anime::SeriesFormat::NOVEL }, {"ONE_SHOT", Anime::SeriesFormat::ONE_SHOT} }; if (map.find(format) == map.end()) return Anime::SeriesFormat::UNKNOWN; return map.at(format); } } // namespace AniList } // namespace Translate