Checkpoint/3ds/include/configuration.hpp

72 lines
2.3 KiB
C++
Raw Normal View History

2018-05-26 20:25:48 +00:00
/*
* This file is part of Checkpoint
2019-03-07 20:15:24 +00:00
* Copyright (C) 2017-2019 Bernardo Giordano, FlagBrew
2018-05-26 20:25:48 +00:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Additional Terms 7.b and 7.c of GPLv3 apply to this file:
* * Requiring preservation of specified reasonable legal notices or
* author attributions in that material or in the Appropriate Legal
* Notices displayed by works containing it.
* * Prohibiting misrepresentation of the origin of that material,
* or requiring that modified versions of such material be marked in
* reasonable ways as different from the original version.
*/
#ifndef CONFIGHANDLER_HPP
#define CONFIGHANDLER_HPP
2018-05-28 18:24:11 +00:00
#include <unordered_map>
2018-05-26 20:25:48 +00:00
#include <unordered_set>
#include <vector>
#include "json.hpp"
#include "io.hpp"
#include "util.hpp"
2018-09-16 14:34:12 +00:00
#define CONFIG_VERSION 2
2018-05-26 20:25:48 +00:00
class Configuration
{
public:
static Configuration& getInstance(void)
{
static Configuration mConfiguration;
return mConfiguration;
}
bool filter(u64 id);
2018-09-16 14:34:12 +00:00
bool favorite(u64 id);
2018-05-27 20:59:33 +00:00
bool nandSaves(void);
2018-05-28 18:24:11 +00:00
std::vector<std::u16string> additionalSaveFolders(u64 id);
std::vector<std::u16string> additionalExtdataFolders(u64 id);
2018-05-26 20:25:48 +00:00
private:
Configuration(void);
~Configuration(void) { };
2018-05-28 13:36:27 +00:00
void store(void);
2019-04-24 22:13:46 +00:00
nlohmann::json loadJson(const std::string& path);
void storeJson(nlohmann::json& json, const std::string& path);
2018-05-28 13:36:27 +00:00
2018-05-26 20:25:48 +00:00
Configuration(Configuration const&) = delete;
void operator=(Configuration const&) = delete;
nlohmann::json mJson;
2018-09-16 14:34:12 +00:00
std::unordered_set<u64> mFilterIds, mFavoriteIds;
2018-05-28 18:24:11 +00:00
std::unordered_map<u64, std::vector<std::u16string>> mAdditionalSaveFolders, mAdditionalExtdataFolders;
2018-05-27 20:59:33 +00:00
bool mNandSaves;
2018-05-26 20:25:48 +00:00
std::string BASEPATH = "/3ds/Checkpoint/config.json";
};
2018-05-27 20:59:33 +00:00
#endif