meerk40t 0.9.3001__py2.py3-none-any.whl → 0.9.7010__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (445) hide show
  1. meerk40t/__init__.py +1 -1
  2. meerk40t/balormk/balor_params.py +167 -167
  3. meerk40t/balormk/clone_loader.py +457 -457
  4. meerk40t/balormk/controller.py +1566 -1512
  5. meerk40t/balormk/cylindermod.py +64 -0
  6. meerk40t/balormk/device.py +966 -1959
  7. meerk40t/balormk/driver.py +778 -591
  8. meerk40t/balormk/galvo_commands.py +1195 -0
  9. meerk40t/balormk/gui/balorconfig.py +237 -111
  10. meerk40t/balormk/gui/balorcontroller.py +191 -184
  11. meerk40t/balormk/gui/baloroperationproperties.py +116 -115
  12. meerk40t/balormk/gui/corscene.py +845 -0
  13. meerk40t/balormk/gui/gui.py +179 -147
  14. meerk40t/balormk/livelightjob.py +466 -382
  15. meerk40t/balormk/mock_connection.py +131 -109
  16. meerk40t/balormk/plugin.py +133 -135
  17. meerk40t/balormk/usb_connection.py +306 -301
  18. meerk40t/camera/__init__.py +1 -1
  19. meerk40t/camera/camera.py +514 -397
  20. meerk40t/camera/gui/camerapanel.py +1241 -1095
  21. meerk40t/camera/gui/gui.py +58 -58
  22. meerk40t/camera/plugin.py +441 -399
  23. meerk40t/ch341/__init__.py +27 -27
  24. meerk40t/ch341/ch341device.py +628 -628
  25. meerk40t/ch341/libusb.py +595 -589
  26. meerk40t/ch341/mock.py +171 -171
  27. meerk40t/ch341/windriver.py +157 -157
  28. meerk40t/constants.py +13 -0
  29. meerk40t/core/__init__.py +1 -1
  30. meerk40t/core/bindalias.py +550 -539
  31. meerk40t/core/core.py +47 -47
  32. meerk40t/core/cutcode/cubiccut.py +73 -73
  33. meerk40t/core/cutcode/cutcode.py +315 -312
  34. meerk40t/core/cutcode/cutgroup.py +141 -137
  35. meerk40t/core/cutcode/cutobject.py +192 -185
  36. meerk40t/core/cutcode/dwellcut.py +37 -37
  37. meerk40t/core/cutcode/gotocut.py +29 -29
  38. meerk40t/core/cutcode/homecut.py +29 -29
  39. meerk40t/core/cutcode/inputcut.py +34 -34
  40. meerk40t/core/cutcode/linecut.py +33 -33
  41. meerk40t/core/cutcode/outputcut.py +34 -34
  42. meerk40t/core/cutcode/plotcut.py +335 -335
  43. meerk40t/core/cutcode/quadcut.py +61 -61
  44. meerk40t/core/cutcode/rastercut.py +168 -148
  45. meerk40t/core/cutcode/waitcut.py +34 -34
  46. meerk40t/core/cutplan.py +1843 -1316
  47. meerk40t/core/drivers.py +330 -329
  48. meerk40t/core/elements/align.py +801 -669
  49. meerk40t/core/elements/branches.py +1844 -1507
  50. meerk40t/core/elements/clipboard.py +229 -219
  51. meerk40t/core/elements/element_treeops.py +4561 -2837
  52. meerk40t/core/elements/element_types.py +125 -105
  53. meerk40t/core/elements/elements.py +4329 -3617
  54. meerk40t/core/elements/files.py +117 -64
  55. meerk40t/core/elements/geometry.py +473 -224
  56. meerk40t/core/elements/grid.py +467 -316
  57. meerk40t/core/elements/materials.py +158 -94
  58. meerk40t/core/elements/notes.py +50 -38
  59. meerk40t/core/elements/offset_clpr.py +933 -912
  60. meerk40t/core/elements/offset_mk.py +963 -955
  61. meerk40t/core/elements/penbox.py +339 -267
  62. meerk40t/core/elements/placements.py +300 -83
  63. meerk40t/core/elements/render.py +785 -687
  64. meerk40t/core/elements/shapes.py +2618 -2092
  65. meerk40t/core/elements/trace.py +651 -563
  66. meerk40t/core/elements/tree_commands.py +415 -409
  67. meerk40t/core/elements/undo_redo.py +116 -58
  68. meerk40t/core/elements/wordlist.py +319 -200
  69. meerk40t/core/exceptions.py +9 -9
  70. meerk40t/core/laserjob.py +220 -220
  71. meerk40t/core/logging.py +63 -63
  72. meerk40t/core/node/blobnode.py +83 -86
  73. meerk40t/core/node/bootstrap.py +105 -103
  74. meerk40t/core/node/branch_elems.py +40 -31
  75. meerk40t/core/node/branch_ops.py +45 -38
  76. meerk40t/core/node/branch_regmark.py +48 -41
  77. meerk40t/core/node/cutnode.py +29 -32
  78. meerk40t/core/node/effect_hatch.py +375 -257
  79. meerk40t/core/node/effect_warp.py +398 -0
  80. meerk40t/core/node/effect_wobble.py +441 -309
  81. meerk40t/core/node/elem_ellipse.py +404 -309
  82. meerk40t/core/node/elem_image.py +1082 -801
  83. meerk40t/core/node/elem_line.py +358 -292
  84. meerk40t/core/node/elem_path.py +259 -201
  85. meerk40t/core/node/elem_point.py +129 -102
  86. meerk40t/core/node/elem_polyline.py +310 -246
  87. meerk40t/core/node/elem_rect.py +376 -286
  88. meerk40t/core/node/elem_text.py +445 -418
  89. meerk40t/core/node/filenode.py +59 -40
  90. meerk40t/core/node/groupnode.py +138 -74
  91. meerk40t/core/node/image_processed.py +777 -766
  92. meerk40t/core/node/image_raster.py +156 -113
  93. meerk40t/core/node/layernode.py +31 -31
  94. meerk40t/core/node/mixins.py +135 -107
  95. meerk40t/core/node/node.py +1427 -1304
  96. meerk40t/core/node/nutils.py +117 -114
  97. meerk40t/core/node/op_cut.py +462 -335
  98. meerk40t/core/node/op_dots.py +296 -251
  99. meerk40t/core/node/op_engrave.py +414 -311
  100. meerk40t/core/node/op_image.py +755 -369
  101. meerk40t/core/node/op_raster.py +787 -522
  102. meerk40t/core/node/place_current.py +37 -40
  103. meerk40t/core/node/place_point.py +329 -126
  104. meerk40t/core/node/refnode.py +58 -47
  105. meerk40t/core/node/rootnode.py +225 -219
  106. meerk40t/core/node/util_console.py +48 -48
  107. meerk40t/core/node/util_goto.py +84 -65
  108. meerk40t/core/node/util_home.py +61 -61
  109. meerk40t/core/node/util_input.py +102 -102
  110. meerk40t/core/node/util_output.py +102 -102
  111. meerk40t/core/node/util_wait.py +65 -65
  112. meerk40t/core/parameters.py +709 -707
  113. meerk40t/core/planner.py +875 -785
  114. meerk40t/core/plotplanner.py +656 -652
  115. meerk40t/core/space.py +120 -113
  116. meerk40t/core/spoolers.py +706 -705
  117. meerk40t/core/svg_io.py +1836 -1549
  118. meerk40t/core/treeop.py +534 -445
  119. meerk40t/core/undos.py +278 -124
  120. meerk40t/core/units.py +784 -680
  121. meerk40t/core/view.py +393 -322
  122. meerk40t/core/webhelp.py +62 -62
  123. meerk40t/core/wordlist.py +513 -504
  124. meerk40t/cylinder/cylinder.py +247 -0
  125. meerk40t/cylinder/gui/cylindersettings.py +41 -0
  126. meerk40t/cylinder/gui/gui.py +24 -0
  127. meerk40t/device/__init__.py +1 -1
  128. meerk40t/device/basedevice.py +322 -123
  129. meerk40t/device/devicechoices.py +50 -0
  130. meerk40t/device/dummydevice.py +163 -128
  131. meerk40t/device/gui/defaultactions.py +618 -602
  132. meerk40t/device/gui/effectspanel.py +114 -0
  133. meerk40t/device/gui/formatterpanel.py +253 -290
  134. meerk40t/device/gui/warningpanel.py +337 -260
  135. meerk40t/device/mixins.py +13 -13
  136. meerk40t/dxf/__init__.py +1 -1
  137. meerk40t/dxf/dxf_io.py +766 -554
  138. meerk40t/dxf/plugin.py +47 -35
  139. meerk40t/external_plugins.py +79 -79
  140. meerk40t/external_plugins_build.py +28 -28
  141. meerk40t/extra/cag.py +112 -116
  142. meerk40t/extra/coolant.py +403 -0
  143. meerk40t/extra/encode_detect.py +198 -0
  144. meerk40t/extra/ezd.py +1165 -1165
  145. meerk40t/extra/hershey.py +835 -340
  146. meerk40t/extra/imageactions.py +322 -316
  147. meerk40t/extra/inkscape.py +630 -622
  148. meerk40t/extra/lbrn.py +424 -424
  149. meerk40t/extra/outerworld.py +284 -0
  150. meerk40t/extra/param_functions.py +1542 -1556
  151. meerk40t/extra/potrace.py +257 -253
  152. meerk40t/extra/serial_exchange.py +118 -0
  153. meerk40t/extra/updater.py +602 -453
  154. meerk40t/extra/vectrace.py +147 -146
  155. meerk40t/extra/winsleep.py +83 -83
  156. meerk40t/extra/xcs_reader.py +597 -0
  157. meerk40t/fill/fills.py +781 -335
  158. meerk40t/fill/patternfill.py +1061 -1061
  159. meerk40t/fill/patterns.py +614 -567
  160. meerk40t/grbl/control.py +87 -87
  161. meerk40t/grbl/controller.py +990 -903
  162. meerk40t/grbl/device.py +1081 -768
  163. meerk40t/grbl/driver.py +989 -771
  164. meerk40t/grbl/emulator.py +532 -497
  165. meerk40t/grbl/gcodejob.py +783 -767
  166. meerk40t/grbl/gui/grblconfiguration.py +373 -298
  167. meerk40t/grbl/gui/grblcontroller.py +485 -271
  168. meerk40t/grbl/gui/grblhardwareconfig.py +269 -153
  169. meerk40t/grbl/gui/grbloperationconfig.py +105 -0
  170. meerk40t/grbl/gui/gui.py +147 -116
  171. meerk40t/grbl/interpreter.py +44 -44
  172. meerk40t/grbl/loader.py +22 -22
  173. meerk40t/grbl/mock_connection.py +56 -56
  174. meerk40t/grbl/plugin.py +294 -264
  175. meerk40t/grbl/serial_connection.py +93 -88
  176. meerk40t/grbl/tcp_connection.py +81 -79
  177. meerk40t/grbl/ws_connection.py +112 -0
  178. meerk40t/gui/__init__.py +1 -1
  179. meerk40t/gui/about.py +2042 -296
  180. meerk40t/gui/alignment.py +1644 -1608
  181. meerk40t/gui/autoexec.py +199 -0
  182. meerk40t/gui/basicops.py +791 -670
  183. meerk40t/gui/bufferview.py +77 -71
  184. meerk40t/gui/busy.py +170 -133
  185. meerk40t/gui/choicepropertypanel.py +1673 -1469
  186. meerk40t/gui/consolepanel.py +706 -542
  187. meerk40t/gui/devicepanel.py +687 -581
  188. meerk40t/gui/dialogoptions.py +110 -107
  189. meerk40t/gui/executejob.py +316 -306
  190. meerk40t/gui/fonts.py +90 -90
  191. meerk40t/gui/functionwrapper.py +252 -0
  192. meerk40t/gui/gui_mixins.py +729 -0
  193. meerk40t/gui/guicolors.py +205 -182
  194. meerk40t/gui/help_assets/help_assets.py +218 -201
  195. meerk40t/gui/helper.py +154 -0
  196. meerk40t/gui/hersheymanager.py +1430 -846
  197. meerk40t/gui/icons.py +3422 -2747
  198. meerk40t/gui/imagesplitter.py +555 -508
  199. meerk40t/gui/keymap.py +354 -344
  200. meerk40t/gui/laserpanel.py +892 -806
  201. meerk40t/gui/laserrender.py +1470 -1232
  202. meerk40t/gui/lasertoolpanel.py +805 -793
  203. meerk40t/gui/magnetoptions.py +436 -0
  204. meerk40t/gui/materialmanager.py +2917 -0
  205. meerk40t/gui/materialtest.py +1722 -1694
  206. meerk40t/gui/mkdebug.py +646 -359
  207. meerk40t/gui/mwindow.py +163 -140
  208. meerk40t/gui/navigationpanels.py +2605 -2467
  209. meerk40t/gui/notes.py +143 -142
  210. meerk40t/gui/opassignment.py +414 -410
  211. meerk40t/gui/operation_info.py +310 -299
  212. meerk40t/gui/plugin.py +494 -328
  213. meerk40t/gui/position.py +714 -669
  214. meerk40t/gui/preferences.py +901 -650
  215. meerk40t/gui/propertypanels/attributes.py +1461 -1131
  216. meerk40t/gui/propertypanels/blobproperty.py +117 -114
  217. meerk40t/gui/propertypanels/consoleproperty.py +83 -80
  218. meerk40t/gui/propertypanels/gotoproperty.py +77 -0
  219. meerk40t/gui/propertypanels/groupproperties.py +223 -217
  220. meerk40t/gui/propertypanels/hatchproperty.py +489 -469
  221. meerk40t/gui/propertypanels/imageproperty.py +2244 -1384
  222. meerk40t/gui/propertypanels/inputproperty.py +59 -58
  223. meerk40t/gui/propertypanels/opbranchproperties.py +82 -80
  224. meerk40t/gui/propertypanels/operationpropertymain.py +1890 -1638
  225. meerk40t/gui/propertypanels/outputproperty.py +59 -58
  226. meerk40t/gui/propertypanels/pathproperty.py +389 -380
  227. meerk40t/gui/propertypanels/placementproperty.py +1214 -383
  228. meerk40t/gui/propertypanels/pointproperty.py +140 -136
  229. meerk40t/gui/propertypanels/propertywindow.py +313 -181
  230. meerk40t/gui/propertypanels/rasterwizardpanels.py +996 -912
  231. meerk40t/gui/propertypanels/regbranchproperties.py +76 -0
  232. meerk40t/gui/propertypanels/textproperty.py +770 -755
  233. meerk40t/gui/propertypanels/waitproperty.py +56 -55
  234. meerk40t/gui/propertypanels/warpproperty.py +121 -0
  235. meerk40t/gui/propertypanels/wobbleproperty.py +255 -204
  236. meerk40t/gui/ribbon.py +2468 -2210
  237. meerk40t/gui/scene/scene.py +1100 -1051
  238. meerk40t/gui/scene/sceneconst.py +22 -22
  239. meerk40t/gui/scene/scenepanel.py +439 -349
  240. meerk40t/gui/scene/scenespacewidget.py +365 -365
  241. meerk40t/gui/scene/widget.py +518 -505
  242. meerk40t/gui/scenewidgets/affinemover.py +215 -215
  243. meerk40t/gui/scenewidgets/attractionwidget.py +315 -309
  244. meerk40t/gui/scenewidgets/bedwidget.py +120 -97
  245. meerk40t/gui/scenewidgets/elementswidget.py +137 -107
  246. meerk40t/gui/scenewidgets/gridwidget.py +785 -745
  247. meerk40t/gui/scenewidgets/guidewidget.py +765 -765
  248. meerk40t/gui/scenewidgets/laserpathwidget.py +66 -66
  249. meerk40t/gui/scenewidgets/machineoriginwidget.py +86 -86
  250. meerk40t/gui/scenewidgets/nodeselector.py +28 -28
  251. meerk40t/gui/scenewidgets/rectselectwidget.py +589 -346
  252. meerk40t/gui/scenewidgets/relocatewidget.py +33 -33
  253. meerk40t/gui/scenewidgets/reticlewidget.py +83 -83
  254. meerk40t/gui/scenewidgets/selectionwidget.py +2952 -2756
  255. meerk40t/gui/simpleui.py +357 -333
  256. meerk40t/gui/simulation.py +2431 -2094
  257. meerk40t/gui/snapoptions.py +208 -203
  258. meerk40t/gui/spoolerpanel.py +1227 -1180
  259. meerk40t/gui/statusbarwidgets/defaultoperations.py +480 -353
  260. meerk40t/gui/statusbarwidgets/infowidget.py +520 -483
  261. meerk40t/gui/statusbarwidgets/opassignwidget.py +356 -355
  262. meerk40t/gui/statusbarwidgets/selectionwidget.py +172 -171
  263. meerk40t/gui/statusbarwidgets/shapepropwidget.py +754 -236
  264. meerk40t/gui/statusbarwidgets/statusbar.py +272 -260
  265. meerk40t/gui/statusbarwidgets/statusbarwidget.py +268 -270
  266. meerk40t/gui/statusbarwidgets/strokewidget.py +267 -251
  267. meerk40t/gui/themes.py +200 -78
  268. meerk40t/gui/tips.py +591 -0
  269. meerk40t/gui/toolwidgets/circlebrush.py +35 -35
  270. meerk40t/gui/toolwidgets/toolcircle.py +248 -242
  271. meerk40t/gui/toolwidgets/toolcontainer.py +82 -77
  272. meerk40t/gui/toolwidgets/tooldraw.py +97 -90
  273. meerk40t/gui/toolwidgets/toolellipse.py +219 -212
  274. meerk40t/gui/toolwidgets/toolimagecut.py +25 -132
  275. meerk40t/gui/toolwidgets/toolline.py +39 -144
  276. meerk40t/gui/toolwidgets/toollinetext.py +79 -236
  277. meerk40t/gui/toolwidgets/toollinetext_inline.py +296 -0
  278. meerk40t/gui/toolwidgets/toolmeasure.py +160 -216
  279. meerk40t/gui/toolwidgets/toolnodeedit.py +2088 -2074
  280. meerk40t/gui/toolwidgets/toolnodemove.py +92 -94
  281. meerk40t/gui/toolwidgets/toolparameter.py +754 -668
  282. meerk40t/gui/toolwidgets/toolplacement.py +108 -108
  283. meerk40t/gui/toolwidgets/toolpoint.py +68 -59
  284. meerk40t/gui/toolwidgets/toolpointlistbuilder.py +294 -0
  285. meerk40t/gui/toolwidgets/toolpointmove.py +183 -0
  286. meerk40t/gui/toolwidgets/toolpolygon.py +288 -403
  287. meerk40t/gui/toolwidgets/toolpolyline.py +38 -196
  288. meerk40t/gui/toolwidgets/toolrect.py +211 -207
  289. meerk40t/gui/toolwidgets/toolrelocate.py +72 -72
  290. meerk40t/gui/toolwidgets/toolribbon.py +598 -113
  291. meerk40t/gui/toolwidgets/tooltabedit.py +546 -0
  292. meerk40t/gui/toolwidgets/tooltext.py +98 -89
  293. meerk40t/gui/toolwidgets/toolvector.py +213 -204
  294. meerk40t/gui/toolwidgets/toolwidget.py +39 -39
  295. meerk40t/gui/usbconnect.py +98 -91
  296. meerk40t/gui/utilitywidgets/buttonwidget.py +18 -18
  297. meerk40t/gui/utilitywidgets/checkboxwidget.py +90 -90
  298. meerk40t/gui/utilitywidgets/controlwidget.py +14 -14
  299. meerk40t/gui/utilitywidgets/cyclocycloidwidget.py +343 -340
  300. meerk40t/gui/utilitywidgets/debugwidgets.py +148 -0
  301. meerk40t/gui/utilitywidgets/handlewidget.py +27 -27
  302. meerk40t/gui/utilitywidgets/harmonograph.py +450 -447
  303. meerk40t/gui/utilitywidgets/openclosewidget.py +40 -40
  304. meerk40t/gui/utilitywidgets/rotationwidget.py +54 -54
  305. meerk40t/gui/utilitywidgets/scalewidget.py +75 -75
  306. meerk40t/gui/utilitywidgets/seekbarwidget.py +183 -183
  307. meerk40t/gui/utilitywidgets/togglewidget.py +142 -142
  308. meerk40t/gui/utilitywidgets/toolbarwidget.py +8 -8
  309. meerk40t/gui/wordlisteditor.py +985 -931
  310. meerk40t/gui/wxmeerk40t.py +1444 -1169
  311. meerk40t/gui/wxmmain.py +5578 -4112
  312. meerk40t/gui/wxmribbon.py +1591 -1076
  313. meerk40t/gui/wxmscene.py +1635 -1453
  314. meerk40t/gui/wxmtree.py +2410 -2089
  315. meerk40t/gui/wxutils.py +1769 -1099
  316. meerk40t/gui/zmatrix.py +102 -102
  317. meerk40t/image/__init__.py +1 -1
  318. meerk40t/image/dither.py +429 -0
  319. meerk40t/image/imagetools.py +2778 -2269
  320. meerk40t/internal_plugins.py +150 -130
  321. meerk40t/kernel/__init__.py +63 -12
  322. meerk40t/kernel/channel.py +259 -212
  323. meerk40t/kernel/context.py +538 -538
  324. meerk40t/kernel/exceptions.py +41 -41
  325. meerk40t/kernel/functions.py +463 -414
  326. meerk40t/kernel/jobs.py +100 -100
  327. meerk40t/kernel/kernel.py +3809 -3571
  328. meerk40t/kernel/lifecycles.py +71 -71
  329. meerk40t/kernel/module.py +49 -49
  330. meerk40t/kernel/service.py +147 -147
  331. meerk40t/kernel/settings.py +383 -343
  332. meerk40t/lihuiyu/controller.py +883 -876
  333. meerk40t/lihuiyu/device.py +1181 -1069
  334. meerk40t/lihuiyu/driver.py +1466 -1372
  335. meerk40t/lihuiyu/gui/gui.py +127 -106
  336. meerk40t/lihuiyu/gui/lhyaccelgui.py +377 -363
  337. meerk40t/lihuiyu/gui/lhycontrollergui.py +741 -651
  338. meerk40t/lihuiyu/gui/lhydrivergui.py +470 -446
  339. meerk40t/lihuiyu/gui/lhyoperationproperties.py +238 -237
  340. meerk40t/lihuiyu/gui/tcpcontroller.py +226 -190
  341. meerk40t/lihuiyu/interpreter.py +53 -53
  342. meerk40t/lihuiyu/laserspeed.py +450 -450
  343. meerk40t/lihuiyu/loader.py +90 -90
  344. meerk40t/lihuiyu/parser.py +404 -404
  345. meerk40t/lihuiyu/plugin.py +101 -102
  346. meerk40t/lihuiyu/tcp_connection.py +111 -109
  347. meerk40t/main.py +231 -165
  348. meerk40t/moshi/builder.py +788 -781
  349. meerk40t/moshi/controller.py +505 -499
  350. meerk40t/moshi/device.py +495 -442
  351. meerk40t/moshi/driver.py +862 -696
  352. meerk40t/moshi/gui/gui.py +78 -76
  353. meerk40t/moshi/gui/moshicontrollergui.py +538 -522
  354. meerk40t/moshi/gui/moshidrivergui.py +87 -75
  355. meerk40t/moshi/plugin.py +43 -43
  356. meerk40t/network/console_server.py +102 -57
  357. meerk40t/network/kernelserver.py +10 -9
  358. meerk40t/network/tcp_server.py +142 -140
  359. meerk40t/network/udp_server.py +103 -77
  360. meerk40t/network/web_server.py +390 -0
  361. meerk40t/newly/controller.py +1158 -1144
  362. meerk40t/newly/device.py +874 -732
  363. meerk40t/newly/driver.py +540 -412
  364. meerk40t/newly/gui/gui.py +219 -188
  365. meerk40t/newly/gui/newlyconfig.py +116 -101
  366. meerk40t/newly/gui/newlycontroller.py +193 -186
  367. meerk40t/newly/gui/operationproperties.py +51 -51
  368. meerk40t/newly/mock_connection.py +82 -82
  369. meerk40t/newly/newly_params.py +56 -56
  370. meerk40t/newly/plugin.py +1214 -1246
  371. meerk40t/newly/usb_connection.py +322 -322
  372. meerk40t/rotary/gui/gui.py +52 -46
  373. meerk40t/rotary/gui/rotarysettings.py +240 -232
  374. meerk40t/rotary/rotary.py +202 -98
  375. meerk40t/ruida/control.py +291 -91
  376. meerk40t/ruida/controller.py +138 -1088
  377. meerk40t/ruida/device.py +672 -231
  378. meerk40t/ruida/driver.py +534 -472
  379. meerk40t/ruida/emulator.py +1494 -1491
  380. meerk40t/ruida/exceptions.py +4 -4
  381. meerk40t/ruida/gui/gui.py +71 -76
  382. meerk40t/ruida/gui/ruidaconfig.py +239 -72
  383. meerk40t/ruida/gui/ruidacontroller.py +187 -184
  384. meerk40t/ruida/gui/ruidaoperationproperties.py +48 -47
  385. meerk40t/ruida/loader.py +54 -52
  386. meerk40t/ruida/mock_connection.py +57 -109
  387. meerk40t/ruida/plugin.py +124 -87
  388. meerk40t/ruida/rdjob.py +2084 -945
  389. meerk40t/ruida/serial_connection.py +116 -0
  390. meerk40t/ruida/tcp_connection.py +146 -0
  391. meerk40t/ruida/udp_connection.py +73 -0
  392. meerk40t/svgelements.py +9671 -9669
  393. meerk40t/tools/driver_to_path.py +584 -579
  394. meerk40t/tools/geomstr.py +5583 -4680
  395. meerk40t/tools/jhfparser.py +357 -292
  396. meerk40t/tools/kerftest.py +904 -890
  397. meerk40t/tools/livinghinges.py +1168 -1033
  398. meerk40t/tools/pathtools.py +987 -949
  399. meerk40t/tools/pmatrix.py +234 -0
  400. meerk40t/tools/pointfinder.py +942 -942
  401. meerk40t/tools/polybool.py +940 -940
  402. meerk40t/tools/rasterplotter.py +1660 -547
  403. meerk40t/tools/shxparser.py +989 -901
  404. meerk40t/tools/ttfparser.py +726 -446
  405. meerk40t/tools/zinglplotter.py +595 -593
  406. {meerk40t-0.9.3001.dist-info → meerk40t-0.9.7010.dist-info}/LICENSE +21 -21
  407. {meerk40t-0.9.3001.dist-info → meerk40t-0.9.7010.dist-info}/METADATA +150 -139
  408. meerk40t-0.9.7010.dist-info/RECORD +445 -0
  409. {meerk40t-0.9.3001.dist-info → meerk40t-0.9.7010.dist-info}/WHEEL +1 -1
  410. {meerk40t-0.9.3001.dist-info → meerk40t-0.9.7010.dist-info}/top_level.txt +0 -1
  411. {meerk40t-0.9.3001.dist-info → meerk40t-0.9.7010.dist-info}/zip-safe +1 -1
  412. meerk40t/balormk/elementlightjob.py +0 -159
  413. meerk40t-0.9.3001.dist-info/RECORD +0 -437
  414. test/bootstrap.py +0 -63
  415. test/test_cli.py +0 -12
  416. test/test_core_cutcode.py +0 -418
  417. test/test_core_elements.py +0 -144
  418. test/test_core_plotplanner.py +0 -397
  419. test/test_core_viewports.py +0 -312
  420. test/test_drivers_grbl.py +0 -108
  421. test/test_drivers_lihuiyu.py +0 -443
  422. test/test_drivers_newly.py +0 -113
  423. test/test_element_degenerate_points.py +0 -43
  424. test/test_elements_classify.py +0 -97
  425. test/test_elements_penbox.py +0 -22
  426. test/test_file_svg.py +0 -176
  427. test/test_fill.py +0 -155
  428. test/test_geomstr.py +0 -1523
  429. test/test_geomstr_nodes.py +0 -18
  430. test/test_imagetools_actualize.py +0 -306
  431. test/test_imagetools_wizard.py +0 -258
  432. test/test_kernel.py +0 -200
  433. test/test_laser_speeds.py +0 -3303
  434. test/test_length.py +0 -57
  435. test/test_lifecycle.py +0 -66
  436. test/test_operations.py +0 -251
  437. test/test_operations_hatch.py +0 -57
  438. test/test_ruida.py +0 -19
  439. test/test_spooler.py +0 -22
  440. test/test_tools_rasterplotter.py +0 -29
  441. test/test_wobble.py +0 -133
  442. test/test_zingl.py +0 -124
  443. {test → meerk40t/cylinder}/__init__.py +0 -0
  444. /meerk40t/{core/element_commands.py → cylinder/gui/__init__.py} +0 -0
  445. {meerk40t-0.9.3001.dist-info → meerk40t-0.9.7010.dist-info}/entry_points.txt +0 -0
