Files
MaaAssistantArknights/src/MaaCore/Task/Reclamation/ReclamationConfig.cpp
2024-09-01 20:23:11 +10:00

29 lines
1.1 KiB
C++

#include "ReclamationConfig.h"
#include "Utils/Logger.hpp"
bool asst::ReclamationConfig::verify_and_load_params(const json::value& params)
{
LogTraceFunction;
// ———————— 通用参数 ——————————————————————————————————————————————————————————————————
// Reclamation Algorithm Theme
const std::string theme = params.get("theme", std::string(ReclamationTheme::Tales));
if (!is_valid_theme(theme)) {
Log.error(__FUNCTION__, "| Unknown Reclamation Algorithm theme", theme);
return false;
}
m_theme = theme;
// Reclamation Algorithm Mode
const int modeInt = params.get("mode", static_cast<int>(ReclamationMode::ProsperityInSave));
const auto mode = static_cast<ReclamationMode>(modeInt);
if (!is_valid_mode(mode, theme)) {
Log.error(__FUNCTION__, "| Reclamation Algorithm mode", modeInt, "is incompatible with theme", theme);
return false;
}
m_mode = mode;
return true;
}