view include/core/config.h @ 347:a0aa8c8c4307

dep/anitomy: port to use UCS-4 rather than wide strings rationale: wide strings are not the same on every platform, and might not even be Unicode. (while they usually are, its possible that they are not) I was *going* to change StringToInt to use a string stream, but outputting to an integer doesn't seem to work at all with UCS-4, even though it ought to, so I just rolled my own that uses the arabic digits only.
author Paper <paper@paper.us.eu.org>
date Sun, 23 Jun 2024 10:32:09 -0400
parents 3b355fa948c7
children
line wrap: on
line source

#ifndef MINORI_CORE_CONFIG_H_
#define MINORI_CORE_CONFIG_H_

#include "core/anime.h"
#include "core/time.h"
#include "gui/locale.h"
#include "gui/theme.h"

#include "animone/player.h"

#include <set>
#include <string>
#include <utility>
#include <vector>

struct MediaPlayer {
	bool enabled = true;
	animone::Player player;
};

class Config {
public:
	int Load();
	int Save();

	Anime::Service service;
	Theme::ThemeManager theme;
	Locale::Locale locale;

	struct {
		Anime::TitleLanguage language;
		Anime::ScoreFormat score_format;
		bool display_aired_episodes;
		bool display_available_episodes;
		bool highlight_anime_if_available;
		bool highlighted_anime_above_others;
	} anime_list;

	struct {
		struct {
			std::string auth_token;
			int user_id;
		} anilist;
		struct {
			std::string access_token;
			Time::Timestamp access_token_expiration; /* Unix time */
			std::string refresh_token;
			std::string user_id;
		} kitsu;
	} auth;

	struct {
		bool detect_media_players;
		std::vector<MediaPlayer> players;
	} recognition;

	struct {
		std::string feed_link;
	} torrents;

	struct {
		bool real_time_monitor;
		std::set<std::string> paths;
	} library;
};

#if (defined(WIN32) || defined(MACOSX))
constexpr std::string_view CONFIG_DIR = "Minori";
#else
constexpr std::string_view CONFIG_DIR = "minori";
#endif

constexpr std::string_view CONFIG_NAME = "config.toml";

#endif // MINORI_CORE_CONFIG_H_