mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-06-23 04:01:49 +00:00
JIRA: [STUDIO-13609] Change-Id: I591de7033360b9570600006cfbce2148a8d031d5 (cherry picked from commit e9c774be8f4c89b8dafa14ef56913612fb68bd0c)
54 lines
2.1 KiB
C++
54 lines
2.1 KiB
C++
#include <nlohmann/json.hpp>
|
|
|
|
#include "DevConfig.h"
|
|
#include "DevUtil.h"
|
|
|
|
using namespace nlohmann;
|
|
|
|
namespace Slic3r
|
|
{
|
|
|
|
void DevConfig::ParseConfig(const json& print_json)
|
|
{
|
|
ParseChamberConfig(print_json);
|
|
ParsePrintOptionsConfig(print_json);
|
|
ParseCalibrationConfig(print_json);
|
|
|
|
}
|
|
|
|
void DevConfig::ParseChamberConfig(const json& print_json)
|
|
{
|
|
DevJsonValParser::ParseVal(print_json, "support_chamber_temp_edit", m_support_chamber_edit);
|
|
if (m_support_chamber_edit)
|
|
{
|
|
if (print_json.contains("support_chamber_temp_edit_range"))
|
|
{
|
|
const auto &support_champer_range = print_json["support_chamber_temp_edit_range"];
|
|
if (support_champer_range.is_array() && support_champer_range.size() > 1) {
|
|
m_chamber_temp_edit_min = support_champer_range[0];
|
|
m_chamber_temp_edit_max = support_champer_range[1];
|
|
}
|
|
}
|
|
|
|
DevJsonValParser::ParseVal(print_json, "support_chamber_temp_switch_heating", m_chamber_temp_switch_heat);
|
|
}
|
|
}
|
|
|
|
void DevConfig::ParsePrintOptionsConfig(const json& print_json)
|
|
{
|
|
DevJsonValParser::ParseVal(print_json, "support_first_layer_inspect", m_support_first_layer_inspect);
|
|
DevJsonValParser::ParseVal(print_json, "support_save_remote_print_file_to_storage", m_support_save_remote_print_file_to_storage);
|
|
DevJsonValParser::ParseVal(print_json, "support_ai_monitoring", m_support_ai_monitor);
|
|
DevJsonValParser::ParseVal(print_json, "support_print_without_sd", m_support_print_without_sd);
|
|
DevJsonValParser::ParseVal(print_json, "support_print_all", m_support_print_all);
|
|
}
|
|
|
|
void DevConfig::ParseCalibrationConfig(const json& print_json)
|
|
{
|
|
DevJsonValParser::ParseVal(print_json, "support_lidar_calibration", m_support_calibration_lidar);
|
|
DevJsonValParser::ParseVal(print_json, "support_nozzle_offset_calibration", m_support_calibration_nozzle_offset);
|
|
DevJsonValParser::ParseVal(print_json, "support_high_tempbed_calibration", m_support_calibration_high_temp_bed);
|
|
DevJsonValParser::ParseVal(print_json, "support_pa_calibration_auto", m_support_calibration_pa_flow_auto);
|
|
}
|
|
|
|
} |