2017-05-16 11:45:28 +00:00
|
|
|
// Ordering of the tools to minimize tool switches.
|
|
|
|
|
|
|
|
#ifndef slic3r_ToolOrdering_hpp_
|
|
|
|
#define slic3r_ToolOrdering_hpp_
|
|
|
|
|
|
|
|
#include "libslic3r.h"
|
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
2017-05-25 20:27:53 +00:00
|
|
|
class Print;
|
|
|
|
class PrintObject;
|
|
|
|
|
2017-05-23 13:00:01 +00:00
|
|
|
class ToolOrdering
|
2017-05-16 11:45:28 +00:00
|
|
|
{
|
2017-05-23 13:00:01 +00:00
|
|
|
public:
|
|
|
|
struct LayerTools
|
|
|
|
{
|
|
|
|
LayerTools(const coordf_t z) :
|
|
|
|
print_z(z),
|
|
|
|
has_object(false),
|
|
|
|
has_support(false),
|
|
|
|
has_wipe_tower(false),
|
2017-06-08 14:58:29 +00:00
|
|
|
wipe_tower_partitions(0),
|
|
|
|
wipe_tower_layer_height(0.) {}
|
2017-05-23 13:00:01 +00:00
|
|
|
|
|
|
|
bool operator< (const LayerTools &rhs) const { return print_z < rhs.print_z; }
|
|
|
|
bool operator==(const LayerTools &rhs) const { return print_z == rhs.print_z; }
|
|
|
|
|
|
|
|
coordf_t print_z;
|
|
|
|
bool has_object;
|
|
|
|
bool has_support;
|
|
|
|
// Zero based extruder IDs, ordered to minimize tool switches.
|
|
|
|
std::vector<unsigned int> extruders;
|
|
|
|
// Will there be anything extruded on this layer for the wipe tower?
|
|
|
|
// Due to the support layers possibly interleaving the object layers,
|
|
|
|
// wipe tower will be disabled for some support only layers.
|
|
|
|
bool has_wipe_tower;
|
|
|
|
// Number of wipe tower partitions to support the required number of tool switches
|
|
|
|
// and to support the wipe tower partitions above this one.
|
|
|
|
size_t wipe_tower_partitions;
|
2017-06-08 14:58:29 +00:00
|
|
|
coordf_t wipe_tower_layer_height;
|
2017-05-23 13:00:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
ToolOrdering() {}
|
|
|
|
|
|
|
|
// For the use case when each object is printed separately
|
|
|
|
// (print.config.complete_objects is true).
|
|
|
|
ToolOrdering(const PrintObject &object, unsigned int first_extruder = (unsigned int)-1);
|
2017-05-16 11:45:28 +00:00
|
|
|
|
2017-05-23 13:00:01 +00:00
|
|
|
// For the use case when all objects are printed at once.
|
|
|
|
// (print.config.complete_objects is false).
|
|
|
|
ToolOrdering(const Print &print, unsigned int first_extruder = (unsigned int)-1);
|
2017-05-16 11:45:28 +00:00
|
|
|
|
2017-05-25 20:27:53 +00:00
|
|
|
void clear() { m_layer_tools.clear(); }
|
|
|
|
|
2017-05-23 13:00:01 +00:00
|
|
|
// Get the first extruder printing the layer_tools, returns -1 if there is no layer printed.
|
|
|
|
unsigned int first_extruder() const;
|
2017-05-16 13:30:03 +00:00
|
|
|
|
2017-05-23 13:00:01 +00:00
|
|
|
// Get the first extruder printing the layer_tools, returns -1 if there is no layer printed.
|
|
|
|
unsigned int last_extruder() const;
|
2017-05-16 13:30:03 +00:00
|
|
|
|
2017-05-23 13:00:01 +00:00
|
|
|
// Find LayerTools with the closest print_z.
|
|
|
|
LayerTools& tools_for_layer(coordf_t print_z);
|
|
|
|
const LayerTools& tools_for_layer(coordf_t print_z) const
|
|
|
|
{ return *const_cast<const LayerTools*>(&const_cast<const ToolOrdering*>(this)->tools_for_layer(print_z)); }
|
|
|
|
|
|
|
|
const LayerTools& front() const { return m_layer_tools.front(); }
|
|
|
|
const LayerTools& back() const { return m_layer_tools.back(); }
|
|
|
|
bool empty() const { return m_layer_tools.empty(); }
|
2017-05-25 20:27:53 +00:00
|
|
|
const std::vector<LayerTools>& layer_tools() const { return m_layer_tools; }
|
2017-05-23 13:00:01 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void initialize_layers(std::vector<coordf_t> &zs);
|
|
|
|
void collect_extruders(const PrintObject &object);
|
|
|
|
void reorder_extruders(unsigned int last_extruder_id);
|
2017-06-08 14:58:29 +00:00
|
|
|
void fill_wipe_tower_partitions(const PrintConfig &config, coordf_t object_bottom_z);
|
2017-05-23 13:00:01 +00:00
|
|
|
|
|
|
|
std::vector<LayerTools> m_layer_tools;
|
|
|
|
};
|
2017-05-16 11:45:28 +00:00
|
|
|
|
|
|
|
} // namespace SLic3r
|
|
|
|
|
|
|
|
#endif /* slic3r_ToolOrdering_hpp_ */
|