feat: 基建支持加工站

This commit is contained in:
MistEO
2023-09-11 22:40:34 +08:00
parent 2ba82640a7
commit 1244ad656b
17 changed files with 140 additions and 8 deletions

View File

@@ -0,0 +1,54 @@
#include "InfrastProcessingTask.h"
#include "Controller/Controller.h"
#include "Utils/Logger.hpp"
#include "Utils/Ranges.hpp"
#include "Task/ProcessTask.h"
bool asst::InfrastProcessingTask::_run()
{
m_all_available_opers.clear();
// 不是自定义的也换不了加工站
if (!m_is_custom) {
return false;
}
// 加工站,啥也造不了,随便写一个
set_product("Placeholder");
if (current_room_config().skip) {
Log.info("skip this room");
return true;
}
swipe_to_the_right_of_main_ui();
enter_facility();
click_bottom_left_tab();
ProcessTask(*this, {"InfrastProcessingEnterOperList"}).run();
for (int i = 0; i <= OperSelectRetryTimes; ++i) {
if (need_exit()) {
return false;
}
if (is_use_custom_opers()) {
bool name_select_ret = swipe_and_select_custom_opers();
if (name_select_ret) {
break;
}
else {
swipe_to_the_left_of_operlist();
continue;
}
}
if (!opers_detect_with_swipe()) {
return false;
}
break;
}
click_confirm_button();
click_return_button();
return true;
}