Commit 88f24178 authored by Guillaume Seguin's avatar Guillaume Seguin

Add not fully tested rotation support to gcodeplater

parent 8e7162c4
...@@ -23,6 +23,8 @@ install_locale('pronterface') ...@@ -23,6 +23,8 @@ install_locale('pronterface')
import wx import wx
import sys import sys
import types import types
import re
import math
from printrun import gcview from printrun import gcview
from printrun import gcoder from printrun import gcoder
...@@ -38,6 +40,34 @@ def gcoder_write(self, f, line, store = False): ...@@ -38,6 +40,34 @@ def gcoder_write(self, f, line, store = False):
f.write(line) f.write(line)
self.append(line, store = store) self.append(line, store = store)
rewrite_exp = re.compile("(%s)" % "|".join(["X([-+]?[0-9]*\.?[0-9]*)",
"Y([-+]?[0-9]*\.?[0-9]*)"]))
def rewrite_gline(centeroffset, gline, cosr, sinr):
if gline.is_move and (gline.x is not None or gline.y is not None):
if gline.relative:
xc = yc = 0
cox = coy = 0
if gline.x is not None:
xc = gline.x
if gline.y is not None:
yc = gline.y
else:
xc = gline.current_x + centeroffset[0]
yc = gline.current_y + centeroffset[1]
cox = centeroffset[0]
coy = centeroffset[1]
new_x = "X%.04f" % (xc * cosr - yc * sinr - cox)
new_y = "Y%.04f" % (xc * sinr + yc * cosr - coy)
new = {"X": new_x, "Y": new_y}
new_line = rewrite_exp.sub(lambda ax: new[ax.group()[0]], gline.raw)
new_line = new_line.split(";")[0]
if gline.x is None: new_line += " " + new_x
if gline.y is None: new_line += " " + new_y
return new_line
else:
return gline.raw
class GcodePlater(Plater): class GcodePlater(Plater):
load_wildcard = _("GCODE files (*.gcode;*.GCODE;*.g)") + "|*.gcode;*.gco;*.g" load_wildcard = _("GCODE files (*.gcode;*.GCODE;*.g)") + "|*.gcode;*.gco;*.g"
...@@ -100,7 +130,9 @@ class GcodePlater(Plater): ...@@ -100,7 +130,9 @@ class GcodePlater(Plater):
models.sort(key = lambda x: x.dims[-1]) models.sort(key = lambda x: x.dims[-1])
alllayers = [] alllayers = []
for (model_i, model) in enumerate(models): for (model_i, model) in enumerate(models):
alllayers += [(layer.z, model_i, layer_i) def add_offset(layer):
return layer.z + model.offsets[2] if layer.z is not None else layer.z
alllayers += [(add_offset(layer), model_i, layer_i)
for (layer_i, layer) in enumerate(model.gcode.all_layers) if layer] for (layer_i, layer) in enumerate(model.gcode.all_layers) if layer]
alllayers.sort() alllayers.sort()
laste = [0] * len(models) laste = [0] * len(models)
...@@ -112,10 +144,7 @@ class GcodePlater(Plater): ...@@ -112,10 +144,7 @@ class GcodePlater(Plater):
for (layer_z, model_i, layer_i) in alllayers: for (layer_z, model_i, layer_i) in alllayers:
model = models[model_i] model = models[model_i]
layer = model.gcode.all_layers[layer_i] layer = model.gcode.all_layers[layer_i]
r = model.rot # no rotation support for now r = math.radians(model.rot)
if r != 0 and layer_i == 0:
print _("Warning: no rotation support for now, "
"object won't be correctly rotated")
o = model.offsets o = model.offsets
co = model.centeroffset co = model.centeroffset
offset_pos = last_real_position if last_real_position is not None else (0, 0, 0) offset_pos = last_real_position if last_real_position is not None else (0, 0, 0)
...@@ -137,7 +166,10 @@ class GcodePlater(Plater): ...@@ -137,7 +166,10 @@ class GcodePlater(Plater):
analyzer.write("G92 E%.5f\n" % laste[model_i]) analyzer.write("G92 E%.5f\n" % laste[model_i])
for l in layer: for l in layer:
if l.command != "G28" and (l.command != "G92" or extrusion_only(l)): if l.command != "G28" and (l.command != "G92" or extrusion_only(l)):
analyzer.write(l.raw + "\n") if r == 0:
analyzer.write(l.raw + "\n")
else:
analyzer.write(rewrite_gline(co, l, math.cos(r), math.sin(r)) + "\n")
# Find the current real position & E # Find the current real position & E
last_real_position = analyzer.current_pos last_real_position = analyzer.current_pos
laste[model_i] = analyzer.current_e laste[model_i] = analyzer.current_e
...@@ -152,10 +184,7 @@ class GcodePlater(Plater): ...@@ -152,10 +184,7 @@ class GcodePlater(Plater):
models.sort(key = lambda x: x.dims[-1]) models.sort(key = lambda x: x.dims[-1])
with open(name, "w") as f: with open(name, "w") as f:
for model_i, model in enumerate(models): for model_i, model in enumerate(models):
r = model.rot # no rotation support for now r = math.radians(model.rot)
if r != 0:
print _("Warning: no rotation support for now, "
"object won't be correctly rotated")
o = model.offsets o = model.offsets
co = model.centeroffset co = model.centeroffset
offset_pos = last_real_position if last_real_position is not None else (0, 0, 0) offset_pos = last_real_position if last_real_position is not None else (0, 0, 0)
...@@ -171,7 +200,10 @@ class GcodePlater(Plater): ...@@ -171,7 +200,10 @@ class GcodePlater(Plater):
f.write("G1 X%.5f Y%.5f" % (-co[0], -co[1])) f.write("G1 X%.5f Y%.5f" % (-co[0], -co[1]))
for l in model.gcode: for l in model.gcode:
if l.command != "G28" and (l.command != "G92" or extrusion_only(l)): if l.command != "G28" and (l.command != "G92" or extrusion_only(l)):
f.write(l.raw + "\n") if r == 0:
f.write(l.raw + "\n")
else:
f.write(rewrite_gline(co, l, math.cos(r), math.sin(r)) + "\n")
# Find the current real position # Find the current real position
for i in xrange(len(model.gcode) - 1, -1, -1): for i in xrange(len(model.gcode) - 1, -1, -1):
gline = model.gcode.lines[i] gline = model.gcode.lines[i]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment