2017-10-03 12:10:08 +00:00
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
import numpy
|
|
|
|
import wx
|
|
|
|
import inkex
|
2017-12-30 21:05:21 +00:00
|
|
|
import simplestyle
|
2017-10-03 12:10:08 +00:00
|
|
|
|
2017-12-28 20:55:43 +00:00
|
|
|
from embroider import patches_to_stitches, stitches_to_polylines
|
|
|
|
|
2017-10-03 12:10:08 +00:00
|
|
|
class EmbroiderySimulator(wx.Frame):
|
|
|
|
def __init__(self, *args, **kwargs):
|
2017-12-28 20:55:43 +00:00
|
|
|
stitch_file = kwargs.pop('stitch_file', None)
|
|
|
|
patches = kwargs.pop('patches', None)
|
2017-12-30 21:05:21 +00:00
|
|
|
self.on_close_hook = kwargs.pop('on_close', None)
|
2017-10-24 02:46:52 +00:00
|
|
|
self.frame_period = kwargs.pop('frame_period', 80)
|
2017-10-03 12:10:08 +00:00
|
|
|
self.stitches_per_frame = kwargs.pop('stitches_per_frame', 1)
|
2018-01-01 03:24:18 +00:00
|
|
|
self.target_duration = kwargs.pop('target_duration', None)
|
2017-10-03 12:10:08 +00:00
|
|
|
|
|
|
|
wx.Frame.__init__(self, *args, **kwargs)
|
2017-12-30 21:05:21 +00:00
|
|
|
|
2017-10-03 12:10:08 +00:00
|
|
|
self.panel = wx.Panel(self, wx.ID_ANY)
|
|
|
|
self.panel.SetFocus()
|
|
|
|
|
2017-12-28 20:55:43 +00:00
|
|
|
self.load(stitch_file, patches)
|
2017-10-03 12:10:08 +00:00
|
|
|
|
2018-01-01 03:24:18 +00:00
|
|
|
if self.target_duration:
|
|
|
|
self.adjust_speed(self.target_duration)
|
|
|
|
|
2017-12-28 20:55:43 +00:00
|
|
|
self.buffer = wx.Bitmap(self.width, self.height)
|
2017-10-03 12:10:08 +00:00
|
|
|
self.dc = wx.MemoryDC()
|
|
|
|
self.dc.SelectObject(self.buffer)
|
|
|
|
self.canvas = wx.GraphicsContext.Create(self.dc)
|
|
|
|
|
|
|
|
self.clear()
|
|
|
|
|
|
|
|
self.Bind(wx.EVT_SIZE, self.on_size)
|
|
|
|
self.panel.Bind(wx.EVT_PAINT, self.on_paint)
|
|
|
|
self.panel.Bind(wx.EVT_KEY_DOWN, self.on_key_down)
|
|
|
|
|
2017-12-30 21:05:21 +00:00
|
|
|
self.timer = None
|
|
|
|
|
2017-10-03 12:10:08 +00:00
|
|
|
self.last_pos = None
|
|
|
|
|
2017-12-30 21:05:21 +00:00
|
|
|
self.Bind(wx.EVT_CLOSE, self.on_close)
|
|
|
|
|
2017-12-28 20:55:43 +00:00
|
|
|
def load(self, stitch_file=None, patches=None):
|
|
|
|
if stitch_file:
|
2018-01-01 03:05:05 +00:00
|
|
|
self.mirror = True
|
2017-12-28 20:55:43 +00:00
|
|
|
self.segments = self._parse_stitch_file(stitch_file)
|
|
|
|
elif patches:
|
2018-01-01 03:05:05 +00:00
|
|
|
self.mirror = False
|
2017-12-30 21:05:21 +00:00
|
|
|
self.segments = self._patches_to_segments(patches)
|
2017-12-28 20:55:43 +00:00
|
|
|
else:
|
2017-12-30 21:05:21 +00:00
|
|
|
return
|
2017-12-28 20:55:43 +00:00
|
|
|
|
2018-01-01 03:38:15 +00:00
|
|
|
self.trim_margins()
|
2017-12-28 20:55:43 +00:00
|
|
|
self.width, self.height = self.get_dimensions()
|
|
|
|
|
2018-01-01 03:24:18 +00:00
|
|
|
def adjust_speed(self, duration):
|
|
|
|
self.frame_period = 1000 * float(duration) / len(self.segments)
|
|
|
|
self.stitches_per_frame = 1
|
|
|
|
|
|
|
|
while self.frame_period < 1.0:
|
|
|
|
self.frame_period *= 2
|
|
|
|
self.stitches_per_frame *= 2
|
|
|
|
|
2017-10-03 12:10:08 +00:00
|
|
|
def on_key_down(self, event):
|
|
|
|
keycode = event.GetKeyCode()
|
|
|
|
|
|
|
|
if keycode == ord("+") or keycode == ord("=") or keycode == wx.WXK_UP:
|
|
|
|
if self.frame_period == 1:
|
|
|
|
self.stitches_per_frame *= 2
|
|
|
|
else:
|
|
|
|
self.frame_period = self.frame_period / 2
|
|
|
|
elif keycode == ord("-") or keycode == ord("_") or keycode == wx.WXK_DOWN:
|
|
|
|
if self.stitches_per_frame == 1:
|
|
|
|
self.frame_period *= 2
|
|
|
|
else:
|
|
|
|
self.stitches_per_frame /= 2
|
|
|
|
elif keycode == ord("Q"):
|
|
|
|
self.Close()
|
|
|
|
elif keycode == ord('P'):
|
|
|
|
if self.timer.IsRunning():
|
|
|
|
self.timer.Stop()
|
|
|
|
else:
|
|
|
|
self.timer.Start(self.frame_period)
|
|
|
|
|
|
|
|
self.frame_period = max(1, self.frame_period)
|
|
|
|
self.stitches_per_frame = max(self.stitches_per_frame, 1)
|
|
|
|
|
|
|
|
if self.timer.IsRunning():
|
|
|
|
self.timer.Stop()
|
|
|
|
self.timer.Start(self.frame_period)
|
|
|
|
|
|
|
|
def _strip_quotes(self, string):
|
|
|
|
if string.startswith('"') and string.endswith('"'):
|
|
|
|
string = string[1:-1]
|
|
|
|
|
|
|
|
return string
|
|
|
|
|
2017-12-30 21:05:21 +00:00
|
|
|
def _patches_to_segments(self, patches):
|
2017-12-28 20:55:43 +00:00
|
|
|
stitches = patches_to_stitches(patches)
|
|
|
|
|
|
|
|
segments = []
|
|
|
|
|
|
|
|
last_pos = None
|
|
|
|
last_color = None
|
2017-12-30 21:05:21 +00:00
|
|
|
pen = None
|
2017-12-28 20:55:43 +00:00
|
|
|
|
|
|
|
for stitch in stitches:
|
2017-12-30 21:05:21 +00:00
|
|
|
pos = (stitch.x, stitch.y)
|
|
|
|
|
2017-12-28 20:55:43 +00:00
|
|
|
if stitch.color == last_color:
|
2017-12-30 21:05:21 +00:00
|
|
|
segments.append(((last_pos, pos), pen))
|
|
|
|
else:
|
|
|
|
pen = wx.Pen(simplestyle.parseColor(stitch.color))
|
2017-12-28 20:55:43 +00:00
|
|
|
|
|
|
|
last_pos = pos
|
|
|
|
last_color = stitch.color
|
|
|
|
|
|
|
|
return segments
|
|
|
|
|
|
|
|
def _parse_stitch_file(self, stitch_file_path):
|
2017-10-03 12:10:08 +00:00
|
|
|
# "$","1","229","229","229","(null)","(null)"
|
|
|
|
# "*","JUMP","1.595898","48.731899"
|
|
|
|
# "*","STITCH","1.595898","48.731899"
|
|
|
|
|
2017-12-28 20:55:43 +00:00
|
|
|
segments = []
|
2017-10-03 12:10:08 +00:00
|
|
|
|
|
|
|
pos = (0, 0)
|
|
|
|
color = wx.Brush('black')
|
|
|
|
cut = True
|
|
|
|
|
|
|
|
with open(stitch_file_path) as stitch_file:
|
|
|
|
for line in stitch_file:
|
|
|
|
fields = line.strip().split(",")
|
|
|
|
fields = [self._strip_quotes(field) for field in fields]
|
|
|
|
|
|
|
|
symbol, command = fields[:2]
|
|
|
|
|
|
|
|
if symbol == "$":
|
|
|
|
red, green, blue = fields[2:5]
|
|
|
|
color = wx.Pen((int(red), int(green), int(blue)))
|
|
|
|
elif symbol == "*":
|
|
|
|
if command == "COLOR":
|
|
|
|
# change color
|
|
|
|
# The next command should be a JUMP, and we'll need to skip stitching.
|
|
|
|
cut = True
|
|
|
|
elif command == "JUMP" or command == "STITCH":
|
|
|
|
# JUMP just means a long stitch, really.
|
|
|
|
|
|
|
|
x, y = fields[2:]
|
|
|
|
new_pos = (int(float(x) * 10), int(float(y) * 10))
|
|
|
|
|
|
|
|
if not cut:
|
2017-12-28 20:55:43 +00:00
|
|
|
segments.append(((pos, new_pos), color))
|
2017-10-03 12:10:08 +00:00
|
|
|
|
|
|
|
cut = False
|
|
|
|
pos = new_pos
|
|
|
|
|
2017-12-28 20:55:43 +00:00
|
|
|
return segments
|
2017-10-03 12:10:08 +00:00
|
|
|
|
2018-01-01 03:38:15 +00:00
|
|
|
def all_coordinates(self):
|
|
|
|
for segment in self.segments:
|
|
|
|
start, end = segment[0]
|
|
|
|
|
|
|
|
yield start
|
|
|
|
yield end
|
|
|
|
|
|
|
|
def trim_margins(self):
|
|
|
|
"""remove any unnecessary whitespace around the design"""
|
|
|
|
|
|
|
|
min_x = sys.maxint
|
|
|
|
min_y = sys.maxint
|
|
|
|
|
|
|
|
for x, y in self.all_coordinates():
|
|
|
|
min_x = min(min_x, x)
|
|
|
|
min_y = min(min_y, y)
|
|
|
|
|
|
|
|
new_segments = []
|
|
|
|
|
|
|
|
for segment in self.segments:
|
|
|
|
(start, end), color = segment
|
|
|
|
|
|
|
|
new_segment = (
|
|
|
|
(
|
|
|
|
(start[0] - min_x, start[1] - min_y),
|
|
|
|
(end[0] - min_x, end[1] - min_y),
|
|
|
|
),
|
|
|
|
color
|
|
|
|
)
|
|
|
|
|
|
|
|
new_segments.append(new_segment)
|
|
|
|
|
|
|
|
self.segments = new_segments
|
|
|
|
|
2017-10-03 12:10:08 +00:00
|
|
|
def get_dimensions(self):
|
|
|
|
width = 0
|
|
|
|
height = 0
|
|
|
|
|
2018-01-01 03:38:15 +00:00
|
|
|
for x, y in self.all_coordinates():
|
|
|
|
width = max(width, x)
|
|
|
|
height = max(height, y)
|
2017-10-03 12:10:08 +00:00
|
|
|
|
|
|
|
return width, height
|
|
|
|
|
|
|
|
def go(self):
|
2017-12-28 20:55:43 +00:00
|
|
|
self.clear()
|
|
|
|
|
2017-10-03 12:10:08 +00:00
|
|
|
self.current_stitch = 0
|
2017-12-28 20:39:56 +00:00
|
|
|
self.timer = wx.PyTimer(self.draw_one_frame)
|
2017-10-03 12:10:08 +00:00
|
|
|
self.timer.Start(self.frame_period)
|
|
|
|
|
2017-12-30 21:05:21 +00:00
|
|
|
def on_close(self, event):
|
|
|
|
self.stop()
|
|
|
|
|
|
|
|
if self.on_close_hook:
|
|
|
|
self.on_close_hook()
|
|
|
|
|
|
|
|
self.Destroy()
|
|
|
|
|
2017-12-28 20:55:43 +00:00
|
|
|
def stop(self):
|
2017-12-30 21:05:21 +00:00
|
|
|
if self.timer:
|
|
|
|
self.timer.Stop()
|
2017-12-28 20:55:43 +00:00
|
|
|
|
2017-10-03 12:10:08 +00:00
|
|
|
def clear(self):
|
|
|
|
self.dc.SetBackground(wx.Brush('white'))
|
|
|
|
self.dc.Clear()
|
2017-12-31 01:54:35 +00:00
|
|
|
self.last_pos = None
|
|
|
|
self.Refresh()
|
2017-10-03 12:10:08 +00:00
|
|
|
|
|
|
|
def on_size(self, e):
|
|
|
|
# ensure that the whole canvas is visible
|
|
|
|
window_width, window_height = self.GetSize()
|
|
|
|
client_width, client_height = self.GetClientSize()
|
|
|
|
|
|
|
|
decorations_width = window_width - client_width
|
|
|
|
decorations_height = window_height - client_height
|
|
|
|
|
|
|
|
self.SetSize((self.width + decorations_width, self.height + decorations_height))
|
|
|
|
|
|
|
|
e.Skip()
|
|
|
|
|
|
|
|
def on_paint(self, e):
|
|
|
|
dc = wx.PaintDC(self.panel)
|
|
|
|
dc.DrawBitmap(self.buffer, 0, 0)
|
|
|
|
|
|
|
|
if self.last_pos:
|
|
|
|
dc.DrawLine(self.last_pos[0] - 10, self.last_pos[1], self.last_pos[0] + 10, self.last_pos[1])
|
|
|
|
dc.DrawLine(self.last_pos[0], self.last_pos[1] - 10, self.last_pos[0], self.last_pos[1] + 10)
|
|
|
|
|
|
|
|
def redraw(self):
|
|
|
|
dc = wx.ClientDC(self)
|
|
|
|
dc.DrawBitmap(self.buffer, 0, 0)
|
|
|
|
|
2017-12-28 20:39:56 +00:00
|
|
|
def draw_one_frame(self):
|
2017-10-03 12:10:08 +00:00
|
|
|
for i in xrange(self.stitches_per_frame):
|
|
|
|
try:
|
2017-12-28 20:55:43 +00:00
|
|
|
((x1, y1), (x2, y2)), color = self.segments[self.current_stitch]
|
2018-01-01 03:05:05 +00:00
|
|
|
|
|
|
|
if self.mirror:
|
|
|
|
y1 = self.height - y1
|
|
|
|
y2 = self.height - y2
|
2017-10-03 12:10:08 +00:00
|
|
|
|
|
|
|
self.canvas.SetPen(color)
|
|
|
|
self.canvas.DrawLines(((x1, y1), (x2, y2)))
|
|
|
|
self.Refresh()
|
|
|
|
|
|
|
|
self.current_stitch += 1
|
|
|
|
self.last_pos = (x2, y2)
|
|
|
|
except IndexError:
|
|
|
|
self.timer.Stop()
|
|
|
|
|
|
|
|
class SimulateEffect(inkex.Effect):
|
|
|
|
def __init__(self):
|
|
|
|
inkex.Effect.__init__(self)
|
|
|
|
self.OptionParser.add_option("-P", "--path",
|
|
|
|
action="store", type="string",
|
|
|
|
dest="path", default=".",
|
|
|
|
help="Directory in which to store output file")
|
|
|
|
|
|
|
|
def effect(self):
|
|
|
|
app = wx.App()
|
|
|
|
frame = EmbroiderySimulator(None, -1, "Embroidery Simulation", wx.DefaultPosition, size=(1000, 1000), stitch_file=self.get_stitch_file())
|
|
|
|
app.SetTopWindow(frame)
|
|
|
|
frame.Show()
|
|
|
|
wx.CallAfter(frame.go)
|
|
|
|
app.MainLoop()
|
|
|
|
|
|
|
|
def get_stitch_file(self):
|
|
|
|
svg_filename = self.document.getroot().get(inkex.addNS('docname', 'sodipodi'))
|
|
|
|
csv_filename = svg_filename.replace('.svg', '.csv')
|
|
|
|
stitch_file = os.path.join(self.options.path, csv_filename)
|
|
|
|
|
|
|
|
return stitch_file
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
effect = SimulateEffect()
|
|
|
|
effect.affect()
|
|
|
|
sys.exit(0)
|