2013-12-20 00:36:42 +00:00
|
|
|
%module{Slic3r::XS};
|
|
|
|
|
|
|
|
%{
|
|
|
|
#include <myinit.h>
|
2014-08-03 17:42:29 +00:00
|
|
|
#include "libslic3r/Print.hpp"
|
|
|
|
#include "libslic3r/PlaceholderParser.hpp"
|
2013-12-20 00:36:42 +00:00
|
|
|
%}
|
|
|
|
|
|
|
|
%package{Slic3r::Print::State};
|
|
|
|
%{
|
|
|
|
|
|
|
|
IV
|
|
|
|
_constant()
|
|
|
|
ALIAS:
|
|
|
|
STEP_INIT_EXTRUDERS = psInitExtruders
|
2014-06-10 22:15:02 +00:00
|
|
|
STEP_SLICE = posSlice
|
|
|
|
STEP_PERIMETERS = posPerimeters
|
|
|
|
STEP_PREPARE_INFILL = posPrepareInfill
|
|
|
|
STEP_INFILL = posInfill
|
|
|
|
STEP_SUPPORTMATERIAL = posSupportMaterial
|
2013-12-20 00:36:42 +00:00
|
|
|
STEP_SKIRT = psSkirt
|
|
|
|
STEP_BRIM = psBrim
|
|
|
|
PROTOTYPE:
|
|
|
|
CODE:
|
|
|
|
RETVAL = ix;
|
|
|
|
OUTPUT: RETVAL
|
|
|
|
|
|
|
|
%}
|
|
|
|
|
2014-05-06 08:07:18 +00:00
|
|
|
|
|
|
|
%name{Slic3r::Print::Region} class PrintRegion {
|
|
|
|
// owned by Print, no constructor/destructor
|
|
|
|
|
|
|
|
Ref<PrintRegionConfig> config()
|
|
|
|
%code%{ RETVAL = &THIS->config; %};
|
2014-05-19 20:38:10 +00:00
|
|
|
Ref<Print> print();
|
2014-08-03 17:17:23 +00:00
|
|
|
|
|
|
|
Flow* flow(FlowRole role, double layer_height, bool bridge, bool first_layer, double width, PrintObject* object)
|
|
|
|
%code%{ RETVAL = new Flow(THIS->flow(role, layer_height, bridge, first_layer, width, *object)); %};
|
2014-05-06 08:07:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
%name{Slic3r::Print::Object} class PrintObject {
|
|
|
|
// owned by Print, no constructor/destructor
|
|
|
|
|
|
|
|
void add_region_volume(int region_id, int volume_id);
|
|
|
|
std::vector<int> get_region_volumes(int region_id)
|
|
|
|
%code%{
|
|
|
|
if (0 <= region_id && region_id < THIS->region_volumes.size())
|
|
|
|
RETVAL = THIS->region_volumes[region_id];
|
|
|
|
%};
|
|
|
|
int region_count()
|
2014-05-19 20:38:10 +00:00
|
|
|
%code%{ RETVAL = THIS->print()->regions.size(); %};
|
2014-05-06 08:07:18 +00:00
|
|
|
|
2014-05-19 20:38:10 +00:00
|
|
|
Ref<Print> print();
|
|
|
|
Ref<ModelObject> model_object();
|
2014-05-06 08:07:18 +00:00
|
|
|
Ref<PrintObjectConfig> config()
|
|
|
|
%code%{ RETVAL = &THIS->config; %};
|
2014-11-09 11:25:59 +00:00
|
|
|
Points copies();
|
2014-05-06 08:07:18 +00:00
|
|
|
t_layer_height_ranges layer_height_ranges()
|
|
|
|
%code%{ RETVAL = THIS->layer_height_ranges; %};
|
|
|
|
Ref<Point3> size()
|
|
|
|
%code%{ RETVAL = &THIS->size; %};
|
|
|
|
Ref<Point> _copies_shift()
|
|
|
|
%code%{ RETVAL = &THIS->_copies_shift; %};
|
2014-07-15 17:07:38 +00:00
|
|
|
|
|
|
|
bool typed_slices()
|
|
|
|
%code%{ RETVAL = THIS->typed_slices; %};
|
|
|
|
void set_typed_slices(bool value)
|
|
|
|
%code%{ THIS->typed_slices = value; %};
|
|
|
|
|
2014-05-06 08:07:18 +00:00
|
|
|
Points _shifted_copies()
|
|
|
|
%code%{ RETVAL = THIS->_shifted_copies; %};
|
|
|
|
void set_shifted_copies(Points value)
|
|
|
|
%code%{ THIS->_shifted_copies = value; %};
|
|
|
|
|
2014-11-09 11:25:59 +00:00
|
|
|
void set_copies(Points copies);
|
2014-05-06 08:07:18 +00:00
|
|
|
void set_layer_height_ranges(t_layer_height_ranges layer_height_ranges)
|
|
|
|
%code%{ THIS->layer_height_ranges = layer_height_ranges; %};
|
|
|
|
|
|
|
|
size_t layer_count();
|
|
|
|
void clear_layers();
|
|
|
|
Ref<Layer> get_layer(int idx);
|
|
|
|
Ref<Layer> add_layer(int id, coordf_t height, coordf_t print_z,
|
|
|
|
coordf_t slice_z);
|
|
|
|
void delete_layer(int idx);
|
|
|
|
|
|
|
|
size_t support_layer_count();
|
|
|
|
void clear_support_layers();
|
|
|
|
Ref<SupportLayer> get_support_layer(int idx);
|
2014-06-10 22:15:02 +00:00
|
|
|
Ref<SupportLayer> add_support_layer(int id, coordf_t height, coordf_t print_z, coordf_t slice_z);
|
2014-05-06 08:07:18 +00:00
|
|
|
void delete_support_layer(int idx);
|
2014-06-10 14:01:57 +00:00
|
|
|
|
2014-06-10 22:15:02 +00:00
|
|
|
bool invalidate_state_by_config_options(std::vector<std::string> opt_keys);
|
2014-06-13 09:19:53 +00:00
|
|
|
bool invalidate_step(PrintObjectStep step);
|
|
|
|
bool invalidate_all_steps();
|
2014-06-10 22:15:02 +00:00
|
|
|
bool step_done(PrintObjectStep step)
|
2014-06-13 09:19:53 +00:00
|
|
|
%code%{ RETVAL = THIS->state.is_done(step); %};
|
2014-06-10 22:15:02 +00:00
|
|
|
void set_step_done(PrintObjectStep step)
|
|
|
|
%code%{ THIS->state.set_done(step); %};
|
|
|
|
void set_step_started(PrintObjectStep step)
|
|
|
|
%code%{ THIS->state.set_started(step); %};
|
|
|
|
|
2014-06-10 14:01:57 +00:00
|
|
|
int ptr()
|
|
|
|
%code%{ RETVAL = (int)(intptr_t)THIS; %};
|
2014-05-06 08:07:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
%name{Slic3r::Print} class Print {
|
|
|
|
%name{_new} Print();
|
|
|
|
~Print();
|
|
|
|
|
|
|
|
Ref<PrintConfig> config()
|
|
|
|
%code%{ RETVAL = &THIS->config; %};
|
|
|
|
Ref<PrintObjectConfig> default_object_config()
|
|
|
|
%code%{ RETVAL = &THIS->default_object_config; %};
|
|
|
|
Ref<PrintRegionConfig> default_region_config()
|
|
|
|
%code%{ RETVAL = &THIS->default_region_config; %};
|
|
|
|
Ref<PlaceholderParser> placeholder_parser()
|
|
|
|
%code%{ RETVAL = &THIS->placeholder_parser; %};
|
|
|
|
// TODO: status_cb
|
|
|
|
Ref<ExtrusionEntityCollection> skirt()
|
|
|
|
%code%{ RETVAL = &THIS->skirt; %};
|
|
|
|
Ref<ExtrusionEntityCollection> brim()
|
|
|
|
%code%{ RETVAL = &THIS->brim; %};
|
|
|
|
|
|
|
|
PrintObjectPtrs* objects()
|
|
|
|
%code%{ RETVAL = &THIS->objects; %};
|
|
|
|
void clear_objects();
|
|
|
|
Ref<PrintObject> get_object(int idx);
|
|
|
|
Ref<PrintObject> add_object(ModelObject* model_object,
|
|
|
|
BoundingBoxf3 *modobj_bbox)
|
|
|
|
%code%{ RETVAL = THIS->add_object(model_object, *modobj_bbox); %};
|
|
|
|
Ref<PrintObject> set_new_object(size_t idx, ModelObject* model_object,
|
|
|
|
BoundingBoxf3 *modobj_bbox)
|
|
|
|
%code%{ RETVAL = THIS->set_new_object(idx, model_object, *modobj_bbox); %};
|
|
|
|
void delete_object(int idx);
|
|
|
|
size_t object_count()
|
|
|
|
%code%{ RETVAL = THIS->objects.size(); %};
|
|
|
|
|
|
|
|
PrintRegionPtrs* regions()
|
|
|
|
%code%{ RETVAL = &THIS->regions; %};
|
|
|
|
Ref<PrintRegion> get_region(int idx);
|
|
|
|
Ref<PrintRegion> add_region();
|
|
|
|
size_t region_count()
|
|
|
|
%code%{ RETVAL = THIS->regions.size(); %};
|
2014-06-10 22:15:02 +00:00
|
|
|
|
|
|
|
bool invalidate_state_by_config_options(std::vector<std::string> opt_keys);
|
2014-06-13 09:19:53 +00:00
|
|
|
bool invalidate_step(PrintStep step);
|
|
|
|
bool invalidate_all_steps();
|
2014-06-10 22:15:02 +00:00
|
|
|
bool step_done(PrintStep step)
|
2014-06-13 09:19:53 +00:00
|
|
|
%code%{ RETVAL = THIS->state.is_done(step); %};
|
2014-06-10 22:15:02 +00:00
|
|
|
void set_step_done(PrintStep step)
|
|
|
|
%code%{ THIS->state.set_done(step); %};
|
|
|
|
void set_step_started(PrintStep step)
|
|
|
|
%code%{ THIS->state.set_started(step); %};
|
2014-08-03 16:41:09 +00:00
|
|
|
|
|
|
|
std::vector<int> extruders()
|
|
|
|
%code%{
|
|
|
|
std::set<size_t> extruders = THIS->extruders();
|
|
|
|
RETVAL.reserve(extruders.size());
|
|
|
|
for (std::set<size_t>::const_iterator e = extruders.begin(); e != extruders.end(); ++e) {
|
|
|
|
RETVAL.push_back(*e);
|
|
|
|
}
|
|
|
|
%};
|
|
|
|
void _simplify_slices(double distance);
|
|
|
|
double max_allowed_layer_height() const;
|
|
|
|
bool has_support_material() const;
|
|
|
|
|
2014-11-09 11:25:59 +00:00
|
|
|
void add_model_object(ModelObject* model_object, int idx = -1);
|
|
|
|
bool apply_config(DynamicPrintConfig* config)
|
|
|
|
%code%{ RETVAL = THIS->apply_config(*config); %};
|
2014-08-03 16:41:09 +00:00
|
|
|
void init_extruders();
|
2014-05-24 21:53:00 +00:00
|
|
|
%{
|
|
|
|
|
|
|
|
double
|
|
|
|
Print::total_used_filament(...)
|
|
|
|
CODE:
|
|
|
|
if (items > 1) {
|
|
|
|
THIS->total_used_filament = (double)SvNV(ST(1));
|
|
|
|
}
|
|
|
|
RETVAL = THIS->total_used_filament;
|
|
|
|
OUTPUT:
|
|
|
|
RETVAL
|
|
|
|
|
|
|
|
double
|
|
|
|
Print::total_extruded_volume(...)
|
|
|
|
CODE:
|
|
|
|
if (items > 1) {
|
|
|
|
THIS->total_extruded_volume = (double)SvNV(ST(1));
|
|
|
|
}
|
|
|
|
RETVAL = THIS->total_extruded_volume;
|
|
|
|
OUTPUT:
|
|
|
|
RETVAL
|
|
|
|
|
|
|
|
%}
|
2014-05-06 08:07:18 +00:00
|
|
|
};
|