2014-01-06 17:29:10 +00:00
|
|
|
#ifndef slic3r_Model_hpp_
|
|
|
|
#define slic3r_Model_hpp_
|
|
|
|
|
2015-12-07 23:39:54 +00:00
|
|
|
#include "libslic3r.h"
|
2014-04-29 23:04:49 +00:00
|
|
|
#include "PrintConfig.hpp"
|
2014-01-06 17:29:10 +00:00
|
|
|
#include "Layer.hpp"
|
|
|
|
#include "Point.hpp"
|
|
|
|
#include "TriangleMesh.hpp"
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
|
|
|
class ModelInstance;
|
|
|
|
class ModelMaterial;
|
|
|
|
class ModelObject;
|
|
|
|
class ModelVolume;
|
|
|
|
|
|
|
|
typedef std::string t_model_material_id;
|
|
|
|
typedef std::string t_model_material_attribute;
|
|
|
|
typedef std::map<t_model_material_attribute,std::string> t_model_material_attributes;
|
|
|
|
|
2014-04-29 23:04:49 +00:00
|
|
|
typedef std::map<t_model_material_id,ModelMaterial*> ModelMaterialMap;
|
|
|
|
typedef std::vector<ModelObject*> ModelObjectPtrs;
|
|
|
|
typedef std::vector<ModelVolume*> ModelVolumePtrs;
|
|
|
|
typedef std::vector<ModelInstance*> ModelInstancePtrs;
|
|
|
|
|
2014-01-06 17:29:10 +00:00
|
|
|
class Model
|
|
|
|
{
|
|
|
|
public:
|
2014-04-29 23:04:49 +00:00
|
|
|
ModelMaterialMap materials;
|
|
|
|
ModelObjectPtrs objects;
|
2014-01-06 17:29:10 +00:00
|
|
|
|
|
|
|
Model();
|
2014-04-29 23:04:49 +00:00
|
|
|
Model(const Model &other);
|
2014-05-08 11:33:43 +00:00
|
|
|
Model& operator= (Model other);
|
|
|
|
void swap(Model &other);
|
2014-01-06 17:29:10 +00:00
|
|
|
~Model();
|
2014-05-09 12:24:35 +00:00
|
|
|
ModelObject* add_object();
|
2014-11-12 22:50:09 +00:00
|
|
|
ModelObject* add_object(const ModelObject &other, bool copy_volumes = true);
|
2014-04-29 23:04:49 +00:00
|
|
|
void delete_object(size_t idx);
|
2014-05-06 22:58:29 +00:00
|
|
|
void clear_objects();
|
2014-05-09 12:24:35 +00:00
|
|
|
|
|
|
|
ModelMaterial* add_material(t_model_material_id material_id);
|
|
|
|
ModelMaterial* add_material(t_model_material_id material_id, const ModelMaterial &other);
|
|
|
|
ModelMaterial* get_material(t_model_material_id material_id);
|
2014-05-06 22:58:29 +00:00
|
|
|
void delete_material(t_model_material_id material_id);
|
|
|
|
void clear_materials();
|
2014-01-06 17:29:10 +00:00
|
|
|
bool has_objects_with_no_instances() const;
|
2014-08-08 19:48:59 +00:00
|
|
|
bool add_default_instances();
|
2015-01-19 17:53:04 +00:00
|
|
|
BoundingBoxf3 bounding_box() const;
|
2014-09-21 08:51:36 +00:00
|
|
|
void center_instances_around_point(const Pointf &point);
|
|
|
|
void align_instances_to_origin();
|
|
|
|
void translate(coordf_t x, coordf_t y, coordf_t z);
|
2015-01-19 17:53:04 +00:00
|
|
|
TriangleMesh mesh() const;
|
|
|
|
TriangleMesh raw_mesh() const;
|
2015-12-02 17:06:18 +00:00
|
|
|
Pointfs _arrange(const Pointfs &sizes, coordf_t dist, const BoundingBoxf* bb = NULL) const;
|
|
|
|
void arrange_objects(coordf_t dist, const BoundingBoxf* bb = NULL);
|
|
|
|
void duplicate(size_t copies_num, coordf_t dist, const BoundingBoxf* bb = NULL);
|
|
|
|
void duplicate_objects(size_t copies_num, coordf_t dist, const BoundingBoxf* bb = NULL);
|
|
|
|
void duplicate_objects_grid(size_t x, size_t y, coordf_t dist);
|
2014-01-06 17:29:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class ModelMaterial
|
|
|
|
{
|
2014-05-09 12:24:35 +00:00
|
|
|
friend class Model;
|
2014-01-06 17:29:10 +00:00
|
|
|
public:
|
|
|
|
t_model_material_attributes attributes;
|
2014-04-29 23:04:49 +00:00
|
|
|
DynamicPrintConfig config;
|
|
|
|
|
2014-05-09 12:24:35 +00:00
|
|
|
Model* get_model() const { return this->model; };
|
2014-04-29 23:04:49 +00:00
|
|
|
void apply(const t_model_material_attributes &attributes);
|
2014-05-09 12:24:35 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
Model* model;
|
|
|
|
|
|
|
|
ModelMaterial(Model *model);
|
|
|
|
ModelMaterial(Model *model, const ModelMaterial &other);
|
2014-01-06 17:29:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class ModelObject
|
|
|
|
{
|
2014-05-09 12:24:35 +00:00
|
|
|
friend class Model;
|
2014-01-06 17:29:10 +00:00
|
|
|
public:
|
2014-07-12 09:20:57 +00:00
|
|
|
std::string name;
|
2014-01-06 17:29:10 +00:00
|
|
|
std::string input_file;
|
2014-04-29 23:04:49 +00:00
|
|
|
ModelInstancePtrs instances;
|
|
|
|
ModelVolumePtrs volumes;
|
|
|
|
DynamicPrintConfig config;
|
2014-01-06 17:29:10 +00:00
|
|
|
t_layer_height_ranges layer_height_ranges;
|
2014-10-25 09:10:44 +00:00
|
|
|
|
|
|
|
/* This vector accumulates the total translation applied to the object by the
|
|
|
|
center_around_origin() method. Callers might want to apply the same translation
|
2015-01-08 23:47:40 +00:00
|
|
|
to new volumes before adding them to this object in order to preserve alignment
|
2014-10-25 09:10:44 +00:00
|
|
|
when user expects that. */
|
2014-12-12 21:43:04 +00:00
|
|
|
Pointf3 origin_translation;
|
2014-01-06 17:29:10 +00:00
|
|
|
|
2014-05-08 12:52:48 +00:00
|
|
|
// these should be private but we need to expose them via XS until all methods are ported
|
|
|
|
BoundingBoxf3 _bounding_box;
|
|
|
|
bool _bounding_box_valid;
|
|
|
|
|
2014-05-09 12:24:35 +00:00
|
|
|
Model* get_model() const { return this->model; };
|
|
|
|
|
|
|
|
ModelVolume* add_volume(const TriangleMesh &mesh);
|
|
|
|
ModelVolume* add_volume(const ModelVolume &volume);
|
2014-04-29 23:04:49 +00:00
|
|
|
void delete_volume(size_t idx);
|
|
|
|
void clear_volumes();
|
|
|
|
|
2014-05-09 12:24:35 +00:00
|
|
|
ModelInstance* add_instance();
|
|
|
|
ModelInstance* add_instance(const ModelInstance &instance);
|
2014-05-06 22:58:29 +00:00
|
|
|
void delete_instance(size_t idx);
|
2014-01-06 17:29:10 +00:00
|
|
|
void delete_last_instance();
|
2014-04-29 23:04:49 +00:00
|
|
|
void clear_instances();
|
|
|
|
|
2015-01-19 17:53:04 +00:00
|
|
|
BoundingBoxf3 bounding_box();
|
2014-04-29 23:04:49 +00:00
|
|
|
void invalidate_bounding_box();
|
|
|
|
|
2015-01-19 17:53:04 +00:00
|
|
|
TriangleMesh mesh() const;
|
|
|
|
TriangleMesh raw_mesh() const;
|
|
|
|
BoundingBoxf3 raw_bounding_box() const;
|
|
|
|
BoundingBoxf3 instance_bounding_box(size_t instance_idx) const;
|
2014-09-21 08:51:36 +00:00
|
|
|
void center_around_origin();
|
2014-12-12 21:43:04 +00:00
|
|
|
void translate(const Vectorf3 &vector);
|
2014-09-21 08:51:36 +00:00
|
|
|
void translate(coordf_t x, coordf_t y, coordf_t z);
|
|
|
|
void scale(const Pointf3 &versor);
|
2015-04-16 19:22:04 +00:00
|
|
|
void rotate(float angle, const Axis &axis);
|
2015-11-04 22:11:30 +00:00
|
|
|
void mirror(const Axis &axis);
|
2014-09-21 08:51:36 +00:00
|
|
|
size_t materials_count() const;
|
2014-08-08 19:48:59 +00:00
|
|
|
size_t facets_count() const;
|
|
|
|
bool needed_repair() const;
|
2014-09-21 08:51:36 +00:00
|
|
|
void cut(coordf_t z, Model* model) const;
|
2014-11-12 22:50:09 +00:00
|
|
|
void split(ModelObjectPtrs* new_objects);
|
2014-09-21 08:51:36 +00:00
|
|
|
void update_bounding_box(); // this is a private method but we expose it until we need to expose it via XS
|
2014-01-06 17:29:10 +00:00
|
|
|
|
|
|
|
private:
|
2014-05-09 12:24:35 +00:00
|
|
|
Model* model;
|
|
|
|
|
|
|
|
ModelObject(Model *model);
|
2014-11-12 22:50:09 +00:00
|
|
|
ModelObject(Model *model, const ModelObject &other, bool copy_volumes = true);
|
2014-05-09 12:24:35 +00:00
|
|
|
ModelObject& operator= (ModelObject other);
|
|
|
|
void swap(ModelObject &other);
|
|
|
|
~ModelObject();
|
2014-01-06 17:29:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class ModelVolume
|
|
|
|
{
|
2014-05-09 12:24:35 +00:00
|
|
|
friend class ModelObject;
|
2014-01-06 17:29:10 +00:00
|
|
|
public:
|
2014-07-12 09:20:57 +00:00
|
|
|
std::string name;
|
2014-01-06 17:29:10 +00:00
|
|
|
TriangleMesh mesh;
|
2014-07-11 18:09:01 +00:00
|
|
|
DynamicPrintConfig config;
|
2014-04-29 23:04:49 +00:00
|
|
|
bool modifier;
|
2014-05-09 12:24:35 +00:00
|
|
|
|
|
|
|
ModelObject* get_object() const { return this->object; };
|
2014-05-10 14:59:17 +00:00
|
|
|
t_model_material_id material_id() const;
|
|
|
|
void material_id(t_model_material_id material_id);
|
|
|
|
ModelMaterial* material() const;
|
2014-09-21 08:51:36 +00:00
|
|
|
void set_material(t_model_material_id material_id, const ModelMaterial &material);
|
2014-05-09 12:24:35 +00:00
|
|
|
|
2014-08-03 18:33:16 +00:00
|
|
|
ModelMaterial* assign_unique_material();
|
|
|
|
|
2014-05-09 12:24:35 +00:00
|
|
|
private:
|
|
|
|
ModelObject* object;
|
2014-05-10 14:59:17 +00:00
|
|
|
t_model_material_id _material_id;
|
2014-05-09 12:24:35 +00:00
|
|
|
|
|
|
|
ModelVolume(ModelObject *object, const TriangleMesh &mesh);
|
|
|
|
ModelVolume(ModelObject *object, const ModelVolume &other);
|
2014-01-06 17:29:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class ModelInstance
|
|
|
|
{
|
2014-05-09 12:24:35 +00:00
|
|
|
friend class ModelObject;
|
2014-01-06 17:29:10 +00:00
|
|
|
public:
|
2015-05-03 16:40:00 +00:00
|
|
|
double rotation; // in radians around mesh center point
|
2014-01-06 17:29:10 +00:00
|
|
|
double scaling_factor;
|
2014-04-29 23:04:49 +00:00
|
|
|
Pointf offset; // in unscaled coordinates
|
2014-01-06 17:29:10 +00:00
|
|
|
|
2014-05-09 12:24:35 +00:00
|
|
|
ModelObject* get_object() const { return this->object; };
|
2014-08-03 18:33:16 +00:00
|
|
|
void transform_mesh(TriangleMesh* mesh, bool dont_translate = false) const;
|
2014-01-06 17:29:10 +00:00
|
|
|
void transform_polygon(Polygon* polygon) const;
|
2014-05-09 12:24:35 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
ModelObject* object;
|
|
|
|
|
|
|
|
ModelInstance(ModelObject *object);
|
|
|
|
ModelInstance(ModelObject *object, const ModelInstance &other);
|
2014-01-06 17:29:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|