looper/options.cpp

66 lines
1.9 KiB
C++
Raw Normal View History

#include "thirdparty/toml.hpp"
#include "util.hpp"
#include <filesystem>
2024-05-01 09:07:08 -07:00
#include <sstream>
2024-04-25 11:23:38 -07:00
#ifdef __ANDROID__
#include <SDL.h>
#endif
2024-05-01 09:07:08 -07:00
#include "web_functions.hpp"
using namespace std::filesystem;
namespace Looper::Options {
toml::table *options;
toml::table opts_value;
std::string get_options_path() {
2024-05-01 09:07:08 -07:00
#ifdef __EMSCRIPTEN__
return "config_toml";
#else
path prefs_path(get_prefs_path());
prefs_path /= path("looper");
create_directories(prefs_path);
path config_file = prefs_path / path("config.toml");
return config_file.string();
2024-05-01 09:07:08 -07:00
#endif
}
void load_options() {
std::string config_path = get_options_path();
2024-05-01 09:07:08 -07:00
#ifdef __EMSCRIPTEN__
const char *value = nullptr;
read_storage(config_path.c_str(), &value, nullptr);
if (value != nullptr) {
auto res = toml::parse(value);
opts_value = res;
options = &opts_value;
if (options == nullptr) {
options = new toml::table();
}
} else {
options = new toml::table();
}
#else
if (exists(config_path)) {
auto res = toml::parse_file(config_path);
opts_value = res;
options = &opts_value;
if (options == nullptr) {
options = new toml::table();
}
} else {
options = new toml::table();
}
2024-05-01 09:07:08 -07:00
#endif
}
void save_options() {
2024-05-01 09:07:08 -07:00
#ifdef __EMSCRIPTEN__
std::ostringstream output;
#else
std::ofstream output(get_options_path());
2024-05-01 09:07:08 -07:00
#endif
output << *options;
2024-05-01 09:07:08 -07:00
#ifdef __EMSCRIPTEN__
std::string str = output.str();
write_storage(get_options_path().c_str(), str.c_str(), str.length() + 1);
#else
output.close();
2024-05-01 09:07:08 -07:00
#endif
}
}