PrusaSlicer-NonPlainar/xs/src/libslic3r/GCode/CoolingBuffer.cpp

157 lines
6.3 KiB
C++
Raw Normal View History

#include "../GCode.hpp"
2016-12-21 22:09:58 +00:00
#include "CoolingBuffer.hpp"
#include <boost/algorithm/string/predicate.hpp>
#include <boost/algorithm/string/replace.hpp>
#include <iostream>
namespace Slic3r {
CoolingBuffer::CoolingBuffer(GCode &gcodegen) :
m_gcodegen(gcodegen), m_layer_id(0),
m_elapsed_time(new ElapsedTime)
{
}
CoolingBuffer::~CoolingBuffer()
{
delete m_elapsed_time;
}
std::string CoolingBuffer::append(const std::string &gcode, size_t object_id, size_t layer_id, bool is_support)
2016-12-21 22:09:58 +00:00
{
std::string out;
size_t signature = object_id * 2 + (is_support ? 1 : 0);
if (m_object_ids_visited.find(signature) != m_object_ids_visited.end())
// For a single print_z, a combination of (object_id, is_support) could repeat once only.
// If the combination of (object_id, is_support) reappears, this must be for another print_z,
// therefore a layer has to be finalized.
2016-12-21 22:09:58 +00:00
out = this->flush();
m_object_ids_visited.insert(signature);
m_layer_id = layer_id;
m_gcode += gcode;
2016-12-21 22:09:58 +00:00
// This is a very rough estimate of the print time,
// not taking into account the acceleration curves generated by the printer firmware.
*m_elapsed_time += m_gcodegen.get_reset_elapsed_time();
2016-12-21 22:09:58 +00:00
return out;
}
void apply_speed_factor(std::string &line, float speed_factor, float min_print_speed)
2016-12-21 22:09:58 +00:00
{
// find pos of F
size_t pos = line.find_first_of('F');
size_t last_pos = line.find_first_of(' ', pos+1);
// extract current speed
float speed;
{
std::istringstream iss(line.substr(pos+1, last_pos));
iss >> speed;
}
// change speed
speed *= speed_factor;
speed = std::max(speed, min_print_speed);
// replace speed in string
{
std::ostringstream oss;
oss << speed;
line.replace(pos+1, last_pos-pos, oss.str());
2016-12-21 22:09:58 +00:00
}
}
std::string CoolingBuffer::flush()
2016-12-21 22:09:58 +00:00
{
const FullPrintConfig &config = m_gcodegen.config();
std::string gcode = std::move(m_gcode);
m_gcode.clear();
int fan_speed = config.fan_always_on.values.front() ? config.min_fan_speed.values.front() : 0;
2016-12-21 22:09:58 +00:00
float speed_factor = 1.0;
bool slowdown_external = true;
if (config.cooling.values.front()) {
2016-12-21 22:09:58 +00:00
#ifdef SLIC3R_DEBUG
printf("Layer %zu estimated printing time: %f seconds\n", m_layer_id, m_elapsed_time->total);
#endif
if (m_elapsed_time->total < (float)config.slowdown_below_layer_time.values.front()) {
2016-12-21 22:09:58 +00:00
// Layer time very short. Enable the fan to a full throttle and slow down the print
// (stretch the layer print time to slowdown_below_layer_time).
fan_speed = config.max_fan_speed.values.front();
// We are not altering speed of bridges.
float time_to_stretch = m_elapsed_time->stretchable();
float target_time = (float)config.slowdown_below_layer_time.values.front() - m_elapsed_time->non_stretchable();
// If we spend most of our time on external perimeters include them in the slowdown,
// otherwise only alter other extrusions.
if (m_elapsed_time->external_perimeters < 0.5f * time_to_stretch) {
time_to_stretch -= m_elapsed_time->external_perimeters;
target_time -= m_elapsed_time->external_perimeters;
slowdown_external = false;
}
speed_factor = time_to_stretch / target_time;
} else if (m_elapsed_time->total < (float)config.fan_below_layer_time.values.front()) {
2016-12-21 22:09:58 +00:00
// Layer time quite short. Enable the fan proportionally according to the current layer time.
fan_speed = config.max_fan_speed.values.front()
- (config.max_fan_speed.values.front() - config.min_fan_speed.values.front())
* (m_elapsed_time->total - (float)config.slowdown_below_layer_time.values.front())
/ (config.fan_below_layer_time.values.front() - config.slowdown_below_layer_time.values.front());
2016-12-21 22:09:58 +00:00
}
#ifdef SLIC3R_DEBUG
printf(" fan = %d%%, speed = %f%%\n", fan_speed, speed_factor * 100);
#endif
if (speed_factor < 1.0) {
// Adjust feed rate of G1 commands marked with an _EXTRUDE_SET_SPEED
// as long as they are not _WIPE moves (they cannot if they are _EXTRUDE_SET_SPEED)
// and they are not preceded directly by _BRIDGE_FAN_START (do not adjust bridging speed).
std::string new_gcode;
std::istringstream ss(gcode);
std::string line;
bool bridge_fan_start = false;
float min_print_speed = float(config.min_print_speed.values.front() * 60.);
2016-12-21 22:09:58 +00:00
while (std::getline(ss, line)) {
if (boost::starts_with(line, "G1")
&& boost::contains(line, ";_EXTRUDE_SET_SPEED")
&& !boost::contains(line, ";_WIPE")
&& !bridge_fan_start
&& (slowdown_external || !boost::contains(line, ";_EXTERNAL_PERIMETER"))) {
apply_speed_factor(line, speed_factor, min_print_speed);
2016-12-21 22:09:58 +00:00
boost::replace_first(line, ";_EXTRUDE_SET_SPEED", "");
}
bridge_fan_start = boost::starts_with(line, ";_BRIDGE_FAN_START");
2016-12-21 22:09:58 +00:00
new_gcode += line + '\n';
}
gcode = new_gcode;
}
}
if (m_layer_id < config.disable_fan_first_layers.values.front())
2016-12-21 22:09:58 +00:00
fan_speed = 0;
gcode = m_gcodegen.writer().set_fan(fan_speed) + gcode;
2016-12-21 22:09:58 +00:00
// bridge fan speed
if (!config.cooling.values.front() || config.bridge_fan_speed.values.front() == 0 || m_layer_id < config.disable_fan_first_layers.values.front()) {
2016-12-21 22:09:58 +00:00
boost::replace_all(gcode, ";_BRIDGE_FAN_START", "");
boost::replace_all(gcode, ";_BRIDGE_FAN_END", "");
} else {
boost::replace_all(gcode, ";_BRIDGE_FAN_START", m_gcodegen.writer().set_fan(config.bridge_fan_speed.values.front(), true));
boost::replace_all(gcode, ";_BRIDGE_FAN_END", m_gcodegen.writer().set_fan(fan_speed, true));
2016-12-21 22:09:58 +00:00
}
boost::replace_all(gcode, ";_WIPE", "");
boost::replace_all(gcode, ";_EXTRUDE_SET_SPEED", "");
boost::replace_all(gcode, ";_EXTERNAL_PERIMETER", "");
2016-12-21 22:09:58 +00:00
m_object_ids_visited.clear();
m_elapsed_time->reset();
2016-12-21 22:09:58 +00:00
return gcode;
}
}