-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathFanIroning.py
210 lines (171 loc) · 7.02 KB
/
FanIroning.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
# FanIroning
"""
FanIroning for 3D prints.
Set Fan value for ironing
Author : 5axes
Version : 1.0
Date : 3/01/2023
"""
from ..Script import Script
from UM.Logger import Logger
from UM.Application import Application
import re #To perform the search
from cura.Settings.ExtruderManager import ExtruderManager
from enum import Enum
from UM.Message import Message
from UM.i18n import i18nCatalog
catalog = i18nCatalog("cura")
__version__ = '1.0'
class Section(Enum):
"""Enum for section type."""
NOTHING = 0
SKIRT = 1
INNER_WALL = 2
OUTER_WALL = 3
INFILL = 4
SKIN = 5
SKIN2 = 6
PRIME_TOWER = 7
BRIDGE = 8
def is_begin_layer_line(line: str) -> bool:
"""Check if current line is the start of a layer section.
Args:
line (str): Gcode line
Returns:
bool: True if the line is the start of a layer section
"""
return line.startswith(";LAYER:")
def is_extrusion_line(line: str) -> bool:
"""Check if current line is a standard printing segment.
Args:
line (str): Gcode line
Returns:
bool: True if the line is a standard printing segment
"""
return "G1" in line and "X" in line and "Y" in line and "E" in line
def is_not_extrusion_line(line: str) -> bool:
"""Check if current line is a rapid movement segment.
Args:
line (str): Gcode line
Returns:
bool: True if the line is a standard printing segment
"""
return "G0" in line and "X" in line and "Y" in line and not "E" in line
def is_begin_skin_segment_line(line: str) -> bool:
"""Check if current line is the start of an skin.
Args:
line (str): Gcode line
Returns:
bool: True if the line is the start of an skin section
"""
return line.startswith(";TYPE:SKIN")
class FanIroning(Script):
def getSettingDataString(self):
return """{
"name": "Fan Ironing",
"key": "FanIroning",
"metadata": {},
"version": 2,
"settings":
{
"extruder_nb":
{
"label": "Extruder Id",
"description": "Define extruder Id in case of multi extruders",
"unit": "",
"type": "int",
"default_value": 1
},
"fan_value":
{
"label": "Fan Value",
"description": "Fan value during ironing operation.",
"type": "int",
"default_value": 0,
"minimum_value": 0,
"maximum_value": 100
}
}
}"""
## -----------------------------------------------------------------------------
#
# Main Prog
#
## -----------------------------------------------------------------------------
def execute(self, data):
extruder_id = self.getSettingValueByKey("extruder_nb")
extruder_id = extruder_id -1
ironing_fan_value = int((float(self.getSettingValueByKey("fan_value"))/100)*255)
# machine_extruder_count
extruder_count=Application.getInstance().getGlobalContainerStack().getProperty("machine_extruder_count", "value")
extruder_count = extruder_count-1
if extruder_id>extruder_count :
extruder_id=extruder_count
extrud = Application.getInstance().getGlobalContainerStack().extruderList
ironingenabled = extrud[extruder_id].getProperty("ironing_enabled", "value")
if ironingenabled == False:
#
Logger.log('d', 'Gcode must be generate with ironing mode')
Message('Gcode must be generate with ironing mode', title = catalog.i18nc("@info:title", "Post Processing")).show()
return None
"""Parse Gcode and modify infill portions with an extrusion width gradient."""
currentSection = Section.NOTHING
set_ironing_fan_value = False
current_Fan = 0
Fan_On = False
for layer_index, layer in enumerate(data):
lines = layer.split("\n")
for line_index, currentLine in enumerate(lines):
# M107 - Set Fan Speed
if currentLine.startswith("M106") and not set_ironing_fan_value :
searchM106 = re.search(r"S(\d*\.?\d*)", currentLine)
if searchM106:
current_Fan=int(searchM106.group(1))
Logger.log('d', 'current_Fan :' + str(current_Fan))
Fan_On = True
# M107 - Fan Off
if currentLine.startswith("M107") :
Fan_On = False
if is_begin_skin_segment_line(currentLine) and not (currentSection == Section.SKIN):
currentSection = Section.SKIN
continue
# SKIN After SKIN = Ironing operation
if currentSection == Section.SKIN:
if is_begin_skin_segment_line(currentLine):
currentSection = Section.SKIN2
set_ironing_fan_value = True
outPutLine = "\nM106 S{:d}".format(ironing_fan_value)
# Logger.log('d', 'outPutLine :' + str(outPutLine))
outPutLine = currentLine + outPutLine
lines[line_index] = outPutLine
elif currentLine.startswith(";TYPE:"):
currentSection = Section.NOTHING
if set_ironing_fan_value :
set_ironing_fan_value = False
if Fan_On == True :
outPutLine = "\nM106 S{:d}".format(current_Fan)
else:
outPutLine = "\nM107"
# Logger.log('d', 'Reset A outPutLine :' + str(outPutLine))
outPutLine = currentLine + outPutLine
lines[line_index] = outPutLine
#
# comment like ;MESH:NONMESH
#
if currentLine.startswith(";MESH:"):
currentSection = Section.NOTHING
if set_ironing_fan_value :
set_ironing_fan_value = False
# Logger.log('d', 'Reset B outPutLine :' + str(outPutLine))
if Fan_On == True :
outPutLine = "\nM106 S{:d}".format(current_Fan)
else:
outPutLine = "\nM107"
outPutLine = currentLine + outPutLine
lines[line_index] = outPutLine
#
# end of analyse
#
final_lines = "\n".join(lines)
data[layer_index] = final_lines
return data