2017-04-26 12:24:31 +00:00
|
|
|
#ifndef slic3r_GCodeTimeEstimator_hpp_
|
|
|
|
#define slic3r_GCodeTimeEstimator_hpp_
|
|
|
|
|
|
|
|
#include "libslic3r.h"
|
|
|
|
#include "GCodeReader.hpp"
|
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
class GCodeTimeEstimator
|
2017-12-06 13:12:10 +00:00
|
|
|
{
|
2018-01-05 08:46:09 +00:00
|
|
|
public:
|
|
|
|
enum EUnits : unsigned char
|
|
|
|
{
|
|
|
|
Millimeters,
|
|
|
|
Inches
|
|
|
|
};
|
|
|
|
|
|
|
|
enum EAxis : unsigned char
|
|
|
|
{
|
|
|
|
X,
|
|
|
|
Y,
|
|
|
|
Z,
|
|
|
|
E,
|
|
|
|
Num_Axis
|
|
|
|
};
|
|
|
|
|
|
|
|
enum EDialect : unsigned char
|
|
|
|
{
|
|
|
|
Unknown,
|
|
|
|
Marlin,
|
|
|
|
Repetier,
|
|
|
|
Smoothieware,
|
|
|
|
RepRapFirmware,
|
|
|
|
Teacup,
|
|
|
|
Num_Dialects
|
|
|
|
};
|
|
|
|
|
|
|
|
enum EPositioningType : unsigned char
|
|
|
|
{
|
|
|
|
Absolute,
|
|
|
|
Relative
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
struct Axis
|
|
|
|
{
|
|
|
|
float position; // mm
|
|
|
|
float max_feedrate; // mm/s
|
|
|
|
float max_acceleration; // mm/s^2
|
|
|
|
float max_jerk; // mm/s
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Feedrates
|
|
|
|
{
|
|
|
|
float feedrate; // mm/s
|
|
|
|
float axis_feedrate[Num_Axis]; // mm/s
|
|
|
|
float abs_axis_feedrate[Num_Axis]; // mm/s
|
|
|
|
float safe_feedrate; // mm/s
|
|
|
|
|
|
|
|
void reset();
|
|
|
|
};
|
|
|
|
|
|
|
|
struct State
|
|
|
|
{
|
|
|
|
EDialect dialect;
|
|
|
|
EUnits units;
|
|
|
|
EPositioningType positioning_xyz_type;
|
|
|
|
EPositioningType positioning_e_type;
|
|
|
|
Axis axis[Num_Axis];
|
|
|
|
float feedrate; // mm/s
|
|
|
|
float acceleration; // mm/s^2
|
|
|
|
float retract_acceleration; // mm/s^2
|
|
|
|
float additional_time; // s
|
|
|
|
float minimum_feedrate; // mm/s
|
|
|
|
float minimum_travel_feedrate; // mm/s
|
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
|
|
|
struct Block
|
|
|
|
{
|
|
|
|
struct FeedrateProfile
|
|
|
|
{
|
|
|
|
float entry; // mm/s
|
|
|
|
float cruise; // mm/s
|
|
|
|
float exit; // mm/s
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Trapezoid
|
|
|
|
{
|
|
|
|
float distance; // mm
|
|
|
|
float accelerate_until; // mm
|
|
|
|
float decelerate_after; // mm
|
|
|
|
FeedrateProfile feedrate;
|
|
|
|
|
|
|
|
float acceleration_time(float acceleration) const;
|
|
|
|
float cruise_time() const;
|
|
|
|
float deceleration_time(float acceleration) const;
|
|
|
|
float cruise_distance() const;
|
|
|
|
|
|
|
|
// This function gives the time needed to accelerate from an initial speed to reach a final distance.
|
|
|
|
static float acceleration_time_from_distance(float initial_feedrate, float distance, float acceleration);
|
|
|
|
|
|
|
|
// This function gives the final speed while accelerating at the given constant acceleration from the given initial speed along the given distance.
|
|
|
|
static float speed_from_distance(float initial_feedrate, float distance, float acceleration);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Flags
|
|
|
|
{
|
|
|
|
bool recalculate;
|
|
|
|
bool nominal_length;
|
|
|
|
};
|
|
|
|
|
|
|
|
Flags flags;
|
|
|
|
|
|
|
|
float delta_pos[Num_Axis]; // mm
|
|
|
|
float acceleration; // mm/s^2
|
|
|
|
float max_entry_speed; // mm/s
|
|
|
|
float safe_feedrate; // mm/s
|
|
|
|
|
|
|
|
FeedrateProfile feedrate;
|
|
|
|
Trapezoid trapezoid;
|
|
|
|
|
|
|
|
// Returns the length of the move covered by this block, in mm
|
|
|
|
float move_length() const;
|
|
|
|
|
|
|
|
// Returns true if this block is a retract/unretract move only
|
|
|
|
float is_extruder_only_move() const;
|
|
|
|
|
|
|
|
// Returns true if this block is a move with no extrusion
|
|
|
|
float is_travel_move() const;
|
|
|
|
|
|
|
|
// Returns the time spent accelerating toward cruise speed, in seconds
|
|
|
|
float acceleration_time() const;
|
|
|
|
|
|
|
|
// Returns the time spent at cruise speed, in seconds
|
|
|
|
float cruise_time() const;
|
|
|
|
|
|
|
|
// Returns the time spent decelerating from cruise speed, in seconds
|
|
|
|
float deceleration_time() const;
|
|
|
|
|
|
|
|
// Returns the distance covered at cruise speed, in mm
|
|
|
|
float cruise_distance() const;
|
2017-12-06 13:12:10 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Calculates this block's trapezoid
|
|
|
|
void calculate_trapezoid();
|
2017-12-06 13:12:10 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Calculates the maximum allowable speed at this point when you must be able to reach target_velocity using the
|
|
|
|
// acceleration within the allotted distance.
|
|
|
|
static float max_allowable_speed(float acceleration, float target_velocity, float distance);
|
2017-12-06 13:12:10 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Calculates the distance (not time) it takes to accelerate from initial_rate to target_rate using the given acceleration:
|
|
|
|
static float estimate_acceleration_distance(float initial_rate, float target_rate, float acceleration);
|
2017-12-06 13:12:10 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// This function gives you the point at which you must start braking (at the rate of -acceleration) if
|
|
|
|
// you started at speed initial_rate and accelerated until this point and want to end at the final_rate after
|
|
|
|
// a total travel of distance. This can be used to compute the intersection point between acceleration and
|
|
|
|
// deceleration in the cases where the trapezoid has no plateau (i.e. never reaches maximum speed)
|
|
|
|
static float intersection_distance(float initial_rate, float final_rate, float acceleration, float distance);
|
|
|
|
};
|
2017-12-06 13:12:10 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
typedef std::vector<Block> BlocksList;
|
2017-12-08 09:50:36 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
private:
|
|
|
|
GCodeReader _parser;
|
|
|
|
State _state;
|
|
|
|
Feedrates _curr;
|
|
|
|
Feedrates _prev;
|
|
|
|
BlocksList _blocks;
|
|
|
|
float _time; // s
|
2017-12-08 09:50:36 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
public:
|
|
|
|
GCodeTimeEstimator();
|
2017-12-08 09:50:36 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Calculates the time estimate from the given gcode in string format
|
|
|
|
void calculate_time_from_text(const std::string& gcode);
|
2017-12-08 09:50:36 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Calculates the time estimate from the gcode contained in the file with the given filename
|
|
|
|
void calculate_time_from_file(const std::string& file);
|
2017-12-08 09:50:36 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Calculates the time estimate from the gcode contained in given list of gcode lines
|
|
|
|
void calculate_time_from_lines(const std::vector<std::string>& gcode_lines);
|
2017-12-08 09:50:36 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Adds the given gcode line
|
|
|
|
void add_gcode_line(const std::string& gcode_line);
|
2017-12-06 13:12:10 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
void add_gcode_block(const char *ptr);
|
|
|
|
void add_gcode_block(const std::string &str) { this->add_gcode_block(str.c_str()); }
|
2017-12-08 09:50:36 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Calculates the time estimate from the gcode lines added using add_gcode_line()
|
|
|
|
void calculate_time();
|
2017-12-08 09:50:36 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Set current position on the given axis with the given value
|
|
|
|
void set_axis_position(EAxis axis, float position);
|
2017-12-06 13:12:10 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
void set_axis_max_feedrate(EAxis axis, float feedrate_mm_sec);
|
|
|
|
void set_axis_max_acceleration(EAxis axis, float acceleration);
|
|
|
|
void set_axis_max_jerk(EAxis axis, float jerk);
|
2017-12-06 13:12:10 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Returns current position on the given axis
|
|
|
|
float get_axis_position(EAxis axis) const;
|
2017-12-06 13:12:10 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
float get_axis_max_feedrate(EAxis axis) const;
|
|
|
|
float get_axis_max_acceleration(EAxis axis) const;
|
|
|
|
float get_axis_max_jerk(EAxis axis) const;
|
2017-12-12 12:44:52 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
void set_feedrate(float feedrate_mm_sec);
|
|
|
|
float get_feedrate() const;
|
2017-12-12 12:44:52 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
void set_acceleration(float acceleration_mm_sec2);
|
|
|
|
float get_acceleration() const;
|
2017-12-08 09:50:36 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
void set_retract_acceleration(float acceleration_mm_sec2);
|
|
|
|
float get_retract_acceleration() const;
|
2017-12-08 09:50:36 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
void set_minimum_feedrate(float feedrate_mm_sec);
|
|
|
|
float get_minimum_feedrate() const;
|
2017-12-08 09:50:36 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
void set_minimum_travel_feedrate(float feedrate_mm_sec);
|
|
|
|
float get_minimum_travel_feedrate() const;
|
2017-12-08 09:50:36 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
void set_dialect(EDialect dialect);
|
|
|
|
EDialect get_dialect() const;
|
2017-12-06 13:12:10 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
void set_units(EUnits units);
|
|
|
|
EUnits get_units() const;
|
2017-12-06 13:12:10 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
void set_positioning_xyz_type(EPositioningType type);
|
|
|
|
EPositioningType get_positioning_xyz_type() const;
|
2017-12-06 13:12:10 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
void set_positioning_e_type(EPositioningType type);
|
|
|
|
EPositioningType get_positioning_e_type() const;
|
2017-12-06 13:12:10 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
void add_additional_time(float timeSec);
|
|
|
|
void set_additional_time(float timeSec);
|
|
|
|
float get_additional_time() const;
|
2017-12-06 13:12:10 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
void set_default();
|
2017-12-06 13:12:10 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Call this method before to start adding lines using add_gcode_line() when reusing an instance of GCodeTimeEstimator
|
|
|
|
void reset();
|
2017-12-14 08:18:28 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Returns the estimated time, in seconds
|
|
|
|
float get_time() const;
|
2017-12-11 08:06:29 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Returns the estimated time, in format HHh MMm SSs
|
|
|
|
std::string get_time_hms() const;
|
2018-01-03 16:29:49 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
private:
|
|
|
|
void _reset();
|
2017-12-11 08:06:29 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Calculates the time estimate
|
|
|
|
void _calculate_time();
|
2017-12-11 13:03:29 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Processes the given gcode line
|
|
|
|
void _process_gcode_line(GCodeReader&, const GCodeReader::GCodeLine& line);
|
2017-12-06 13:12:10 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Move
|
|
|
|
void _processG1(const GCodeReader::GCodeLine& line);
|
2017-12-11 13:03:29 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Dwell
|
|
|
|
void _processG4(const GCodeReader::GCodeLine& line);
|
2017-12-06 13:12:10 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Set Units to Inches
|
|
|
|
void _processG20(const GCodeReader::GCodeLine& line);
|
2017-12-06 13:12:10 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Set Units to Millimeters
|
|
|
|
void _processG21(const GCodeReader::GCodeLine& line);
|
2017-12-06 13:12:10 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Move to Origin (Home)
|
|
|
|
void _processG28(const GCodeReader::GCodeLine& line);
|
2017-12-12 12:44:52 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Set to Absolute Positioning
|
|
|
|
void _processG90(const GCodeReader::GCodeLine& line);
|
2017-12-08 09:50:36 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Set to Relative Positioning
|
|
|
|
void _processG91(const GCodeReader::GCodeLine& line);
|
2017-12-12 12:44:52 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Set Position
|
|
|
|
void _processG92(const GCodeReader::GCodeLine& line);
|
2017-12-06 13:12:10 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Sleep or Conditional stop
|
|
|
|
void _processM1(const GCodeReader::GCodeLine& line);
|
2017-12-06 13:12:10 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Set extruder to absolute mode
|
|
|
|
void _processM82(const GCodeReader::GCodeLine& line);
|
2017-12-11 13:03:29 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Set extruder to relative mode
|
|
|
|
void _processM83(const GCodeReader::GCodeLine& line);
|
2017-12-06 13:12:10 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Set Extruder Temperature and Wait
|
|
|
|
void _processM109(const GCodeReader::GCodeLine& line);
|
2017-12-06 13:12:10 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Set max printing acceleration
|
|
|
|
void _processM201(const GCodeReader::GCodeLine& line);
|
2017-12-06 13:12:10 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Set maximum feedrate
|
|
|
|
void _processM203(const GCodeReader::GCodeLine& line);
|
2017-12-11 08:06:29 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Set default acceleration
|
|
|
|
void _processM204(const GCodeReader::GCodeLine& line);
|
2017-12-06 13:12:10 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Advanced settings
|
|
|
|
void _processM205(const GCodeReader::GCodeLine& line);
|
2017-12-06 13:12:10 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Set allowable instantaneous speed change
|
|
|
|
void _processM566(const GCodeReader::GCodeLine& line);
|
2017-12-06 13:12:10 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
// Simulates firmware st_synchronize() call
|
|
|
|
void _simulate_st_synchronize();
|
2017-12-08 09:50:36 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
void _forward_pass();
|
|
|
|
void _reverse_pass();
|
2017-12-06 13:12:10 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
void _planner_forward_pass_kernel(Block& prev, Block& curr);
|
|
|
|
void _planner_reverse_pass_kernel(Block& curr, Block& next);
|
2017-12-06 13:12:10 +00:00
|
|
|
|
2018-01-05 08:46:09 +00:00
|
|
|
void _recalculate_trapezoids();
|
|
|
|
};
|
2017-04-26 12:24:31 +00:00
|
|
|
|
|
|
|
} /* namespace Slic3r */
|
|
|
|
|
|
|
|
#endif /* slic3r_GCodeTimeEstimator_hpp_ */
|