mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-10-20 15:21:21 -06:00
Ported Slic3r::Print::State to XS
This commit is contained in:
parent
d2295cdf70
commit
a6a6a6888b
9 changed files with 124 additions and 45 deletions
41
xs/xsp/Print.xsp
Normal file
41
xs/xsp/Print.xsp
Normal file
|
@ -0,0 +1,41 @@
|
|||
%module{Slic3r::XS};
|
||||
|
||||
%{
|
||||
#include <myinit.h>
|
||||
#include "Print.hpp"
|
||||
%}
|
||||
|
||||
%name{Slic3r::Print::State} class PrintState {
|
||||
PrintState();
|
||||
~PrintState();
|
||||
bool started(PrintStep step) const;
|
||||
bool done(PrintStep step) const;
|
||||
void set_started(PrintStep step);
|
||||
void set_done(PrintStep step);
|
||||
void invalidate(PrintStep step);
|
||||
%{
|
||||
|
||||
%}
|
||||
};
|
||||
|
||||
%package{Slic3r::Print::State};
|
||||
%{
|
||||
|
||||
IV
|
||||
_constant()
|
||||
ALIAS:
|
||||
STEP_INIT_EXTRUDERS = psInitExtruders
|
||||
STEP_SLICE = psSlice
|
||||
STEP_PERIMETERS = psPerimeters
|
||||
STEP_PREPARE_INFILL = prPrepareInfill
|
||||
STEP_INFILL = psInfill
|
||||
STEP_SUPPORTMATERIAL = psSupportMaterial
|
||||
STEP_SKIRT = psSkirt
|
||||
STEP_BRIM = psBrim
|
||||
PROTOTYPE:
|
||||
CODE:
|
||||
RETVAL = ix;
|
||||
OUTPUT: RETVAL
|
||||
|
||||
%}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue