Fixed build when tech ENABLE_GCODE_VIEWER is disabled + fixed perl code
This commit is contained in:
parent
89dafeac95
commit
27b9f85607
@ -1950,7 +1950,7 @@ std::string TickCodeInfo::get_color_for_tick(TickCode tick, const std::string& c
|
|||||||
if (mode == t_mode::SingleExtruder && code == ColorChangeCode && m_use_default_colors)
|
if (mode == t_mode::SingleExtruder && code == ColorChangeCode && m_use_default_colors)
|
||||||
{
|
{
|
||||||
#if ENABLE_GCODE_VIEWER
|
#if ENABLE_GCODE_VIEWER
|
||||||
const std::vector<std::string>& colors = ColorPrintColors::get();
|
const std::vector<std::string>& colors = Slic3r::ColorPrintColors::get();
|
||||||
#else
|
#else
|
||||||
const std::vector<std::string>& colors = GCodePreviewData::ColorPrintColors();
|
const std::vector<std::string>& colors = GCodePreviewData::ColorPrintColors();
|
||||||
#endif // ENABLE_GCODE_VIEWER
|
#endif // ENABLE_GCODE_VIEWER
|
||||||
|
@ -640,7 +640,6 @@ public:
|
|||||||
void set_toolpaths_z_range(const std::array<double, 2>& range);
|
void set_toolpaths_z_range(const std::array<double, 2>& range);
|
||||||
#else
|
#else
|
||||||
std::vector<double> get_current_print_zs(bool active_only) const;
|
std::vector<double> get_current_print_zs(bool active_only) const;
|
||||||
void set_toolpaths_range(double low, double high);
|
|
||||||
#endif // ENABLE_GCODE_VIEWER
|
#endif // ENABLE_GCODE_VIEWER
|
||||||
void set_toolpaths_range(double low, double high);
|
void set_toolpaths_range(double low, double high);
|
||||||
|
|
||||||
|
@ -15,7 +15,9 @@ REGISTER_CLASS(Filler, "Filler");
|
|||||||
REGISTER_CLASS(Flow, "Flow");
|
REGISTER_CLASS(Flow, "Flow");
|
||||||
REGISTER_CLASS(CoolingBuffer, "GCode::CoolingBuffer");
|
REGISTER_CLASS(CoolingBuffer, "GCode::CoolingBuffer");
|
||||||
REGISTER_CLASS(GCode, "GCode");
|
REGISTER_CLASS(GCode, "GCode");
|
||||||
REGISTER_CLASS(GCodePreviewData, "GCode::PreviewData");
|
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||||
|
//REGISTER_CLASS(GCodePreviewData, "GCode::PreviewData");
|
||||||
|
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||||
// REGISTER_CLASS(GCodeSender, "GCode::Sender");
|
// REGISTER_CLASS(GCodeSender, "GCode::Sender");
|
||||||
REGISTER_CLASS(Layer, "Layer");
|
REGISTER_CLASS(Layer, "Layer");
|
||||||
REGISTER_CLASS(SupportLayer, "Layer::Support");
|
REGISTER_CLASS(SupportLayer, "Layer::Support");
|
||||||
|
@ -26,14 +26,16 @@
|
|||||||
croak("%s\n", e.what());
|
croak("%s\n", e.what());
|
||||||
}
|
}
|
||||||
%};
|
%};
|
||||||
void do_export_w_preview(Print *print, const char *path, GCodePreviewData *preview_data)
|
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||||
%code%{
|
// void do_export_w_preview(Print *print, const char *path, GCodePreviewData *preview_data)
|
||||||
try {
|
// %code%{
|
||||||
THIS->do_export(print, path, preview_data);
|
// try {
|
||||||
} catch (std::exception& e) {
|
// THIS->do_export(print, path, preview_data);
|
||||||
croak("%s\n", e.what());
|
// } catch (std::exception& e) {
|
||||||
}
|
// croak("%s\n", e.what());
|
||||||
%};
|
// }
|
||||||
|
// %};
|
||||||
|
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||||
|
|
||||||
Ref<Vec2d> origin()
|
Ref<Vec2d> origin()
|
||||||
%code{% RETVAL = &(THIS->origin()); %};
|
%code{% RETVAL = &(THIS->origin()); %};
|
||||||
@ -60,26 +62,28 @@
|
|||||||
%code{% RETVAL = const_cast<StaticPrintConfig*>(static_cast<const StaticPrintConfig*>(static_cast<const PrintObjectConfig*>(&THIS->config()))); %};
|
%code{% RETVAL = const_cast<StaticPrintConfig*>(static_cast<const StaticPrintConfig*>(static_cast<const PrintObjectConfig*>(&THIS->config()))); %};
|
||||||
};
|
};
|
||||||
|
|
||||||
%name{Slic3r::GCode::PreviewData} class GCodePreviewData {
|
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||||
GCodePreviewData();
|
//%name{Slic3r::GCode::PreviewData} class GCodePreviewData {
|
||||||
~GCodePreviewData();
|
// GCodePreviewData();
|
||||||
void reset();
|
// ~GCodePreviewData();
|
||||||
bool empty() const;
|
// void reset();
|
||||||
void set_type(int type)
|
// bool empty() const;
|
||||||
%code%{
|
// void set_type(int type)
|
||||||
if ((0 <= type) && (type < GCodePreviewData::Extrusion::Num_View_Types))
|
// %code%{
|
||||||
THIS->extrusion.view_type = (GCodePreviewData::Extrusion::EViewType)type;
|
// if ((0 <= type) && (type < GCodePreviewData::Extrusion::Num_View_Types))
|
||||||
%};
|
// THIS->extrusion.view_type = (GCodePreviewData::Extrusion::EViewType)type;
|
||||||
int type() %code%{ RETVAL = (int)THIS->extrusion.view_type; %};
|
// %};
|
||||||
void set_extrusion_flags(int flags)
|
// int type() %code%{ RETVAL = (int)THIS->extrusion.view_type; %};
|
||||||
%code%{ THIS->extrusion.role_flags = (unsigned int)flags; %};
|
// void set_extrusion_flags(int flags)
|
||||||
void set_travel_visible(bool visible)
|
// %code%{ THIS->extrusion.role_flags = (unsigned int)flags; %};
|
||||||
%code%{ THIS->travel.is_visible = visible; %};
|
// void set_travel_visible(bool visible)
|
||||||
void set_retractions_visible(bool visible)
|
// %code%{ THIS->travel.is_visible = visible; %};
|
||||||
%code%{ THIS->retraction.is_visible = visible; %};
|
// void set_retractions_visible(bool visible)
|
||||||
void set_unretractions_visible(bool visible)
|
// %code%{ THIS->retraction.is_visible = visible; %};
|
||||||
%code%{ THIS->unretraction.is_visible = visible; %};
|
// void set_unretractions_visible(bool visible)
|
||||||
void set_shells_visible(bool visible)
|
// %code%{ THIS->unretraction.is_visible = visible; %};
|
||||||
%code%{ THIS->shell.is_visible = visible; %};
|
// void set_shells_visible(bool visible)
|
||||||
void set_extrusion_paths_colors(std::vector<std::string> colors);
|
// %code%{ THIS->shell.is_visible = visible; %};
|
||||||
};
|
// void set_extrusion_paths_colors(std::vector<std::string> colors);
|
||||||
|
//};
|
||||||
|
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||||
|
@ -164,7 +164,7 @@ _constant()
|
|||||||
|
|
||||||
void export_gcode(char *path_template) %code%{
|
void export_gcode(char *path_template) %code%{
|
||||||
try {
|
try {
|
||||||
THIS->export_gcode(path_template, nullptr, nullptr);
|
THIS->export_gcode(path_template, nullptr);
|
||||||
} catch (std::exception& e) {
|
} catch (std::exception& e) {
|
||||||
croak("%s\n", e.what());
|
croak("%s\n", e.what());
|
||||||
}
|
}
|
||||||
|
@ -191,9 +191,11 @@ GCode* O_OBJECT_SLIC3R
|
|||||||
Ref<GCode> O_OBJECT_SLIC3R_T
|
Ref<GCode> O_OBJECT_SLIC3R_T
|
||||||
Clone<GCode> O_OBJECT_SLIC3R_T
|
Clone<GCode> O_OBJECT_SLIC3R_T
|
||||||
|
|
||||||
GCodePreviewData* O_OBJECT_SLIC3R
|
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||||
Ref<GCodePreviewData> O_OBJECT_SLIC3R_T
|
//GCodePreviewData* O_OBJECT_SLIC3R
|
||||||
Clone<GCodePreviewData> O_OBJECT_SLIC3R_T
|
//Ref<GCodePreviewData> O_OBJECT_SLIC3R_T
|
||||||
|
//Clone<GCodePreviewData> O_OBJECT_SLIC3R_T
|
||||||
|
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||||
|
|
||||||
MotionPlanner* O_OBJECT_SLIC3R
|
MotionPlanner* O_OBJECT_SLIC3R
|
||||||
Ref<MotionPlanner> O_OBJECT_SLIC3R_T
|
Ref<MotionPlanner> O_OBJECT_SLIC3R_T
|
||||||
|
@ -155,9 +155,11 @@
|
|||||||
%typemap{Ref<GCode>}{simple};
|
%typemap{Ref<GCode>}{simple};
|
||||||
%typemap{Clone<GCode>}{simple};
|
%typemap{Clone<GCode>}{simple};
|
||||||
|
|
||||||
%typemap{GCodePreviewData*};
|
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||||
%typemap{Ref<GCodePreviewData>}{simple};
|
//%typemap{GCodePreviewData*};
|
||||||
%typemap{Clone<GCodePreviewData>}{simple};
|
//%typemap{Ref<GCodePreviewData>}{simple};
|
||||||
|
//%typemap{Clone<GCodePreviewData>}{simple};
|
||||||
|
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||||
|
|
||||||
%typemap{Points};
|
%typemap{Points};
|
||||||
%typemap{Pointfs};
|
%typemap{Pointfs};
|
||||||
|
Loading…
Reference in New Issue
Block a user