2014-05-10 13:08:49 +00:00
|
|
|
#ifndef slic3r_GCode_hpp_
|
|
|
|
#define slic3r_GCode_hpp_
|
|
|
|
|
2015-12-07 23:39:54 +00:00
|
|
|
#include "libslic3r.h"
|
2015-07-01 18:14:05 +00:00
|
|
|
#include "ExPolygon.hpp"
|
2015-07-01 19:47:17 +00:00
|
|
|
#include "GCodeWriter.hpp"
|
|
|
|
#include "Layer.hpp"
|
2015-07-01 18:14:05 +00:00
|
|
|
#include "MotionPlanner.hpp"
|
2015-07-01 19:47:17 +00:00
|
|
|
#include "Point.hpp"
|
|
|
|
#include "PlaceholderParser.hpp"
|
|
|
|
#include "Print.hpp"
|
|
|
|
#include "PrintConfig.hpp"
|
2017-05-03 16:28:22 +00:00
|
|
|
#include "GCode/CoolingBuffer.hpp"
|
|
|
|
#include "GCode/PressureEqualizer.hpp"
|
|
|
|
#include "GCode/SpiralVase.hpp"
|
|
|
|
#include "EdgeGrid.hpp"
|
|
|
|
|
2017-05-03 16:35:55 +00:00
|
|
|
#include <memory>
|
2014-05-10 13:08:49 +00:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
2016-09-12 14:25:15 +00:00
|
|
|
// Forward declarations.
|
2015-07-01 21:00:52 +00:00
|
|
|
class GCode;
|
2014-05-10 13:08:49 +00:00
|
|
|
|
2015-07-01 18:14:05 +00:00
|
|
|
class AvoidCrossingPerimeters {
|
2017-05-03 16:28:22 +00:00
|
|
|
public:
|
2014-05-10 13:08:49 +00:00
|
|
|
|
2015-07-01 18:14:05 +00:00
|
|
|
// this flag triggers the use of the external configuration space
|
|
|
|
bool use_external_mp;
|
|
|
|
bool use_external_mp_once; // just for the next travel move
|
|
|
|
|
|
|
|
// this flag disables avoid_crossing_perimeters just for the next travel move
|
|
|
|
// we enable it by default for the first travel move in print
|
|
|
|
bool disable_once;
|
|
|
|
|
|
|
|
AvoidCrossingPerimeters();
|
|
|
|
~AvoidCrossingPerimeters();
|
|
|
|
void init_external_mp(const ExPolygons &islands);
|
|
|
|
void init_layer_mp(const ExPolygons &islands);
|
2015-07-01 21:00:52 +00:00
|
|
|
Polyline travel_to(GCode &gcodegen, Point point);
|
2015-07-01 18:14:05 +00:00
|
|
|
|
2017-05-03 16:28:22 +00:00
|
|
|
private:
|
2015-07-01 18:14:05 +00:00
|
|
|
MotionPlanner* _external_mp;
|
|
|
|
MotionPlanner* _layer_mp;
|
2014-05-10 13:08:49 +00:00
|
|
|
};
|
|
|
|
|
2015-07-01 19:01:42 +00:00
|
|
|
class OozePrevention {
|
2017-04-26 12:24:31 +00:00
|
|
|
public:
|
2015-07-01 19:01:42 +00:00
|
|
|
bool enable;
|
|
|
|
Points standby_points;
|
|
|
|
|
2017-04-26 12:24:31 +00:00
|
|
|
OozePrevention() : enable(false) {}
|
2015-07-02 13:02:20 +00:00
|
|
|
std::string pre_toolchange(GCode &gcodegen);
|
|
|
|
std::string post_toolchange(GCode &gcodegen);
|
|
|
|
|
2017-04-26 12:24:31 +00:00
|
|
|
private:
|
2015-07-02 13:02:20 +00:00
|
|
|
int _get_temp(GCode &gcodegen);
|
2015-07-01 19:01:42 +00:00
|
|
|
};
|
|
|
|
|
2015-07-01 18:57:16 +00:00
|
|
|
class Wipe {
|
2017-04-26 12:24:31 +00:00
|
|
|
public:
|
2015-07-01 18:57:16 +00:00
|
|
|
bool enable;
|
|
|
|
Polyline path;
|
|
|
|
|
2017-04-26 12:24:31 +00:00
|
|
|
Wipe() : enable(false) {}
|
|
|
|
bool has_path() const { return !this->path.points.empty(); }
|
|
|
|
void reset_path() { this->path = Polyline(); }
|
2015-07-01 21:00:52 +00:00
|
|
|
std::string wipe(GCode &gcodegen, bool toolchange = false);
|
2015-07-01 18:57:16 +00:00
|
|
|
};
|
|
|
|
|
2015-07-01 19:47:17 +00:00
|
|
|
class GCode {
|
2017-05-03 16:28:22 +00:00
|
|
|
public:
|
|
|
|
GCode() :
|
|
|
|
m_enable_loop_clipping(true),
|
|
|
|
m_enable_cooling_markers(false),
|
|
|
|
m_enable_extrusion_role_markers(false),
|
|
|
|
m_enable_analyzer_markers(false),
|
|
|
|
m_layer_count(0),
|
|
|
|
m_layer_index(-1),
|
|
|
|
m_layer(nullptr),
|
|
|
|
m_first_layer(false),
|
|
|
|
m_elapsed_time(0.0),
|
|
|
|
m_volumetric_speed(0),
|
|
|
|
m_last_pos_defined(false),
|
|
|
|
m_last_extrusion_role(erNone),
|
|
|
|
m_brim_done(false),
|
|
|
|
m_second_layer_things_done(false),
|
|
|
|
m_last_obj_copy(Point(std::numeric_limits<coord_t>::max(), std::numeric_limits<coord_t>::max()))
|
|
|
|
{}
|
|
|
|
~GCode() {}
|
|
|
|
|
|
|
|
bool do_export(FILE *file, Print &print);
|
|
|
|
|
|
|
|
// Exported for the helper classes (OozePrevention, Wipe) and for the Perl binding for unit tests.
|
|
|
|
const Pointf& origin() const { return m_origin; }
|
|
|
|
void set_origin(const Pointf &pointf);
|
|
|
|
void set_origin(const coordf_t x, const coordf_t y) { this->set_origin(Pointf(x, y)); }
|
|
|
|
const Point& last_pos() const { return m_last_pos; }
|
|
|
|
Pointf point_to_gcode(const Point &point) const;
|
|
|
|
const FullPrintConfig &config() const { return m_config; }
|
|
|
|
const Layer* layer() const { return m_layer; }
|
|
|
|
GCodeWriter& writer() { return m_writer; }
|
|
|
|
bool enable_cooling_markers() const { return m_enable_cooling_markers; }
|
|
|
|
float get_reset_elapsed_time() { float t = m_elapsed_time; m_elapsed_time = 0.f; return t; }
|
|
|
|
|
|
|
|
// For Perl bindings, to be used exclusively by unit tests.
|
|
|
|
unsigned int layer_count() const { return m_layer_count; }
|
|
|
|
void set_layer_count(unsigned int value) { m_layer_count = value; }
|
|
|
|
float elapsed_time() const { return m_elapsed_time; }
|
|
|
|
void set_elapsed_time(float value) { m_elapsed_time = value; }
|
|
|
|
void apply_print_config(const PrintConfig &print_config);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void process_layer(FILE *file, const Print &print, const Layer &layer, const Points &object_copies);
|
|
|
|
|
|
|
|
void set_last_pos(const Point &pos) { m_last_pos = pos; m_last_pos_defined = true; }
|
|
|
|
bool last_pos_defined() const { return m_last_pos_defined; }
|
|
|
|
void set_extruders(const std::vector<unsigned int> &extruder_ids);
|
|
|
|
std::string preamble();
|
|
|
|
std::string change_layer(const Layer &layer);
|
|
|
|
std::string extrude(const ExtrusionEntity &entity, std::string description = "", double speed = -1);
|
|
|
|
std::string extrude(ExtrusionLoop loop, std::string description = "", double speed = -1);
|
|
|
|
std::string extrude(ExtrusionMultiPath multipath, std::string description = "", double speed = -1);
|
|
|
|
std::string extrude(ExtrusionPath path, std::string description = "", double speed = -1);
|
|
|
|
|
|
|
|
struct ByExtruder
|
|
|
|
{
|
|
|
|
struct ToExtrude {
|
|
|
|
ExtrusionEntityCollection perimeters;
|
|
|
|
ExtrusionEntityCollection infills;
|
|
|
|
};
|
|
|
|
std::vector<ToExtrude> by_region;
|
|
|
|
};
|
|
|
|
std::string extrude_perimeters(const Print &print, const std::vector<ByExtruder::ToExtrude> &by_region);
|
|
|
|
std::string extrude_infill(const Print &print, const std::vector<ByExtruder::ToExtrude> &by_region);
|
|
|
|
std::string extrude_support(const ExtrusionEntityCollection &support_fills, unsigned int extruder_id);
|
|
|
|
|
|
|
|
std::string travel_to(const Point &point, ExtrusionRole role, std::string comment);
|
|
|
|
bool needs_retraction(const Polyline &travel, ExtrusionRole role = erNone);
|
|
|
|
std::string retract(bool toolchange = false);
|
|
|
|
std::string unretract();
|
|
|
|
std::string set_extruder(unsigned int extruder_id);
|
|
|
|
|
2015-07-01 19:47:17 +00:00
|
|
|
/* Origin of print coordinates expressed in unscaled G-code coordinates.
|
|
|
|
This affects the input arguments supplied to the extrude*() and travel_to()
|
|
|
|
methods. */
|
2017-05-03 16:28:22 +00:00
|
|
|
Pointf m_origin;
|
|
|
|
FullPrintConfig m_config;
|
|
|
|
GCodeWriter m_writer;
|
|
|
|
PlaceholderParser m_placeholder_parser;
|
|
|
|
OozePrevention m_ooze_prevention;
|
|
|
|
Wipe m_wipe;
|
|
|
|
AvoidCrossingPerimeters m_avoid_crossing_perimeters;
|
|
|
|
bool m_enable_loop_clipping;
|
2016-09-13 11:30:00 +00:00
|
|
|
// If enabled, the G-code generator will put following comments at the ends
|
|
|
|
// of the G-code lines: _EXTRUDE_SET_SPEED, _WIPE, _BRIDGE_FAN_START, _BRIDGE_FAN_END
|
|
|
|
// Those comments are received and consumed (removed from the G-code) by the CoolingBuffer.pm Perl module.
|
2017-05-03 16:28:22 +00:00
|
|
|
bool m_enable_cooling_markers;
|
2016-09-12 14:25:15 +00:00
|
|
|
// Markers for the Pressure Equalizer to recognize the extrusion type.
|
|
|
|
// The Pressure Equalizer removes the markers from the final G-code.
|
2017-05-03 16:28:22 +00:00
|
|
|
bool m_enable_extrusion_role_markers;
|
2016-09-26 10:52:40 +00:00
|
|
|
// Extended markers for the G-code Analyzer.
|
|
|
|
// The G-code Analyzer will remove these comments from the final G-code.
|
2017-05-03 16:28:22 +00:00
|
|
|
bool m_enable_analyzer_markers;
|
2016-09-26 10:52:40 +00:00
|
|
|
// How many times will change_layer() be called?
|
|
|
|
// change_layer() will update the progress bar.
|
2017-05-03 16:28:22 +00:00
|
|
|
unsigned int m_layer_count;
|
2016-09-26 10:52:40 +00:00
|
|
|
// Progress bar indicator. Increments from -1 up to layer_count.
|
2017-05-03 16:28:22 +00:00
|
|
|
int m_layer_index;
|
2016-09-26 10:52:40 +00:00
|
|
|
// Current layer processed. Insequential printing mode, only a single copy will be printed.
|
|
|
|
// In non-sequential mode, all its copies will be printed.
|
2017-05-03 16:28:22 +00:00
|
|
|
const Layer* m_layer;
|
|
|
|
std::map<const PrintObject*,Point> m_seam_position;
|
2016-09-12 14:25:15 +00:00
|
|
|
// Distance Field structure to
|
2017-05-03 16:28:22 +00:00
|
|
|
std::unique_ptr<EdgeGrid::Grid> m_lower_layer_edge_grid;
|
|
|
|
// this flag triggers first layer speeds
|
|
|
|
bool m_first_layer;
|
|
|
|
// Used by the CoolingBuffer G-code filter to calculate time spent per layer change.
|
2016-09-13 11:30:00 +00:00
|
|
|
// This value is not quite precise. First it only accouts for extrusion moves and travel moves,
|
|
|
|
// it does not account for wipe, retract / unretract moves.
|
|
|
|
// second it does not account for the velocity profiles of the printer.
|
2017-05-03 16:28:22 +00:00
|
|
|
float m_elapsed_time; // seconds
|
|
|
|
double m_volumetric_speed;
|
2016-09-12 14:25:15 +00:00
|
|
|
// Support for the extrusion role markers. Which marker is active?
|
2017-05-03 16:28:22 +00:00
|
|
|
ExtrusionRole m_last_extrusion_role;
|
|
|
|
|
|
|
|
Point m_last_pos;
|
|
|
|
bool m_last_pos_defined;
|
|
|
|
|
|
|
|
std::unique_ptr<CoolingBuffer> m_cooling_buffer;
|
|
|
|
std::unique_ptr<SpiralVase> m_spiral_vase;
|
|
|
|
std::unique_ptr<PressureEqualizer> m_pressure_equalizer;
|
|
|
|
|
|
|
|
// Heights at which the skirt has already been extruded.
|
|
|
|
std::set<coordf_t> m_skirt_done;
|
|
|
|
// Has the brim been extruded already? Brim is being extruded only for the first object of a multi-object print.
|
|
|
|
bool m_brim_done;
|
|
|
|
// Flag indicating whether the nozzle temperature changes from 1st to 2nd layer were performed.
|
|
|
|
bool m_second_layer_things_done;
|
|
|
|
// Index of a last object copy extruded. -1 for not set yet.
|
|
|
|
Point m_last_obj_copy;
|
|
|
|
|
2017-02-15 16:51:46 +00:00
|
|
|
std::string _extrude(const ExtrusionPath &path, std::string description = "", double speed = -1);
|
2017-05-03 16:28:22 +00:00
|
|
|
void _print_first_layer_extruder_temperatures(FILE *file, Print &print, bool wait);
|
|
|
|
|
|
|
|
std::string filter(std::string &&gcode, bool flush);
|
2015-07-01 19:47:17 +00:00
|
|
|
};
|
|
|
|
|
2014-05-10 13:08:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|