@@ -1,71 +1,71 @@
1
- LIFECYCLE_KERNEL_INIT = 0
2
- LIFECYCLE_KERNEL_PRECLI = 20
3
- LIFECYCLE_KERNEL_CLI = 25
4
- LIFECYCLE_KERNEL_INVALIDATE = 50
5
- LIFECYCLE_KERNEL_PREREGISTER = 100
6
- LIFECYCLE_KERNEL_REGISTER = 101
7
- LIFECYCLE_KERNEL_CONFIGURE = 102
8
- LIFECYCLE_KERNEL_PREBOOT = 200
9
- LIFECYCLE_KERNEL_BOOT = 201
10
- LIFECYCLE_KERNEL_POSTBOOT = 202
11
- LIFECYCLE_KERNEL_PRESTART = 300
12
- LIFECYCLE_KERNEL_START = 301
13
- LIFECYCLE_KERNEL_POSTSTART = 302
14
- LIFECYCLE_KERNEL_READY = 303
15
- LIFECYCLE_KERNEL_FINISHED = 304
16
- LIFECYCLE_KERNEL_PREMAIN = 400
17
- LIFECYCLE_KERNEL_MAINLOOP = 401
18
- LIFECYCLE_KERNEL_POSTMAIN = 402
19
- LIFECYCLE_KERNEL_PRESHUTDOWN = 900
20
- LIFECYCLE_KERNEL_SHUTDOWN = 1000
21
-
22
- LIFECYCLE_SERVICE_INIT = 0
23
- LIFECYCLE_SERVICE_ADDED = 50
24
- LIFECYCLE_SERVICE_ATTACHED = 100
25
- LIFECYCLE_SERVICE_ASSIGNED = 101
26
- LIFECYCLE_SERVICE_DETACHED = 200
27
- LIFECYCLE_SERVICE_SHUTDOWN = 1000
28
-
29
- LIFECYCLE_MODULE_OPENED = 100
30
- LIFECYCLE_MODULE_CLOSED = 200
31
-
32
- KERNEL_LIFECYCLE_NAMES = {
33
- LIFECYCLE_KERNEL_INIT: "init",
34
- LIFECYCLE_KERNEL_PRECLI: "precli",
35
- LIFECYCLE_KERNEL_CLI: "cli",
36
- LIFECYCLE_KERNEL_INVALIDATE: "invalidate",
37
- LIFECYCLE_KERNEL_PREREGISTER: "preregister",
38
- LIFECYCLE_KERNEL_REGISTER: "register",
39
- LIFECYCLE_KERNEL_CONFIGURE: "configure",
40
- LIFECYCLE_KERNEL_PREBOOT: "preboot",
41
- LIFECYCLE_KERNEL_BOOT: "boot",
42
- LIFECYCLE_KERNEL_POSTBOOT: "postboot",
43
- LIFECYCLE_KERNEL_PRESTART: "prestart",
44
- LIFECYCLE_KERNEL_START: "start",
45
- LIFECYCLE_KERNEL_POSTSTART: "poststart",
46
- LIFECYCLE_KERNEL_READY: "ready",
47
- LIFECYCLE_KERNEL_FINISHED: "finished",
48
- LIFECYCLE_KERNEL_PREMAIN: "premain",
49
- LIFECYCLE_KERNEL_MAINLOOP: "mainloop",
50
- LIFECYCLE_KERNEL_POSTMAIN: "postmain",
51
- LIFECYCLE_KERNEL_PRESHUTDOWN: "preshutdown",
52
- LIFECYCLE_KERNEL_SHUTDOWN: "shutdown",
53
- }
54
-
55
-
56
- def kernel_lifecycle_name(lifecycle):
57
- return KERNEL_LIFECYCLE_NAMES[lifecycle]
58
-
59
-
60
- SERVICE_LIFECYCLE_NAMES = {
61
- LIFECYCLE_SERVICE_INIT: "init",
62
- LIFECYCLE_SERVICE_ADDED: "added",
63
- LIFECYCLE_SERVICE_ATTACHED: "attached",
64
- LIFECYCLE_SERVICE_ASSIGNED: "assigned",
65
- LIFECYCLE_SERVICE_DETACHED: "detached",
66
- LIFECYCLE_SERVICE_SHUTDOWN: "shutdown",
67
- }
68
-
69
-
70
- def service_lifecycle_name(lifecycle):
71
- return SERVICE_LIFECYCLE_NAMES[lifecycle]
1
+ LIFECYCLE_KERNEL_INIT = 0
2
+ LIFECYCLE_KERNEL_PRECLI = 20
3
+ LIFECYCLE_KERNEL_CLI = 25
4
+ LIFECYCLE_KERNEL_INVALIDATE = 50
5
+ LIFECYCLE_KERNEL_PREREGISTER = 100
6
+ LIFECYCLE_KERNEL_REGISTER = 101
7
+ LIFECYCLE_KERNEL_CONFIGURE = 102
8
+ LIFECYCLE_KERNEL_PREBOOT = 200
9
+ LIFECYCLE_KERNEL_BOOT = 201
10
+ LIFECYCLE_KERNEL_POSTBOOT = 202
11
+ LIFECYCLE_KERNEL_PRESTART = 300
12
+ LIFECYCLE_KERNEL_START = 301
13
+ LIFECYCLE_KERNEL_POSTSTART = 302
14
+ LIFECYCLE_KERNEL_READY = 303
15
+ LIFECYCLE_KERNEL_FINISHED = 304
16
+ LIFECYCLE_KERNEL_PREMAIN = 400
17
+ LIFECYCLE_KERNEL_MAINLOOP = 401
18
+ LIFECYCLE_KERNEL_POSTMAIN = 402
19
+ LIFECYCLE_KERNEL_PRESHUTDOWN = 900
20
+ LIFECYCLE_KERNEL_SHUTDOWN = 1000
21
+
22
+ LIFECYCLE_SERVICE_INIT = 0
23
+ LIFECYCLE_SERVICE_ADDED = 50
24
+ LIFECYCLE_SERVICE_ATTACHED = 100
25
+ LIFECYCLE_SERVICE_ASSIGNED = 101
26
+ LIFECYCLE_SERVICE_DETACHED = 200
27
+ LIFECYCLE_SERVICE_SHUTDOWN = 1000
28
+
29
+ LIFECYCLE_MODULE_OPENED = 100
30
+ LIFECYCLE_MODULE_CLOSED = 200
31
+
32
+ KERNEL_LIFECYCLE_NAMES = {
33
+ LIFECYCLE_KERNEL_INIT: "init",
34
+ LIFECYCLE_KERNEL_PRECLI: "precli",
35
+ LIFECYCLE_KERNEL_CLI: "cli",
36
+ LIFECYCLE_KERNEL_INVALIDATE: "invalidate",
37
+ LIFECYCLE_KERNEL_PREREGISTER: "preregister",
38
+ LIFECYCLE_KERNEL_REGISTER: "register",
39
+ LIFECYCLE_KERNEL_CONFIGURE: "configure",
40
+ LIFECYCLE_KERNEL_PREBOOT: "preboot",
41
+ LIFECYCLE_KERNEL_BOOT: "boot",
42
+ LIFECYCLE_KERNEL_POSTBOOT: "postboot",
43
+ LIFECYCLE_KERNEL_PRESTART: "prestart",
44
+ LIFECYCLE_KERNEL_START: "start",
45
+ LIFECYCLE_KERNEL_POSTSTART: "poststart",
46
+ LIFECYCLE_KERNEL_READY: "ready",
47
+ LIFECYCLE_KERNEL_FINISHED: "finished",
48
+ LIFECYCLE_KERNEL_PREMAIN: "premain",
49
+ LIFECYCLE_KERNEL_MAINLOOP: "mainloop",
50
+ LIFECYCLE_KERNEL_POSTMAIN: "postmain",
51
+ LIFECYCLE_KERNEL_PRESHUTDOWN: "preshutdown",
52
+ LIFECYCLE_KERNEL_SHUTDOWN: "shutdown",
53
+ }
54
+
55
+
56
+ def kernel_lifecycle_name(lifecycle):
57
+ return KERNEL_LIFECYCLE_NAMES[lifecycle]
58
+
59
+
60
+ SERVICE_LIFECYCLE_NAMES = {
61
+ LIFECYCLE_SERVICE_INIT: "init",
62
+ LIFECYCLE_SERVICE_ADDED: "added",
63
+ LIFECYCLE_SERVICE_ATTACHED: "attached",
64
+ LIFECYCLE_SERVICE_ASSIGNED: "assigned",
65
+ LIFECYCLE_SERVICE_DETACHED: "detached",
66
+ LIFECYCLE_SERVICE_SHUTDOWN: "shutdown",
67
+ }
68
+
69
+
70
+ def service_lifecycle_name(lifecycle):
71
+ return SERVICE_LIFECYCLE_NAMES[lifecycle]
meerk40t/kernel/module.py CHANGED
@@ -1,49 +1,49 @@
1
- class Module:
2
- """
3
- Modules are a generic lifecycle object. These are registered in the kernel as modules and when open() is called for
4
- a context. When close() is called on the context, it will close and delete references to the opened module and call
5
- module_close().
6
-
7
- If an opened module tries to open() a second time in a context with the same name, and was not closed, the
8
- restore() function is called for the module, with the same args and kwargs that would have been called on
9
- __init__().
10
-
11
- Multiple instances of a module can be opened but this requires a different initialization name.
12
- """
13
-
14
- def __init__(
15
- self,
16
- context: "Context",
17
- name: str = None,
18
- registered_path: str = None,
19
- *args,
20
- **kwargs,
21
- ):
22
- self.context = context
23
- self.name = name
24
- self.registered_path = registered_path
25
- self.state = "init"
26
-
27
- def __repr__(self):
28
- return f'{self.__class__.__name__}({repr(self.context)}, name="{self.name}")'
29
-
30
- def restore(self, *args, **kwargs):
31
- """Called with the same values of __init()__ on an attempt to reopen of a module with the same name at the
32
- same context."""
33
- pass
34
-
35
- def module_open(self, *args, **kwargs):
36
- """Initialize() is called after open() to set up the module and allow it to register various hooks into the
37
- kernelspace."""
38
- pass
39
-
40
- def module_close(self, *args, **kwargs):
41
- """Finalize is called after close() to unhook various kernelspace hooks. This will happen if kernel is being
42
- shutdown or if this individual module is being closed on its own."""
43
- pass
44
-
45
- def add_module_delegate(self, delegate):
46
- self.context.kernel.add_delegate(delegate, self)
47
-
48
- def remove_module_delegate(self, delegate):
49
- self.context.kernel.remove_delegate(delegate, self)
1
+ class Module:
2
+ """
3
+ Modules are a generic lifecycle object. These are registered in the kernel as modules and when open() is called for
4
+ a context. When close() is called on the context, it will close and delete references to the opened module and call
5
+ module_close().
6
+
7
+ If an opened module tries to open() a second time in a context with the same name, and was not closed, the
8
+ restore() function is called for the module, with the same args and kwargs that would have been called on
9
+ __init__().
10
+
11
+ Multiple instances of a module can be opened but this requires a different initialization name.
12
+ """
13
+
14
+ def __init__(
15
+ self,
16
+ context: "Context",
17
+ name: str = None,
18
+ registered_path: str = None,
19
+ *args,
20
+ **kwargs,
21
+ ):
22
+ self.context = context
23
+ self.name = name
24
+ self.registered_path = registered_path
25
+ self.state = "init"
26
+
27
+ def __repr__(self):
28
+ return f'{self.__class__.__name__}({repr(self.context)}, name="{self.name}")'
29
+
30
+ def restore(self, *args, **kwargs):
31
+ """Called with the same values of __init()__ on an attempt to reopen of a module with the same name at the
32
+ same context."""
33
+ pass
34
+
35
+ def module_open(self, *args, **kwargs):
36
+ """Initialize() is called after open() to set up the module and allow it to register various hooks into the
37
+ kernelspace."""
38
+ pass
39
+
40
+ def module_close(self, *args, **kwargs):
41
+ """Finalize is called after close() to unhook various kernelspace hooks. This will happen if kernel is being
42
+ shutdown or if this individual module is being closed on its own."""
43
+ pass
44
+
45
+ def add_module_delegate(self, delegate):
46
+ self.context.kernel.add_delegate(delegate, self)
47
+
48
+ def remove_module_delegate(self, delegate):
49
+ self.context.kernel.remove_delegate(delegate, self)
@@ -1,147 +1,147 @@
1
- from typing import Any, Callable
2
-
3
- from .context import Context
4
- from .functions import (
5
- console_argument,
6
- console_command,
7
- console_command_remove,
8
- console_option,
9
- )
10
- from .lifecycles import *
11
-
12
-
13
- class Service(Context):
14
- """
15
- A service is a context that with additional capabilities. These get registered by a domain in the kernel as a
16
- particular aspect. For example, .device or .gui could be a service and this service would be found at that attribute
17
- at for any context. As a type of context, services have a path for saving settings. The path is the saving/loading
18
- location for persistent settings. As a service, these contexts may exist at .<domain> relative to any context.
19
- This also allows several services to be registered for the same domain. These are swapped with the activate_service
20
- commands in the kernel.
21
-
22
- Each service has its own registered lookup of data. This extends the lookup of the kernel but only for those
23
- services which are currently active. This extends to various data types that are registered in the kernel such
24
- as choices and console commands. The currently active service can modify these simply by being activated. A command
25
- registered in a deactivated service cannot be executed from the console, only the activated service's command is
26
- executed in that case.
27
-
28
- Unlike contexts which should be derived or gotten at a particular path. Services can be directly instanced.
29
- """
30
-
31
- def __init__(self, kernel: "Kernel", path: str, registered_path: str = None):
32
- super().__init__(kernel, path)
33
- kernel.register_as_context(self)
34
- self.registered_path = registered_path
35
- self._registered = {}
36
-
37
- def __str__(self):
38
- if hasattr(self, "label"):
39
- return self.label
40
- return f"Service('{self._path}', {self.registered_path})"
41
-
42
- def service_attach(self, *args, **kwargs):
43
- pass
44
-
45
- def service_detach(self, *args, **kwargs):
46
- pass
47
-
48
- def shutdown(self, *args, **kwargs):
49
- """
50
- Called by kernel during shutdown process for all services.
51
- @param args:
52
- @param kwargs:
53
- @return:
54
- """
55
- pass
56
-
57
- def register(self, path: str, obj: Any) -> None:
58
- """
59
- Registers an element within this service.
60
-
61
- @param path:
62
- @param obj:
63
- @return:
64
- """
65
- self._registered[path] = obj
66
- try:
67
- obj.sub_register(self)
68
- except AttributeError:
69
- pass
70
- self._kernel.lookup_change(path)
71
-
72
- def unregister(self, path: str) -> None:
73
- """
74
- Unregister an element within this service.
75
-
76
- @param path: Path to unregister
77
- @return:
78
- """
79
- del self._registered[path]
80
- self._kernel.lookup_change(path)
81
-
82
- def console_argument(self, *args, **kwargs) -> Callable:
83
- """
84
- Delegate to Kernel
85
-
86
- Uses current context to be passed to the console_argument being registered.
87
- """
88
- return console_argument(*args, **kwargs)
89
-
90
- def console_option(self, *args, **kwargs) -> Callable:
91
- """
92
- Delegate to Kernel
93
-
94
- Uses current context to be passed to the console_option being registered.
95
- """
96
- return console_option(*args, **kwargs)
97
-
98
- def console_command(self, *args, **kwargs) -> Callable:
99
- """
100
- Service console command registration.
101
-
102
- Uses the current registration to register the given command.
103
- """
104
- return console_command(self, *args, **kwargs)
105
-
106
- def console_command_remove(self, *args, **kwargs) -> None:
107
- """
108
- Delegate to Kernel
109
-
110
- Uses current context to be passed to the console_command being removed.
111
- """
112
- return console_command_remove(self, *args, **kwargs)
113
-
114
- def destroy(self):
115
- self.kernel.set_service_lifecycle(self, LIFECYCLE_SERVICE_SHUTDOWN)
116
- self.clear_persistent()
117
- self.close_subpaths()
118
-
119
- def register_choices(self, sheet, choices):
120
- """
121
- Registers choices to a given sheet. If the sheet already exists then the new choices
122
- are appended to the given sheet.
123
-
124
- If these choices are registered to an object of Context type we then set the given
125
- default values.
126
-
127
- Service register choices command registration.
128
-
129
- Uses the current registration to register the choices.
130
- @param sheet: Name of choices being registered
131
- @param choices: list of choices
132
- @return:
133
- """
134
- key = f"choices/{sheet}"
135
- if key in self._registered:
136
- others = self._registered[key]
137
- others.extend(choices)
138
- self.register(key, others) # Reregister to trigger lookup change
139
- else:
140
- self.register(key, choices)
141
- for c in choices:
142
- obj = c["object"]
143
- if isinstance(obj, Context):
144
- obj.setting(c["type"], c["attr"], c["default"])
145
-
146
- def add_service_delegate(self, delegate):
147
- self.kernel.add_delegate(delegate, self)
1
+ from typing import Any, Callable
2
+
3
+ from .context import Context
4
+ from .functions import (
5
+ console_argument,
6
+ console_command,
7
+ console_command_remove,
8
+ console_option,
9
+ )
10
+ from .lifecycles import *
11
+
12
+
13
+ class Service(Context):
14
+ """
15
+ A service is a context that with additional capabilities. These get registered by a domain in the kernel as a
16
+ particular aspect. For example, .device or .gui could be a service and this service would be found at that attribute
17
+ at for any context. As a type of context, services have a path for saving settings. The path is the saving/loading
18
+ location for persistent settings. As a service, these contexts may exist at .<domain> relative to any context.
19
+ This also allows several services to be registered for the same domain. These are swapped with the activate_service
20
+ commands in the kernel.
21
+
22
+ Each service has its own registered lookup of data. This extends the lookup of the kernel but only for those
23
+ services which are currently active. This extends to various data types that are registered in the kernel such
24
+ as choices and console commands. The currently active service can modify these simply by being activated. A command
25
+ registered in a deactivated service cannot be executed from the console, only the activated service's command is
26
+ executed in that case.
27
+
28
+ Unlike contexts which should be derived or gotten at a particular path. Services can be directly instanced.
29
+ """
30
+
31
+ def __init__(self, kernel: "Kernel", path: str, registered_path: str = None):
32
+ super().__init__(kernel, path)
33
+ kernel.register_as_context(self)
34
+ self.registered_path = registered_path
35
+ self._registered = {}
36
+
37
+ def __str__(self):
38
+ if hasattr(self, "label"):
39
+ return self.label
40
+ return f"Service('{self._path}', {self.registered_path})"
41
+
42
+ def service_attach(self, *args, **kwargs):
43
+ pass
44
+
45
+ def service_detach(self, *args, **kwargs):
46
+ pass
47
+
48
+ def shutdown(self, *args, **kwargs):
49
+ """
50
+ Called by kernel during shutdown process for all services.
51
+ @param args:
52
+ @param kwargs:
53
+ @return:
54
+ """
55
+ pass
56
+
57
+ def register(self, path: str, obj: Any) -> None:
58
+ """
59
+ Registers an element within this service.
60
+
61
+ @param path:
62
+ @param obj:
63
+ @return:
64
+ """
65
+ self._registered[path] = obj
66
+ try:
67
+ obj.sub_register(self)
68
+ except AttributeError:
69
+ pass
70
+ self._kernel.lookup_change(path)
71
+
72
+ def unregister(self, path: str) -> None:
73
+ """
74
+ Unregister an element within this service.
75
+
76
+ @param path: Path to unregister
77
+ @return:
78
+ """
79
+ del self._registered[path]
80
+ self._kernel.lookup_change(path)
81
+
82
+ def console_argument(self, *args, **kwargs) -> Callable:
83
+ """
84
+ Delegate to Kernel
85
+
86
+ Uses current context to be passed to the console_argument being registered.
87
+ """
88
+ return console_argument(*args, **kwargs)
89
+
90
+ def console_option(self, *args, **kwargs) -> Callable:
91
+ """
92
+ Delegate to Kernel
93
+
94
+ Uses current context to be passed to the console_option being registered.
95
+ """
96
+ return console_option(*args, **kwargs)
97
+
98
+ def console_command(self, *args, **kwargs) -> Callable:
99
+ """
100
+ Service console command registration.
101
+
102
+ Uses the current registration to register the given command.
103
+ """
104
+ return console_command(self, *args, **kwargs)
105
+
106
+ def console_command_remove(self, *args, **kwargs) -> None:
107
+ """
108
+ Delegate to Kernel
109
+
110
+ Uses current context to be passed to the console_command being removed.
111
+ """
112
+ return console_command_remove(self, *args, **kwargs)
113
+
114
+ def destroy(self):
115
+ self.kernel.set_service_lifecycle(self, LIFECYCLE_SERVICE_SHUTDOWN)
116
+ self.clear_persistent()
117
+ self.close_subpaths()
118
+
119
+ def register_choices(self, sheet, choices):
120
+ """
121
+ Registers choices to a given sheet. If the sheet already exists then the new choices
122
+ are appended to the given sheet.
123
+
124
+ If these choices are registered to an object of Context type we then set the given
125
+ default values.
126
+
127
+ Service register choices command registration.
128
+
129
+ Uses the current registration to register the choices.
130
+ @param sheet: Name of choices being registered
131
+ @param choices: list of choices
132
+ @return:
133
+ """
134
+ key = f"choices/{sheet}"
135
+ if key in self._registered:
136
+ others = self._registered[key]
137
+ others.extend(choices)
138
+ self.register(key, others) # Reregister to trigger lookup change
139
+ else:
140
+ self.register(key, choices)
141
+ for c in choices:
142
+ obj = c["object"]
143
+ if isinstance(obj, Context):
144
+ obj.setting(c["type"], c["attr"], c["default"])
145
+
146
+ def add_service_delegate(self, delegate):
147
+ self.kernel.add_delegate(delegate, self)