printrun-src/printrun/pronterface.py

Tue, 19 Jan 2021 20:25:47 +0100

author
mdd
date
Tue, 19 Jan 2021 20:25:47 +0100
changeset 43
f7e9bd735ce1
parent 42
ea4c43494a19
child 47
dcc64b767b64
permissions
-rw-r--r--

NeoCube laser cutting improvements

15
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1 #!/usr/bin/env python
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2
29
c96f20e95029 Changed min/max setting values
mdd
parents: 25
diff changeset
3 # FILE MODIFIED BY NEOSOFT - MALTE DI DONATO
16
36d478bde840 Implemented svg, png and hpgl compilers to pronterface
mbayer
parents: 15
diff changeset
4 # Embed Lasercut functions from laser.py
31
92035ebc4743 ModuleWatcher code embed, doesnt work on windows os
mdd
parents: 29
diff changeset
5 from . import laser
29
c96f20e95029 Changed min/max setting values
mdd
parents: 25
diff changeset
6 try:
31
92035ebc4743 ModuleWatcher code embed, doesnt work on windows os
mdd
parents: 29
diff changeset
7 from . import module_watcher
92035ebc4743 ModuleWatcher code embed, doesnt work on windows os
mdd
parents: 29
diff changeset
8 mw = module_watcher.ModuleWatcher()
29
c96f20e95029 Changed min/max setting values
mdd
parents: 25
diff changeset
9 mw.watch_module('laser')
c96f20e95029 Changed min/max setting values
mdd
parents: 25
diff changeset
10 mw.start_watching()
31
92035ebc4743 ModuleWatcher code embed, doesnt work on windows os
mdd
parents: 29
diff changeset
11 except Exception, e:
92035ebc4743 ModuleWatcher code embed, doesnt work on windows os
mdd
parents: 29
diff changeset
12 print e
92035ebc4743 ModuleWatcher code embed, doesnt work on windows os
mdd
parents: 29
diff changeset
13 print "ModuleWatcher not loaded, skipping autoreloading of changed modules"
16
36d478bde840 Implemented svg, png and hpgl compilers to pronterface
mbayer
parents: 15
diff changeset
14
15
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
15 # This file is part of the Printrun suite.
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
16 #
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
17 # Printrun is free software: you can redistribute it and/or modify
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
18 # it under the terms of the GNU General Public License as published by
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
19 # the Free Software Foundation, either version 3 of the License, or
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
20 # (at your option) any later version.
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
21 #
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
22 # Printrun is distributed in the hope that it will be useful,
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
23 # but WITHOUT ANY WARRANTY; without even the implied warranty of
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
24 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
25 # GNU General Public License for more details.
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
26 #
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
27 # You should have received a copy of the GNU General Public License
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
28 # along with Printrun. If not, see <http://www.gnu.org/licenses/>.
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
29
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
30 import os
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
31 import Queue
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
32 import sys
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
33 import time
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
34 import threading
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
35 import traceback
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
36 import cStringIO as StringIO
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
37 import subprocess
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
38 import glob
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
39 import logging
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
40
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
41 try: import simplejson as json
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
42 except ImportError: import json
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
43
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
44 from . import pronsole
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
45 from . import printcore
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
46
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
47 from .utils import install_locale, setup_logging, dosify, \
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
48 iconfile, configfile, format_time, format_duration, \
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
49 hexcolor_to_float, parse_temperature_report, \
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
50 prepare_command, check_rgb_color, check_rgba_color
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
51 install_locale('pronterface')
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
52
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
53 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
54 import wx
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
55 except:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
56 logging.error(_("WX is not installed. This program requires WX to run."))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
57 raise
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
58
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
59 from .gui.widgets import SpecialButton, MacroEditor, PronterOptions, ButtonEdit
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
60
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
61 winsize = (800, 500)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
62 layerindex = 0
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
63 if os.name == "nt":
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
64 winsize = (800, 530)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
65
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
66 pronterface_quitting = False
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
67
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
68 class PronterfaceQuitException(Exception):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
69 pass
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
70
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
71 from .gui import MainWindow
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
72 from .settings import wxSetting, HiddenSetting, StringSetting, SpinSetting, \
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
73 FloatSpinSetting, BooleanSetting, StaticTextSetting
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
74 from printrun import gcoder
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
75 from .pronsole import REPORT_NONE, REPORT_POS, REPORT_TEMP, REPORT_MANUAL
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
76
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
77 class ConsoleOutputHandler(object):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
78 """Handle console output. All messages go through the logging submodule. We setup a logging handler to get logged messages and write them to both stdout (unless a log file path is specified, in which case we add another logging handler to write to this file) and the log panel.
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
79 We also redirect stdout and stderr to ourself to catch print messages and al."""
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
80
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
81 def __init__(self, target, log_path):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
82 self.stdout = sys.stdout
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
83 self.stderr = sys.stderr
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
84 sys.stdout = self
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
85 sys.stderr = self
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
86 if log_path:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
87 self.print_on_stdout = False
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
88 setup_logging(self, log_path, reset_handlers = True)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
89 self.target = target
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
90 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
91 self.print_on_stdout = True
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
92 setup_logging(sys.stdout)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
93 self.target = target
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
94
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
95 def __del__(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
96 sys.stdout = self.stdout
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
97 sys.stderr = self.stderr
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
98
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
99 def write(self, data):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
100 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
101 self.target(data)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
102 except:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
103 pass
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
104 if self.print_on_stdout:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
105 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
106 data = data.encode("utf-8")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
107 except:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
108 pass
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
109 self.stdout.write(data)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
110
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
111 def flush(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
112 if self.stdout:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
113 self.stdout.flush()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
114
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
115 class ComboSetting(wxSetting):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
116
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
117 def __init__(self, name, default, choices, label = None, help = None, group = None):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
118 super(ComboSetting, self).__init__(name, default, label, help, group)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
119 self.choices = choices
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
120
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
121 def get_specific_widget(self, parent):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
122 import wx
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
123 self.widget = wx.ComboBox(parent, -1, str(self.value), choices = self.choices, style = wx.CB_DROPDOWN)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
124 return self.widget
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
125
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
126 class PronterWindow(MainWindow, pronsole.pronsole):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
127
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
128 _fgcode = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
129
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
130 def _get_fgcode(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
131 return self._fgcode
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
132
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
133 def _set_fgcode(self, value):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
134 self._fgcode = value
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
135 self.excluder = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
136 self.excluder_e = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
137 self.excluder_z_abs = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
138 self.excluder_z_rel = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
139 fgcode = property(_get_fgcode, _set_fgcode)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
140
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
141 def _get_display_graph(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
142 return self.settings.tempgraph
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
143 display_graph = property(_get_display_graph)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
144
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
145 def _get_display_gauges(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
146 return self.settings.tempgauges
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
147 display_gauges = property(_get_display_gauges)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
148
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
149 def __init__(self, app, filename = None, size = winsize):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
150 pronsole.pronsole.__init__(self)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
151 self.app = app
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
152 self.window_ready = False
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
153 self.ui_ready = False
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
154 self._add_settings(size)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
155
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
156 for field in dir(self.settings):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
157 if field.startswith("_gcview_color_"):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
158 cleanname = field[1:]
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
159 color = hexcolor_to_float(getattr(self.settings, cleanname), 4)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
160 setattr(self, cleanname, list(color))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
161
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
162 self.pauseScript = None #"pause.gcode"
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
163 self.endScript = None #"end.gcode"
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
164
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
165 self.filename = filename
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
166
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
167 self.capture_skip = {}
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
168 self.capture_skip_newline = False
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
169 self.fgcode = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
170 self.excluder = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
171 self.slicep = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
172 self.current_pos = [0, 0, 0]
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
173 self.paused = False
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
174 self.uploading = False
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
175 self.sentglines = Queue.Queue(0)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
176 self.cpbuttons = {
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
177 "motorsoff": SpecialButton(_("Motors off"), ("M84"), (250, 250, 250), _("Switch all motors off")),
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
178 "extrude": SpecialButton(_("Extrude"), ("pront_extrude"), (225, 200, 200), _("Advance extruder by set length")),
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
179 "reverse": SpecialButton(_("Reverse"), ("pront_reverse"), (225, 200, 200), _("Reverse extruder by set length")),
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
180 }
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
181 self.custombuttons = []
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
182 self.btndict = {}
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
183 self.filehistory = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
184 self.autoconnect = False
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
185 self.parse_cmdline(sys.argv[1:])
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
186
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
187 # FIXME: We need to initialize the main window after loading the
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
188 # configs to restore the size, but this might have some unforeseen
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
189 # consequences.
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
190 # -- Okai, it seems it breaks things like update_gviz_params ><
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
191 os.putenv("UBUNTU_MENUPROXY", "0")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
192 size = (self.settings.last_window_width, self.settings.last_window_height)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
193 MainWindow.__init__(self, None, title = _("Pronterface"), size = size)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
194 if self.settings.last_window_maximized:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
195 self.Maximize()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
196 self.SetIcon(wx.Icon(iconfile("pronterface.png"), wx.BITMAP_TYPE_PNG))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
197 self.Bind(wx.EVT_SIZE, self.on_resize)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
198 self.Bind(wx.EVT_MAXIMIZE, self.on_maximize)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
199 self.window_ready = True
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
200
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
201 # set feedrates in printcore for pause/resume
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
202 self.p.xy_feedrate = self.settings.xy_feedrate
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
203 self.p.z_feedrate = self.settings.z_feedrate
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
204
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
205 self.panel.SetBackgroundColour(self.bgcolor)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
206 customdict = {}
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
207 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
208 execfile(configfile("custombtn.txt"), customdict)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
209 if len(customdict["btns"]):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
210 if not len(self.custombuttons):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
211 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
212 self.custombuttons = customdict["btns"]
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
213 for n in xrange(len(self.custombuttons)):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
214 self.cbutton_save(n, self.custombuttons[n])
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
215 os.rename("custombtn.txt", "custombtn.old")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
216 rco = open("custombtn.txt", "w")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
217 rco.write(_("# I moved all your custom buttons into .pronsolerc.\n# Please don't add them here any more.\n# Backup of your old buttons is in custombtn.old\n"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
218 rco.close()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
219 except IOError, x:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
220 logging.error(str(x))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
221 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
222 logging.warning(_("Note!!! You have specified custom buttons in both custombtn.txt and .pronsolerc"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
223 logging.warning(_("Ignoring custombtn.txt. Remove all current buttons to revert to custombtn.txt"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
224
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
225 except:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
226 pass
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
227 self.create_menu()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
228 self.update_recent_files("recentfiles", self.settings.recentfiles)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
229
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
230 self.reload_ui()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
231 # disable all printer controls until we connect to a printer
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
232 self.gui_set_disconnected()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
233 self.statusbar = self.CreateStatusBar()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
234 self.statusbar.SetStatusText(_("Not connected to printer."))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
235
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
236 self.t = ConsoleOutputHandler(self.catchprint, self.settings.log_path)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
237 self.stdout = sys.stdout
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
238 self.slicing = False
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
239 self.loading_gcode = False
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
240 self.loading_gcode_message = ""
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
241 self.mini = False
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
242 self.p.sendcb = self.sentcb
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
243 self.p.preprintsendcb = self.preprintsendcb
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
244 self.p.printsendcb = self.printsentcb
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
245 self.p.startcb = self.startcb
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
246 self.p.endcb = self.endcb
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
247 self.cur_button = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
248 self.predisconnect_mainqueue = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
249 self.predisconnect_queueindex = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
250 self.predisconnect_layer = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
251 self.hsetpoint = 0.0
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
252 self.bsetpoint = 0.0
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
253 if self.autoconnect:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
254 self.connect()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
255 if self.filename is not None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
256 self.do_load(self.filename)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
257 if self.settings.monitor:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
258 self.update_monitor()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
259
34
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
260 self.lc_printing = False
33
eee51ca7cbe7 Added support for multiple cutting passes with automatic Z refocusing
mdd
parents: 31
diff changeset
261 self.pass_current = 1
eee51ca7cbe7 Added support for multiple cutting passes with automatic Z refocusing
mdd
parents: 31
diff changeset
262
eee51ca7cbe7 Added support for multiple cutting passes with automatic Z refocusing
mdd
parents: 31
diff changeset
263 # --------------------------------------------------------------
eee51ca7cbe7 Added support for multiple cutting passes with automatic Z refocusing
mdd
parents: 31
diff changeset
264 # Lasercutter methods
eee51ca7cbe7 Added support for multiple cutting passes with automatic Z refocusing
mdd
parents: 31
diff changeset
265 # --------------------------------------------------------------
eee51ca7cbe7 Added support for multiple cutting passes with automatic Z refocusing
mdd
parents: 31
diff changeset
266
34
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
267 def on_lc_printfile(self, event):
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
268 # lc print button
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
269 self.log("Priming Z axis to initial focus")
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
270 line = self.precmd("G1 Z%.2f" % (self.settings.lc_z_focus + self.lc_material_thickness.GetValue()))
35
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
271 wx.CallAfter(self.onecmd, line)
34
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
272 self.lc_printing = True
35
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
273 wx.CallAfter(self.printfile, None)
33
eee51ca7cbe7 Added support for multiple cutting passes with automatic Z refocusing
mdd
parents: 31
diff changeset
274
eee51ca7cbe7 Added support for multiple cutting passes with automatic Z refocusing
mdd
parents: 31
diff changeset
275 def endcb_lasercut(self):
eee51ca7cbe7 Added support for multiple cutting passes with automatic Z refocusing
mdd
parents: 31
diff changeset
276 # LASERCUT: Now check if we should do another print pass?
35
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
277 self.log("event: endcb_lasercut")
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
278 if self.lc_printing:
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
279 self.log(" -> checking if something to do...")
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
280 pass_count = self.lc_pass_count.GetValue()
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
281 if pass_count > 1:
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
282 time.sleep(0.5)
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
283 if self.pass_current < pass_count:
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
284 self.pass_current += 1
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
285 self.log("Starting lasercut pass # %i of %i" % (self.pass_current, pass_count))
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
286 if self.lc_pass_zdiff.GetValue() != 0:
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
287 # move Z focus
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
288 new_z = self.settings.lc_z_focus + self.lc_material_thickness.GetValue() + (
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
289 self.lc_pass_zdiff.GetValue() * (self.pass_current - 1))
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
290 self.log("Re-Positioning laser focus by %.1f mm to %.1f" % (self.lc_pass_zdiff.GetValue(), new_z))
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
291 line = self.precmd("G1 Z%.2f" % (new_z))
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
292 self.onecmd(line)
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
293 time.sleep(0.5)
34
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
294
35
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
295 # "click" print button again
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
296 tmp = self.pass_current
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
297 self.printfile(None)
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
298 self.pass_current = tmp
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
299 else:
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
300 self.lc_printing = False
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
301 wx.CallAfter(self.lc_printbtn.Enable)
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
302 wx.CallAfter(self.lc_printbtn.SetLabel, _("Start cutting"))
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
303
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
304 self.log("Resetting Z axis to initial focus")
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
305 line = self.precmd("G1 Z%.2f" % (self.settings.lc_z_focus + self.lc_material_thickness.GetValue()))
33
eee51ca7cbe7 Added support for multiple cutting passes with automatic Z refocusing
mdd
parents: 31
diff changeset
306 self.onecmd(line)
eee51ca7cbe7 Added support for multiple cutting passes with automatic Z refocusing
mdd
parents: 31
diff changeset
307 else:
34
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
308 self.lc_printing = False
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
309 wx.CallAfter(self.lc_printbtn.Enable)
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
310 wx.CallAfter(self.lc_printbtn.SetLabel, _("Start cutting"))
35
72c4cbf64211 Final bugfixes, SVG working like a charm now
mdd
parents: 34
diff changeset
311
33
eee51ca7cbe7 Added support for multiple cutting passes with automatic Z refocusing
mdd
parents: 31
diff changeset
312
34
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
313 def update_lc_settings(self, key, value):
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
314 return True
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
315
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
316 def _lc_add_settings(self, size):
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
317 # first add the lasercutter options
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
318 self.settings._add(StaticTextSetting("separator_lc_general", "General laser settings", "", group = "Laser"))
43
f7e9bd735ce1 NeoCube laser cutting improvements
mdd
parents: 42
diff changeset
319 self.settings._add(BooleanSetting("lc_melzi_hack", False, "Use Melzi M571 Hack instead M3/M5", "no description :)", "Laser"), self.update_lc_settings)
34
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
320 self.settings._add(SpinSetting("lc_travel_speed", 120, 1, 300, "Travel speed in mm/s", "", "Laser"), self.update_lc_settings)
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
321 self.settings._add(SpinSetting("lc_engrave_speed", 10, 1, 300, "Engrave speed in mm/s", "", "Laser"), self.update_lc_settings)
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
322 self.settings._add(SpinSetting("lc_z_focus", 16, -80, 80, "Laser Z focus position", "", "Laser"), self.update_lc_settings)
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
323 self.settings._add(SpinSetting("lc_pass_count", 1, 0, 20, "Default Number of cutting passes", "", "Laser"), self.reload_ui)
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
324 self.settings._add(FloatSpinSetting("lc_pass_zdiff", -0.25, -2.0, 2.0, "Default Z movement after each cut", "", "Laser"), self.reload_ui)
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
325 self.settings._add(FloatSpinSetting("lc_material_thickness", 4.0, 0.0, 80.0, "Default Material Thickness", "", "Laser"), self.reload_ui)
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
326
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
327 self.settings._add(StaticTextSetting("separator_lc_bitmap", "PNG Bitmap processing", "", group = "Laser"))
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
328 self.settings._add(FloatSpinSetting("lc_bitmap_speed_factor", 1.0, 0.1, 2.0, "Engrave speed factor", "", "Laser"), self.update_lc_settings)
43
f7e9bd735ce1 NeoCube laser cutting improvements
mdd
parents: 42
diff changeset
329 self.settings._add(SpinSetting("lc_dpi", 300, 25, 600, "Image DPI", "Image resolution for scaling", "Laser"), self.update_lc_settings)
34
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
330 self.settings._add(SpinSetting("lc_grey_threshold", 0, 0, 255, "Grey threshold value for RGB", "", "Laser"), self.update_lc_settings)
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
331 self.settings._add(BooleanSetting("lc_invert_cut", True, "PNG: Invert grey threshold", "Invert laser on/off logic", "Laser"), self.update_lc_settings)
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
332 self.settings._add(BooleanSetting("lc_change_dir", True, "PNG: Change direction", "Engrave in both directions on Y Axis", "Laser"), self.update_lc_settings)
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
333
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
334 self.settings._add(StaticTextSetting("separator_lc_hpgl", "HPGL processing", "", group = "Laser"))
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
335 self.settings._add(FloatSpinSetting("lc_hpgl_speed_factor", 1.0, 0.1, 2.0, "Engrave speed factor", "", "Laser"), self.update_lc_settings)
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
336
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
337 self.settings._add(StaticTextSetting("separator_lc_svg", "SVG processing", "", group = "Laser"))
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
338 self.settings._add(FloatSpinSetting("lc_svg_speed_factor", 1.0, 0.1, 2.0, "Engrave speed factor", "", "Laser"), self.update_lc_settings)
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
339 self.settings._add(FloatSpinSetting("lc_svg_smoothness", 0.2, 0.1, 10.0, "Smoothness", "Smoothness of curves (smaller value = smoother curve)", "Laser"), self.update_lc_settings)
43
f7e9bd735ce1 NeoCube laser cutting improvements
mdd
parents: 42
diff changeset
340 self.settings._add(SpinSetting("lc_svg_width", 50, 1, 9999, "Width (mm)", "Image width", "Laser"), self.update_lc_settings)
f7e9bd735ce1 NeoCube laser cutting improvements
mdd
parents: 42
diff changeset
341 self.settings._add(SpinSetting("lc_svg_height", 50, 1, 9999, "Height (mm)", "Image height", "Laser"), self.update_lc_settings)
36
f4730ef55ca8 SVG options: offset, original scale
mdd
parents: 35
diff changeset
342 self.settings._add(ComboSetting("lc_svg_scalemode", "original", ["original", "scale", "stretch"], "Scaling mode", "scale/stretch to above dimensions", "Laser"), self.update_lc_settings)
f4730ef55ca8 SVG options: offset, original scale
mdd
parents: 35
diff changeset
343 self.settings._add(BooleanSetting("lc_svg_offset", True, "Calculate offset to X=0, Y=0", "If enabled, move image to origin position", "Laser"), self.update_lc_settings)
33
eee51ca7cbe7 Added support for multiple cutting passes with automatic Z refocusing
mdd
parents: 31
diff changeset
344
15
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
345 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
346 # Main interface handling
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
347 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
348
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
349 def reset_ui(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
350 MainWindow.reset_ui(self)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
351 self.custombuttons_widgets = []
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
352
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
353 def reload_ui(self, *args):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
354 if not self.window_ready: return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
355 self.Freeze()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
356
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
357 # If UI is being recreated, delete current one
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
358 if self.ui_ready:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
359 # Store log console content
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
360 logcontent = self.logbox.GetValue()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
361 # Create a temporary panel to reparent widgets with state we want
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
362 # to retain across UI changes
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
363 temppanel = wx.Panel(self)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
364 # TODO: add viz widgets to statefulControls
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
365 for control in self.statefulControls:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
366 control.GetContainingSizer().Detach(control)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
367 control.Reparent(temppanel)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
368 self.panel.DestroyChildren()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
369 self.gwindow.Destroy()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
370 self.reset_ui()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
371
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
372 # Create UI
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
373 if self.settings.uimode in (_("Tabbed"), _("Tabbed with platers")):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
374 self.createTabbedGui()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
375 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
376 self.createGui(self.settings.uimode == _("Compact"),
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
377 self.settings.controlsmode == "Mini")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
378
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
379 if hasattr(self, "splitterwindow"):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
380 self.splitterwindow.SetSashPosition(self.settings.last_sash_position)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
381
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
382 def splitter_resize(event):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
383 self.splitterwindow.UpdateSize()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
384 self.splitterwindow.Bind(wx.EVT_SIZE, splitter_resize)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
385
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
386 def sash_position_changed(event):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
387 self.set("last_sash_position", self.splitterwindow.GetSashPosition())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
388 self.splitterwindow.Bind(wx.EVT_SPLITTER_SASH_POS_CHANGED, sash_position_changed)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
389
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
390 # Set gcview parameters here as they don't get set when viewers are
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
391 # created
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
392 self.update_gcview_params()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
393
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
394 # Finalize
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
395 if self.online:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
396 self.gui_set_connected()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
397 if self.ui_ready:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
398 self.logbox.SetValue(logcontent)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
399 temppanel.Destroy()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
400 self.panel.Layout()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
401 if self.fgcode:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
402 self.start_viz_thread()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
403 if self.settings.monitor:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
404 self.update_monitor()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
405 self.ui_ready = True
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
406 self.Thaw()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
407
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
408 def on_resize(self, event):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
409 wx.CallAfter(self.on_resize_real)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
410 event.Skip()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
411
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
412 def on_resize_real(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
413 maximized = self.IsMaximized()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
414 self.set("last_window_maximized", maximized)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
415 if not maximized and not self.IsIconized():
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
416 size = self.GetSize()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
417 self.set("last_window_width", size[0])
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
418 self.set("last_window_height", size[1])
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
419
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
420 def on_maximize(self, event):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
421 self.set("last_window_maximized", self.IsMaximized())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
422 event.Skip()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
423
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
424 def on_exit(self, event):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
425 self.Close()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
426
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
427 def kill(self, e):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
428 if self.p.printing or self.p.paused:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
429 dlg = wx.MessageDialog(self, _("Print in progress ! Are you really sure you want to quit ?"), _("Exit"), wx.YES_NO | wx.ICON_WARNING)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
430 if dlg.ShowModal() == wx.ID_NO:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
431 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
432 pronsole.pronsole.kill(self)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
433 global pronterface_quitting
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
434 pronterface_quitting = True
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
435 self.p.recvcb = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
436 self.p.disconnect()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
437 if hasattr(self, "feedrates_changed"):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
438 self.save_in_rc("set xy_feedrate", "set xy_feedrate %d" % self.settings.xy_feedrate)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
439 self.save_in_rc("set z_feedrate", "set z_feedrate %d" % self.settings.z_feedrate)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
440 self.save_in_rc("set e_feedrate", "set e_feedrate %d" % self.settings.e_feedrate)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
441 if self.settings.last_extrusion != self.settings.default_extrusion:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
442 self.save_in_rc("set last_extrusion", "set last_extrusion %d" % self.settings.last_extrusion)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
443 if self.excluder:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
444 self.excluder.close_window()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
445 wx.CallAfter(self.gwindow.Destroy)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
446 wx.CallAfter(self.Destroy)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
447
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
448 def _get_bgcolor(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
449 if self.settings.bgcolor != "auto":
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
450 return self.settings.bgcolor
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
451 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
452 return wx.SystemSettings.GetColour(wx.SYS_COLOUR_WINDOWFRAME)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
453 bgcolor = property(_get_bgcolor)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
454
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
455 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
456 # Main interface actions
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
457 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
458
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
459 def do_monitor(self, l = ""):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
460 if l.strip() == "":
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
461 self.set("monitor", not self.settings.monitor)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
462 elif l.strip() == "off":
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
463 self.set("monitor", False)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
464 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
465 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
466 self.monitor_interval = float(l)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
467 self.set("monitor", self.monitor_interval > 0)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
468 except:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
469 self.log(_("Invalid period given."))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
470 if self.settings.monitor:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
471 self.log(_("Monitoring printer."))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
472 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
473 self.log(_("Done monitoring."))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
474
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
475 def do_pront_extrude(self, l = ""):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
476 feed = self.settings.e_feedrate
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
477 self.do_extrude_final(self.edist.GetValue(), feed)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
478
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
479 def do_pront_reverse(self, l = ""):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
480 feed = self.settings.e_feedrate
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
481 self.do_extrude_final(- self.edist.GetValue(), feed)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
482
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
483 def do_settemp(self, l = ""):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
484 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
485 if l.__class__ not in (str, unicode) or not len(l):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
486 l = str(self.htemp.GetValue().split()[0])
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
487 l = l.lower().replace(", ", ".")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
488 for i in self.temps.keys():
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
489 l = l.replace(i, self.temps[i])
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
490 f = float(l)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
491 if f >= 0:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
492 if self.p.online:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
493 self.p.send_now("M104 S" + l)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
494 self.log(_("Setting hotend temperature to %f degrees Celsius.") % f)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
495 self.sethotendgui(f)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
496 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
497 self.logError(_("Printer is not online."))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
498 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
499 self.logError(_("You cannot set negative temperatures. To turn the hotend off entirely, set its temperature to 0."))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
500 except Exception, x:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
501 self.logError(_("You must enter a temperature. (%s)") % (repr(x),))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
502
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
503 def do_bedtemp(self, l = ""):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
504 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
505 if l.__class__ not in (str, unicode) or not len(l):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
506 l = str(self.btemp.GetValue().split()[0])
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
507 l = l.lower().replace(", ", ".")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
508 for i in self.bedtemps.keys():
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
509 l = l.replace(i, self.bedtemps[i])
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
510 f = float(l)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
511 if f >= 0:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
512 if self.p.online:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
513 self.p.send_now("M140 S" + l)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
514 self.log(_("Setting bed temperature to %f degrees Celsius.") % f)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
515 self.setbedgui(f)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
516 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
517 self.logError(_("Printer is not online."))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
518 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
519 self.logError(_("You cannot set negative temperatures. To turn the bed off entirely, set its temperature to 0."))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
520 except Exception, x:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
521 self.logError(_("You must enter a temperature. (%s)") % (repr(x),))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
522
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
523 def do_setspeed(self, l = ""):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
524 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
525 if l.__class__ not in (str, unicode) or not len(l):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
526 l = str(self.speed_slider.GetValue())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
527 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
528 l = l.lower()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
529 speed = int(l)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
530 if self.p.online:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
531 self.p.send_now("M220 S" + l)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
532 self.log(_("Setting print speed factor to %d%%.") % speed)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
533 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
534 self.logError(_("Printer is not online."))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
535 except Exception, x:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
536 self.logError(_("You must enter a speed. (%s)") % (repr(x),))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
537
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
538 def do_setflow(self, l = ""):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
539 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
540 if l.__class__ not in (str, unicode) or not len(l):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
541 l = str(self.flow_slider.GetValue())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
542 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
543 l = l.lower()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
544 flow = int(l)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
545 if self.p.online:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
546 self.p.send_now("M221 S" + l)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
547 self.log(_("Setting print flow factor to %d%%.") % flow)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
548 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
549 self.logError(_("Printer is not online."))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
550 except Exception, x:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
551 self.logError(_("You must enter a flow. (%s)") % (repr(x),))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
552
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
553 def setbedgui(self, f):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
554 self.bsetpoint = f
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
555 if self.display_gauges: self.bedtgauge.SetTarget(int(f))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
556 if self.display_graph: wx.CallAfter(self.graph.SetBedTargetTemperature, int(f))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
557 if f > 0:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
558 wx.CallAfter(self.btemp.SetValue, str(f))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
559 self.set("last_bed_temperature", str(f))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
560 wx.CallAfter(self.setboff.SetBackgroundColour, None)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
561 wx.CallAfter(self.setboff.SetForegroundColour, None)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
562 wx.CallAfter(self.setbbtn.SetBackgroundColour, "#FFAA66")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
563 wx.CallAfter(self.setbbtn.SetForegroundColour, "#660000")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
564 wx.CallAfter(self.btemp.SetBackgroundColour, "#FFDABB")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
565 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
566 wx.CallAfter(self.setboff.SetBackgroundColour, "#0044CC")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
567 wx.CallAfter(self.setboff.SetForegroundColour, "white")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
568 wx.CallAfter(self.setbbtn.SetBackgroundColour, None)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
569 wx.CallAfter(self.setbbtn.SetForegroundColour, None)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
570 wx.CallAfter(self.btemp.SetBackgroundColour, "white")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
571 wx.CallAfter(self.btemp.Refresh)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
572
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
573 def sethotendgui(self, f):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
574 self.hsetpoint = f
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
575 if self.display_gauges: self.hottgauge.SetTarget(int(f))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
576 if self.display_graph: wx.CallAfter(self.graph.SetExtruder0TargetTemperature, int(f))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
577 if f > 0:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
578 wx.CallAfter(self.htemp.SetValue, str(f))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
579 self.set("last_temperature", str(f))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
580 wx.CallAfter(self.settoff.SetBackgroundColour, None)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
581 wx.CallAfter(self.settoff.SetForegroundColour, None)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
582 wx.CallAfter(self.settbtn.SetBackgroundColour, "#FFAA66")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
583 wx.CallAfter(self.settbtn.SetForegroundColour, "#660000")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
584 wx.CallAfter(self.htemp.SetBackgroundColour, "#FFDABB")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
585 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
586 wx.CallAfter(self.settoff.SetBackgroundColour, "#0044CC")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
587 wx.CallAfter(self.settoff.SetForegroundColour, "white")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
588 wx.CallAfter(self.settbtn.SetBackgroundColour, None)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
589 wx.CallAfter(self.settbtn.SetForegroundColour, None)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
590 wx.CallAfter(self.htemp.SetBackgroundColour, "white")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
591 wx.CallAfter(self.htemp.Refresh)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
592
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
593 def rescanports(self, event = None):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
594 scanned = self.scanserial()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
595 portslist = list(scanned)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
596 if self.settings.port != "" and self.settings.port not in portslist:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
597 portslist.append(self.settings.port)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
598 self.serialport.Clear()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
599 self.serialport.AppendItems(portslist)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
600 if os.path.exists(self.settings.port) or self.settings.port in scanned:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
601 self.serialport.SetValue(self.settings.port)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
602 elif portslist:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
603 self.serialport.SetValue(portslist[0])
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
604
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
605 def cbkey(self, e):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
606 if e.GetKeyCode() == wx.WXK_UP:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
607 if self.commandbox.histindex == len(self.commandbox.history):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
608 self.commandbox.history.append(self.commandbox.GetValue()) # save current command
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
609 if len(self.commandbox.history):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
610 self.commandbox.histindex = (self.commandbox.histindex - 1) % len(self.commandbox.history)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
611 self.commandbox.SetValue(self.commandbox.history[self.commandbox.histindex])
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
612 self.commandbox.SetSelection(0, len(self.commandbox.history[self.commandbox.histindex]))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
613 elif e.GetKeyCode() == wx.WXK_DOWN:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
614 if self.commandbox.histindex == len(self.commandbox.history):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
615 self.commandbox.history.append(self.commandbox.GetValue()) # save current command
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
616 if len(self.commandbox.history):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
617 self.commandbox.histindex = (self.commandbox.histindex + 1) % len(self.commandbox.history)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
618 self.commandbox.SetValue(self.commandbox.history[self.commandbox.histindex])
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
619 self.commandbox.SetSelection(0, len(self.commandbox.history[self.commandbox.histindex]))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
620 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
621 e.Skip()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
622
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
623 def plate(self, e):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
624 from . import stlplater as plater
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
625 self.log(_("Plate function activated"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
626 plater.StlPlater(size = (800, 580), callback = self.platecb,
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
627 parent = self,
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
628 build_dimensions = self.build_dimensions_list,
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
629 circular_platform = self.settings.circular_bed,
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
630 simarrange_path = self.settings.simarrange_path,
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
631 antialias_samples = int(self.settings.antialias3dsamples)).Show()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
632
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
633 def plate_gcode(self, e):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
634 from . import gcodeplater as plater
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
635 self.log(_("G-Code plate function activated"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
636 plater.GcodePlater(size = (800, 580), callback = self.platecb,
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
637 parent = self,
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
638 build_dimensions = self.build_dimensions_list,
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
639 circular_platform = self.settings.circular_bed,
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
640 antialias_samples = int(self.settings.antialias3dsamples)).Show()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
641
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
642 def platecb(self, name):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
643 self.log(_("Plated %s") % name)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
644 self.loadfile(None, name)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
645 if self.settings.uimode in (_("Tabbed"), _("Tabbed with platers")):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
646 # Switch to page 1 (Status tab)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
647 self.notebook.SetSelection(1)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
648
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
649 def do_editgcode(self, e = None):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
650 if self.filename is not None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
651 MacroEditor(self.filename, [line.raw for line in self.fgcode], self.doneediting, True)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
652
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
653 def doneediting(self, gcode):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
654 open(self.filename, "w").write("\n".join(gcode))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
655 wx.CallAfter(self.loadfile, None, self.filename)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
656
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
657 def sdmenu(self, e):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
658 obj = e.GetEventObject()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
659 popupmenu = wx.Menu()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
660 item = popupmenu.Append(-1, _("SD Upload"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
661 if not self.fgcode:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
662 item.Enable(False)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
663 self.Bind(wx.EVT_MENU, self.upload, id = item.GetId())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
664 item = popupmenu.Append(-1, _("SD Print"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
665 self.Bind(wx.EVT_MENU, self.sdprintfile, id = item.GetId())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
666 self.panel.PopupMenu(popupmenu, obj.GetPosition())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
667
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
668 def htemp_change(self, event):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
669 if self.hsetpoint > 0:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
670 self.do_settemp("")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
671 wx.CallAfter(self.htemp.SetInsertionPoint, 0)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
672
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
673 def btemp_change(self, event):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
674 if self.bsetpoint > 0:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
675 self.do_bedtemp("")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
676 wx.CallAfter(self.btemp.SetInsertionPoint, 0)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
677
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
678 def tool_change(self, event):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
679 self.do_tool(self.extrudersel.GetValue())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
680
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
681 def show_viz_window(self, event):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
682 if self.fgcode:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
683 self.gwindow.Show(True)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
684 self.gwindow.SetToolTip(wx.ToolTip("Mousewheel zooms the display\nShift / Mousewheel scrolls layers"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
685 self.gwindow.Raise()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
686
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
687 def setfeeds(self, e):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
688 self.feedrates_changed = True
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
689 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
690 if self.efeedc is not None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
691 self.settings._set("e_feedrate", self.efeedc.GetValue())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
692 except:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
693 pass
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
694 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
695 self.settings._set("z_feedrate", self.zfeedc.GetValue())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
696 except:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
697 pass
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
698 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
699 self.settings._set("xy_feedrate", self.xyfeedc.GetValue())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
700 except:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
701 pass
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
702 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
703 self.settings._set("last_extrusion", self.edist.GetValue())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
704 except:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
705 pass
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
706
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
707 def homeButtonClicked(self, axis):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
708 # When user clicks on the XY control, the Z control no longer gets spacebar/repeat signals
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
709 self.zb.clearRepeat()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
710 if axis == "x":
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
711 self.onecmd('home X')
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
712 elif axis == "y": # upper-right
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
713 self.onecmd('home Y')
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
714 elif axis == "z":
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
715 self.onecmd('home Z')
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
716 elif axis == "all":
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
717 self.onecmd('home')
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
718 elif axis == "center":
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
719 center_x = self.build_dimensions_list[0] / 2 + self.build_dimensions_list[3]
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
720 center_y = self.build_dimensions_list[1] / 2 + self.build_dimensions_list[4]
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
721 feed = self.settings.xy_feedrate
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
722 self.onecmd('G0 X%s Y%s F%s' % (center_x, center_y, feed))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
723 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
724 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
725 self.p.send_now('M114')
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
726
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
727 def clamped_move_message(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
728 self.log(_("Manual move outside of the build volume prevented (see the \"Clamp manual moves\" option)."))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
729
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
730 def moveXY(self, x, y):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
731 # When user clicks on the XY control, the Z control no longer gets spacebar/repeat signals
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
732 self.zb.clearRepeat()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
733 if x != 0:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
734 if self.settings.clamp_jogging:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
735 new_x = self.current_pos[0] + x
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
736 if new_x < self.build_dimensions_list[3] or new_x > self.build_dimensions_list[0] + self.build_dimensions_list[3]:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
737 self.clamped_move_message()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
738 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
739 self.onecmd('move X %s' % x)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
740 elif y != 0:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
741 if self.settings.clamp_jogging:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
742 new_y = self.current_pos[1] + y
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
743 if new_y < self.build_dimensions_list[4] or new_y > self.build_dimensions_list[1] + self.build_dimensions_list[4]:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
744 self.clamped_move_message()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
745 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
746 self.onecmd('move Y %s' % y)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
747 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
748 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
749 self.p.send_now('M114')
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
750
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
751 def moveZ(self, z):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
752 if z != 0:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
753 if self.settings.clamp_jogging:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
754 new_z = self.current_pos[2] + z
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
755 if new_z < self.build_dimensions_list[5] or new_z > self.build_dimensions_list[2] + self.build_dimensions_list[5]:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
756 self.clamped_move_message()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
757 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
758 self.onecmd('move Z %s' % z)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
759 self.p.send_now('M114')
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
760 # When user clicks on the Z control, the XY control no longer gets spacebar/repeat signals
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
761 self.xyb.clearRepeat()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
762
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
763 def spacebarAction(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
764 self.zb.repeatLast()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
765 self.xyb.repeatLast()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
766
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
767 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
768 # Console handling
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
769 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
770
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
771 def catchprint(self, l):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
772 """Called by the Tee operator to write to the log box"""
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
773 if not self.IsFrozen():
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
774 wx.CallAfter(self.addtexttolog, l)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
775
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
776 def addtexttolog(self, text):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
777 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
778 self.logbox.AppendText(text)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
779 max_length = 20000
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
780 current_length = self.logbox.GetLastPosition()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
781 if current_length > max_length:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
782 self.logbox.Remove(0, current_length / 10)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
783 except:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
784 self.log(_("Attempted to write invalid text to console, which could be due to an invalid baudrate"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
785
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
786 def clear_log(self, e):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
787 self.logbox.Clear()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
788
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
789 def set_verbose_communications(self, e):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
790 self.p.loud = e.IsChecked()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
791
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
792 def sendline(self, e):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
793 command = self.commandbox.GetValue()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
794 if not len(command):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
795 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
796 wx.CallAfter(self.addtexttolog, ">>> " + command + "\n")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
797 line = self.precmd(str(command))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
798 self.onecmd(line)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
799 self.commandbox.SetSelection(0, len(command))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
800 self.commandbox.history.append(command)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
801 self.commandbox.histindex = len(self.commandbox.history)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
802
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
803 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
804 # Main menu handling & actions
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
805 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
806
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
807 def create_menu(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
808 """Create main menu"""
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
809 self.menustrip = wx.MenuBar()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
810 # File menu
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
811 m = wx.Menu()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
812 self.Bind(wx.EVT_MENU, self.loadfile, m.Append(-1, _("&Open..."), _(" Open file")))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
813 self.savebtn = m.Append(-1, _("&Save..."), _(" Save file"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
814 self.savebtn.Enable(False)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
815 self.Bind(wx.EVT_MENU, self.savefile, self.savebtn)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
816
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
817 self.filehistory = wx.FileHistory(maxFiles = 8, idBase = wx.ID_FILE1)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
818 recent = wx.Menu()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
819 self.filehistory.UseMenu(recent)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
820 self.Bind(wx.EVT_MENU_RANGE, self.load_recent_file,
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
821 id = wx.ID_FILE1, id2 = wx.ID_FILE9)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
822 m.AppendMenu(wx.ID_ANY, _("&Recent Files"), recent)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
823 self.Bind(wx.EVT_MENU, self.clear_log, m.Append(-1, _("Clear console"), _(" Clear output console")))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
824 self.Bind(wx.EVT_MENU, self.on_exit, m.Append(wx.ID_EXIT, _("E&xit"), _(" Closes the Window")))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
825 self.menustrip.Append(m, _("&File"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
826
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
827 m = wx.Menu()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
828 self.Bind(wx.EVT_MENU, self.do_editgcode, m.Append(-1, _("&Edit..."), _(" Edit open file")))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
829 self.Bind(wx.EVT_MENU, self.plate, m.Append(-1, _("Plater"), _(" Compose 3D models into a single plate")))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
830 self.Bind(wx.EVT_MENU, self.plate_gcode, m.Append(-1, _("G-Code Plater"), _(" Compose G-Codes into a single plate")))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
831 self.Bind(wx.EVT_MENU, self.exclude, m.Append(-1, _("Excluder"), _(" Exclude parts of the bed from being printed")))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
832 self.Bind(wx.EVT_MENU, self.project, m.Append(-1, _("Projector"), _(" Project slices")))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
833 self.menustrip.Append(m, _("&Tools"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
834
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
835 m = wx.Menu()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
836 self.recoverbtn = m.Append(-1, _("Recover"), _(" Recover previous print after a disconnect (homes X, Y, restores Z and E status)"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
837 self.recoverbtn.Disable = lambda *a: self.recoverbtn.Enable(False)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
838 self.Bind(wx.EVT_MENU, self.recover, self.recoverbtn)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
839 self.menustrip.Append(m, _("&Advanced"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
840
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
841 if self.settings.slic3rintegration:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
842 m = wx.Menu()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
843 print_menu = wx.Menu()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
844 filament_menu = wx.Menu()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
845 printer_menu = wx.Menu()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
846 m.AppendSubMenu(print_menu, _("Print &settings"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
847 m.AppendSubMenu(filament_menu, _("&Filament"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
848 m.AppendSubMenu(printer_menu, _("&Printer"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
849 menus = {"print": print_menu,
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
850 "filament": filament_menu,
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
851 "printer": printer_menu}
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
852 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
853 self.load_slic3r_configs(menus)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
854 self.menustrip.Append(m, _("&Slic3r"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
855 except IOError:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
856 self.logError(_("Failed to load Slic3r configuration:") +
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
857 "\n" + traceback.format_exc())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
858
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
859 # Settings menu
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
860 m = wx.Menu()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
861 self.macros_menu = wx.Menu()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
862 m.AppendSubMenu(self.macros_menu, _("&Macros"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
863 self.Bind(wx.EVT_MENU, self.new_macro, self.macros_menu.Append(-1, _("<&New...>")))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
864 self.Bind(wx.EVT_MENU, lambda *e: PronterOptions(self), m.Append(-1, _("&Options"), _(" Options dialog")))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
865
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
866 self.Bind(wx.EVT_MENU, lambda x: threading.Thread(target = lambda: self.do_slice("set")).start(), m.Append(-1, _("Slicing settings"), _(" Adjust slicing settings")))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
867
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
868 mItem = m.AppendCheckItem(-1, _("Debug communications"),
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
869 _("Print all G-code sent to and received from the printer."))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
870 m.Check(mItem.GetId(), self.p.loud)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
871 self.Bind(wx.EVT_MENU, self.set_verbose_communications, mItem)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
872
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
873 self.menustrip.Append(m, _("&Settings"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
874 self.update_macros_menu()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
875 self.SetMenuBar(self.menustrip)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
876
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
877 m = wx.Menu()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
878 self.Bind(wx.EVT_MENU, self.about,
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
879 m.Append(-1, _("&About Printrun"), _("Show about dialog")))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
880 self.menustrip.Append(m, _("&Help"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
881
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
882 def project(self, event):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
883 """Start Projector tool"""
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
884 from printrun import projectlayer
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
885 projectlayer.SettingsFrame(self, self.p).Show()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
886
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
887 def exclude(self, event):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
888 """Start part excluder tool"""
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
889 if not self.fgcode:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
890 wx.CallAfter(self.statusbar.SetStatusText, _("No file loaded. Please use load first."))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
891 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
892 if not self.excluder:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
893 from .excluder import Excluder
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
894 self.excluder = Excluder()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
895 self.excluder.pop_window(self.fgcode, bgcolor = self.bgcolor,
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
896 build_dimensions = self.build_dimensions_list)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
897
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
898 def about(self, event):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
899 """Show about dialog"""
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
900
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
901 info = wx.AboutDialogInfo()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
902
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
903 info.SetIcon(wx.Icon(iconfile("pronterface.png"), wx.BITMAP_TYPE_PNG))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
904 info.SetName('Printrun')
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
905 info.SetVersion(printcore.__version__)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
906
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
907 description = _("Printrun is a pure Python 3D printing"
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
908 " (and other types of CNC) host software.")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
909
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
910 description += "\n\n" + \
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
911 _("%.02fmm of filament have been extruded during prints") \
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
912 % self.settings.total_filament_used
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
913
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
914 info.SetDescription(description)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
915 info.SetCopyright('(C) 2011 - 2015')
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
916 info.SetWebSite('https://github.com/kliment/Printrun')
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
917
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
918 licence = """\
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
919 Printrun is free software: you can redistribute it and/or modify it under the
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
920 terms of the GNU General Public License as published by the Free Software
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
921 Foundation, either version 3 of the License, or (at your option) any later
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
922 version.
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
923
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
924 Printrun is distributed in the hope that it will be useful, but WITHOUT ANY
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
925 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
926 PARTICULAR PURPOSE. See the GNU General Public License for more details.
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
927
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
928 You should have received a copy of the GNU General Public License along with
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
929 Printrun. If not, see <http://www.gnu.org/licenses/>."""
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
930
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
931 info.SetLicence(licence)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
932 info.AddDeveloper('Kliment Yanev')
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
933 info.AddDeveloper('Guillaume Seguin')
22
4c9bb8f93ae8 Added the Lasercut settings to the pronterface options dialog
mbayer
parents: 20
diff changeset
934 info.AddDeveloper('Malte Bayer')
15
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
935
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
936 wx.AboutBox(info)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
937
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
938 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
939 # Settings & command line handling (including update callbacks)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
940 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
941 def _add_settings(self, size):
34
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
942 self._lc_add_settings(size)
22
4c9bb8f93ae8 Added the Lasercut settings to the pronterface options dialog
mbayer
parents: 20
diff changeset
943
15
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
944 self.settings._add(BooleanSetting("monitor", True, _("Monitor printer status"), _("Regularly monitor printer temperatures (required to have functional temperature graph or gauges)"), "Printer"), self.update_monitor)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
945 self.settings._add(StringSetting("simarrange_path", "", _("Simarrange command"), _("Path to the simarrange binary to use in the STL plater"), "External"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
946 self.settings._add(BooleanSetting("circular_bed", False, _("Circular build platform"), _("Draw a circular (or oval) build platform instead of a rectangular one"), "Printer"), self.update_bed_viz)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
947 self.settings._add(SpinSetting("extruders", 0, 1, 5, _("Extruders count"), _("Number of extruders"), "Printer"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
948 self.settings._add(BooleanSetting("clamp_jogging", False, _("Clamp manual moves"), _("Prevent manual moves from leaving the specified build dimensions"), "Printer"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
949 self.settings._add(ComboSetting("uimode", _("Standard"), [_("Standard"), _("Compact"), _("Tabbed"), _("Tabbed with platers")], _("Interface mode"), _("Standard interface is a one-page, three columns layout with controls/visualization/log\nCompact mode is a one-page, two columns layout with controls + log/visualization\nTabbed mode is a two-pages mode, where the first page shows controls and the second one shows visualization and log.\nTabbed with platers mode is the same as Tabbed, but with two extra pages for the STL and G-Code platers."), "UI"), self.reload_ui)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
950 self.settings._add(ComboSetting("controlsmode", "Standard", ["Standard", "Mini"], _("Controls mode"), _("Standard controls include all controls needed for printer setup and calibration, while Mini controls are limited to the ones needed for daily printing"), "UI"), self.reload_ui)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
951 self.settings._add(BooleanSetting("slic3rintegration", False, _("Enable Slic3r integration"), _("Add a menu to select Slic3r profiles directly from Pronterface"), "UI"), self.reload_ui)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
952 self.settings._add(BooleanSetting("slic3rupdate", False, _("Update Slic3r default presets"), _("When selecting a profile in Slic3r integration menu, also save it as the default Slic3r preset"), "UI"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
953 self.settings._add(ComboSetting("mainviz", "3D", ["2D", "3D", "None"], _("Main visualization"), _("Select visualization for main window."), "Viewer"), self.reload_ui)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
954 self.settings._add(BooleanSetting("viz3d", False, _("Use 3D in GCode viewer window"), _("Use 3D mode instead of 2D layered mode in the visualization window"), "Viewer"), self.reload_ui)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
955 self.settings._add(StaticTextSetting("separator_3d_viewer", _("3D viewer options"), "", group = "Viewer"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
956 self.settings._add(BooleanSetting("light3d", False, _("Use a lighter 3D visualization"), _("Use a lighter visualization with simple lines instead of extruded paths for 3D viewer"), "Viewer"), self.reload_ui)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
957 self.settings._add(ComboSetting("antialias3dsamples", "0", ["0", "2", "4", "8"], _("Number of anti-aliasing samples"), _("Amount of anti-aliasing samples used in the 3D viewer"), "Viewer"), self.reload_ui)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
958 self.settings._add(BooleanSetting("trackcurrentlayer3d", False, _("Track current layer in main 3D view"), _("Track the currently printing layer in the main 3D visualization"), "Viewer"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
959 self.settings._add(FloatSpinSetting("gcview_path_width", 0.4, 0.01, 2, _("Extrusion width for 3D viewer"), _("Width of printed path in 3D viewer"), "Viewer", increment = 0.05), self.update_gcview_params)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
960 self.settings._add(FloatSpinSetting("gcview_path_height", 0.3, 0.01, 2, _("Layer height for 3D viewer"), _("Height of printed path in 3D viewer"), "Viewer", increment = 0.05), self.update_gcview_params)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
961 self.settings._add(BooleanSetting("tempgraph", True, _("Display temperature graph"), _("Display time-lapse temperature graph"), "UI"), self.reload_ui)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
962 self.settings._add(BooleanSetting("tempgauges", False, _("Display temperature gauges"), _("Display graphical gauges for temperatures visualization"), "UI"), self.reload_ui)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
963 self.settings._add(BooleanSetting("lockbox", False, _("Display interface lock checkbox"), _("Display a checkbox that, when check, locks most of Pronterface"), "UI"), self.reload_ui)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
964 self.settings._add(BooleanSetting("lockonstart", False, _("Lock interface upon print start"), _("If lock checkbox is enabled, lock the interface when starting a print"), "UI"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
965 self.settings._add(BooleanSetting("refreshwhenloading", True, _("Update UI during G-Code load"), _("Regularly update visualization during the load of a G-Code file"), "UI"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
966 self.settings._add(HiddenSetting("last_window_width", size[0]))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
967 self.settings._add(HiddenSetting("last_window_height", size[1]))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
968 self.settings._add(HiddenSetting("last_window_maximized", False))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
969 self.settings._add(HiddenSetting("last_sash_position", -1))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
970 self.settings._add(HiddenSetting("last_bed_temperature", 0.0))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
971 self.settings._add(HiddenSetting("last_file_path", u""))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
972 self.settings._add(HiddenSetting("last_file_filter", 0))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
973 self.settings._add(HiddenSetting("last_temperature", 0.0))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
974 self.settings._add(StaticTextSetting("separator_2d_viewer", _("2D viewer options"), "", group = "Viewer"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
975 self.settings._add(FloatSpinSetting("preview_extrusion_width", 0.5, 0, 10, _("Preview extrusion width"), _("Width of Extrusion in Preview"), "Viewer", increment = 0.1), self.update_gviz_params)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
976 self.settings._add(SpinSetting("preview_grid_step1", 10., 0, 200, _("Fine grid spacing"), _("Fine Grid Spacing"), "Viewer"), self.update_gviz_params)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
977 self.settings._add(SpinSetting("preview_grid_step2", 50., 0, 200, _("Coarse grid spacing"), _("Coarse Grid Spacing"), "Viewer"), self.update_gviz_params)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
978 self.settings._add(StringSetting("bgcolor", "#FFFFFF", _("Background color"), _("Pronterface background color"), "Colors"), self.reload_ui, validate = check_rgb_color)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
979 self.settings._add(StringSetting("gcview_color_background", "#FAFAC7FF", _("3D view background color"), _("Color of the 3D view background"), "Colors"), self.update_gcview_colors, validate = check_rgba_color)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
980 self.settings._add(StringSetting("gcview_color_travel", "#99999999", _("3D view travel moves color"), _("Color of travel moves in 3D view"), "Colors"), self.update_gcview_colors, validate = check_rgba_color)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
981 self.settings._add(StringSetting("gcview_color_tool0", "#FF000099", _("3D view print moves color"), _("Color of print moves with tool 0 in 3D view"), "Colors"), self.update_gcview_colors, validate = check_rgba_color)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
982 self.settings._add(StringSetting("gcview_color_tool1", "#AC0DFF99", _("3D view tool 1 moves color"), _("Color of print moves with tool 1 in 3D view"), "Colors"), self.update_gcview_colors, validate = check_rgba_color)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
983 self.settings._add(StringSetting("gcview_color_tool2", "#FFCE0099", _("3D view tool 2 moves color"), _("Color of print moves with tool 2 in 3D view"), "Colors"), self.update_gcview_colors, validate = check_rgba_color)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
984 self.settings._add(StringSetting("gcview_color_tool3", "#FF009F99", _("3D view tool 3 moves color"), _("Color of print moves with tool 3 in 3D view"), "Colors"), self.update_gcview_colors, validate = check_rgba_color)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
985 self.settings._add(StringSetting("gcview_color_tool4", "#00FF8F99", _("3D view tool 4 moves color"), _("Color of print moves with tool 4 in 3D view"), "Colors"), self.update_gcview_colors, validate = check_rgba_color)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
986 self.settings._add(StringSetting("gcview_color_printed", "#33BF0099", _("3D view printed moves color"), _("Color of printed moves in 3D view"), "Colors"), self.update_gcview_colors, validate = check_rgba_color)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
987 self.settings._add(StringSetting("gcview_color_current", "#00E5FFCC", _("3D view current layer moves color"), _("Color of moves in current layer in 3D view"), "Colors"), self.update_gcview_colors, validate = check_rgba_color)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
988 self.settings._add(StringSetting("gcview_color_current_printed", "#196600CC", _("3D view printed current layer moves color"), _("Color of already printed moves from current layer in 3D view"), "Colors"), self.update_gcview_colors, validate = check_rgba_color)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
989 self.settings._add(StaticTextSetting("note1", _("Note:"), _("Changing some of these settings might require a restart to get effect"), group = "UI"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
990 recentfilessetting = StringSetting("recentfiles", "[]")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
991 recentfilessetting.hidden = True
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
992 self.settings._add(recentfilessetting, self.update_recent_files)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
993
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
994 def add_cmdline_arguments(self, parser):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
995 pronsole.pronsole.add_cmdline_arguments(self, parser)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
996 parser.add_argument('-a', '--autoconnect', help = _("automatically try to connect to printer on startup"), action = "store_true")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
997
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
998 def process_cmdline_arguments(self, args):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
999 pronsole.pronsole.process_cmdline_arguments(self, args)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1000 self.autoconnect = args.autoconnect
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1001
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1002 def update_recent_files(self, param, value):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1003 if self.filehistory is None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1004 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1005 recent_files = []
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1006 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1007 recent_files = json.loads(value)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1008 except:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1009 self.logError(_("Failed to load recent files list:") +
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1010 "\n" + traceback.format_exc())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1011 # Clear history
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1012 while self.filehistory.GetCount():
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1013 self.filehistory.RemoveFileFromHistory(0)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1014 recent_files.reverse()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1015 for f in recent_files:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1016 self.filehistory.AddFileToHistory(f)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1017
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1018 def update_gviz_params(self, param, value):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1019 params_map = {"preview_extrusion_width": "extrusion_width",
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1020 "preview_grid_step1": "grid",
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1021 "preview_grid_step2": "grid"}
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1022 if param not in params_map:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1023 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1024 if not hasattr(self, "gviz"):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1025 # GUI hasn't been loaded yet, ignore this setting
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1026 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1027 trueparam = params_map[param]
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1028 if hasattr(self.gviz, trueparam):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1029 gviz = self.gviz
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1030 elif hasattr(self.gwindow, "p") and hasattr(self.gwindow.p, trueparam):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1031 gviz = self.gwindow.p
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1032 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1033 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1034 if trueparam == "grid":
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1035 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1036 item = int(param[-1]) # extract list item position
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1037 grid = list(gviz.grid)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1038 grid[item - 1] = value
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1039 value = tuple(grid)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1040 except:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1041 self.logError(traceback.format_exc())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1042 if hasattr(self.gviz, trueparam):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1043 self.apply_gviz_params(self.gviz, trueparam, value)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1044 if hasattr(self.gwindow, "p") and hasattr(self.gwindow.p, trueparam):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1045 self.apply_gviz_params(self.gwindow.p, trueparam, value)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1046
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1047 def apply_gviz_params(self, widget, param, value):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1048 setattr(widget, param, value)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1049 widget.dirty = 1
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1050 wx.CallAfter(widget.Refresh)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1051
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1052 def update_gcview_colors(self, param, value):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1053 color = hexcolor_to_float(value, 4)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1054 # This is sort of a hack: we copy the color values into the preexisting
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1055 # color tuple so that we don't need to update the tuple used by gcview
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1056 target_color = getattr(self, param)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1057 for i, v in enumerate(color):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1058 target_color[i] = v
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1059 wx.CallAfter(self.Refresh)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1060
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1061 def update_build_dimensions(self, param, value):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1062 pronsole.pronsole.update_build_dimensions(self, param, value)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1063 self.update_bed_viz()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1064
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1065 def update_bed_viz(self, *args):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1066 """Update bed visualization when size/type changed"""
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1067 if hasattr(self, "gviz") and hasattr(self.gviz, "recreate_platform"):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1068 self.gviz.recreate_platform(self.build_dimensions_list, self.settings.circular_bed)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1069 if hasattr(self, "gwindow") and hasattr(self.gwindow, "recreate_platform"):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1070 self.gwindow.recreate_platform(self.build_dimensions_list, self.settings.circular_bed)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1071
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1072 def update_gcview_params(self, *args):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1073 need_reload = False
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1074 if hasattr(self, "gviz") and hasattr(self.gviz, "set_gcview_params"):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1075 need_reload |= self.gviz.set_gcview_params(self.settings.gcview_path_width, self.settings.gcview_path_height)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1076 if hasattr(self, "gwindow") and hasattr(self.gwindow, "set_gcview_params"):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1077 need_reload |= self.gwindow.set_gcview_params(self.settings.gcview_path_width, self.settings.gcview_path_height)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1078 if need_reload:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1079 self.start_viz_thread()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1080
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1081 def update_monitor(self, *args):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1082 if hasattr(self, "graph") and self.display_graph:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1083 if self.settings.monitor:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1084 wx.CallAfter(self.graph.StartPlotting, 1000)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1085 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1086 wx.CallAfter(self.graph.StopPlotting)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1087
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1088 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1089 # Statusbar handling
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1090 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1091
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1092 def statuschecker_inner(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1093 status_string = ""
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1094 if self.sdprinting or self.uploading or self.p.printing:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1095 secondsremain, secondsestimate, progress = self.get_eta()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1096 if self.sdprinting or self.uploading:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1097 if self.uploading:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1098 status_string += _("SD upload: %04.2f%% |") % (100 * progress,)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1099 status_string += _(" Line# %d of %d lines |") % (self.p.queueindex, len(self.p.mainqueue))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1100 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1101 status_string += _("SD printing: %04.2f%% |") % (self.percentdone,)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1102 elif self.p.printing:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1103 status_string += _("Printing: %04.2f%% |") % (100 * float(self.p.queueindex) / len(self.p.mainqueue),)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1104 status_string += _(" Line# %d of %d lines |") % (self.p.queueindex, len(self.p.mainqueue))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1105 if progress > 0:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1106 status_string += _(" Est: %s of %s remaining | ") % (format_duration(secondsremain),
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1107 format_duration(secondsestimate))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1108 status_string += _(" Z: %.3f mm") % self.curlayer
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1109 elif self.loading_gcode:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1110 status_string = self.loading_gcode_message
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1111 wx.CallAfter(self.statusbar.SetStatusText, status_string)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1112 wx.CallAfter(self.gviz.Refresh)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1113 # Call pronsole's statuschecker inner loop function to handle
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1114 # temperature monitoring and status loop sleep
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1115 pronsole.pronsole.statuschecker_inner(self, self.settings.monitor)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1116 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1117 while not self.sentglines.empty():
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1118 gc = self.sentglines.get_nowait()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1119 wx.CallAfter(self.gviz.addgcodehighlight, gc)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1120 self.sentglines.task_done()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1121 except Queue.Empty:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1122 pass
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1123
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1124 def statuschecker(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1125 pronsole.pronsole.statuschecker(self)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1126 wx.CallAfter(self.statusbar.SetStatusText, _("Not connected to printer."))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1127
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1128 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1129 # Interface lock handling
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1130 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1131
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1132 def lock(self, event = None, force = None):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1133 if force is not None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1134 self.locker.SetValue(force)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1135 if self.locker.GetValue():
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1136 self.log(_("Locking interface."))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1137 for panel in self.panels:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1138 panel.Disable()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1139 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1140 self.log(_("Unlocking interface."))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1141 for panel in self.panels:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1142 panel.Enable()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1143
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1144 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1145 # Printer connection handling
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1146 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1147
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1148 def connect(self, event = None):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1149 self.log(_("Connecting..."))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1150 port = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1151 if self.serialport.GetValue():
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1152 port = str(self.serialport.GetValue())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1153 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1154 scanned = self.scanserial()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1155 if scanned:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1156 port = scanned[0]
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1157 baud = 115200
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1158 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1159 baud = int(self.baud.GetValue())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1160 except:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1161 self.logError(_("Could not parse baud rate: ")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1162 + "\n" + traceback.format_exc())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1163 if self.paused:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1164 self.p.paused = 0
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1165 self.p.printing = 0
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1166 wx.CallAfter(self.pausebtn.SetLabel, _("Pause"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1167 wx.CallAfter(self.printbtn.SetLabel, _("Print"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1168 wx.CallAfter(self.toolbarsizer.Layout)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1169 self.paused = 0
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1170 if self.sdprinting:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1171 self.p.send_now("M26 S0")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1172 if not self.connect_to_printer(port, baud, self.settings.dtr):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1173 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1174 if port != self.settings.port:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1175 self.set("port", port)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1176 if baud != self.settings.baudrate:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1177 self.set("baudrate", str(baud))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1178 if self.predisconnect_mainqueue:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1179 self.recoverbtn.Enable()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1180
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1181 def store_predisconnect_state(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1182 self.predisconnect_mainqueue = self.p.mainqueue
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1183 self.predisconnect_queueindex = self.p.queueindex
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1184 self.predisconnect_layer = self.curlayer
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1185
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1186 def disconnect(self, event = None):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1187 self.log(_("Disconnected."))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1188 if self.p.printing or self.p.paused or self.paused:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1189 self.store_predisconnect_state()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1190 self.p.disconnect()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1191 self.statuscheck = False
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1192 if self.status_thread:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1193 self.status_thread.join()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1194 self.status_thread = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1195
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1196 wx.CallAfter(self.connectbtn.SetLabel, _("Connect"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1197 wx.CallAfter(self.connectbtn.SetToolTip, wx.ToolTip(_("Connect to the printer")))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1198 wx.CallAfter(self.connectbtn.Bind, wx.EVT_BUTTON, self.connect)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1199
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1200 wx.CallAfter(self.gui_set_disconnected)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1201
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1202 if self.paused:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1203 self.p.paused = 0
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1204 self.p.printing = 0
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1205 wx.CallAfter(self.pausebtn.SetLabel, _("Pause"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1206 wx.CallAfter(self.printbtn.SetLabel, _("Print"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1207 self.paused = 0
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1208 if self.sdprinting:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1209 self.p.send_now("M26 S0")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1210
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1211 # Relayout the toolbar to handle new buttons size
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1212 wx.CallAfter(self.toolbarsizer.Layout)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1213
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1214 def reset(self, event):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1215 self.log(_("Reset."))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1216 dlg = wx.MessageDialog(self, _("Are you sure you want to reset the printer?"), _("Reset?"), wx.YES | wx.NO)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1217 if dlg.ShowModal() == wx.ID_YES:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1218 self.p.reset()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1219 self.sethotendgui(0)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1220 self.setbedgui(0)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1221 self.p.printing = 0
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1222 wx.CallAfter(self.printbtn.SetLabel, _("Print"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1223 if self.paused:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1224 self.p.paused = 0
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1225 wx.CallAfter(self.pausebtn.SetLabel, _("Pause"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1226 self.paused = 0
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1227 wx.CallAfter(self.toolbarsizer.Layout)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1228 dlg.Destroy()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1229
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1230 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1231 # Print/upload handling
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1232 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1233
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1234 def on_startprint(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1235 wx.CallAfter(self.pausebtn.SetLabel, _("Pause"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1236 wx.CallAfter(self.pausebtn.Enable)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1237 wx.CallAfter(self.printbtn.SetLabel, _("Restart"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1238 wx.CallAfter(self.toolbarsizer.Layout)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1239
34
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
1240 wx.CallAfter(self.lc_printbtn.Disable)
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
1241 wx.CallAfter(self.lc_printbtn.SetLabel, _("Cut in progress"))
654a41b13258 Added more default options
mdd
parents: 33
diff changeset
1242
15
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1243 def printfile(self, event):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1244 self.extra_print_time = 0
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1245 if self.paused:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1246 self.p.paused = 0
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1247 self.paused = 0
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1248 if self.sdprinting:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1249 self.on_startprint()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1250 self.p.send_now("M26 S0")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1251 self.p.send_now("M24")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1252 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1253
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1254 if not self.fgcode:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1255 wx.CallAfter(self.statusbar.SetStatusText, _("No file loaded. Please use load first."))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1256 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1257 if not self.p.online:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1258 wx.CallAfter(self.statusbar.SetStatusText, _("Not connected to printer."))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1259 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1260 self.sdprinting = False
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1261 self.on_startprint()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1262 self.p.startprint(self.fgcode)
33
eee51ca7cbe7 Added support for multiple cutting passes with automatic Z refocusing
mdd
parents: 31
diff changeset
1263 self.pass_current = 1
15
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1264
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1265 def sdprintfile(self, event):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1266 self.extra_print_time = 0
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1267 self.on_startprint()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1268 threading.Thread(target = self.getfiles).start()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1269
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1270 def upload(self, event):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1271 if not self.fgcode:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1272 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1273 if not self.p.online:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1274 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1275 dlg = wx.TextEntryDialog(self, ("Enter a target filename in 8.3 format:"), _("Pick SD filename"), dosify(self.filename))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1276 if dlg.ShowModal() == wx.ID_OK:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1277 self.p.send_now("M21")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1278 self.p.send_now("M28 " + str(dlg.GetValue()))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1279 self.recvlisteners.append(self.uploadtrigger)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1280 dlg.Destroy()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1281
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1282 def uploadtrigger(self, l):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1283 if "Writing to file" in l:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1284 self.uploading = True
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1285 self.p.startprint(self.fgcode)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1286 self.p.endcb = self.endupload
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1287 self.recvlisteners.remove(self.uploadtrigger)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1288 elif "open failed, File" in l:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1289 self.recvlisteners.remove(self.uploadtrigger)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1290
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1291 def endupload(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1292 self.p.send_now("M29 ")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1293 wx.CallAfter(self.statusbar.SetStatusText, _("File upload complete"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1294 time.sleep(0.5)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1295 self.p.clear = True
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1296 self.uploading = False
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1297
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1298 def pause(self, event = None):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1299 if not self.paused:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1300 self.log(_("Print paused at: %s") % format_time(time.time()))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1301 if self.sdprinting:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1302 self.p.send_now("M25")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1303 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1304 if not self.p.printing:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1305 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1306 self.p.pause()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1307 self.p.runSmallScript(self.pauseScript)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1308 self.paused = True
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1309 # self.p.runSmallScript(self.pauseScript)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1310 self.extra_print_time += int(time.time() - self.starttime)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1311 wx.CallAfter(self.pausebtn.SetLabel, _("Resume"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1312 wx.CallAfter(self.toolbarsizer.Layout)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1313 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1314 self.log(_("Resuming."))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1315 self.paused = False
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1316 if self.sdprinting:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1317 self.p.send_now("M24")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1318 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1319 self.p.resume()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1320 wx.CallAfter(self.pausebtn.SetLabel, _("Pause"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1321 wx.CallAfter(self.toolbarsizer.Layout)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1322
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1323 def recover(self, event):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1324 self.extra_print_time = 0
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1325 if not self.p.online:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1326 wx.CallAfter(self.statusbar.SetStatusText, _("Not connected to printer."))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1327 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1328 # Reset Z
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1329 self.p.send_now("G92 Z%f" % self.predisconnect_layer)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1330 # Home X and Y
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1331 self.p.send_now("G28 X Y")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1332 self.on_startprint()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1333 self.p.startprint(self.predisconnect_mainqueue, self.p.queueindex)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1334
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1335 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1336 # File loading handling
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1337 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1338
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1339 def filesloaded(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1340 dlg = wx.SingleChoiceDialog(self, _("Select the file to print"), _("Pick SD file"), self.sdfiles)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1341 if dlg.ShowModal() == wx.ID_OK:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1342 target = dlg.GetStringSelection()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1343 if len(target):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1344 self.recvlisteners.append(self.waitforsdresponse)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1345 self.p.send_now("M23 " + target.lower())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1346 dlg.Destroy()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1347
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1348 def getfiles(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1349 if not self.p.online:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1350 self.sdfiles = []
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1351 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1352 self.sdlisting = 0
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1353 self.sdfiles = []
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1354 self.recvlisteners.append(self.listfiles)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1355 self.p.send_now("M21")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1356 self.p.send_now("M20")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1357
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1358 def model_to_gcode_filename(self, filename):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1359 suffix = "_export.gcode"
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1360 for ext in [".stl", ".obj"]:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1361 filename = filename.replace(ext, suffix)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1362 filename = filename.replace(ext.upper(), suffix)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1363 return filename
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1364
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1365 def slice_func(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1366 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1367 output_filename = self.model_to_gcode_filename(self.filename)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1368 pararray = prepare_command(self.settings.slicecommand,
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1369 {"$s": self.filename, "$o": output_filename})
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1370 if self.settings.slic3rintegration:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1371 for cat, config in self.slic3r_configs.items():
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1372 if config:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1373 fpath = os.path.join(self.slic3r_configpath, cat, config)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1374 pararray += ["--load", fpath]
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1375 self.log(_("Running ") + " ".join(pararray))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1376 self.slicep = subprocess.Popen(pararray, stderr = subprocess.STDOUT, stdout = subprocess.PIPE)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1377 while True:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1378 o = self.slicep.stdout.read(1)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1379 if o == '' and self.slicep.poll() is not None: break
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1380 sys.stdout.write(o)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1381 self.slicep.wait()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1382 self.stopsf = 1
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1383 except:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1384 self.logError(_("Failed to execute slicing software: ")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1385 + "\n" + traceback.format_exc())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1386 self.stopsf = 1
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1387
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1388 def slice_monitor(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1389 while not self.stopsf:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1390 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1391 wx.CallAfter(self.statusbar.SetStatusText, _("Slicing...")) # +self.cout.getvalue().split("\n")[-1])
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1392 except:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1393 pass
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1394 time.sleep(0.1)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1395 fn = self.filename
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1396 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1397 self.load_gcode_async(self.model_to_gcode_filename(self.filename))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1398 except:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1399 self.filename = fn
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1400 self.slicing = False
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1401 self.slicep = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1402
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1403 def slice(self, filename):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1404 wx.CallAfter(self.loadbtn.SetLabel, _("Cancel"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1405 wx.CallAfter(self.toolbarsizer.Layout)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1406 self.log(_("Slicing ") + filename)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1407 self.cout = StringIO.StringIO()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1408 self.filename = filename
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1409 self.stopsf = 0
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1410 self.slicing = True
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1411 threading.Thread(target = self.slice_func).start()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1412 threading.Thread(target = self.slice_monitor).start()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1413
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1414 def cmdline_filename_callback(self, filename):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1415 # Do nothing when processing a filename from command line, as we'll
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1416 # handle it when everything has been prepared
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1417 self.filename = filename
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1418
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1419 def do_load(self, l):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1420 if hasattr(self, 'slicing'):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1421 self.loadfile(None, l)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1422 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1423 self._do_load(l)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1424
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1425 def load_recent_file(self, event):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1426 fileid = event.GetId() - wx.ID_FILE1
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1427 path = self.filehistory.GetHistoryFile(fileid)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1428 self.loadfile(None, filename = path)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1429
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1430 def loadfile(self, event, filename = None):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1431 if self.slicing and self.slicep is not None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1432 self.slicep.terminate()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1433 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1434 basedir = self.settings.last_file_path
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1435 if not os.path.exists(basedir):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1436 basedir = "."
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1437 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1438 basedir = os.path.split(self.filename)[0]
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1439 except:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1440 pass
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1441 dlg = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1442 if filename is None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1443 dlg = wx.FileDialog(self, _("Open file to print"), basedir, style = wx.FD_OPEN | wx.FD_FILE_MUST_EXIST)
16
36d478bde840 Implemented svg, png and hpgl compilers to pronterface
mbayer
parents: 15
diff changeset
1444 # add image files to GCODE file list
36d478bde840 Implemented svg, png and hpgl compilers to pronterface
mbayer
parents: 15
diff changeset
1445 dlg.SetWildcard(_("GCODE and Image files|*.gcode;*.gco;*.g;*.png;*.svg;*.hpgl;*.plt|OBJ, STL, and GCODE files (*.gcode;*.gco;*.g;*.stl;*.STL;*.obj;*.OBJ)|*.gcode;*.gco;*.g;*.stl;*.STL;*.obj;*.OBJ|GCODE files (*.gcode;*.gco;*.g)|*.gcode;*.gco;*.g|OBJ, STL files (*.stl;*.STL;*.obj;*.OBJ)|*.stl;*.STL;*.obj;*.OBJ|All Files (*.*)|*.*"))
15
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1446 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1447 dlg.SetFilterIndex(self.settings.last_file_filter)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1448 except:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1449 pass
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1450 if filename or dlg.ShowModal() == wx.ID_OK:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1451 if filename:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1452 name = filename
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1453 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1454 name = dlg.GetPath()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1455 self.set("last_file_filter", dlg.GetFilterIndex())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1456 dlg.Destroy()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1457 if not os.path.exists(name):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1458 self.statusbar.SetStatusText(_("File not found!"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1459 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1460 path = os.path.split(name)[0]
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1461 if path != self.settings.last_file_path:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1462 self.set("last_file_path", path)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1463 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1464 abspath = os.path.abspath(name)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1465 recent_files = []
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1466 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1467 recent_files = json.loads(self.settings.recentfiles)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1468 except:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1469 self.logError(_("Failed to load recent files list:") +
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1470 "\n" + traceback.format_exc())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1471 if abspath in recent_files:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1472 recent_files.remove(abspath)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1473 recent_files.insert(0, abspath)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1474 if len(recent_files) > 5:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1475 recent_files = recent_files[:5]
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1476 self.set("recentfiles", json.dumps(recent_files))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1477 except:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1478 self.logError(_("Could not update recent files list:") +
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1479 "\n" + traceback.format_exc())
19
234037fbca4b Bugfixing, Added M400 magic
mbayer
parents: 16
diff changeset
1480
20
03b34402d405 Code cleanup
mbayer
parents: 19
diff changeset
1481 # reload the library local so we dont have to restart the whole app when making code changes
03b34402d405 Code cleanup
mbayer
parents: 19
diff changeset
1482 reload(laser)
19
234037fbca4b Bugfixing, Added M400 magic
mbayer
parents: 16
diff changeset
1483
15
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1484 if name.lower().endswith(".stl") or name.lower().endswith(".obj"):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1485 self.slice(name)
16
36d478bde840 Implemented svg, png and hpgl compilers to pronterface
mbayer
parents: 15
diff changeset
1486 elif name.lower().endswith(".png") or name.lower().endswith(".jpg") or name.lower().endswith(".gif"):
36d478bde840 Implemented svg, png and hpgl compilers to pronterface
mbayer
parents: 15
diff changeset
1487 # Generate GCODE from IMAGE
20
03b34402d405 Code cleanup
mbayer
parents: 19
diff changeset
1488 lc = laser.Lasercutter(pronterwindow = self)
16
36d478bde840 Implemented svg, png and hpgl compilers to pronterface
mbayer
parents: 15
diff changeset
1489 lc.image2gcode(name)
42
ea4c43494a19 bugfixes on rastered image column endings, force laser off with G0 + little offset
mdd
parents: 36
diff changeset
1490 wx.CallAfter(self.endcb_lasercut)
16
36d478bde840 Implemented svg, png and hpgl compilers to pronterface
mbayer
parents: 15
diff changeset
1491 elif name.lower().endswith(".svg"):
36d478bde840 Implemented svg, png and hpgl compilers to pronterface
mbayer
parents: 15
diff changeset
1492 # Generate GCODE from SVG
20
03b34402d405 Code cleanup
mbayer
parents: 19
diff changeset
1493 lc = laser.Lasercutter(pronterwindow = self)
16
36d478bde840 Implemented svg, png and hpgl compilers to pronterface
mbayer
parents: 15
diff changeset
1494 lc.svg2gcode(name)
42
ea4c43494a19 bugfixes on rastered image column endings, force laser off with G0 + little offset
mdd
parents: 36
diff changeset
1495 wx.CallAfter(self.endcb_lasercut)
16
36d478bde840 Implemented svg, png and hpgl compilers to pronterface
mbayer
parents: 15
diff changeset
1496 elif name.lower().endswith(".hpgl") or name.lower().endswith(".plt"):
36d478bde840 Implemented svg, png and hpgl compilers to pronterface
mbayer
parents: 15
diff changeset
1497 # Generate GCODE from HPGL
20
03b34402d405 Code cleanup
mbayer
parents: 19
diff changeset
1498 lc = laser.Lasercutter(pronterwindow = self)
16
36d478bde840 Implemented svg, png and hpgl compilers to pronterface
mbayer
parents: 15
diff changeset
1499 lc.hpgl2gcode(name)
42
ea4c43494a19 bugfixes on rastered image column endings, force laser off with G0 + little offset
mdd
parents: 36
diff changeset
1500 wx.CallAfter(self.endcb_lasercut)
15
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1501 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1502 self.load_gcode_async(name)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1503 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1504 dlg.Destroy()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1505
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1506 def load_gcode_async(self, filename):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1507 self.filename = filename
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1508 gcode = self.pre_gcode_load()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1509 self.log(_("Loading file: %s") % filename)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1510 threading.Thread(target = self.load_gcode_async_thread, args = (gcode,)).start()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1511
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1512 def load_gcode_async_thread(self, gcode):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1513 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1514 self.load_gcode(self.filename,
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1515 layer_callback = self.layer_ready_cb,
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1516 gcode = gcode)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1517 except PronterfaceQuitException:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1518 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1519 wx.CallAfter(self.post_gcode_load)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1520
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1521 def layer_ready_cb(self, gcode, layer):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1522 global pronterface_quitting
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1523 if pronterface_quitting:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1524 raise PronterfaceQuitException
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1525 if not self.settings.refreshwhenloading:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1526 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1527 self.viz_last_layer = layer
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1528 if time.time() - self.viz_last_yield > 1.0:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1529 time.sleep(0.2)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1530 self.loading_gcode_message = _("Loading %s: %d layers loaded (%d lines)") % (self.filename, layer + 1, len(gcode))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1531 self.viz_last_yield = time.time()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1532 wx.CallAfter(self.statusbar.SetStatusText, self.loading_gcode_message)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1533
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1534 def start_viz_thread(self, gcode = None):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1535 threading.Thread(target = self.loadviz, args = (gcode,)).start()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1536
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1537 def pre_gcode_load(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1538 self.loading_gcode = True
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1539 self.loading_gcode_message = _("Loading %s...") % self.filename
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1540 if self.settings.mainviz == "None":
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1541 gcode = gcoder.LightGCode(deferred = True)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1542 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1543 gcode = gcoder.GCode(deferred = True)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1544 self.viz_last_yield = 0
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1545 self.viz_last_layer = -1
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1546 self.start_viz_thread(gcode)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1547 return gcode
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1548
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1549 def post_gcode_load(self, print_stats = True):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1550 # Must be called in wx.CallAfter for safety
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1551 self.loading_gcode = False
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1552 self.SetTitle(_(u"Pronterface - %s") % self.filename)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1553 message = _("Loaded %s, %d lines") % (self.filename, len(self.fgcode),)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1554 self.log(message)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1555 self.statusbar.SetStatusText(message)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1556 self.savebtn.Enable(True)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1557 self.loadbtn.SetLabel(_("Load File"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1558 self.printbtn.SetLabel(_("Print"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1559 self.pausebtn.SetLabel(_("Pause"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1560 self.pausebtn.Disable()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1561 self.recoverbtn.Disable()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1562 if self.p.online:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1563 self.printbtn.Enable()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1564 self.toolbarsizer.Layout()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1565 self.viz_last_layer = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1566 if print_stats:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1567 self.output_gcode_stats()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1568
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1569 def output_gcode_stats(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1570 gcode = self.fgcode
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1571 self.log(_("%.2fmm of filament used in this print") % gcode.filament_length)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1572 if(len(gcode.filament_length_multi)>1):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1573 for i in enumerate(gcode.filament_length_multi):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1574 print "Extruder %d: %0.02fmm" % (i[0],i[1])
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1575 self.log(_("The print goes:"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1576 self.log(_("- from %.2f mm to %.2f mm in X and is %.2f mm wide") % (gcode.xmin, gcode.xmax, gcode.width))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1577 self.log(_("- from %.2f mm to %.2f mm in Y and is %.2f mm deep") % (gcode.ymin, gcode.ymax, gcode.depth))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1578 self.log(_("- from %.2f mm to %.2f mm in Z and is %.2f mm high") % (gcode.zmin, gcode.zmax, gcode.height))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1579 self.log(_("Estimated duration: %d layers, %s") % gcode.estimate_duration())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1580
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1581 def loadviz(self, gcode = None):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1582 self.gviz.clear()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1583 self.gwindow.p.clear()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1584 if gcode is not None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1585 generator = self.gviz.addfile_perlayer(gcode, True)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1586 next_layer = 0
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1587 # Progressive loading of visualization
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1588 # We load layers up to the last one which has been processed in GCoder
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1589 # (self.viz_last_layer)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1590 # Once the GCode has been entirely loaded, this variable becomes None,
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1591 # indicating that we can do the last generator call to finish the
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1592 # loading of the visualization, which will itself return None.
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1593 # During preloading we verify that the layer we added is the one we
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1594 # expected through the assert call.
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1595 while True:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1596 global pronterface_quitting
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1597 if pronterface_quitting:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1598 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1599 max_layer = self.viz_last_layer
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1600 if max_layer is None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1601 break
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1602 while next_layer <= max_layer:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1603 assert(generator.next() == next_layer)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1604 next_layer += 1
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1605 time.sleep(0.1)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1606 generator_output = generator.next()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1607 while generator_output is not None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1608 assert(generator_output in (None, next_layer))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1609 next_layer += 1
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1610 generator_output = generator.next()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1611 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1612 # If GCode is not being loaded asynchroneously, it is already
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1613 # loaded, so let's make visualization sequentially
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1614 gcode = self.fgcode
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1615 self.gviz.addfile(gcode)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1616 wx.CallAfter(self.gviz.Refresh)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1617 # Load external window sequentially now that everything is ready.
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1618 # We can't really do any better as the 3D viewer might clone the
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1619 # finalized model from the main visualization
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1620 self.gwindow.p.addfile(gcode)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1621
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1622 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1623 # File saving handling
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1624 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1625
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1626 def savefile(self, event):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1627 basedir = self.settings.last_file_path
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1628 if not os.path.exists(basedir):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1629 basedir = "."
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1630 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1631 basedir = os.path.split(self.filename)[0]
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1632 except:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1633 pass
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1634 dlg = wx.FileDialog(self, _("Save as"), basedir, style = wx.FD_SAVE)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1635 dlg.SetWildcard(_("GCODE files (*.gcode;*.gco;*.g)|*.gcode;*.gco;*.g|All Files (*.*)|*.*"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1636 if dlg.ShowModal() == wx.ID_OK:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1637 name = dlg.GetPath()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1638 open(name, "w").write("\n".join((line.raw for line in self.fgcode)))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1639 self.log(_("G-Code succesfully saved to %s") % name)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1640 dlg.Destroy()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1641
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1642 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1643 # Printcore callbacks
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1644 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1645
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1646 def process_host_command(self, command):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1647 """Override host command handling"""
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1648 command = command.lstrip()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1649 if command.startswith(";@pause"):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1650 self.pause(None)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1651 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1652 pronsole.pronsole.process_host_command(self, command)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1653
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1654 def startcb(self, resuming = False):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1655 """Callback on print start"""
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1656 pronsole.pronsole.startcb(self, resuming)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1657 if self.settings.lockbox and self.settings.lockonstart:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1658 wx.CallAfter(self.lock, force = True)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1659
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1660 def endcb(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1661 """Callback on print end/pause"""
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1662 pronsole.pronsole.endcb(self)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1663 if self.p.queueindex == 0:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1664 self.p.runSmallScript(self.endScript)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1665 wx.CallAfter(self.pausebtn.Disable)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1666 wx.CallAfter(self.printbtn.SetLabel, _("Print"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1667 wx.CallAfter(self.toolbarsizer.Layout)
33
eee51ca7cbe7 Added support for multiple cutting passes with automatic Z refocusing
mdd
parents: 31
diff changeset
1668 wx.CallAfter(self.endcb_lasercut)
eee51ca7cbe7 Added support for multiple cutting passes with automatic Z refocusing
mdd
parents: 31
diff changeset
1669
15
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1670 def online(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1671 """Callback when printer goes online"""
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1672 self.log(_("Printer is now online."))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1673 wx.CallAfter(self.online_gui)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1674
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1675 def online_gui(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1676 """Callback when printer goes online (graphical bits)"""
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1677 self.connectbtn.SetLabel(_("Disconnect"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1678 self.connectbtn.SetToolTip(wx.ToolTip("Disconnect from the printer"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1679 self.connectbtn.Bind(wx.EVT_BUTTON, self.disconnect)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1680
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1681 if hasattr(self, "extrudersel"):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1682 self.do_tool(self.extrudersel.GetValue())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1683
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1684 self.gui_set_connected()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1685
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1686 if self.filename:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1687 self.printbtn.Enable()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1688
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1689 wx.CallAfter(self.toolbarsizer.Layout)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1690
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1691 def sentcb(self, line, gline):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1692 """Callback when a printer gcode has been sent"""
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1693 if not gline:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1694 pass
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1695 elif gline.command in ["M104", "M109"]:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1696 gline_s = gcoder.S(gline)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1697 if gline_s is not None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1698 temp = gline_s
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1699 if self.display_gauges: wx.CallAfter(self.hottgauge.SetTarget, temp)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1700 if self.display_graph: wx.CallAfter(self.graph.SetExtruder0TargetTemperature, temp)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1701 elif gline.command in ["M140", "M190"]:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1702 gline_s = gcoder.S(gline)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1703 if gline_s is not None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1704 temp = gline_s
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1705 if self.display_gauges: wx.CallAfter(self.bedtgauge.SetTarget, temp)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1706 if self.display_graph: wx.CallAfter(self.graph.SetBedTargetTemperature, temp)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1707 elif gline.command in ["M106"]:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1708 gline_s=gcoder.S(gline)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1709 fanpow=255
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1710 if gline_s is not None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1711 fanpow=gline_s
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1712 if self.display_graph: wx.CallAfter(self.graph.SetFanPower, fanpow)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1713 elif gline.command in ["M107"]:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1714 if self.display_graph: wx.CallAfter(self.graph.SetFanPower, 0)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1715 elif gline.command.startswith("T"):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1716 tool = gline.command[1:]
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1717 if hasattr(self, "extrudersel"): wx.CallAfter(self.extrudersel.SetValue, tool)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1718 if gline.is_move:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1719 self.sentglines.put_nowait(gline)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1720
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1721 def is_excluded_move(self, gline):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1722 """Check whether the given moves ends at a position specified as
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1723 excluded in the part excluder"""
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1724 if not gline.is_move or not self.excluder or not self.excluder.rectangles:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1725 return False
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1726 for (x0, y0, x1, y1) in self.excluder.rectangles:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1727 if x0 <= gline.current_x <= x1 and y0 <= gline.current_y <= y1:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1728 return True
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1729 return False
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1730
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1731 def preprintsendcb(self, gline, next_gline):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1732 """Callback when a printer gcode is about to be sent. We use it to
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1733 exclude moves defined by the part excluder tool"""
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1734 if not self.is_excluded_move(gline):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1735 return gline
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1736 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1737 if gline.z is not None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1738 if gline.relative:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1739 if self.excluder_z_abs is not None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1740 self.excluder_z_abs += gline.z
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1741 elif self.excluder_z_rel is not None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1742 self.excluder_z_rel += gline.z
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1743 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1744 self.excluder_z_rel = gline.z
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1745 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1746 self.excluder_z_rel = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1747 self.excluder_z_abs = gline.z
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1748 if gline.e is not None and not gline.relative_e:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1749 self.excluder_e = gline.e
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1750 # If next move won't be excluded, push the changes we have to do
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1751 if next_gline is not None and not self.is_excluded_move(next_gline):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1752 if self.excluder_e is not None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1753 self.p.send_now("G92 E%.5f" % self.excluder_e)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1754 self.excluder_e = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1755 if self.excluder_z_abs is not None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1756 if gline.relative:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1757 self.p.send_now("G90")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1758 self.p.send_now("G1 Z%.5f" % self.excluder_z_abs)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1759 self.excluder_z_abs = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1760 if gline.relative:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1761 self.p.send_now("G91")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1762 if self.excluder_z_rel is not None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1763 if not gline.relative:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1764 self.p.send_now("G91")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1765 self.p.send_now("G1 Z%.5f" % self.excluder_z_rel)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1766 self.excluder_z_rel = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1767 if not gline.relative:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1768 self.p.send_now("G90")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1769 return None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1770
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1771 def printsentcb(self, gline):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1772 """Callback when a print gcode has been sent"""
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1773 if gline.is_move:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1774 if hasattr(self.gwindow, "set_current_gline"):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1775 wx.CallAfter(self.gwindow.set_current_gline, gline)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1776 if hasattr(self.gviz, "set_current_gline"):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1777 wx.CallAfter(self.gviz.set_current_gline, gline)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1778
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1779 def layer_change_cb(self, newlayer):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1780 """Callback when the printed layer changed"""
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1781 pronsole.pronsole.layer_change_cb(self, newlayer)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1782 if self.settings.mainviz != "3D" or self.settings.trackcurrentlayer3d:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1783 wx.CallAfter(self.gviz.setlayer, newlayer)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1784
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1785 def update_tempdisplay(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1786 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1787 temps = parse_temperature_report(self.tempreadings)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1788 if "T0" in temps and temps["T0"][0]:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1789 hotend_temp = float(temps["T0"][0])
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1790 elif "T" in temps and temps["T"][0]:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1791 hotend_temp = float(temps["T"][0])
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1792 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1793 hotend_temp = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1794 if hotend_temp is not None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1795 if self.display_graph: wx.CallAfter(self.graph.SetExtruder0Temperature, hotend_temp)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1796 if self.display_gauges: wx.CallAfter(self.hottgauge.SetValue, hotend_temp)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1797 setpoint = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1798 if "T0" in temps and temps["T0"][1]: setpoint = float(temps["T0"][1])
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1799 elif temps["T"][1]: setpoint = float(temps["T"][1])
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1800 if setpoint is not None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1801 if self.display_graph: wx.CallAfter(self.graph.SetExtruder0TargetTemperature, setpoint)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1802 if self.display_gauges: wx.CallAfter(self.hottgauge.SetTarget, setpoint)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1803 if "T1" in temps:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1804 hotend_temp = float(temps["T1"][0])
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1805 if self.display_graph: wx.CallAfter(self.graph.SetExtruder1Temperature, hotend_temp)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1806 setpoint = temps["T1"][1]
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1807 if setpoint and self.display_graph:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1808 wx.CallAfter(self.graph.SetExtruder1TargetTemperature, float(setpoint))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1809 bed_temp = float(temps["B"][0]) if "B" in temps and temps["B"][0] else None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1810 if bed_temp is not None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1811 if self.display_graph: wx.CallAfter(self.graph.SetBedTemperature, bed_temp)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1812 if self.display_gauges: wx.CallAfter(self.bedtgauge.SetValue, bed_temp)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1813 setpoint = temps["B"][1]
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1814 if setpoint:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1815 setpoint = float(setpoint)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1816 if self.display_graph: wx.CallAfter(self.graph.SetBedTargetTemperature, setpoint)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1817 if self.display_gauges: wx.CallAfter(self.bedtgauge.SetTarget, setpoint)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1818 except:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1819 self.logError(traceback.format_exc())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1820
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1821 def update_pos(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1822 bits = gcoder.m114_exp.findall(self.posreport)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1823 x = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1824 y = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1825 z = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1826 for bit in bits:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1827 if not bit[0]: continue
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1828 if x is None and bit[0] == "X":
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1829 x = float(bit[1])
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1830 elif y is None and bit[0] == "Y":
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1831 y = float(bit[1])
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1832 elif z is None and bit[0] == "Z":
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1833 z = float(bit[1])
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1834 if x is not None: self.current_pos[0] = x
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1835 if y is not None: self.current_pos[1] = y
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1836 if z is not None: self.current_pos[2] = z
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1837
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1838 def recvcb_actions(self, l):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1839 if l.startswith("!!"):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1840 if not self.paused:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1841 wx.CallAfter(self.pause)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1842 msg = l.split(" ", 1)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1843 if len(msg) > 1 and not self.p.loud:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1844 wx.CallAfter(self.addtexttolog, msg[1] + "\n")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1845 return True
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1846 elif l.startswith("//"):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1847 command = l.split(" ", 1)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1848 if len(command) > 1:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1849 command = command[1]
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1850 command = command.split(":")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1851 if len(command) == 2 and command[0] == "action":
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1852 command = command[1]
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1853 self.log(_("Received command %s") % command)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1854 if command == "pause":
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1855 if not self.paused:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1856 wx.CallAfter(self.pause)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1857 return True
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1858 elif command == "resume":
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1859 if self.paused:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1860 wx.CallAfter(self.pause)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1861 return True
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1862 elif command == "disconnect":
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1863 wx.CallAfter(self.disconnect)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1864 return True
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1865 return False
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1866
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1867 def recvcb(self, l):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1868 l = l.rstrip()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1869 if not self.recvcb_actions(l):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1870 report_type = self.recvcb_report(l)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1871 isreport = report_type != REPORT_NONE
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1872 if report_type & REPORT_POS:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1873 self.update_pos()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1874 elif report_type & REPORT_TEMP:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1875 wx.CallAfter(self.tempdisp.SetLabel, self.tempreadings.strip().replace("ok ", ""))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1876 self.update_tempdisplay()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1877 if not self.p.loud and (l not in ["ok", "wait"] and (not isreport or report_type & REPORT_MANUAL)):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1878 wx.CallAfter(self.addtexttolog, l + "\n")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1879 for listener in self.recvlisteners:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1880 listener(l)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1881
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1882 def listfiles(self, line, ignored = False):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1883 if "Begin file list" in line:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1884 self.sdlisting = True
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1885 elif "End file list" in line:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1886 self.sdlisting = False
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1887 self.recvlisteners.remove(self.listfiles)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1888 wx.CallAfter(self.filesloaded)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1889 elif self.sdlisting:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1890 self.sdfiles.append(line.strip().lower())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1891
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1892 def waitforsdresponse(self, l):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1893 if "file.open failed" in l:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1894 wx.CallAfter(self.statusbar.SetStatusText, _("Opening file failed."))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1895 self.recvlisteners.remove(self.waitforsdresponse)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1896 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1897 if "File opened" in l:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1898 wx.CallAfter(self.statusbar.SetStatusText, l)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1899 if "File selected" in l:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1900 wx.CallAfter(self.statusbar.SetStatusText, _("Starting print"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1901 self.sdprinting = True
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1902 self.p.send_now("M24")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1903 self.startcb()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1904 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1905 if "Done printing file" in l:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1906 wx.CallAfter(self.statusbar.SetStatusText, l)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1907 self.sdprinting = False
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1908 self.recvlisteners.remove(self.waitforsdresponse)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1909 self.endcb()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1910 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1911 if "SD printing byte" in l:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1912 # M27 handler
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1913 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1914 resp = l.split()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1915 vals = resp[-1].split("/")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1916 self.percentdone = 100.0 * int(vals[0]) / int(vals[1])
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1917 except:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1918 pass
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1919
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1920 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1921 # Custom buttons handling
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1922 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1923
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1924 def cbuttons_reload(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1925 allcbs = getattr(self, "custombuttons_widgets", [])
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1926 for button in allcbs:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1927 self.cbuttonssizer.Detach(button)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1928 button.Destroy()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1929 self.custombuttons_widgets = []
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1930 custombuttons = self.custombuttons[:] + [None]
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1931 for i, btndef in enumerate(custombuttons):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1932 if btndef is None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1933 if i == len(custombuttons) - 1:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1934 self.newbuttonbutton = b = wx.Button(self.centerpanel, -1, "+", size = (19, 18), style = wx.BU_EXACTFIT)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1935 b.SetForegroundColour("#4444ff")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1936 b.SetToolTip(wx.ToolTip(_("click to add new custom button")))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1937 b.Bind(wx.EVT_BUTTON, self.cbutton_edit)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1938 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1939 b = wx.StaticText(self.panel, -1, "")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1940 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1941 b = wx.Button(self.centerpanel, -1, btndef.label, style = wx.BU_EXACTFIT)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1942 b.SetToolTip(wx.ToolTip(_("Execute command: ") + btndef.command))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1943 if btndef.background:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1944 b.SetBackgroundColour(btndef.background)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1945 rr, gg, bb = b.GetBackgroundColour().Get()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1946 if 0.3 * rr + 0.59 * gg + 0.11 * bb < 60:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1947 b.SetForegroundColour("#ffffff")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1948 b.custombutton = i
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1949 b.properties = btndef
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1950 if btndef is not None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1951 b.Bind(wx.EVT_BUTTON, self.process_button)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1952 b.Bind(wx.EVT_MOUSE_EVENTS, self.editbutton)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1953 self.custombuttons_widgets.append(b)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1954 if type(self.cbuttonssizer) == wx.GridBagSizer:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1955 self.cbuttonssizer.Add(b, pos = (i // 4, i % 4), flag = wx.EXPAND)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1956 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1957 self.cbuttonssizer.Add(b, flag = wx.EXPAND)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1958 self.centerpanel.Layout()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1959 self.centerpanel.GetContainingSizer().Layout()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1960
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1961 def help_button(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1962 self.log(_('Defines custom button. Usage: button <num> "title" [/c "colour"] command'))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1963
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1964 def do_button(self, argstr):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1965 def nextarg(rest):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1966 rest = rest.lstrip()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1967 if rest.startswith('"'):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1968 return rest[1:].split('"', 1)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1969 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1970 return rest.split(None, 1)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1971 # try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1972 num, argstr = nextarg(argstr)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1973 num = int(num)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1974 title, argstr = nextarg(argstr)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1975 colour = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1976 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1977 c1, c2 = nextarg(argstr)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1978 if c1 == "/c":
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1979 colour, argstr = nextarg(c2)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1980 except:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1981 pass
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1982 command = argstr.strip()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1983 if num < 0 or num >= 64:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1984 self.log(_("Custom button number should be between 0 and 63"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1985 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1986 while num >= len(self.custombuttons):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1987 self.custombuttons.append(None)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1988 self.custombuttons[num] = SpecialButton(title, command)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1989 if colour is not None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1990 self.custombuttons[num].background = colour
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1991 if not self.processing_rc:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1992 self.cbuttons_reload()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1993
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1994 def cbutton_save(self, n, bdef, new_n = None):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1995 if new_n is None: new_n = n
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1996 if bdef is None or bdef == "":
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1997 self.save_in_rc(("button %d" % n), '')
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1998 elif bdef.background:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
1999 colour = bdef.background
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2000 if type(colour) not in (str, unicode):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2001 if type(colour) == tuple and tuple(map(type, colour)) == (int, int, int):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2002 colour = map(lambda x: x % 256, colour)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2003 colour = wx.Colour(*colour).GetAsString(wx.C2S_NAME | wx.C2S_HTML_SYNTAX)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2004 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2005 colour = wx.Colour(colour).GetAsString(wx.C2S_NAME | wx.C2S_HTML_SYNTAX)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2006 self.save_in_rc(("button %d" % n), 'button %d "%s" /c "%s" %s' % (new_n, bdef.label, colour, bdef.command))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2007 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2008 self.save_in_rc(("button %d" % n), 'button %d "%s" %s' % (new_n, bdef.label, bdef.command))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2009
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2010 def cbutton_edit(self, e, button = None):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2011 bedit = ButtonEdit(self)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2012 if button is not None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2013 n = button.custombutton
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2014 bedit.name.SetValue(button.properties.label)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2015 bedit.command.SetValue(button.properties.command)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2016 if button.properties.background:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2017 colour = button.properties.background
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2018 if type(colour) not in (str, unicode):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2019 if type(colour) == tuple and tuple(map(type, colour)) == (int, int, int):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2020 colour = map(lambda x: x % 256, colour)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2021 colour = wx.Colour(*colour).GetAsString(wx.C2S_NAME | wx.C2S_HTML_SYNTAX)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2022 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2023 colour = wx.Colour(colour).GetAsString(wx.C2S_NAME | wx.C2S_HTML_SYNTAX)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2024 bedit.color.SetValue(colour)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2025 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2026 n = len(self.custombuttons)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2027 while n > 0 and self.custombuttons[n - 1] is None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2028 n -= 1
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2029 if bedit.ShowModal() == wx.ID_OK:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2030 if n == len(self.custombuttons):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2031 self.custombuttons.append(None)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2032 self.custombuttons[n] = SpecialButton(bedit.name.GetValue().strip(), bedit.command.GetValue().strip(), custom = True)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2033 if bedit.color.GetValue().strip() != "":
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2034 self.custombuttons[n].background = bedit.color.GetValue()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2035 self.cbutton_save(n, self.custombuttons[n])
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2036 wx.CallAfter(bedit.Destroy)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2037 wx.CallAfter(self.cbuttons_reload)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2038
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2039 def cbutton_remove(self, e, button):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2040 n = button.custombutton
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2041 self.cbutton_save(n, None)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2042 del self.custombuttons[n]
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2043 for i in range(n, len(self.custombuttons)):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2044 self.cbutton_save(i, self.custombuttons[i])
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2045 wx.CallAfter(self.cbuttons_reload)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2046
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2047 def cbutton_order(self, e, button, dir):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2048 n = button.custombutton
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2049 if dir < 0:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2050 n = n - 1
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2051 if n + 1 >= len(self.custombuttons):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2052 self.custombuttons.append(None) # pad
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2053 # swap
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2054 self.custombuttons[n], self.custombuttons[n + 1] = self.custombuttons[n + 1], self.custombuttons[n]
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2055 self.cbutton_save(n, self.custombuttons[n])
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2056 self.cbutton_save(n + 1, self.custombuttons[n + 1])
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2057 wx.CallAfter(self.cbuttons_reload)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2058
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2059 def editbutton(self, e):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2060 if e.IsCommandEvent() or e.ButtonUp(wx.MOUSE_BTN_RIGHT):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2061 if e.IsCommandEvent():
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2062 pos = (0, 0)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2063 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2064 pos = e.GetPosition()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2065 popupmenu = wx.Menu()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2066 obj = e.GetEventObject()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2067 if hasattr(obj, "custombutton"):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2068 item = popupmenu.Append(-1, _("Edit custom button '%s'") % e.GetEventObject().GetLabelText())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2069 self.Bind(wx.EVT_MENU, lambda e, button = e.GetEventObject(): self.cbutton_edit(e, button), item)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2070 item = popupmenu.Append(-1, _("Move left <<"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2071 self.Bind(wx.EVT_MENU, lambda e, button = e.GetEventObject(): self.cbutton_order(e, button, -1), item)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2072 if obj.custombutton == 0: item.Enable(False)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2073 item = popupmenu.Append(-1, _("Move right >>"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2074 self.Bind(wx.EVT_MENU, lambda e, button = e.GetEventObject(): self.cbutton_order(e, button, 1), item)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2075 if obj.custombutton == 63: item.Enable(False)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2076 pos = self.panel.ScreenToClient(e.GetEventObject().ClientToScreen(pos))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2077 item = popupmenu.Append(-1, _("Remove custom button '%s'") % e.GetEventObject().GetLabelText())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2078 self.Bind(wx.EVT_MENU, lambda e, button = e.GetEventObject(): self.cbutton_remove(e, button), item)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2079 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2080 item = popupmenu.Append(-1, _("Add custom button"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2081 self.Bind(wx.EVT_MENU, self.cbutton_edit, item)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2082 self.panel.PopupMenu(popupmenu, pos)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2083 elif e.Dragging() and e.ButtonIsDown(wx.MOUSE_BTN_LEFT):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2084 obj = e.GetEventObject()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2085 scrpos = obj.ClientToScreen(e.GetPosition())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2086 if not hasattr(self, "dragpos"):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2087 self.dragpos = scrpos
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2088 e.Skip()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2089 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2090 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2091 dx, dy = self.dragpos[0] - scrpos[0], self.dragpos[1] - scrpos[1]
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2092 if dx * dx + dy * dy < 5 * 5: # threshold to detect dragging for jittery mice
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2093 e.Skip()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2094 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2095 if not hasattr(self, "dragging"):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2096 # init dragging of the custom button
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2097 if hasattr(obj, "custombutton") and obj.properties is not None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2098 for b in self.custombuttons_widgets:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2099 if b.properties is None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2100 b.Enable()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2101 b.SetLabel("")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2102 b.SetFont(wx.Font(10, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2103 b.SetForegroundColour("black")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2104 b.SetSize(obj.GetSize())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2105 if self.toolbarsizer.GetItem(b) is not None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2106 self.toolbarsizer.SetItemMinSize(b, obj.GetSize())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2107 self.mainsizer.Layout()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2108 self.dragging = wx.Button(self.panel, -1, obj.GetLabel(), style = wx.BU_EXACTFIT)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2109 self.dragging.SetBackgroundColour(obj.GetBackgroundColour())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2110 self.dragging.SetForegroundColour(obj.GetForegroundColour())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2111 self.dragging.sourcebutton = obj
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2112 self.dragging.Raise()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2113 self.dragging.Disable()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2114 self.dragging.SetPosition(self.panel.ScreenToClient(scrpos))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2115 self.last_drag_dest = obj
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2116 self.dragging.label = obj.s_label = obj.GetLabel()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2117 self.dragging.bgc = obj.s_bgc = obj.GetBackgroundColour()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2118 self.dragging.fgc = obj.s_fgc = obj.GetForegroundColour()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2119 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2120 # dragging in progress
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2121 self.dragging.SetPosition(self.panel.ScreenToClient(scrpos))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2122 wx.CallAfter(self.dragging.Refresh)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2123 dst = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2124 src = self.dragging.sourcebutton
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2125 drg = self.dragging
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2126 for b in self.custombuttons_widgets:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2127 if b.GetScreenRect().Contains(scrpos):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2128 dst = b
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2129 break
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2130 if dst is not self.last_drag_dest:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2131 if self.last_drag_dest is not None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2132 self.last_drag_dest.SetBackgroundColour(self.last_drag_dest.s_bgc)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2133 self.last_drag_dest.SetForegroundColour(self.last_drag_dest.s_fgc)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2134 self.last_drag_dest.SetLabel(self.last_drag_dest.s_label)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2135 if dst is not None and dst is not src:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2136 dst.s_bgc = dst.GetBackgroundColour()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2137 dst.s_fgc = dst.GetForegroundColour()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2138 dst.s_label = dst.GetLabel()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2139 src.SetBackgroundColour(dst.GetBackgroundColour())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2140 src.SetForegroundColour(dst.GetForegroundColour())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2141 src.SetLabel(dst.GetLabel())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2142 dst.SetBackgroundColour(drg.bgc)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2143 dst.SetForegroundColour(drg.fgc)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2144 dst.SetLabel(drg.label)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2145 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2146 src.SetBackgroundColour(drg.bgc)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2147 src.SetForegroundColour(drg.fgc)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2148 src.SetLabel(drg.label)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2149 self.last_drag_dest = dst
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2150 elif hasattr(self, "dragging") and not e.ButtonIsDown(wx.MOUSE_BTN_LEFT):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2151 # dragging finished
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2152 obj = e.GetEventObject()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2153 scrpos = obj.ClientToScreen(e.GetPosition())
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2154 dst = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2155 src = self.dragging.sourcebutton
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2156 drg = self.dragging
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2157 for b in self.custombuttons_widgets:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2158 if b.GetScreenRect().Contains(scrpos):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2159 dst = b
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2160 break
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2161 if dst is not None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2162 src_i = src.custombutton
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2163 dst_i = dst.custombutton
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2164 self.custombuttons[src_i], self.custombuttons[dst_i] = self.custombuttons[dst_i], self.custombuttons[src_i]
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2165 self.cbutton_save(src_i, self.custombuttons[src_i])
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2166 self.cbutton_save(dst_i, self.custombuttons[dst_i])
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2167 while self.custombuttons[-1] is None:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2168 del self.custombuttons[-1]
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2169 wx.CallAfter(self.dragging.Destroy)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2170 del self.dragging
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2171 wx.CallAfter(self.cbuttons_reload)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2172 del self.last_drag_dest
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2173 del self.dragpos
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2174 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2175 e.Skip()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2176
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2177 def process_button(self, e):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2178 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2179 if hasattr(e.GetEventObject(), "custombutton"):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2180 if wx.GetKeyState(wx.WXK_CONTROL) or wx.GetKeyState(wx.WXK_ALT):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2181 return self.editbutton(e)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2182 self.cur_button = e.GetEventObject().custombutton
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2183 command = e.GetEventObject().properties.command
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2184 command = self.precmd(command)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2185 self.onecmd(command)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2186 self.cur_button = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2187 except:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2188 self.log(_("Failed to handle button"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2189 self.cur_button = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2190 raise
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2191
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2192 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2193 # Macros handling
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2194 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2195
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2196 def start_macro(self, macro_name, old_macro_definition = ""):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2197 if not self.processing_rc:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2198 def cb(definition):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2199 if len(definition.strip()) == 0:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2200 if old_macro_definition != "":
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2201 dialog = wx.MessageDialog(self, _("Do you want to erase the macro?"), style = wx.YES_NO | wx.YES_DEFAULT | wx.ICON_QUESTION)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2202 if dialog.ShowModal() == wx.ID_YES:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2203 self.delete_macro(macro_name)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2204 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2205 self.log(_("Cancelled."))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2206 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2207 self.cur_macro_name = macro_name
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2208 self.cur_macro_def = definition
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2209 self.end_macro()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2210 MacroEditor(macro_name, old_macro_definition, cb)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2211 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2212 pronsole.pronsole.start_macro(self, macro_name, old_macro_definition)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2213
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2214 def end_macro(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2215 pronsole.pronsole.end_macro(self)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2216 self.update_macros_menu()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2217
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2218 def delete_macro(self, macro_name):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2219 pronsole.pronsole.delete_macro(self, macro_name)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2220 self.update_macros_menu()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2221
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2222 def new_macro(self, e = None):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2223 dialog = wx.Dialog(self, -1, _("Enter macro name"), size = (260, 85))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2224 panel = wx.Panel(dialog, -1)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2225 vbox = wx.BoxSizer(wx.VERTICAL)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2226 wx.StaticText(panel, -1, _("Macro name:"), (8, 14))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2227 dialog.namectrl = wx.TextCtrl(panel, -1, '', (110, 8), size = (130, 24), style = wx.TE_PROCESS_ENTER)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2228 hbox = wx.BoxSizer(wx.HORIZONTAL)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2229 okb = wx.Button(dialog, wx.ID_OK, _("Ok"), size = (60, 24))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2230 dialog.Bind(wx.EVT_TEXT_ENTER, lambda e: dialog.EndModal(wx.ID_OK), dialog.namectrl)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2231 hbox.Add(okb)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2232 hbox.Add(wx.Button(dialog, wx.ID_CANCEL, _("Cancel"), size = (60, 24)))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2233 vbox.Add(panel)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2234 vbox.Add(hbox, 1, wx.ALIGN_CENTER | wx.TOP | wx.BOTTOM, 10)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2235 dialog.SetSizer(vbox)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2236 dialog.Centre()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2237 macro = ""
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2238 if dialog.ShowModal() == wx.ID_OK:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2239 macro = dialog.namectrl.GetValue()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2240 if macro != "":
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2241 wx.CallAfter(self.edit_macro, macro)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2242 dialog.Destroy()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2243 return macro
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2244
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2245 def edit_macro(self, macro):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2246 if macro == "": return self.new_macro()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2247 if macro in self.macros:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2248 old_def = self.macros[macro]
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2249 elif len([c for c in macro.encode("ascii", "replace") if not c.isalnum() and c != "_"]):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2250 self.log(_("Macro name may contain only ASCII alphanumeric symbols and underscores"))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2251 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2252 elif hasattr(self.__class__, "do_" + macro):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2253 self.log(_("Name '%s' is being used by built-in command") % macro)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2254 return
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2255 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2256 old_def = ""
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2257 self.start_macro(macro, old_def)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2258 return macro
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2259
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2260 def update_macros_menu(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2261 if not hasattr(self, "macros_menu"):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2262 return # too early, menu not yet built
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2263 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2264 while True:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2265 item = self.macros_menu.FindItemByPosition(1)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2266 if item is None: break
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2267 self.macros_menu.DeleteItem(item)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2268 except:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2269 pass
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2270 for macro in self.macros.keys():
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2271 self.Bind(wx.EVT_MENU, lambda x, m = macro: self.start_macro(m, self.macros[m]), self.macros_menu.Append(-1, macro))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2272
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2273 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2274 # Slic3r integration
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2275 # --------------------------------------------------------------
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2276
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2277 def load_slic3r_configs(self, menus):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2278 """List Slic3r configurations and create menu"""
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2279 # Hack to get correct path for Slic3r config
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2280 orig_appname = self.app.GetAppName()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2281 self.app.SetAppName("Slic3r")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2282 configpath = wx.StandardPaths.Get().GetUserDataDir()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2283 self.app.SetAppName(orig_appname)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2284 self.slic3r_configpath = configpath
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2285 configfile = os.path.join(configpath, "slic3r.ini")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2286 config = self.read_slic3r_config(configfile)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2287 self.slic3r_configs = {}
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2288 for cat in menus:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2289 menu = menus[cat]
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2290 pattern = os.path.join(configpath, cat, "*.ini")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2291 files = sorted(glob.glob(pattern))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2292 try:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2293 preset = config.get("presets", cat)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2294 self.slic3r_configs[cat] = preset
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2295 except:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2296 preset = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2297 self.slic3r_configs[cat] = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2298 for f in files:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2299 name = os.path.splitext(os.path.basename(f))[0]
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2300 item = menu.Append(-1, name, f, wx.ITEM_RADIO)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2301 item.Check(os.path.basename(f) == preset)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2302 self.Bind(wx.EVT_MENU,
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2303 lambda event, cat = cat, f = f:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2304 self.set_slic3r_config(configfile, cat, f), item)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2305
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2306 def read_slic3r_config(self, configfile, parser = None):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2307 """Helper to read a Slic3r configuration file"""
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2308 import ConfigParser
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2309 parser = ConfigParser.RawConfigParser()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2310
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2311 class add_header(object):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2312 def __init__(self, f):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2313 self.f = f
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2314 self.header = '[dummy]'
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2315
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2316 def readline(self):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2317 if self.header:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2318 try: return self.header
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2319 finally: self.header = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2320 else:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2321 return self.f.readline()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2322 parser.readfp(add_header(open(configfile)), configfile)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2323 return parser
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2324
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2325 def set_slic3r_config(self, configfile, cat, file):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2326 """Set new preset for a given category"""
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2327 self.slic3r_configs[cat] = file
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2328 if self.settings.slic3rupdate:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2329 config = self.read_slic3r_config(configfile)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2330 config.set("presets", cat, os.path.basename(file))
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2331 f = StringIO.StringIO()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2332 config.write(f)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2333 data = f.getvalue()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2334 f.close()
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2335 data = data.replace("[dummy]\n", "")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2336 with open(configfile, "w") as f:
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2337 f.write(data)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2338
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2339 class PronterApp(wx.App):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2340
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2341 mainwindow = None
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2342
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2343 def __init__(self, *args, **kwargs):
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2344 super(PronterApp, self).__init__(*args, **kwargs)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2345 self.SetAppName("Pronterface")
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2346 self.mainwindow = PronterWindow(self)
0bbb006204fc Added printrun sourcecode from
mbayer
parents:
diff changeset
2347 self.mainwindow.Show()

mercurial