mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-18 02:10:21 +08:00
28 lines
960 B
C++
28 lines
960 B
C++
#include "ItemConfiger.h"
|
|
|
|
#include "AsstRanges.hpp"
|
|
#include <meojson/json.hpp>
|
|
|
|
#include "Logger.hpp"
|
|
|
|
bool asst::ItemConfiger::parse(const json::value& json)
|
|
{
|
|
std::unordered_map<std::string, int> material_sortid;
|
|
for (const auto& [id, item_json] : json.as_object()) {
|
|
std::string name = item_json.at("name").as_string();
|
|
m_item_name.emplace(id, std::move(name));
|
|
m_all_item_id.emplace(id);
|
|
if (item_json.at("classifyType").as_string() == "MATERIAL") {
|
|
material_sortid.emplace(id, item_json.at("sortId").as_integer());
|
|
}
|
|
}
|
|
|
|
m_ordered_material_item_id.clear();
|
|
m_ordered_material_item_id.reserve(material_sortid.size());
|
|
ranges::copy(material_sortid | views::keys, std::back_inserter(m_ordered_material_item_id));
|
|
ranges::sort(m_ordered_material_item_id, std::less {},
|
|
[&](const std::string& name) -> int { return material_sortid[name]; });
|
|
|
|
return true;
|
|
}
|