mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-18 10:10:45 +08:00
45 lines
1.1 KiB
C++
45 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <unordered_map>
|
|
#include <optional>
|
|
|
|
#include "AsstDef.h"
|
|
|
|
namespace asst {
|
|
|
|
class Configer
|
|
{
|
|
public:
|
|
Configer() = default;
|
|
~Configer() = default;
|
|
|
|
Configer(const Configer& rhs) = default;
|
|
Configer(Configer&& rhs) noexcept = default;
|
|
|
|
bool load(const std::string& filename);
|
|
|
|
bool set_param(const std::string& type, const std::string& param, const std::string& value);
|
|
std::optional<std::string> get_param(const std::string& type, const std::string& param);
|
|
|
|
void clear_exec_times();
|
|
|
|
Configer& operator=(const Configer& rhs) = default;
|
|
Configer& operator=(Configer&& rhs) noexcept = default;
|
|
|
|
constexpr static int DefaultWindowWidth = 1280;
|
|
constexpr static int DefaultWindowHeight = 720;
|
|
constexpr static double DefaultThreshold = 0.9;
|
|
constexpr static double DefaultCacheThreshold = 0.9;
|
|
|
|
std::string m_version;
|
|
Options m_options;
|
|
std::unordered_map<std::string, TaskInfo> m_tasks;
|
|
std::unordered_map<std::string, EmulatorInfo> m_handles;
|
|
std::unordered_map<std::string, std::string> m_ocr_replace;
|
|
|
|
private:
|
|
bool _load(const std::string& filename);
|
|
};
|
|
}
|