chore: 增加TODO

This commit is contained in:
broken_paint
2024-01-30 10:35:03 +08:00
parent b17fcce49f
commit 6648498d7e
2 changed files with 6 additions and 3 deletions

View File

@@ -71,7 +71,9 @@ bool asst::InfrastTrainingTask::analyze_status()
// "]"前为干员名,"]"后为技能名
m_operator_name = raw_str.substr(1, separation_pos - 1);
m_skill_name = raw_str.substr(separation_pos + 1, raw_str.length() - separation_pos + 1);
m_operator_role = BattleData.get_role(m_operator_name);
// TODO: 根据角色职业增加换班功能
// m_operator_role = BattleData.get_role(m_operator_name);
if (!level_analyze(image)) {
Log.error(__FUNCTION__, "analyze level failed");

View File

@@ -1,6 +1,7 @@
#pragma once
#include "InfrastProductionTask.h"
#include "Config/Miscellaneous/BattleDataConfig.h"
// #include "Config/Miscellaneous/BattleDataConfig.h"
// TODO: 根据角色职业增加换班功能
namespace asst
{
@@ -25,7 +26,7 @@ namespace asst
int m_level;
std::string m_operator_name;
std::string m_skill_name;
asst::battle::Role m_operator_role;
// asst::battle::Role m_operator_role;
bool m_continue_training = false;
};