FlatCAMExcEditor.py 175 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143
  1. # ##########################################################
  2. # FlatCAM: 2D Post-processing for Manufacturing #
  3. # File Author: Marius Adrian Stanciu (c) #
  4. # Date: 8/17/2019 #
  5. # MIT Licence #
  6. # ##########################################################
  7. from PyQt5 import QtGui, QtCore, QtWidgets
  8. from PyQt5.QtCore import Qt, QSettings
  9. from camlib import distance, arc, FlatCAMRTreeStorage
  10. from appGUI.GUIElements import FCEntry, FCComboBox, FCTable, FCDoubleSpinner, RadioSet, FCSpinner
  11. from appEditors.FlatCAMGeoEditor import FCShapeTool, DrawTool, DrawToolShape, DrawToolUtilityShape, FlatCAMGeoEditor
  12. from appParsers.ParseExcellon import Excellon
  13. from shapely.geometry import LineString, LinearRing, MultiLineString, Polygon, MultiPolygon, Point
  14. import shapely.affinity as affinity
  15. import numpy as np
  16. from rtree import index as rtindex
  17. import traceback
  18. import math
  19. import logging
  20. from copy import deepcopy
  21. import gettext
  22. import appTranslation as fcTranslate
  23. import builtins
  24. fcTranslate.apply_language('strings')
  25. if '_' not in builtins.__dict__:
  26. _ = gettext.gettext
  27. log = logging.getLogger('base')
  28. class FCDrillAdd(FCShapeTool):
  29. """
  30. Resulting type: MultiLineString
  31. """
  32. def __init__(self, draw_app):
  33. DrawTool.__init__(self, draw_app)
  34. self.name = 'drill_add'
  35. self.selected_dia = None
  36. try:
  37. self.draw_app.app.inform.emit(_("Click to place ..."))
  38. self.selected_dia = self.draw_app.tool2tooldia[self.draw_app.last_tool_selected]
  39. # as a visual marker, select again in tooltable the actual tool that we are using
  40. # remember that it was deselected when clicking on canvas
  41. item = self.draw_app.tools_table_exc.item((self.draw_app.last_tool_selected - 1), 1)
  42. self.draw_app.tools_table_exc.setCurrentItem(item)
  43. except KeyError:
  44. self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' % _("To add a drill first select a tool"))
  45. self.draw_app.select_tool("drill_select")
  46. return
  47. try:
  48. QtGui.QGuiApplication.restoreOverrideCursor()
  49. except Exception:
  50. pass
  51. self.cursor = QtGui.QCursor(QtGui.QPixmap(self.draw_app.app.resource_location + '/aero_drill.png'))
  52. QtGui.QGuiApplication.setOverrideCursor(self.cursor)
  53. geo = self.utility_geometry(data=(self.draw_app.snap_x, self.draw_app.snap_y))
  54. if isinstance(geo, DrawToolShape) and geo.geo is not None:
  55. self.draw_app.draw_utility_geometry(geo=geo)
  56. self.draw_app.app.inform.emit(_("Click to place ..."))
  57. self.draw_app.app.jump_signal.connect(lambda x: self.draw_app.update_utility_geometry(data=x))
  58. # Switch notebook to Selected page
  59. self.draw_app.app.ui.notebook.setCurrentWidget(self.draw_app.app.ui.selected_tab)
  60. def click(self, point):
  61. self.make()
  62. return "Done."
  63. def utility_geometry(self, data=None):
  64. self.points = data
  65. return DrawToolUtilityShape(self.util_shape(data))
  66. def util_shape(self, point):
  67. if point[0] is None and point[1] is None:
  68. point_x = self.draw_app.x
  69. point_y = self.draw_app.y
  70. else:
  71. point_x = point[0]
  72. point_y = point[1]
  73. start_hor_line = ((point_x - (self.selected_dia / 2)), point_y)
  74. stop_hor_line = ((point_x + (self.selected_dia / 2)), point_y)
  75. start_vert_line = (point_x, (point_y - (self.selected_dia / 2)))
  76. stop_vert_line = (point_x, (point_y + (self.selected_dia / 2)))
  77. return MultiLineString([(start_hor_line, stop_hor_line), (start_vert_line, stop_vert_line)])
  78. def make(self):
  79. try:
  80. QtGui.QGuiApplication.restoreOverrideCursor()
  81. except Exception:
  82. pass
  83. # add the point to drills if the diameter is a key in the dict, if not, create it add the drill location
  84. # to the value, as a list of itself
  85. if self.selected_dia in self.draw_app.points_edit:
  86. self.draw_app.points_edit[self.selected_dia].append(self.points)
  87. else:
  88. self.draw_app.points_edit[self.selected_dia] = [self.points]
  89. self.draw_app.current_storage = self.draw_app.storage_dict[self.selected_dia]
  90. self.geometry = DrawToolShape(self.util_shape(self.points))
  91. self.draw_app.in_action = False
  92. self.complete = True
  93. self.draw_app.app.inform.emit('[success] %s' % _("Done. Drill added."))
  94. self.draw_app.app.jump_signal.disconnect()
  95. def clean_up(self):
  96. self.draw_app.selected = []
  97. self.draw_app.tools_table_exc.clearSelection()
  98. self.draw_app.plot_all()
  99. try:
  100. self.draw_app.app.jump_signal.disconnect()
  101. except (TypeError, AttributeError):
  102. pass
  103. class FCDrillArray(FCShapeTool):
  104. """
  105. Resulting type: MultiLineString
  106. """
  107. def __init__(self, draw_app):
  108. DrawTool.__init__(self, draw_app)
  109. self.name = 'drill_array'
  110. self.draw_app.array_frame.show()
  111. self.selected_dia = None
  112. self.drill_axis = 'X'
  113. self.drill_array = 'linear'
  114. self.drill_array_size = None
  115. self.drill_pitch = None
  116. self.drill_linear_angle = None
  117. self.drill_angle = None
  118. self.drill_direction = None
  119. self.drill_radius = None
  120. self.origin = None
  121. self.destination = None
  122. self.flag_for_circ_array = None
  123. self.last_dx = 0
  124. self.last_dy = 0
  125. self.pt = []
  126. try:
  127. self.draw_app.app.inform.emit(_("Click to place ..."))
  128. self.selected_dia = self.draw_app.tool2tooldia[self.draw_app.last_tool_selected]
  129. # as a visual marker, select again in tooltable the actual tool that we are using
  130. # remember that it was deselected when clicking on canvas
  131. item = self.draw_app.tools_table_exc.item((self.draw_app.last_tool_selected - 1), 1)
  132. self.draw_app.tools_table_exc.setCurrentItem(item)
  133. except KeyError:
  134. self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
  135. _("To add an Drill Array first select a tool in Tool Table"))
  136. return
  137. try:
  138. QtGui.QGuiApplication.restoreOverrideCursor()
  139. except Exception:
  140. pass
  141. self.cursor = QtGui.QCursor(QtGui.QPixmap(self.draw_app.app.resource_location + '/aero_drill_array.png'))
  142. QtGui.QGuiApplication.setOverrideCursor(self.cursor)
  143. geo = self.utility_geometry(data=(self.draw_app.snap_x, self.draw_app.snap_y), static=True)
  144. if isinstance(geo, DrawToolShape) and geo.geo is not None:
  145. self.draw_app.draw_utility_geometry(geo=geo)
  146. self.draw_app.app.inform.emit(_("Click on target location ..."))
  147. self.draw_app.app.jump_signal.connect(lambda x: self.draw_app.update_utility_geometry(data=x))
  148. # Switch notebook to Selected page
  149. self.draw_app.app.ui.notebook.setCurrentWidget(self.draw_app.app.ui.selected_tab)
  150. def click(self, point):
  151. if self.drill_array == 'Linear':
  152. self.make()
  153. return
  154. else:
  155. if self.flag_for_circ_array is None:
  156. self.draw_app.in_action = True
  157. self.pt.append(point)
  158. self.flag_for_circ_array = True
  159. self.set_origin(point)
  160. self.draw_app.app.inform.emit(_("Click on the Drill Circular Array Start position"))
  161. else:
  162. self.destination = point
  163. self.make()
  164. self.flag_for_circ_array = None
  165. return
  166. def set_origin(self, origin):
  167. self.origin = origin
  168. def utility_geometry(self, data=None, static=None):
  169. self.drill_axis = self.draw_app.drill_axis_radio.get_value()
  170. self.drill_direction = self.draw_app.drill_direction_radio.get_value()
  171. self.drill_array = self.draw_app.array_type_combo.get_value()
  172. try:
  173. self.drill_array_size = int(self.draw_app.drill_array_size_entry.get_value())
  174. try:
  175. self.drill_pitch = float(self.draw_app.drill_pitch_entry.get_value())
  176. self.drill_linear_angle = float(self.draw_app.linear_angle_spinner.get_value())
  177. self.drill_angle = float(self.draw_app.drill_angle_entry.get_value())
  178. except TypeError:
  179. self.draw_app.app.inform.emit('[ERROR_NOTCL] %s' %
  180. _("The value is not Float. Check for comma instead of dot separator."))
  181. return
  182. except Exception as e:
  183. self.draw_app.app.inform.emit('[ERROR_NOTCL] %s. %s' %
  184. (_("The value is mistyped. Check the value"), str(e)))
  185. return
  186. if self.drill_array == 'Linear':
  187. if data[0] is None and data[1] is None:
  188. dx = self.draw_app.x
  189. dy = self.draw_app.y
  190. else:
  191. dx = data[0]
  192. dy = data[1]
  193. geo_list = []
  194. geo = None
  195. self.points = [dx, dy]
  196. for item in range(self.drill_array_size):
  197. if self.drill_axis == 'X':
  198. geo = self.util_shape(((dx + (self.drill_pitch * item)), dy))
  199. if self.drill_axis == 'Y':
  200. geo = self.util_shape((dx, (dy + (self.drill_pitch * item))))
  201. if self.drill_axis == 'A':
  202. x_adj = self.drill_pitch * math.cos(math.radians(self.drill_linear_angle))
  203. y_adj = self.drill_pitch * math.sin(math.radians(self.drill_linear_angle))
  204. geo = self.util_shape(
  205. ((dx + (x_adj * item)), (dy + (y_adj * item)))
  206. )
  207. if static is None or static is False:
  208. geo_list.append(affinity.translate(geo, xoff=(dx - self.last_dx), yoff=(dy - self.last_dy)))
  209. else:
  210. geo_list.append(geo)
  211. # self.origin = data
  212. self.last_dx = dx
  213. self.last_dy = dy
  214. return DrawToolUtilityShape(geo_list)
  215. else:
  216. if data[0] is None and data[1] is None:
  217. cdx = self.draw_app.x
  218. cdy = self.draw_app.y
  219. else:
  220. cdx = data[0]
  221. cdy = data[1]
  222. if len(self.pt) > 0:
  223. temp_points = [x for x in self.pt]
  224. temp_points.append([cdx, cdy])
  225. return DrawToolUtilityShape(LineString(temp_points))
  226. def util_shape(self, point):
  227. if point[0] is None and point[1] is None:
  228. point_x = self.draw_app.x
  229. point_y = self.draw_app.y
  230. else:
  231. point_x = point[0]
  232. point_y = point[1]
  233. start_hor_line = ((point_x - (self.selected_dia / 2)), point_y)
  234. stop_hor_line = ((point_x + (self.selected_dia / 2)), point_y)
  235. start_vert_line = (point_x, (point_y - (self.selected_dia / 2)))
  236. stop_vert_line = (point_x, (point_y + (self.selected_dia / 2)))
  237. return MultiLineString([(start_hor_line, stop_hor_line), (start_vert_line, stop_vert_line)])
  238. def make(self):
  239. self.geometry = []
  240. geo = None
  241. try:
  242. QtGui.QGuiApplication.restoreOverrideCursor()
  243. except Exception:
  244. pass
  245. # add the point to drills if the diameter is a key in the dict, if not, create it add the drill location
  246. # to the value, as a list of itself
  247. if self.selected_dia not in self.draw_app.points_edit:
  248. self.draw_app.points_edit[self.selected_dia] = []
  249. for i in range(self.drill_array_size):
  250. self.draw_app.points_edit[self.selected_dia].append(self.points)
  251. self.draw_app.current_storage = self.draw_app.storage_dict[self.selected_dia]
  252. if self.drill_array == 'Linear':
  253. for item in range(self.drill_array_size):
  254. if self.drill_axis == 'X':
  255. geo = self.util_shape(((self.points[0] + (self.drill_pitch * item)), self.points[1]))
  256. if self.drill_axis == 'Y':
  257. geo = self.util_shape((self.points[0], (self.points[1] + (self.drill_pitch * item))))
  258. if self.drill_axis == 'A':
  259. x_adj = self.drill_pitch * math.cos(math.radians(self.drill_linear_angle))
  260. y_adj = self.drill_pitch * math.sin(math.radians(self.drill_linear_angle))
  261. geo = self.util_shape(
  262. ((self.points[0] + (x_adj * item)), (self.points[1] + (y_adj * item)))
  263. )
  264. self.geometry.append(DrawToolShape(geo))
  265. else:
  266. if (self.drill_angle * self.drill_array_size) > 360:
  267. self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
  268. _("Too many drills for the selected spacing angle."))
  269. self.draw_app.app.jump_signal.disconnect()
  270. return
  271. radius = distance(self.destination, self.origin)
  272. initial_angle = math.asin((self.destination[1] - self.origin[1]) / radius)
  273. for i in range(self.drill_array_size):
  274. angle_radians = math.radians(self.drill_angle * i)
  275. if self.drill_direction == 'CW':
  276. x = self.origin[0] + radius * math.cos(-angle_radians + initial_angle)
  277. y = self.origin[1] + radius * math.sin(-angle_radians + initial_angle)
  278. else:
  279. x = self.origin[0] + radius * math.cos(angle_radians + initial_angle)
  280. y = self.origin[1] + radius * math.sin(angle_radians + initial_angle)
  281. geo = self.util_shape((x, y))
  282. self.geometry.append(DrawToolShape(geo))
  283. self.complete = True
  284. self.draw_app.app.inform.emit('[success] %s' % _("Done. Drill Array added."))
  285. self.draw_app.in_action = False
  286. self.draw_app.array_frame.hide()
  287. self.draw_app.app.jump_signal.disconnect()
  288. def clean_up(self):
  289. self.draw_app.selected = []
  290. self.draw_app.tools_table_exc.clearSelection()
  291. self.draw_app.plot_all()
  292. try:
  293. self.draw_app.app.jump_signal.disconnect()
  294. except (TypeError, AttributeError):
  295. pass
  296. class FCSlot(FCShapeTool):
  297. """
  298. Resulting type: Polygon
  299. """
  300. def __init__(self, draw_app):
  301. DrawTool.__init__(self, draw_app)
  302. self.name = 'slot_add'
  303. self.draw_app = draw_app
  304. self.draw_app.slot_frame.show()
  305. self.selected_dia = None
  306. try:
  307. self.draw_app.app.inform.emit(_("Click to place ..."))
  308. self.selected_dia = self.draw_app.tool2tooldia[self.draw_app.last_tool_selected]
  309. # as a visual marker, select again in tooltable the actual tool that we are using
  310. # remember that it was deselected when clicking on canvas
  311. item = self.draw_app.tools_table_exc.item((self.draw_app.last_tool_selected - 1), 1)
  312. self.draw_app.tools_table_exc.setCurrentItem(item)
  313. except KeyError:
  314. self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
  315. _("To add a slot first select a tool"))
  316. self.draw_app.select_tool("drill_select")
  317. return
  318. try:
  319. QtGui.QGuiApplication.restoreOverrideCursor()
  320. except Exception:
  321. pass
  322. self.cursor = QtGui.QCursor(QtGui.QPixmap(self.draw_app.app.resource_location + '/aero_slot.png'))
  323. QtGui.QGuiApplication.setOverrideCursor(self.cursor)
  324. self.steps_per_circ = self.draw_app.app.defaults["geometry_circle_steps"]
  325. self.half_height = 0.0
  326. self.half_width = 0.0
  327. self.radius = float(self.selected_dia / 2.0)
  328. geo = self.utility_geometry(data=(self.draw_app.snap_x, self.draw_app.snap_y))
  329. if isinstance(geo, DrawToolShape) and geo.geo is not None:
  330. self.draw_app.draw_utility_geometry(geo=geo)
  331. self.draw_app.app.inform.emit(_("Click on target location ..."))
  332. self.draw_app.app.jump_signal.connect(lambda x: self.draw_app.update_utility_geometry(data=x))
  333. # Switch notebook to Selected page
  334. self.draw_app.app.ui.notebook.setCurrentWidget(self.draw_app.app.ui.selected_tab)
  335. def click(self, point):
  336. self.make()
  337. return "Done."
  338. def utility_geometry(self, data=None):
  339. self.points = data
  340. geo_data = self.util_shape(data)
  341. if geo_data:
  342. return DrawToolUtilityShape(geo_data)
  343. else:
  344. return None
  345. def util_shape(self, point):
  346. if point is None:
  347. return
  348. # updating values here allows us to change the aperture on the fly, after the Tool has been started
  349. self.selected_dia = self.draw_app.tool2tooldia[self.draw_app.last_tool_selected]
  350. self.radius = float(self.selected_dia / 2.0)
  351. self.steps_per_circ = self.draw_app.app.defaults["geometry_circle_steps"]
  352. try:
  353. slot_length = float(self.draw_app.slot_length_entry.get_value())
  354. except ValueError:
  355. # try to convert comma to decimal point. if it's still not working error message and return
  356. try:
  357. slot_length = float(self.draw_app.slot_length_entry.get_value().replace(',', '.'))
  358. self.draw_app.slot_length_entry.set_value(slot_length)
  359. except ValueError:
  360. self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
  361. _("Value is missing or wrong format. Add it and retry."))
  362. return
  363. try:
  364. slot_angle = float(self.draw_app.slot_angle_spinner.get_value())
  365. except ValueError:
  366. self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
  367. _("Value is missing or wrong format. Add it and retry."))
  368. return
  369. if self.draw_app.slot_axis_radio.get_value() == 'X':
  370. self.half_width = slot_length / 2.0
  371. self.half_height = self.radius
  372. else:
  373. self.half_width = self.radius
  374. self.half_height = slot_length / 2.0
  375. if point[0] is None and point[1] is None:
  376. point_x = self.draw_app.x
  377. point_y = self.draw_app.y
  378. else:
  379. point_x = point[0]
  380. point_y = point[1]
  381. geo = []
  382. if self.half_height > self.half_width:
  383. p1 = (point_x - self.half_width, point_y - self.half_height + self.half_width)
  384. p2 = (point_x + self.half_width, point_y - self.half_height + self.half_width)
  385. p3 = (point_x + self.half_width, point_y + self.half_height - self.half_width)
  386. p4 = (point_x - self.half_width, point_y + self.half_height - self.half_width)
  387. down_center = [point_x, point_y - self.half_height + self.half_width]
  388. d_start_angle = math.pi
  389. d_stop_angle = 0.0
  390. down_arc = arc(down_center, self.half_width, d_start_angle, d_stop_angle, 'ccw', self.steps_per_circ)
  391. up_center = [point_x, point_y + self.half_height - self.half_width]
  392. u_start_angle = 0.0
  393. u_stop_angle = math.pi
  394. up_arc = arc(up_center, self.half_width, u_start_angle, u_stop_angle, 'ccw', self.steps_per_circ)
  395. geo.append(p1)
  396. for pt in down_arc:
  397. geo.append(pt)
  398. geo.append(p2)
  399. geo.append(p3)
  400. for pt in up_arc:
  401. geo.append(pt)
  402. geo.append(p4)
  403. if self.draw_app.slot_axis_radio.get_value() == 'A':
  404. return affinity.rotate(geom=Polygon(geo), angle=-slot_angle)
  405. else:
  406. return Polygon(geo)
  407. else:
  408. p1 = (point_x - self.half_width + self.half_height, point_y - self.half_height)
  409. p2 = (point_x + self.half_width - self.half_height, point_y - self.half_height)
  410. p3 = (point_x + self.half_width - self.half_height, point_y + self.half_height)
  411. p4 = (point_x - self.half_width + self.half_height, point_y + self.half_height)
  412. left_center = [point_x - self.half_width + self.half_height, point_y]
  413. d_start_angle = math.pi / 2
  414. d_stop_angle = 1.5 * math.pi
  415. left_arc = arc(left_center, self.half_height, d_start_angle, d_stop_angle, 'ccw', self.steps_per_circ)
  416. right_center = [point_x + self.half_width - self.half_height, point_y]
  417. u_start_angle = 1.5 * math.pi
  418. u_stop_angle = math.pi / 2
  419. right_arc = arc(right_center, self.half_height, u_start_angle, u_stop_angle, 'ccw', self.steps_per_circ)
  420. geo.append(p1)
  421. geo.append(p2)
  422. for pt in right_arc:
  423. geo.append(pt)
  424. geo.append(p3)
  425. geo.append(p4)
  426. for pt in left_arc:
  427. geo.append(pt)
  428. return Polygon(geo)
  429. def make(self):
  430. try:
  431. QtGui.QGuiApplication.restoreOverrideCursor()
  432. except Exception:
  433. pass
  434. try:
  435. self.geometry = DrawToolShape(self.util_shape(self.points))
  436. except Exception as e:
  437. log.debug("FCSlot.make() --> %s" % str(e))
  438. # add the point to drills/slots if the diameter is a key in the dict, if not, create it add the drill location
  439. # to the value, as a list of itself
  440. if self.selected_dia in self.draw_app.slot_points_edit:
  441. self.draw_app.slot_points_edit[self.selected_dia].append(self.points)
  442. else:
  443. self.draw_app.slot_points_edit[self.selected_dia] = [self.points]
  444. self.draw_app.current_storage = self.draw_app.storage_dict[self.selected_dia]
  445. self.draw_app.in_action = False
  446. self.complete = True
  447. self.draw_app.app.inform.emit('[success] %s' % _("Done. Adding Slot completed."))
  448. self.draw_app.slot_frame.hide()
  449. self.draw_app.app.jump_signal.disconnect()
  450. def clean_up(self):
  451. self.draw_app.selected = []
  452. self.draw_app.tools_table_exc.clearSelection()
  453. self.draw_app.plot_all()
  454. try:
  455. self.draw_app.app.jump_signal.disconnect()
  456. except (TypeError, AttributeError):
  457. pass
  458. class FCSlotArray(FCShapeTool):
  459. """
  460. Resulting type: MultiPolygon
  461. """
  462. def __init__(self, draw_app):
  463. DrawTool.__init__(self, draw_app)
  464. self.name = 'slot_array'
  465. self.draw_app = draw_app
  466. self.draw_app.slot_frame.show()
  467. self.draw_app.slot_array_frame.show()
  468. self.selected_dia = None
  469. try:
  470. self.draw_app.app.inform.emit(_("Click to place ..."))
  471. self.selected_dia = self.draw_app.tool2tooldia[self.draw_app.last_tool_selected]
  472. # as a visual marker, select again in tooltable the actual tool that we are using
  473. # remember that it was deselected when clicking on canvas
  474. item = self.draw_app.tools_table_exc.item((self.draw_app.last_tool_selected - 1), 1)
  475. self.draw_app.tools_table_exc.setCurrentItem(item)
  476. except KeyError:
  477. self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
  478. _("To add an Slot Array first select a tool in Tool Table"))
  479. return
  480. try:
  481. QtGui.QGuiApplication.restoreOverrideCursor()
  482. except Exception:
  483. pass
  484. self.cursor = QtGui.QCursor(QtGui.QPixmap(self.draw_app.app.resource_location + '/aero_array.png'))
  485. QtGui.QGuiApplication.setOverrideCursor(self.cursor)
  486. self.steps_per_circ = self.draw_app.app.defaults["geometry_circle_steps"]
  487. self.half_width = 0.0
  488. self.half_height = 0.0
  489. self.radius = float(self.selected_dia / 2.0)
  490. self.slot_axis = 'X'
  491. self.slot_array = 'linear'
  492. self.slot_array_size = None
  493. self.slot_pitch = None
  494. self.slot_linear_angle = None
  495. self.slot_angle = None
  496. self.slot_direction = None
  497. self.slot_radius = None
  498. self.origin = None
  499. self.destination = None
  500. self.flag_for_circ_array = None
  501. self.last_dx = 0
  502. self.last_dy = 0
  503. self.pt = []
  504. geo = self.utility_geometry(data=(self.draw_app.snap_x, self.draw_app.snap_y), static=True)
  505. if isinstance(geo, DrawToolShape) and geo.geo is not None:
  506. self.draw_app.draw_utility_geometry(geo=geo)
  507. self.draw_app.app.inform.emit(_("Click on target location ..."))
  508. self.draw_app.app.jump_signal.connect(lambda x: self.draw_app.update_utility_geometry(data=x))
  509. # Switch notebook to Selected page
  510. self.draw_app.app.ui.notebook.setCurrentWidget(self.draw_app.app.ui.selected_tab)
  511. def click(self, point):
  512. if self.slot_array == 'Linear':
  513. self.make()
  514. return
  515. else:
  516. if self.flag_for_circ_array is None:
  517. self.draw_app.in_action = True
  518. self.pt.append(point)
  519. self.flag_for_circ_array = True
  520. self.set_origin(point)
  521. self.draw_app.app.inform.emit(_("Click on the Slot Circular Array Start position"))
  522. else:
  523. self.destination = point
  524. self.make()
  525. self.flag_for_circ_array = None
  526. return
  527. def set_origin(self, origin):
  528. self.origin = origin
  529. def utility_geometry(self, data=None, static=None):
  530. self.slot_axis = self.draw_app.slot_array_axis_radio.get_value()
  531. self.slot_direction = self.draw_app.slot_array_direction_radio.get_value()
  532. self.slot_array = self.draw_app.slot_array_type_combo.get_value()
  533. try:
  534. self.slot_array_size = int(self.draw_app.slot_array_size_entry.get_value())
  535. try:
  536. self.slot_pitch = float(self.draw_app.slot_array_pitch_entry.get_value())
  537. self.slot_linear_angle = float(self.draw_app.slot_array_linear_angle_spinner.get_value())
  538. self.slot_angle = float(self.draw_app.slot_array_angle_entry.get_value())
  539. except TypeError:
  540. self.draw_app.app.inform.emit('[ERROR_NOTCL] %s' %
  541. _("The value is not Float. Check for comma instead of dot separator."))
  542. return
  543. except Exception:
  544. self.draw_app.app.inform.emit('[ERROR_NOTCL] %s' % _("The value is mistyped. Check the value."))
  545. return
  546. if self.slot_array == 'Linear':
  547. if data[0] is None and data[1] is None:
  548. dx = self.draw_app.x
  549. dy = self.draw_app.y
  550. else:
  551. dx = data[0]
  552. dy = data[1]
  553. geo_el_list = []
  554. geo_el = []
  555. self.points = [dx, dy]
  556. for item in range(self.slot_array_size):
  557. if self.slot_axis == 'X':
  558. geo_el = self.util_shape(((dx + (self.slot_pitch * item)), dy))
  559. if self.slot_axis == 'Y':
  560. geo_el = self.util_shape((dx, (dy + (self.slot_pitch * item))))
  561. if self.slot_axis == 'A':
  562. x_adj = self.slot_pitch * math.cos(math.radians(self.slot_linear_angle))
  563. y_adj = self.slot_pitch * math.sin(math.radians(self.slot_linear_angle))
  564. geo_el = self.util_shape(
  565. ((dx + (x_adj * item)), (dy + (y_adj * item)))
  566. )
  567. if static is None or static is False:
  568. geo_el = affinity.translate(geo_el, xoff=(dx - self.last_dx), yoff=(dy - self.last_dy))
  569. geo_el_list.append(geo_el)
  570. self.last_dx = dx
  571. self.last_dy = dy
  572. return DrawToolUtilityShape(geo_el_list)
  573. else:
  574. if data[0] is None and data[1] is None:
  575. cdx = self.draw_app.x
  576. cdy = self.draw_app.y
  577. else:
  578. cdx = data[0]
  579. cdy = data[1]
  580. if len(self.pt) > 0:
  581. temp_points = [x for x in self.pt]
  582. temp_points.append([cdx, cdy])
  583. return DrawToolUtilityShape(LineString(temp_points))
  584. def util_shape(self, point):
  585. # updating values here allows us to change the aperture on the fly, after the Tool has been started
  586. self.selected_dia = self.draw_app.tool2tooldia[self.draw_app.last_tool_selected]
  587. self.radius = float(self.selected_dia / 2.0)
  588. self.steps_per_circ = self.draw_app.app.defaults["geometry_circle_steps"]
  589. try:
  590. slot_length = float(self.draw_app.slot_length_entry.get_value())
  591. except ValueError:
  592. # try to convert comma to decimal point. if it's still not working error message and return
  593. try:
  594. slot_length = float(self.draw_app.slot_length_entry.get_value().replace(',', '.'))
  595. self.draw_app.slot_length_entry.set_value(slot_length)
  596. except ValueError:
  597. self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
  598. _("Value is missing or wrong format. Add it and retry."))
  599. return
  600. try:
  601. slot_angle = float(self.draw_app.slot_angle_spinner.get_value())
  602. except ValueError:
  603. self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
  604. _("Value is missing or wrong format. Add it and retry."))
  605. return
  606. if self.draw_app.slot_axis_radio.get_value() == 'X':
  607. self.half_width = slot_length / 2.0
  608. self.half_height = self.radius
  609. else:
  610. self.half_width = self.radius
  611. self.half_height = slot_length / 2.0
  612. if point[0] is None and point[1] is None:
  613. point_x = self.draw_app.x
  614. point_y = self.draw_app.y
  615. else:
  616. point_x = point[0]
  617. point_y = point[1]
  618. geo = []
  619. if self.half_height > self.half_width:
  620. p1 = (point_x - self.half_width, point_y - self.half_height + self.half_width)
  621. p2 = (point_x + self.half_width, point_y - self.half_height + self.half_width)
  622. p3 = (point_x + self.half_width, point_y + self.half_height - self.half_width)
  623. p4 = (point_x - self.half_width, point_y + self.half_height - self.half_width)
  624. down_center = [point_x, point_y - self.half_height + self.half_width]
  625. d_start_angle = math.pi
  626. d_stop_angle = 0.0
  627. down_arc = arc(down_center, self.half_width, d_start_angle, d_stop_angle, 'ccw', self.steps_per_circ)
  628. up_center = [point_x, point_y + self.half_height - self.half_width]
  629. u_start_angle = 0.0
  630. u_stop_angle = math.pi
  631. up_arc = arc(up_center, self.half_width, u_start_angle, u_stop_angle, 'ccw', self.steps_per_circ)
  632. geo.append(p1)
  633. for pt in down_arc:
  634. geo.append(pt)
  635. geo.append(p2)
  636. geo.append(p3)
  637. for pt in up_arc:
  638. geo.append(pt)
  639. geo.append(p4)
  640. else:
  641. p1 = (point_x - self.half_width + self.half_height, point_y - self.half_height)
  642. p2 = (point_x + self.half_width - self.half_height, point_y - self.half_height)
  643. p3 = (point_x + self.half_width - self.half_height, point_y + self.half_height)
  644. p4 = (point_x - self.half_width + self.half_height, point_y + self.half_height)
  645. left_center = [point_x - self.half_width + self.half_height, point_y]
  646. d_start_angle = math.pi / 2
  647. d_stop_angle = 1.5 * math.pi
  648. left_arc = arc(left_center, self.half_height, d_start_angle, d_stop_angle, 'ccw', self.steps_per_circ)
  649. right_center = [point_x + self.half_width - self.half_height, point_y]
  650. u_start_angle = 1.5 * math.pi
  651. u_stop_angle = math.pi / 2
  652. right_arc = arc(right_center, self.half_height, u_start_angle, u_stop_angle, 'ccw', self.steps_per_circ)
  653. geo.append(p1)
  654. geo.append(p2)
  655. for pt in right_arc:
  656. geo.append(pt)
  657. geo.append(p3)
  658. geo.append(p4)
  659. for pt in left_arc:
  660. geo.append(pt)
  661. # this function return one slot in the slot array and the following will rotate that one slot around it's
  662. # center if the radio value is "A".
  663. if self.draw_app.slot_axis_radio.get_value() == 'A':
  664. return affinity.rotate(Polygon(geo), -slot_angle)
  665. else:
  666. return Polygon(geo)
  667. def make(self):
  668. self.geometry = []
  669. geo = None
  670. try:
  671. QtGui.QGuiApplication.restoreOverrideCursor()
  672. except Exception:
  673. pass
  674. # add the point to slots if the diameter is a key in the dict, if not, create it add the drill location
  675. # to the value, as a list of itself
  676. if self.selected_dia not in self.draw_app.slot_points_edit:
  677. self.draw_app.slot_points_edit[self.selected_dia] = []
  678. for i in range(self.slot_array_size):
  679. self.draw_app.slot_points_edit[self.selected_dia].append(self.points)
  680. self.draw_app.current_storage = self.draw_app.storage_dict[self.selected_dia]
  681. if self.slot_array == 'Linear':
  682. for item in range(self.slot_array_size):
  683. if self.slot_axis == 'X':
  684. geo = self.util_shape(((self.points[0] + (self.slot_pitch * item)), self.points[1]))
  685. if self.slot_axis == 'Y':
  686. geo = self.util_shape((self.points[0], (self.points[1] + (self.slot_pitch * item))))
  687. if self.slot_axis == 'A':
  688. x_adj = self.slot_pitch * math.cos(math.radians(self.slot_linear_angle))
  689. y_adj = self.slot_pitch * math.sin(math.radians(self.slot_linear_angle))
  690. geo = self.util_shape(
  691. ((self.points[0] + (x_adj * item)), (self.points[1] + (y_adj * item)))
  692. )
  693. self.geometry.append(DrawToolShape(geo))
  694. else:
  695. if (self.slot_angle * self.slot_array_size) > 360:
  696. self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
  697. _("Too many Slots for the selected spacing angle."))
  698. self.draw_app.app.jump_signal.disconnect()
  699. return
  700. radius = distance(self.destination, self.origin)
  701. initial_angle = math.asin((self.destination[1] - self.origin[1]) / radius)
  702. for i in range(self.slot_array_size):
  703. angle_radians = math.radians(self.slot_angle * i)
  704. if self.slot_direction == 'CW':
  705. x = self.origin[0] + radius * math.cos(-angle_radians + initial_angle)
  706. y = self.origin[1] + radius * math.sin(-angle_radians + initial_angle)
  707. else:
  708. x = self.origin[0] + radius * math.cos(angle_radians + initial_angle)
  709. y = self.origin[1] + radius * math.sin(angle_radians + initial_angle)
  710. geo = self.util_shape((x, y))
  711. if self.slot_direction == 'CW':
  712. geo = affinity.rotate(geo, angle=(math.pi - angle_radians), use_radians=True)
  713. else:
  714. geo = affinity.rotate(geo, angle=(angle_radians - math.pi), use_radians=True)
  715. self.geometry.append(DrawToolShape(geo))
  716. self.complete = True
  717. self.draw_app.app.inform.emit('[success] %s' % _("Done. Slot Array added."))
  718. self.draw_app.in_action = False
  719. self.draw_app.slot_frame.hide()
  720. self.draw_app.slot_array_frame.hide()
  721. self.draw_app.app.jump_signal.disconnect()
  722. def clean_up(self):
  723. self.draw_app.selected = []
  724. self.draw_app.tools_table_exc.clearSelection()
  725. self.draw_app.plot_all()
  726. try:
  727. self.draw_app.app.jump_signal.disconnect()
  728. except (TypeError, AttributeError):
  729. pass
  730. class FCDrillResize(FCShapeTool):
  731. def __init__(self, draw_app):
  732. DrawTool.__init__(self, draw_app)
  733. self.name = 'drill_resize'
  734. self.draw_app.app.inform.emit(_("Click on the Drill(s) to resize ..."))
  735. self.resize_dia = None
  736. self.draw_app.resize_frame.show()
  737. self.points = None
  738. # made this a set so there are no duplicates
  739. self.selected_dia_set = set()
  740. self.current_storage = None
  741. self.geometry = []
  742. self.destination_storage = None
  743. self.draw_app.resize_btn.clicked.connect(self.make)
  744. self.draw_app.resdrill_entry.editingFinished.connect(self.make)
  745. # Switch notebook to Selected page
  746. self.draw_app.app.ui.notebook.setCurrentWidget(self.draw_app.app.ui.selected_tab)
  747. def make(self):
  748. self.draw_app.is_modified = True
  749. try:
  750. self.draw_app.tools_table_exc.itemChanged.disconnect()
  751. except TypeError:
  752. pass
  753. try:
  754. new_dia = self.draw_app.resdrill_entry.get_value()
  755. except Exception:
  756. self.draw_app.app.inform.emit('[ERROR_NOTCL] %s' %
  757. _("Resize drill(s) failed. Please enter a diameter for resize."))
  758. return
  759. if new_dia not in self.draw_app.olddia_newdia:
  760. self.destination_storage = FlatCAMGeoEditor.make_storage()
  761. self.draw_app.storage_dict[new_dia] = self.destination_storage
  762. # self.olddia_newdia dict keeps the evidence on current tools diameters as keys and gets updated on values
  763. # each time a tool diameter is edited or added
  764. self.draw_app.olddia_newdia[new_dia] = new_dia
  765. else:
  766. self.destination_storage = self.draw_app.storage_dict[new_dia]
  767. for index in self.draw_app.tools_table_exc.selectedIndexes():
  768. row = index.row()
  769. # on column 1 in tool tables we hold the diameters, and we retrieve them as strings
  770. # therefore below we convert to float
  771. dia_on_row = self.draw_app.tools_table_exc.item(row, 1).text()
  772. self.selected_dia_set.add(float(dia_on_row))
  773. # since we add a new tool, we update also the intial state of the tool_table through it's dictionary
  774. # we add a new entry in the tool2tooldia dict
  775. self.draw_app.tool2tooldia[len(self.draw_app.olddia_newdia)] = new_dia
  776. sel_shapes_to_be_deleted = []
  777. if self.selected_dia_set:
  778. for sel_dia in self.selected_dia_set:
  779. self.current_storage = self.draw_app.storage_dict[sel_dia]
  780. for select_shape in self.draw_app.get_selected():
  781. if select_shape in self.current_storage.get_objects():
  782. # add new geometry according to the new size
  783. if isinstance(select_shape.geo, MultiLineString):
  784. factor = new_dia / sel_dia
  785. self.geometry.append(DrawToolShape(affinity.scale(select_shape.geo,
  786. xfact=factor,
  787. yfact=factor,
  788. origin='center')))
  789. elif isinstance(select_shape.geo, Polygon):
  790. # I don't have any info regarding the angle of the slot geometry, nor how thick it is or
  791. # how long it is given the angle. So I will have to make an approximation because
  792. # we need to conserve the slot length, we only resize the diameter for the tool
  793. # Therefore scaling won't work and buffering will not work either.
  794. # First we get the Linestring that is one that the original slot is built around with the
  795. # tool having the diameter sel_dia
  796. poly = select_shape.geo
  797. xmin, ymin, xmax, ymax = poly.bounds
  798. # a line that is certain to be bigger than our slot because it's the diagonal
  799. # of it's bounding box
  800. poly_diagonal = LineString([(xmin, ymin), (xmax, ymax)])
  801. poly_centroid = poly.centroid
  802. # center of the slot geometry
  803. poly_center = (poly_centroid.x, poly_centroid.y)
  804. # make a list of intersections with the rotated line
  805. list_of_cuttings = []
  806. for angle in range(0, 359, 1):
  807. rot_poly_diagonal = affinity.rotate(poly_diagonal, angle=angle, origin=poly_center)
  808. cut_line = rot_poly_diagonal.intersection(poly)
  809. cut_line_len = cut_line.length
  810. list_of_cuttings.append(
  811. (cut_line_len, cut_line)
  812. )
  813. # find the cut_line with the maximum length which is the LineString for which the start
  814. # and stop point are the start and stop point of the slot as in the Gerber file
  815. cut_line_with_max_length = max(list_of_cuttings, key=lambda i: i[0])[1]
  816. # find the coordinates of this line
  817. cut_line_with_max_length_coords = list(cut_line_with_max_length.coords)
  818. # extract the first and last point of the line and build some buffered polygon circles
  819. # around them
  820. start_pt = Point(cut_line_with_max_length_coords[0])
  821. stop_pt = Point(cut_line_with_max_length_coords[1])
  822. start_cut_geo = start_pt.buffer(new_dia / 2)
  823. stop_cut_geo = stop_pt.buffer(new_dia / 2)
  824. # and we cut the above circle polygons from our line and get in this way a line around
  825. # which we can build the new slot by buffering with the new tool diameter
  826. new_line = cut_line_with_max_length.difference(start_cut_geo)
  827. new_line = new_line.difference(stop_cut_geo)
  828. # create the geometry for the resized slot by buffering with half of the
  829. # new diameter value, new_dia
  830. new_poly = new_line.buffer(new_dia / 2)
  831. self.geometry.append(DrawToolShape(new_poly))
  832. else:
  833. # unexpected geometry so we cancel
  834. self.draw_app.app.inform.emit('[ERROR_NOTCL] %s' % _("Cancelled."))
  835. return
  836. # remove the geometry with the old size
  837. self.current_storage.remove(select_shape)
  838. # a hack to make the tool_table display less drills per diameter when shape(drill) is deleted
  839. # self.points_edit it's only useful first time when we load the data into the storage
  840. # but is still used as reference when building tool_table in self.build_ui()
  841. # the number of drills displayed in column 2 is just a len(self.points_edit) therefore
  842. # deleting self.points_edit elements (doesn't matter who but just the number)
  843. # solved the display issue.
  844. if isinstance(select_shape.geo, MultiLineString):
  845. try:
  846. del self.draw_app.points_edit[sel_dia][0]
  847. except KeyError:
  848. # if the exception happen here then we are not dealing with drills but with slots
  849. # This should not happen as the drills have MultiLineString geometry and slots have
  850. # Polygon geometry
  851. pass
  852. if isinstance(select_shape.geo, Polygon):
  853. try:
  854. del self.draw_app.slot_points_edit[sel_dia][0]
  855. except KeyError:
  856. # if the exception happen here then we are not dealing with slots but with drills
  857. # This should not happen as the drills have MultiLineString geometry and slots have
  858. # Polygon geometry
  859. pass
  860. sel_shapes_to_be_deleted.append(select_shape)
  861. # a hack to make the tool_table display more drills/slots per diameter when shape(drill/slot)
  862. # is added.
  863. # self.points_edit it's only useful first time when we load the data into the storage
  864. # but is still used as reference when building tool_table in self.build_ui()
  865. # the number of drills displayed in column 2 is just a len(self.points_edit) therefore
  866. # deleting self.points_edit elements (doesn't matter who but just the number)
  867. # solved the display issue.
  868. # for drills
  869. if isinstance(select_shape.geo, MultiLineString):
  870. if new_dia not in self.draw_app.points_edit:
  871. self.draw_app.points_edit[new_dia] = [(0, 0)]
  872. else:
  873. self.draw_app.points_edit[new_dia].append((0, 0))
  874. # for slots
  875. if isinstance(select_shape.geo, Polygon):
  876. if new_dia not in self.draw_app.slot_points_edit:
  877. self.draw_app.slot_points_edit[new_dia] = [(0, 0)]
  878. else:
  879. self.draw_app.slot_points_edit[new_dia].append((0, 0))
  880. for dia_key in list(self.draw_app.storage_dict.keys()):
  881. # if following the resize of the drills there will be no more drills for some of the tools then
  882. # delete those tools
  883. try:
  884. if not self.draw_app.points_edit[dia_key]:
  885. self.draw_app.on_tool_delete(dia_key)
  886. except KeyError:
  887. # if the exception happen here then we are not dealing with drills but with slots
  888. # so we try for them
  889. try:
  890. if not self.draw_app.slot_points_edit[dia_key]:
  891. self.draw_app.on_tool_delete(dia_key)
  892. except KeyError:
  893. # if the exception happen here then we are not dealing with slots neither
  894. # therefore something else is not OK so we return
  895. self.draw_app.app.inform.emit('[ERROR_NOTCL] %s' % _("Cancelled."))
  896. return
  897. # this simple hack is used so we can delete form self.draw_app.selected but
  898. # after we no longer iterate through it
  899. for shp in sel_shapes_to_be_deleted:
  900. self.draw_app.selected.remove(shp)
  901. # add the new geometry to storage
  902. self.draw_app.on_exc_shape_complete(self.destination_storage)
  903. self.draw_app.build_ui()
  904. self.draw_app.replot()
  905. # empty the self.geometry
  906. self.geometry = []
  907. # we reactivate the signals after the after the tool editing
  908. self.draw_app.tools_table_exc.itemChanged.connect(self.draw_app.on_tool_edit)
  909. self.draw_app.app.inform.emit('[success] %s' %
  910. _("Done. Drill/Slot Resize completed."))
  911. else:
  912. self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
  913. _("Cancelled. No drills/slots selected for resize ..."))
  914. # init this set() for another use perhaps
  915. self.selected_dia_set = set()
  916. self.draw_app.resize_frame.hide()
  917. self.complete = True
  918. # MS: always return to the Select Tool
  919. self.draw_app.select_tool("drill_select")
  920. def clean_up(self):
  921. self.draw_app.selected = []
  922. self.draw_app.tools_table_exc.clearSelection()
  923. self.draw_app.plot_all()
  924. try:
  925. self.draw_app.app.jump_signal.disconnect()
  926. except (TypeError, AttributeError):
  927. pass
  928. class FCDrillMove(FCShapeTool):
  929. def __init__(self, draw_app):
  930. DrawTool.__init__(self, draw_app)
  931. self.name = 'drill_move'
  932. # self.shape_buffer = self.draw_app.shape_buffer
  933. self.origin = None
  934. self.destination = None
  935. self.sel_limit = self.draw_app.app.defaults["excellon_editor_sel_limit"]
  936. self.selection_shape = self.selection_bbox()
  937. self.selected_dia_list = []
  938. if self.draw_app.launched_from_shortcuts is True:
  939. self.draw_app.launched_from_shortcuts = False
  940. self.draw_app.app.inform.emit(_("Click on target location ..."))
  941. else:
  942. self.draw_app.app.inform.emit(_("Click on reference location ..."))
  943. self.current_storage = None
  944. self.geometry = []
  945. for index in self.draw_app.tools_table_exc.selectedIndexes():
  946. row = index.row()
  947. # on column 1 in tool tables we hold the diameters, and we retrieve them as strings
  948. # therefore below we convert to float
  949. dia_on_row = self.draw_app.tools_table_exc.item(row, 1).text()
  950. self.selected_dia_list.append(float(dia_on_row))
  951. self.draw_app.app.jump_signal.connect(lambda x: self.draw_app.update_utility_geometry(data=x))
  952. # Switch notebook to Selected page
  953. self.draw_app.app.ui.notebook.setCurrentWidget(self.draw_app.app.ui.selected_tab)
  954. def set_origin(self, origin):
  955. self.origin = origin
  956. def click(self, point):
  957. if len(self.draw_app.get_selected()) == 0:
  958. return "Nothing to move."
  959. if self.origin is None:
  960. self.set_origin(point)
  961. self.draw_app.app.inform.emit(_("Click on target location ..."))
  962. return
  963. else:
  964. self.destination = point
  965. self.make()
  966. # MS: always return to the Select Tool
  967. self.draw_app.select_tool("drill_select")
  968. return
  969. def make(self):
  970. # Create new geometry
  971. dx = self.destination[0] - self.origin[0]
  972. dy = self.destination[1] - self.origin[1]
  973. sel_shapes_to_be_deleted = []
  974. for sel_dia in self.selected_dia_list:
  975. self.current_storage = self.draw_app.storage_dict[sel_dia]
  976. for select_shape in self.draw_app.get_selected():
  977. if select_shape in self.current_storage.get_objects():
  978. self.geometry.append(DrawToolShape(affinity.translate(select_shape.geo, xoff=dx, yoff=dy)))
  979. self.current_storage.remove(select_shape)
  980. sel_shapes_to_be_deleted.append(select_shape)
  981. self.draw_app.on_exc_shape_complete(self.current_storage)
  982. self.geometry = []
  983. for shp in sel_shapes_to_be_deleted:
  984. self.draw_app.selected.remove(shp)
  985. sel_shapes_to_be_deleted = []
  986. self.draw_app.build_ui()
  987. self.draw_app.app.inform.emit('[success] %s' % _("Done. Drill(s) Move completed."))
  988. self.draw_app.app.jump_signal.disconnect()
  989. def selection_bbox(self):
  990. geo_list = []
  991. for select_shape in self.draw_app.get_selected():
  992. geometric_data = select_shape.geo
  993. try:
  994. for g in geometric_data:
  995. geo_list.append(g)
  996. except TypeError:
  997. geo_list.append(geometric_data)
  998. xmin, ymin, xmax, ymax = get_shapely_list_bounds(geo_list)
  999. pt1 = (xmin, ymin)
  1000. pt2 = (xmax, ymin)
  1001. pt3 = (xmax, ymax)
  1002. pt4 = (xmin, ymax)
  1003. return Polygon([pt1, pt2, pt3, pt4])
  1004. def utility_geometry(self, data=None):
  1005. """
  1006. Temporary geometry on screen while using this tool.
  1007. :param data:
  1008. :return:
  1009. """
  1010. geo_list = []
  1011. if self.origin is None:
  1012. return None
  1013. if len(self.draw_app.get_selected()) == 0:
  1014. return None
  1015. dx = data[0] - self.origin[0]
  1016. dy = data[1] - self.origin[1]
  1017. if len(self.draw_app.get_selected()) <= self.sel_limit:
  1018. try:
  1019. for geom in self.draw_app.get_selected():
  1020. geo_list.append(affinity.translate(geom.geo, xoff=dx, yoff=dy))
  1021. except AttributeError:
  1022. self.draw_app.select_tool('drill_select')
  1023. self.draw_app.selected = []
  1024. return
  1025. return DrawToolUtilityShape(geo_list)
  1026. else:
  1027. try:
  1028. ss_el = affinity.translate(self.selection_shape, xoff=dx, yoff=dy)
  1029. except ValueError:
  1030. ss_el = None
  1031. return DrawToolUtilityShape(ss_el)
  1032. def clean_up(self):
  1033. self.draw_app.selected = []
  1034. self.draw_app.tools_table_exc.clearSelection()
  1035. self.draw_app.plot_all()
  1036. try:
  1037. self.draw_app.app.jump_signal.disconnect()
  1038. except (TypeError, AttributeError):
  1039. pass
  1040. class FCDrillCopy(FCDrillMove):
  1041. def __init__(self, draw_app):
  1042. FCDrillMove.__init__(self, draw_app)
  1043. self.name = 'drill_copy'
  1044. def make(self):
  1045. # Create new geometry
  1046. dx = self.destination[0] - self.origin[0]
  1047. dy = self.destination[1] - self.origin[1]
  1048. sel_shapes_to_be_deleted = []
  1049. for sel_dia in self.selected_dia_list:
  1050. self.current_storage = self.draw_app.storage_dict[sel_dia]
  1051. for select_shape in self.draw_app.get_selected():
  1052. if select_shape in self.current_storage.get_objects():
  1053. self.geometry.append(DrawToolShape(affinity.translate(select_shape.geo, xoff=dx, yoff=dy)))
  1054. # Add some fake drills into the self.draw_app.points_edit to update the drill count in tool table
  1055. # This may fail if we copy slots.
  1056. try:
  1057. self.draw_app.points_edit[sel_dia].append((0, 0))
  1058. except KeyError:
  1059. pass
  1060. # add some fake slots into the self.draw_app.slots_points_edit
  1061. # to update the slot count in tool table
  1062. # This may fail if we copy drills.
  1063. try:
  1064. self.draw_app.slot_points_edit[sel_dia].append((0, 0))
  1065. except KeyError:
  1066. pass
  1067. sel_shapes_to_be_deleted.append(select_shape)
  1068. self.draw_app.on_exc_shape_complete(self.current_storage)
  1069. self.geometry = []
  1070. for shp in sel_shapes_to_be_deleted:
  1071. self.draw_app.selected.remove(shp)
  1072. sel_shapes_to_be_deleted = []
  1073. self.draw_app.build_ui()
  1074. self.draw_app.app.inform.emit('[success] %s' % _("Done. Drill(s) copied."))
  1075. self.draw_app.app.jump_signal.disconnect()
  1076. def clean_up(self):
  1077. self.draw_app.selected = []
  1078. self.draw_app.tools_table_exc.clearSelection()
  1079. self.draw_app.plot_all()
  1080. try:
  1081. self.draw_app.app.jump_signal.disconnect()
  1082. except (TypeError, AttributeError):
  1083. pass
  1084. class FCDrillSelect(DrawTool):
  1085. def __init__(self, draw_app):
  1086. DrawTool.__init__(self, draw_app)
  1087. self.name = 'drill_select'
  1088. try:
  1089. QtGui.QGuiApplication.restoreOverrideCursor()
  1090. except Exception:
  1091. pass
  1092. self.exc_editor_app = draw_app
  1093. self.storage = self.exc_editor_app.storage_dict
  1094. # self.selected = self.exc_editor_app.selected
  1095. # here we store the selected tools
  1096. self.sel_tools = set()
  1097. # here we store all shapes that were selected so we can search for the nearest to our click location
  1098. self.sel_storage = FlatCAMExcEditor.make_storage()
  1099. self.exc_editor_app.resize_frame.hide()
  1100. self.exc_editor_app.array_frame.hide()
  1101. self.exc_editor_app.slot_frame.hide()
  1102. self.exc_editor_app.slot_array_frame.hide()
  1103. def click(self, point):
  1104. key_modifier = QtWidgets.QApplication.keyboardModifiers()
  1105. if key_modifier == QtCore.Qt.ShiftModifier:
  1106. mod_key = 'Shift'
  1107. elif key_modifier == QtCore.Qt.ControlModifier:
  1108. mod_key = 'Control'
  1109. else:
  1110. mod_key = None
  1111. if mod_key == self.exc_editor_app.app.defaults["global_mselect_key"]:
  1112. pass
  1113. else:
  1114. self.exc_editor_app.selected = []
  1115. def click_release(self, pos):
  1116. self.exc_editor_app.tools_table_exc.clearSelection()
  1117. xmin, ymin, xmax, ymax = 0, 0, 0, 0
  1118. try:
  1119. for storage in self.exc_editor_app.storage_dict:
  1120. # for sh in self.exc_editor_app.storage_dict[storage].get_objects():
  1121. # self.sel_storage.insert(sh)
  1122. _, st_closest_shape = self.exc_editor_app.storage_dict[storage].nearest(pos)
  1123. self.sel_storage.insert(st_closest_shape)
  1124. _, closest_shape = self.sel_storage.nearest(pos)
  1125. # constrain selection to happen only within a certain bounding box; it works only for MultiLineStrings
  1126. if isinstance(closest_shape.geo, MultiLineString):
  1127. x_coord, y_coord = closest_shape.geo[0].xy
  1128. delta = (x_coord[1] - x_coord[0])
  1129. # closest_shape_coords = (((x_coord[0] + delta / 2)), y_coord[0])
  1130. xmin = x_coord[0] - (0.7 * delta)
  1131. xmax = x_coord[0] + (1.7 * delta)
  1132. ymin = y_coord[0] - (0.7 * delta)
  1133. ymax = y_coord[0] + (1.7 * delta)
  1134. elif isinstance(closest_shape.geo, Polygon):
  1135. xmin, ymin, xmax, ymax = closest_shape.geo.bounds
  1136. dx = xmax - xmin
  1137. dy = ymax - ymin
  1138. delta = dx if dx > dy else dy
  1139. xmin -= 0.7 * delta
  1140. xmax += 0.7 * delta
  1141. ymin -= 0.7 * delta
  1142. ymax += 0.7 * delta
  1143. except StopIteration:
  1144. return ""
  1145. if pos[0] < xmin or pos[0] > xmax or pos[1] < ymin or pos[1] > ymax:
  1146. self.exc_editor_app.selected = []
  1147. else:
  1148. modifiers = QtWidgets.QApplication.keyboardModifiers()
  1149. if modifiers == QtCore.Qt.ShiftModifier:
  1150. mod_key = 'Shift'
  1151. elif modifiers == QtCore.Qt.ControlModifier:
  1152. mod_key = 'Control'
  1153. else:
  1154. mod_key = None
  1155. if mod_key == self.exc_editor_app.app.defaults["global_mselect_key"]:
  1156. if closest_shape in self.exc_editor_app.selected:
  1157. self.exc_editor_app.selected.remove(closest_shape)
  1158. else:
  1159. self.exc_editor_app.selected.append(closest_shape)
  1160. else:
  1161. self.exc_editor_app.selected = []
  1162. self.exc_editor_app.selected.append(closest_shape)
  1163. # select the diameter of the selected shape in the tool table
  1164. try:
  1165. self.exc_editor_app.tools_table_exc.cellPressed.disconnect()
  1166. except (TypeError, AttributeError):
  1167. pass
  1168. # if mod_key == self.exc_editor_app.app.defaults["global_mselect_key"]:
  1169. # self.exc_editor_app.tools_table_exc.setSelectionMode(QtWidgets.QAbstractItemView.MultiSelection)
  1170. self.sel_tools.clear()
  1171. for shape_s in self.exc_editor_app.selected:
  1172. for storage in self.exc_editor_app.storage_dict:
  1173. if shape_s in self.exc_editor_app.storage_dict[storage].get_objects():
  1174. self.sel_tools.add(storage)
  1175. self.exc_editor_app.tools_table_exc.clearSelection()
  1176. for storage in self.sel_tools:
  1177. for k, v in self.exc_editor_app.tool2tooldia.items():
  1178. if v == storage:
  1179. self.exc_editor_app.tools_table_exc.selectRow(int(k) - 1)
  1180. self.exc_editor_app.last_tool_selected = int(k)
  1181. break
  1182. # self.exc_editor_app.tools_table_exc.setSelectionMode(QtWidgets.QAbstractItemView.ExtendedSelection)
  1183. self.exc_editor_app.tools_table_exc.cellPressed.connect(self.exc_editor_app.on_row_selected)
  1184. # delete whatever is in selection storage, there is no longer need for those shapes
  1185. self.sel_storage = FlatCAMExcEditor.make_storage()
  1186. return ""
  1187. # pos[0] and pos[1] are the mouse click coordinates (x, y)
  1188. # for storage in self.exc_editor_app.storage_dict:
  1189. # for obj_shape in self.exc_editor_app.storage_dict[storage].get_objects():
  1190. # minx, miny, maxx, maxy = obj_shape.geo.bounds
  1191. # if (minx <= pos[0] <= maxx) and (miny <= pos[1] <= maxy):
  1192. # over_shape_list.append(obj_shape)
  1193. #
  1194. # try:
  1195. # # if there is no shape under our click then deselect all shapes
  1196. # if not over_shape_list:
  1197. # self.exc_editor_app.selected = []
  1198. # FlatCAMExcEditor.draw_shape_idx = -1
  1199. # self.exc_editor_app.tools_table_exc.clearSelection()
  1200. # else:
  1201. # # if there are shapes under our click then advance through the list of them, one at the time in a
  1202. # # circular way
  1203. # FlatCAMExcEditor.draw_shape_idx = (FlatCAMExcEditor.draw_shape_idx + 1) % len(over_shape_list)
  1204. # obj_to_add = over_shape_list[int(FlatCAMExcEditor.draw_shape_idx)]
  1205. #
  1206. # if self.exc_editor_app.app.defaults["global_mselect_key"] == 'Shift':
  1207. # if self.exc_editor_app.modifiers == Qt.ShiftModifier:
  1208. # if obj_to_add in self.exc_editor_app.selected:
  1209. # self.exc_editor_app.selected.remove(obj_to_add)
  1210. # else:
  1211. # self.exc_editor_app.selected.append(obj_to_add)
  1212. # else:
  1213. # self.exc_editor_app.selected = []
  1214. # self.exc_editor_app.selected.append(obj_to_add)
  1215. # else:
  1216. # # if CONTROL key is pressed then we add to the selected list the current shape but if it's already
  1217. # # in the selected list, we removed it. Therefore first click selects, second deselects.
  1218. # if self.exc_editor_app.modifiers == Qt.ControlModifier:
  1219. # if obj_to_add in self.exc_editor_app.selected:
  1220. # self.exc_editor_app.selected.remove(obj_to_add)
  1221. # else:
  1222. # self.exc_editor_app.selected.append(obj_to_add)
  1223. # else:
  1224. # self.exc_editor_app.selected = []
  1225. # self.exc_editor_app.selected.append(obj_to_add)
  1226. #
  1227. # for storage in self.exc_editor_app.storage_dict:
  1228. # for shape in self.exc_editor_app.selected:
  1229. # if shape in self.exc_editor_app.storage_dict[storage].get_objects():
  1230. # for key in self.exc_editor_app.tool2tooldia:
  1231. # if self.exc_editor_app.tool2tooldia[key] == storage:
  1232. # item = self.exc_editor_app.tools_table_exc.item((key - 1), 1)
  1233. # item.setSelected(True)
  1234. # # self.exc_editor_app.tools_table_exc.selectItem(key - 1)
  1235. #
  1236. # except Exception as e:
  1237. # log.error("[ERROR] Something went bad. %s" % str(e))
  1238. # raise
  1239. class FlatCAMExcEditor(QtCore.QObject):
  1240. draw_shape_idx = -1
  1241. def __init__(self, app):
  1242. # assert isinstance(app, FlatCAMApp.App), "Expected the app to be a FlatCAMApp.App, got %s" % type(app)
  1243. super(FlatCAMExcEditor, self).__init__()
  1244. self.app = app
  1245. self.canvas = self.app.plotcanvas
  1246. # Number of decimals used by tools in this class
  1247. self.decimals = self.app.decimals
  1248. # ## Current application units in Upper Case
  1249. self.units = self.app.defaults['units'].upper()
  1250. self.exc_edit_widget = QtWidgets.QWidget()
  1251. # ## Box for custom widgets
  1252. # This gets populated in offspring implementations.
  1253. layout = QtWidgets.QVBoxLayout()
  1254. self.exc_edit_widget.setLayout(layout)
  1255. # add a frame and inside add a vertical box layout. Inside this vbox layout I add all the Drills widgets
  1256. # this way I can hide/show the frame
  1257. self.drills_frame = QtWidgets.QFrame()
  1258. self.drills_frame.setContentsMargins(0, 0, 0, 0)
  1259. layout.addWidget(self.drills_frame)
  1260. self.tools_box = QtWidgets.QVBoxLayout()
  1261. self.tools_box.setContentsMargins(0, 0, 0, 0)
  1262. self.drills_frame.setLayout(self.tools_box)
  1263. # ## Page Title box (spacing between children)
  1264. self.title_box = QtWidgets.QHBoxLayout()
  1265. self.tools_box.addLayout(self.title_box)
  1266. # ## Page Title icon
  1267. pixmap = QtGui.QPixmap(self.app.resource_location + '/flatcam_icon32.png')
  1268. self.icon = QtWidgets.QLabel()
  1269. self.icon.setPixmap(pixmap)
  1270. self.title_box.addWidget(self.icon, stretch=0)
  1271. # ## Title label
  1272. self.title_label = QtWidgets.QLabel("<font size=5><b>%s</b></font>" % _('Excellon Editor'))
  1273. self.title_label.setAlignment(QtCore.Qt.AlignLeft | QtCore.Qt.AlignVCenter)
  1274. self.title_box.addWidget(self.title_label, stretch=1)
  1275. # ## Object name
  1276. self.name_box = QtWidgets.QHBoxLayout()
  1277. self.tools_box.addLayout(self.name_box)
  1278. name_label = QtWidgets.QLabel(_("Name:"))
  1279. self.name_box.addWidget(name_label)
  1280. self.name_entry = FCEntry()
  1281. self.name_box.addWidget(self.name_entry)
  1282. # ### Tools Drills ## ##
  1283. self.tools_table_label = QtWidgets.QLabel("<b>%s</b>" % _('Tools Table'))
  1284. self.tools_table_label.setToolTip(
  1285. _("Tools in this Excellon object\n"
  1286. "when are used for drilling.")
  1287. )
  1288. self.tools_box.addWidget(self.tools_table_label)
  1289. self.tools_table_exc = FCTable()
  1290. # delegate = SpinBoxDelegate(units=self.units)
  1291. # self.tools_table_exc.setItemDelegateForColumn(1, delegate)
  1292. self.tools_box.addWidget(self.tools_table_exc)
  1293. self.tools_table_exc.setColumnCount(4)
  1294. self.tools_table_exc.setHorizontalHeaderLabels(['#', _('Diameter'), 'D', 'S'])
  1295. self.tools_table_exc.setSortingEnabled(False)
  1296. self.tools_table_exc.setSelectionBehavior(QtWidgets.QAbstractItemView.SelectRows)
  1297. self.empty_label = QtWidgets.QLabel('')
  1298. self.tools_box.addWidget(self.empty_label)
  1299. # ### Add a new Tool ## ##
  1300. self.addtool_label = QtWidgets.QLabel('<b>%s</b>' % _('Add/Delete Tool'))
  1301. self.addtool_label.setToolTip(
  1302. _("Add/Delete a tool to the tool list\n"
  1303. "for this Excellon object.")
  1304. )
  1305. self.tools_box.addWidget(self.addtool_label)
  1306. grid1 = QtWidgets.QGridLayout()
  1307. self.tools_box.addLayout(grid1)
  1308. grid1.setColumnStretch(0, 0)
  1309. grid1.setColumnStretch(1, 1)
  1310. addtool_entry_lbl = QtWidgets.QLabel('%s:' % _('Tool Dia'))
  1311. addtool_entry_lbl.setToolTip(
  1312. _("Diameter for the new tool")
  1313. )
  1314. hlay = QtWidgets.QHBoxLayout()
  1315. self.addtool_entry = FCDoubleSpinner()
  1316. self.addtool_entry.set_precision(self.decimals)
  1317. self.addtool_entry.set_range(0.0000, 9999.9999)
  1318. hlay.addWidget(self.addtool_entry)
  1319. self.addtool_btn = QtWidgets.QPushButton(_('Add Tool'))
  1320. self.addtool_btn.setToolTip(
  1321. _("Add a new tool to the tool list\n"
  1322. "with the diameter specified above.")
  1323. )
  1324. self.addtool_btn.setFixedWidth(80)
  1325. hlay.addWidget(self.addtool_btn)
  1326. grid1.addWidget(addtool_entry_lbl, 0, 0)
  1327. grid1.addLayout(hlay, 0, 1)
  1328. grid2 = QtWidgets.QGridLayout()
  1329. self.tools_box.addLayout(grid2)
  1330. self.deltool_btn = QtWidgets.QPushButton(_('Delete Tool'))
  1331. self.deltool_btn.setToolTip(
  1332. _("Delete a tool in the tool list\n"
  1333. "by selecting a row in the tool table.")
  1334. )
  1335. grid2.addWidget(self.deltool_btn, 0, 1)
  1336. # add a frame and inside add a vertical box layout. Inside this vbox layout I add all the Drills widgets
  1337. # this way I can hide/show the frame
  1338. self.resize_frame = QtWidgets.QFrame()
  1339. self.resize_frame.setContentsMargins(0, 0, 0, 0)
  1340. self.tools_box.addWidget(self.resize_frame)
  1341. self.resize_box = QtWidgets.QVBoxLayout()
  1342. self.resize_box.setContentsMargins(0, 0, 0, 0)
  1343. self.resize_frame.setLayout(self.resize_box)
  1344. # ### Resize a drill ## ##
  1345. self.emptyresize_label = QtWidgets.QLabel('')
  1346. self.resize_box.addWidget(self.emptyresize_label)
  1347. self.drillresize_label = QtWidgets.QLabel('<b>%s</b>' % _("Resize Drill(s)"))
  1348. self.drillresize_label.setToolTip(
  1349. _("Resize a drill or a selection of drills.")
  1350. )
  1351. self.resize_box.addWidget(self.drillresize_label)
  1352. grid3 = QtWidgets.QGridLayout()
  1353. self.resize_box.addLayout(grid3)
  1354. res_entry_lbl = QtWidgets.QLabel('%s:' % _('Resize Dia'))
  1355. res_entry_lbl.setToolTip(
  1356. _("Diameter to resize to.")
  1357. )
  1358. grid3.addWidget(res_entry_lbl, 0, 0)
  1359. hlay2 = QtWidgets.QHBoxLayout()
  1360. self.resdrill_entry = FCDoubleSpinner()
  1361. self.resdrill_entry.set_precision(self.decimals)
  1362. self.resdrill_entry.set_range(0.0000, 9999.9999)
  1363. hlay2.addWidget(self.resdrill_entry)
  1364. self.resize_btn = QtWidgets.QPushButton(_('Resize'))
  1365. self.resize_btn.setToolTip(
  1366. _("Resize drill(s)")
  1367. )
  1368. self.resize_btn.setFixedWidth(80)
  1369. hlay2.addWidget(self.resize_btn)
  1370. grid3.addLayout(hlay2, 0, 1)
  1371. self.resize_frame.hide()
  1372. # ####################################
  1373. # ### Add DRILL Array ################
  1374. # ####################################
  1375. # add a frame and inside add a vertical box layout. Inside this vbox layout I add
  1376. # all the add drill array widgets
  1377. # this way I can hide/show the frame
  1378. self.array_frame = QtWidgets.QFrame()
  1379. self.array_frame.setContentsMargins(0, 0, 0, 0)
  1380. self.tools_box.addWidget(self.array_frame)
  1381. self.array_box = QtWidgets.QVBoxLayout()
  1382. self.array_box.setContentsMargins(0, 0, 0, 0)
  1383. self.array_frame.setLayout(self.array_box)
  1384. self.emptyarray_label = QtWidgets.QLabel('')
  1385. self.array_box.addWidget(self.emptyarray_label)
  1386. self.drill_array_label = QtWidgets.QLabel('<b>%s</b>' % _("Add Drill Array"))
  1387. self.drill_array_label.setToolTip(
  1388. _("Add an array of drills (linear or circular array)")
  1389. )
  1390. self.array_box.addWidget(self.drill_array_label)
  1391. self.array_type_combo = FCComboBox()
  1392. self.array_type_combo.setToolTip(
  1393. _("Select the type of drills array to create.\n"
  1394. "It can be Linear X(Y) or Circular")
  1395. )
  1396. self.array_type_combo.addItem(_("Linear"))
  1397. self.array_type_combo.addItem(_("Circular"))
  1398. self.array_box.addWidget(self.array_type_combo)
  1399. self.array_form = QtWidgets.QFormLayout()
  1400. self.array_box.addLayout(self.array_form)
  1401. # Set the number of drill holes in the drill array
  1402. self.drill_array_size_label = QtWidgets.QLabel('%s:' % _('Nr of drills'))
  1403. self.drill_array_size_label.setToolTip(_("Specify how many drills to be in the array."))
  1404. self.drill_array_size_label.setMinimumWidth(100)
  1405. self.drill_array_size_entry = FCSpinner()
  1406. self.drill_array_size_entry.set_range(1, 9999)
  1407. self.array_form.addRow(self.drill_array_size_label, self.drill_array_size_entry)
  1408. self.array_linear_frame = QtWidgets.QFrame()
  1409. self.array_linear_frame.setContentsMargins(0, 0, 0, 0)
  1410. self.array_box.addWidget(self.array_linear_frame)
  1411. self.linear_box = QtWidgets.QVBoxLayout()
  1412. self.linear_box.setContentsMargins(0, 0, 0, 0)
  1413. self.array_linear_frame.setLayout(self.linear_box)
  1414. self.linear_form = QtWidgets.QFormLayout()
  1415. self.linear_box.addLayout(self.linear_form)
  1416. # Linear Drill Array direction
  1417. self.drill_axis_label = QtWidgets.QLabel('%s:' % _('Direction'))
  1418. self.drill_axis_label.setToolTip(
  1419. _("Direction on which the linear array is oriented:\n"
  1420. "- 'X' - horizontal axis \n"
  1421. "- 'Y' - vertical axis or \n"
  1422. "- 'Angle' - a custom angle for the array inclination")
  1423. )
  1424. self.drill_axis_label.setMinimumWidth(100)
  1425. self.drill_axis_radio = RadioSet([{'label': _('X'), 'value': 'X'},
  1426. {'label': _('Y'), 'value': 'Y'},
  1427. {'label': _('Angle'), 'value': 'A'}])
  1428. self.linear_form.addRow(self.drill_axis_label, self.drill_axis_radio)
  1429. # Linear Drill Array pitch distance
  1430. self.drill_pitch_label = QtWidgets.QLabel('%s:' % _('Pitch'))
  1431. self.drill_pitch_label.setToolTip(
  1432. _("Pitch = Distance between elements of the array.")
  1433. )
  1434. self.drill_pitch_label.setMinimumWidth(100)
  1435. self.drill_pitch_entry = FCDoubleSpinner()
  1436. self.drill_pitch_entry.set_precision(self.decimals)
  1437. self.drill_pitch_entry.set_range(0.0000, 9999.9999)
  1438. self.linear_form.addRow(self.drill_pitch_label, self.drill_pitch_entry)
  1439. # Linear Drill Array angle
  1440. self.linear_angle_label = QtWidgets.QLabel('%s:' % _('Angle'))
  1441. self.linear_angle_label.setToolTip(
  1442. _("Angle at which the linear array is placed.\n"
  1443. "The precision is of max 2 decimals.\n"
  1444. "Min value is: -360 degrees.\n"
  1445. "Max value is: 360.00 degrees.")
  1446. )
  1447. self.linear_angle_label.setMinimumWidth(100)
  1448. self.linear_angle_spinner = FCDoubleSpinner()
  1449. self.linear_angle_spinner.set_precision(self.decimals)
  1450. self.linear_angle_spinner.setSingleStep(1.0)
  1451. self.linear_angle_spinner.setRange(-360.00, 360.00)
  1452. self.linear_form.addRow(self.linear_angle_label, self.linear_angle_spinner)
  1453. self.array_circular_frame = QtWidgets.QFrame()
  1454. self.array_circular_frame.setContentsMargins(0, 0, 0, 0)
  1455. self.array_box.addWidget(self.array_circular_frame)
  1456. self.circular_box = QtWidgets.QVBoxLayout()
  1457. self.circular_box.setContentsMargins(0, 0, 0, 0)
  1458. self.array_circular_frame.setLayout(self.circular_box)
  1459. self.drill_direction_label = QtWidgets.QLabel('%s:' % _('Direction'))
  1460. self.drill_direction_label.setToolTip(_("Direction for circular array."
  1461. "Can be CW = clockwise or CCW = counter clockwise."))
  1462. self.drill_direction_label.setMinimumWidth(100)
  1463. self.circular_form = QtWidgets.QFormLayout()
  1464. self.circular_box.addLayout(self.circular_form)
  1465. self.drill_direction_radio = RadioSet([{'label': _('CW'), 'value': 'CW'},
  1466. {'label': _('CCW'), 'value': 'CCW'}])
  1467. self.circular_form.addRow(self.drill_direction_label, self.drill_direction_radio)
  1468. self.drill_angle_label = QtWidgets.QLabel('%s:' % _('Angle'))
  1469. self.drill_angle_label.setToolTip(_("Angle at which each element in circular array is placed."))
  1470. self.drill_angle_label.setMinimumWidth(100)
  1471. self.drill_angle_entry = FCDoubleSpinner()
  1472. self.drill_angle_entry.set_precision(self.decimals)
  1473. self.drill_angle_entry.setSingleStep(1.0)
  1474. self.drill_angle_entry.setRange(-360.00, 360.00)
  1475. self.circular_form.addRow(self.drill_angle_label, self.drill_angle_entry)
  1476. self.array_circular_frame.hide()
  1477. self.linear_angle_spinner.hide()
  1478. self.linear_angle_label.hide()
  1479. self.array_frame.hide()
  1480. # ######################################################
  1481. # ##### ADDING SLOTS ###################################
  1482. # ######################################################
  1483. # add a frame and inside add a vertical box layout. Inside this vbox layout I add
  1484. # all the add slot widgets
  1485. # this way I can hide/show the frame
  1486. self.slot_frame = QtWidgets.QFrame()
  1487. self.slot_frame.setContentsMargins(0, 0, 0, 0)
  1488. self.tools_box.addWidget(self.slot_frame)
  1489. self.slot_box = QtWidgets.QVBoxLayout()
  1490. self.slot_box.setContentsMargins(0, 0, 0, 0)
  1491. self.slot_frame.setLayout(self.slot_box)
  1492. self.emptyarray_label = QtWidgets.QLabel('')
  1493. self.slot_box.addWidget(self.emptyarray_label)
  1494. self.slot_label = QtWidgets.QLabel('<b>%s</b>' % _("Slot Parameters"))
  1495. self.slot_label.setToolTip(
  1496. _("Parameters for adding a slot (hole with oval shape)\n"
  1497. "either single or as an part of an array.")
  1498. )
  1499. self.slot_box.addWidget(self.slot_label)
  1500. self.slot_form = QtWidgets.QFormLayout()
  1501. self.slot_box.addLayout(self.slot_form)
  1502. # Slot length
  1503. self.slot_length_label = QtWidgets.QLabel('%s:' % _('Length'))
  1504. self.slot_length_label.setToolTip(
  1505. _("Length = The length of the slot.")
  1506. )
  1507. self.slot_length_label.setMinimumWidth(100)
  1508. self.slot_length_entry = FCDoubleSpinner()
  1509. self.slot_length_entry.set_precision(self.decimals)
  1510. self.slot_length_entry.setSingleStep(0.1)
  1511. self.slot_length_entry.setRange(0.0000, 9999.9999)
  1512. self.slot_form.addRow(self.slot_length_label, self.slot_length_entry)
  1513. # Slot direction
  1514. self.slot_axis_label = QtWidgets.QLabel('%s:' % _('Direction'))
  1515. self.slot_axis_label.setToolTip(
  1516. _("Direction on which the slot is oriented:\n"
  1517. "- 'X' - horizontal axis \n"
  1518. "- 'Y' - vertical axis or \n"
  1519. "- 'Angle' - a custom angle for the slot inclination")
  1520. )
  1521. self.slot_axis_label.setMinimumWidth(100)
  1522. self.slot_axis_radio = RadioSet([{'label': _('X'), 'value': 'X'},
  1523. {'label': _('Y'), 'value': 'Y'},
  1524. {'label': _('Angle'), 'value': 'A'}])
  1525. self.slot_form.addRow(self.slot_axis_label, self.slot_axis_radio)
  1526. # Slot custom angle
  1527. self.slot_angle_label = QtWidgets.QLabel('%s:' % _('Angle'))
  1528. self.slot_angle_label.setToolTip(
  1529. _("Angle at which the slot is placed.\n"
  1530. "The precision is of max 2 decimals.\n"
  1531. "Min value is: -360 degrees.\n"
  1532. "Max value is: 360.00 degrees.")
  1533. )
  1534. self.slot_angle_label.setMinimumWidth(100)
  1535. self.slot_angle_spinner = FCDoubleSpinner()
  1536. self.slot_angle_spinner.set_precision(self.decimals)
  1537. self.slot_angle_spinner.setWrapping(True)
  1538. self.slot_angle_spinner.setRange(-360.00, 360.00)
  1539. self.slot_angle_spinner.setSingleStep(1.0)
  1540. self.slot_form.addRow(self.slot_angle_label, self.slot_angle_spinner)
  1541. self.slot_frame.hide()
  1542. # ######################################################
  1543. # ##### ADDING SLOT ARRAY #############################
  1544. # ######################################################
  1545. # add a frame and inside add a vertical box layout. Inside this vbox layout I add
  1546. # all the add slot widgets
  1547. # this way I can hide/show the frame
  1548. self.slot_array_frame = QtWidgets.QFrame()
  1549. self.slot_array_frame.setContentsMargins(0, 0, 0, 0)
  1550. self.tools_box.addWidget(self.slot_array_frame)
  1551. self.slot_array_box = QtWidgets.QVBoxLayout()
  1552. self.slot_array_box.setContentsMargins(0, 0, 0, 0)
  1553. self.slot_array_frame.setLayout(self.slot_array_box)
  1554. self.emptyarray_label = QtWidgets.QLabel('')
  1555. self.slot_array_box.addWidget(self.emptyarray_label)
  1556. self.slot_array_label = QtWidgets.QLabel('<b>%s</b>' % _("Slot Array Parameters"))
  1557. self.slot_array_label.setToolTip(
  1558. _("Parameters for the array of slots (linear or circular array)")
  1559. )
  1560. self.slot_array_box.addWidget(self.slot_array_label)
  1561. self.l_form = QtWidgets.QFormLayout()
  1562. self.slot_array_box.addLayout(self.l_form)
  1563. self.slot_array_type_combo = FCComboBox()
  1564. self.slot_array_type_combo.setToolTip(
  1565. _("Select the type of slot array to create.\n"
  1566. "It can be Linear X(Y) or Circular")
  1567. )
  1568. self.slot_array_type_combo.addItem(_("Linear"))
  1569. self.slot_array_type_combo.addItem(_("Circular"))
  1570. self.slot_array_box.addWidget(self.slot_array_type_combo)
  1571. self.slot_array_form = QtWidgets.QFormLayout()
  1572. self.slot_array_box.addLayout(self.slot_array_form)
  1573. # Set the number of slot holes in the slot array
  1574. self.slot_array_size_label = QtWidgets.QLabel('%s:' % _('Nr of slots'))
  1575. self.slot_array_size_label.setToolTip(_("Specify how many slots to be in the array."))
  1576. self.slot_array_size_label.setMinimumWidth(100)
  1577. self.slot_array_size_entry = FCSpinner()
  1578. self.slot_array_size_entry.set_range(0, 9999)
  1579. self.slot_array_form.addRow(self.slot_array_size_label, self.slot_array_size_entry)
  1580. self.slot_array_linear_frame = QtWidgets.QFrame()
  1581. self.slot_array_linear_frame.setContentsMargins(0, 0, 0, 0)
  1582. self.slot_array_box.addWidget(self.slot_array_linear_frame)
  1583. self.slot_array_linear_box = QtWidgets.QVBoxLayout()
  1584. self.slot_array_linear_box.setContentsMargins(0, 0, 0, 0)
  1585. self.slot_array_linear_frame.setLayout(self.slot_array_linear_box)
  1586. self.slot_array_linear_form = QtWidgets.QFormLayout()
  1587. self.slot_array_linear_box.addLayout(self.slot_array_linear_form)
  1588. # Linear Slot Array direction
  1589. self.slot_array_axis_label = QtWidgets.QLabel('%s:' % _('Direction'))
  1590. self.slot_array_axis_label.setToolTip(
  1591. _("Direction on which the linear array is oriented:\n"
  1592. "- 'X' - horizontal axis \n"
  1593. "- 'Y' - vertical axis or \n"
  1594. "- 'Angle' - a custom angle for the array inclination")
  1595. )
  1596. self.slot_array_axis_label.setMinimumWidth(100)
  1597. self.slot_array_axis_radio = RadioSet([{'label': _('X'), 'value': 'X'},
  1598. {'label': _('Y'), 'value': 'Y'},
  1599. {'label': _('Angle'), 'value': 'A'}])
  1600. self.slot_array_linear_form.addRow(self.slot_array_axis_label, self.slot_array_axis_radio)
  1601. # Linear Slot Array pitch distance
  1602. self.slot_array_pitch_label = QtWidgets.QLabel('%s:' % _('Pitch'))
  1603. self.slot_array_pitch_label.setToolTip(
  1604. _("Pitch = Distance between elements of the array.")
  1605. )
  1606. self.slot_array_pitch_label.setMinimumWidth(100)
  1607. self.slot_array_pitch_entry = FCDoubleSpinner()
  1608. self.slot_array_pitch_entry.set_precision(self.decimals)
  1609. self.slot_array_pitch_entry.setSingleStep(0.1)
  1610. self.slot_array_pitch_entry.setRange(0.0000, 9999.9999)
  1611. self.slot_array_linear_form.addRow(self.slot_array_pitch_label, self.slot_array_pitch_entry)
  1612. # Linear Slot Array angle
  1613. self.slot_array_linear_angle_label = QtWidgets.QLabel('%s:' % _('Angle'))
  1614. self.slot_array_linear_angle_label.setToolTip(
  1615. _("Angle at which the linear array is placed.\n"
  1616. "The precision is of max 2 decimals.\n"
  1617. "Min value is: -360 degrees.\n"
  1618. "Max value is: 360.00 degrees.")
  1619. )
  1620. self.slot_array_linear_angle_label.setMinimumWidth(100)
  1621. self.slot_array_linear_angle_spinner = FCDoubleSpinner()
  1622. self.slot_array_linear_angle_spinner.set_precision(self.decimals)
  1623. self.slot_array_linear_angle_spinner.setSingleStep(1.0)
  1624. self.slot_array_linear_angle_spinner.setRange(-360.00, 360.00)
  1625. self.slot_array_linear_form.addRow(self.slot_array_linear_angle_label, self.slot_array_linear_angle_spinner)
  1626. self.slot_array_circular_frame = QtWidgets.QFrame()
  1627. self.slot_array_circular_frame.setContentsMargins(0, 0, 0, 0)
  1628. self.slot_array_box.addWidget(self.slot_array_circular_frame)
  1629. self.slot_array_circular_box = QtWidgets.QVBoxLayout()
  1630. self.slot_array_circular_box.setContentsMargins(0, 0, 0, 0)
  1631. self.slot_array_circular_frame.setLayout(self.slot_array_circular_box)
  1632. self.slot_array_direction_label = QtWidgets.QLabel('%s:' % _('Direction'))
  1633. self.slot_array_direction_label.setToolTip(_("Direction for circular array."
  1634. "Can be CW = clockwise or CCW = counter clockwise."))
  1635. self.slot_array_direction_label.setMinimumWidth(100)
  1636. self.slot_array_circular_form = QtWidgets.QFormLayout()
  1637. self.slot_array_circular_box.addLayout(self.slot_array_circular_form)
  1638. self.slot_array_direction_radio = RadioSet([{'label': _('CW'), 'value': 'CW'},
  1639. {'label': _('CCW'), 'value': 'CCW'}])
  1640. self.slot_array_circular_form.addRow(self.slot_array_direction_label, self.slot_array_direction_radio)
  1641. self.slot_array_angle_label = QtWidgets.QLabel('%s:' % _('Angle'))
  1642. self.slot_array_angle_label.setToolTip(_("Angle at which each element in circular array is placed."))
  1643. self.slot_array_angle_label.setMinimumWidth(100)
  1644. self.slot_array_angle_entry = FCDoubleSpinner()
  1645. self.slot_array_angle_entry.set_precision(self.decimals)
  1646. self.slot_array_angle_entry.setSingleStep(1)
  1647. self.slot_array_angle_entry.setRange(-360.00, 360.00)
  1648. self.slot_array_circular_form.addRow(self.slot_array_angle_label, self.slot_array_angle_entry)
  1649. self.slot_array_linear_angle_spinner.hide()
  1650. self.slot_array_linear_angle_label.hide()
  1651. self.slot_array_frame.hide()
  1652. self.tools_box.addStretch()
  1653. # ## Toolbar events and properties
  1654. self.tools_exc = {
  1655. "drill_select": {"button": self.app.ui.select_drill_btn, "constructor": FCDrillSelect},
  1656. "drill_add": {"button": self.app.ui.add_drill_btn, "constructor": FCDrillAdd},
  1657. "drill_array": {"button": self.app.ui.add_drill_array_btn, "constructor": FCDrillArray},
  1658. "slot_add": {"button": self.app.ui.add_slot_btn, "constructor": FCSlot},
  1659. "slot_array": {"button": self.app.ui.add_slot_array_btn, "constructor": FCSlotArray},
  1660. "drill_resize": {"button": self.app.ui.resize_drill_btn, "constructor": FCDrillResize},
  1661. "drill_copy": {"button": self.app.ui.copy_drill_btn, "constructor": FCDrillCopy},
  1662. "drill_move": {"button": self.app.ui.move_drill_btn, "constructor": FCDrillMove},
  1663. }
  1664. # ## Data
  1665. self.active_tool = None
  1666. self.in_action = False
  1667. self.storage_dict = {}
  1668. self.current_storage = []
  1669. # build the data from the Excellon point into a dictionary
  1670. # {tool_dia: [geometry_in_points]}
  1671. self.points_edit = {}
  1672. self.slot_points_edit = {}
  1673. self.sorted_diameters = []
  1674. self.new_drills = []
  1675. self.new_tools = {}
  1676. self.new_slots = []
  1677. # dictionary to store the tool_row and diameters in Tool_table
  1678. # it will be updated everytime self.build_ui() is called
  1679. self.olddia_newdia = {}
  1680. self.tool2tooldia = {}
  1681. # this will store the value for the last selected tool, for use after clicking on canvas when the selection
  1682. # is cleared but as a side effect also the selected tool is cleared
  1683. self.last_tool_selected = None
  1684. self.utility = []
  1685. # this will flag if the Editor "tools" are launched from key shortcuts (True) or from menu toolbar (False)
  1686. self.launched_from_shortcuts = False
  1687. # this var will store the state of the toolbar before starting the editor
  1688. self.toolbar_old_state = False
  1689. if self.units == 'MM':
  1690. self.tolerance = float(self.app.defaults["global_tolerance"])
  1691. else:
  1692. self.tolerance = float(self.app.defaults["global_tolerance"]) / 20
  1693. self.app.ui.delete_drill_btn.triggered.connect(self.on_delete_btn)
  1694. self.name_entry.returnPressed.connect(self.on_name_activate)
  1695. self.addtool_btn.clicked.connect(self.on_tool_add)
  1696. self.addtool_entry.editingFinished.connect(self.on_tool_add)
  1697. self.deltool_btn.clicked.connect(self.on_tool_delete)
  1698. # self.tools_table_exc.selectionModel().currentChanged.connect(self.on_row_selected)
  1699. self.tools_table_exc.cellPressed.connect(self.on_row_selected)
  1700. self.array_type_combo.currentIndexChanged.connect(self.on_array_type_combo)
  1701. self.slot_array_type_combo.currentIndexChanged.connect(self.on_slot_array_type_combo)
  1702. self.drill_axis_radio.activated_custom.connect(self.on_linear_angle_radio)
  1703. self.slot_axis_radio.activated_custom.connect(self.on_slot_angle_radio)
  1704. self.slot_array_axis_radio.activated_custom.connect(self.on_slot_array_linear_angle_radio)
  1705. self.app.ui.exc_add_array_drill_menuitem.triggered.connect(self.exc_add_drill_array)
  1706. self.app.ui.exc_add_drill_menuitem.triggered.connect(self.exc_add_drill)
  1707. self.app.ui.exc_add_array_slot_menuitem.triggered.connect(self.exc_add_slot_array)
  1708. self.app.ui.exc_add_slot_menuitem.triggered.connect(self.exc_add_slot)
  1709. self.app.ui.exc_resize_drill_menuitem.triggered.connect(self.exc_resize_drills)
  1710. self.app.ui.exc_copy_drill_menuitem.triggered.connect(self.exc_copy_drills)
  1711. self.app.ui.exc_delete_drill_menuitem.triggered.connect(self.on_delete_btn)
  1712. self.app.ui.exc_move_drill_menuitem.triggered.connect(self.exc_move_drills)
  1713. self.exc_obj = None
  1714. # VisPy Visuals
  1715. if self.app.is_legacy is False:
  1716. self.shapes = self.app.plotcanvas.new_shape_collection(layers=1)
  1717. if self.app.plotcanvas.big_cursor is True:
  1718. self.tool_shape = self.app.plotcanvas.new_shape_collection(layers=1, line_width=2)
  1719. else:
  1720. self.tool_shape = self.app.plotcanvas.new_shape_collection(layers=1)
  1721. else:
  1722. from appGUI.PlotCanvasLegacy import ShapeCollectionLegacy
  1723. self.shapes = ShapeCollectionLegacy(obj=self, app=self.app, name='shapes_exc_editor')
  1724. self.tool_shape = ShapeCollectionLegacy(obj=self, app=self.app, name='tool_shapes_exc_editor')
  1725. self.app.pool_recreated.connect(self.pool_recreated)
  1726. # Remove from scene
  1727. self.shapes.enabled = False
  1728. self.tool_shape.enabled = False
  1729. # ## List of selected shapes.
  1730. self.selected = []
  1731. self.move_timer = QtCore.QTimer()
  1732. self.move_timer.setSingleShot(True)
  1733. self.key = None # Currently pressed key
  1734. self.modifiers = None
  1735. self.x = None # Current mouse cursor pos
  1736. self.y = None
  1737. # Current snapped mouse pos
  1738. self.snap_x = None
  1739. self.snap_y = None
  1740. self.pos = None
  1741. self.complete = False
  1742. def make_callback(thetool):
  1743. def f():
  1744. self.on_tool_select(thetool)
  1745. return f
  1746. for tool in self.tools_exc:
  1747. self.tools_exc[tool]["button"].triggered.connect(make_callback(tool)) # Events
  1748. self.tools_exc[tool]["button"].setCheckable(True) # Checkable
  1749. self.options = {
  1750. "global_gridx": 0.1,
  1751. "global_gridy": 0.1,
  1752. "snap_max": 0.05,
  1753. "grid_snap": True,
  1754. "corner_snap": False,
  1755. "grid_gap_link": True
  1756. }
  1757. self.options.update(self.app.options)
  1758. for option in self.options:
  1759. if option in self.app.options:
  1760. self.options[option] = self.app.options[option]
  1761. self.data_defaults = {
  1762. "plot": self.app.defaults["excellon_plot"],
  1763. "solid": self.app.defaults["excellon_solid"],
  1764. "operation": self.app.defaults["excellon_operation"],
  1765. "milling_type": self.app.defaults["excellon_milling_type"],
  1766. "milling_dia": self.app.defaults["excellon_milling_dia"],
  1767. "cutz": self.app.defaults["excellon_cutz"],
  1768. "multidepth": self.app.defaults["excellon_multidepth"],
  1769. "depthperpass": self.app.defaults["excellon_depthperpass"],
  1770. "travelz": self.app.defaults["excellon_travelz"],
  1771. "feedrate": self.app.defaults["geometry_feedrate"],
  1772. "feedrate_z": self.app.defaults["excellon_feedrate_z"],
  1773. "feedrate_rapid": self.app.defaults["excellon_feedrate_rapid"],
  1774. "tooldia": self.app.defaults["excellon_tooldia"],
  1775. "slot_tooldia": self.app.defaults["excellon_slot_tooldia"],
  1776. "toolchange": self.app.defaults["excellon_toolchange"],
  1777. "toolchangez": self.app.defaults["excellon_toolchangez"],
  1778. "toolchangexy": self.app.defaults["excellon_toolchangexy"],
  1779. "extracut": self.app.defaults["geometry_extracut"],
  1780. "extracut_length": self.app.defaults["geometry_extracut_length"],
  1781. "endz": self.app.defaults["excellon_endz"],
  1782. "endxy": self.app.defaults["excellon_endxy"],
  1783. "startz": self.app.defaults["excellon_startz"],
  1784. "offset": self.app.defaults["excellon_offset"],
  1785. "spindlespeed": self.app.defaults["excellon_spindlespeed"],
  1786. "dwell": self.app.defaults["excellon_dwell"],
  1787. "dwelltime": self.app.defaults["excellon_dwelltime"],
  1788. "ppname_e": self.app.defaults["excellon_ppname_e"],
  1789. "ppname_g": self.app.defaults["geometry_ppname_g"],
  1790. "z_pdepth": self.app.defaults["excellon_z_pdepth"],
  1791. "feedrate_probe": self.app.defaults["excellon_feedrate_probe"],
  1792. "optimization_type": self.app.defaults["excellon_optimization_type"]
  1793. }
  1794. self.rtree_exc_index = rtindex.Index()
  1795. # flag to show if the object was modified
  1796. self.is_modified = False
  1797. self.edited_obj_name = ""
  1798. # variable to store the total amount of drills per job
  1799. self.tot_drill_cnt = 0
  1800. self.tool_row = 0
  1801. # variable to store the total amount of slots per job
  1802. self.tot_slot_cnt = 0
  1803. self.tool_row_slots = 0
  1804. self.tool_row = 0
  1805. # store the status of the editor so the Delete at object level will not work until the edit is finished
  1806. self.editor_active = False
  1807. # def entry2option(option, entry):
  1808. # self.options[option] = float(entry.text())
  1809. # Event signals disconnect id holders
  1810. self.mp = None
  1811. self.mm = None
  1812. self.mr = None
  1813. # store the status of the editor so the Delete at object level will not work until the edit is finished
  1814. self.editor_active = False
  1815. log.debug("Initialization of the Excellon Editor is finished ...")
  1816. def pool_recreated(self, pool):
  1817. self.shapes.pool = pool
  1818. self.tool_shape.pool = pool
  1819. @staticmethod
  1820. def make_storage():
  1821. # ## Shape storage.
  1822. storage = FlatCAMRTreeStorage()
  1823. storage.get_points = DrawToolShape.get_pts
  1824. return storage
  1825. def set_ui(self):
  1826. # updated units
  1827. self.units = self.app.defaults['units'].upper()
  1828. self.olddia_newdia.clear()
  1829. self.tool2tooldia.clear()
  1830. # build the self.points_edit dict {dimaters: [point_list]}
  1831. for drill in self.exc_obj.drills:
  1832. if drill['tool'] in self.exc_obj.tools:
  1833. tool_dia = float('%.*f' % (self.decimals, self.exc_obj.tools[drill['tool']]['C']))
  1834. try:
  1835. self.points_edit[tool_dia].append(drill['point'])
  1836. except KeyError:
  1837. self.points_edit[tool_dia] = [drill['point']]
  1838. # build the self.slot_points_edit dict {dimaters: {"start": Point, "stop": Point}}
  1839. for slot in self.exc_obj.slots:
  1840. if slot['tool'] in self.exc_obj.tools:
  1841. tool_dia = float('%.*f' % (self.decimals, self.exc_obj.tools[slot['tool']]['C']))
  1842. try:
  1843. self.slot_points_edit[tool_dia].append({
  1844. "start": slot["start"],
  1845. "stop": slot["stop"]
  1846. })
  1847. except KeyError:
  1848. self.slot_points_edit[tool_dia] = [{
  1849. "start": slot["start"],
  1850. "stop": slot["stop"]
  1851. }]
  1852. # update the olddia_newdia dict to make sure we have an updated state of the tool_table
  1853. for key in self.points_edit:
  1854. self.olddia_newdia[key] = key
  1855. for key in self.slot_points_edit:
  1856. if key not in self.olddia_newdia:
  1857. self.olddia_newdia[key] = key
  1858. sort_temp = []
  1859. for diam in self.olddia_newdia:
  1860. sort_temp.append(float(diam))
  1861. self.sorted_diameters = sorted(sort_temp)
  1862. # populate self.intial_table_rows dict with the tool number as keys and tool diameters as values
  1863. if self.exc_obj.diameterless is False:
  1864. for i in range(len(self.sorted_diameters)):
  1865. tt_dia = self.sorted_diameters[i]
  1866. self.tool2tooldia[i + 1] = tt_dia
  1867. else:
  1868. # the Excellon object has diameters that are bogus information, added by the application because the
  1869. # Excellon file has no tool diameter information. In this case do not order the diameter in the table
  1870. # but use the real order found in the exc_obj.tools
  1871. for k, v in self.exc_obj.tools.items():
  1872. tool_dia = float('%.*f' % (self.decimals, v['C']))
  1873. self.tool2tooldia[int(k)] = tool_dia
  1874. # Init appGUI
  1875. self.addtool_entry.set_value(float(self.app.defaults['excellon_editor_newdia']))
  1876. self.drill_array_size_entry.set_value(int(self.app.defaults['excellon_editor_array_size']))
  1877. self.drill_axis_radio.set_value(self.app.defaults['excellon_editor_lin_dir'])
  1878. self.drill_pitch_entry.set_value(float(self.app.defaults['excellon_editor_lin_pitch']))
  1879. self.linear_angle_spinner.set_value(float(self.app.defaults['excellon_editor_lin_angle']))
  1880. self.drill_direction_radio.set_value(self.app.defaults['excellon_editor_circ_dir'])
  1881. self.drill_angle_entry.set_value(float(self.app.defaults['excellon_editor_circ_angle']))
  1882. self.slot_length_entry.set_value(float(self.app.defaults['excellon_editor_slot_length']))
  1883. self.slot_axis_radio.set_value(self.app.defaults['excellon_editor_slot_direction'])
  1884. self.slot_angle_spinner.set_value(float(self.app.defaults['excellon_editor_slot_angle']))
  1885. self.slot_array_size_entry.set_value(int(self.app.defaults['excellon_editor_slot_array_size']))
  1886. self.slot_array_axis_radio.set_value(self.app.defaults['excellon_editor_slot_lin_dir'])
  1887. self.slot_array_pitch_entry.set_value(float(self.app.defaults['excellon_editor_slot_lin_pitch']))
  1888. self.slot_array_linear_angle_spinner.set_value(float(self.app.defaults['excellon_editor_slot_lin_angle']))
  1889. self.slot_array_direction_radio.set_value(self.app.defaults['excellon_editor_slot_circ_dir'])
  1890. self.slot_array_angle_entry.set_value(float(self.app.defaults['excellon_editor_slot_circ_angle']))
  1891. self.slot_array_circular_frame.hide()
  1892. self.slot_array_linear_frame.show()
  1893. def build_ui(self, first_run=None):
  1894. try:
  1895. # if connected, disconnect the signal from the slot on item_changed as it creates issues
  1896. self.tools_table_exc.itemChanged.disconnect()
  1897. except (TypeError, AttributeError):
  1898. pass
  1899. try:
  1900. self.tools_table_exc.cellPressed.disconnect()
  1901. except (TypeError, AttributeError):
  1902. pass
  1903. # updated units
  1904. self.units = self.app.defaults['units'].upper()
  1905. # make a new name for the new Excellon object (the one with edited content)
  1906. self.edited_obj_name = self.exc_obj.options['name']
  1907. self.name_entry.set_value(self.edited_obj_name)
  1908. sort_temp = []
  1909. for diam in self.olddia_newdia:
  1910. sort_temp.append(float(diam))
  1911. self.sorted_diameters = sorted(sort_temp)
  1912. # here, self.sorted_diameters will hold in a oblique way, the number of tools
  1913. n = len(self.sorted_diameters)
  1914. # we have (n+2) rows because there are 'n' tools, each a row, plus the last 2 rows for totals.
  1915. self.tools_table_exc.setRowCount(n + 2)
  1916. self.tot_drill_cnt = 0
  1917. self.tot_slot_cnt = 0
  1918. self.tool_row = 0
  1919. # this variable will serve as the real tool_number
  1920. tool_id = 0
  1921. for tool_no in self.sorted_diameters:
  1922. tool_id += 1
  1923. drill_cnt = 0 # variable to store the nr of drills per tool
  1924. slot_cnt = 0 # variable to store the nr of slots per tool
  1925. # Find no of drills for the current tool
  1926. for tool_dia in self.points_edit:
  1927. if float(tool_dia) == tool_no:
  1928. drill_cnt = len(self.points_edit[tool_dia])
  1929. self.tot_drill_cnt += drill_cnt
  1930. try:
  1931. # Find no of slots for the current tool
  1932. for slot in self.slot_points_edit:
  1933. if slot['tool'] == tool_no:
  1934. slot_cnt += 1
  1935. self.tot_slot_cnt += slot_cnt
  1936. except AttributeError:
  1937. # log.debug("No slots in the Excellon file")
  1938. # Find no of slots for the current tool
  1939. for tool_dia in self.slot_points_edit:
  1940. if float(tool_dia) == tool_no:
  1941. slot_cnt = len(self.slot_points_edit[tool_dia])
  1942. self.tot_slot_cnt += slot_cnt
  1943. idd = QtWidgets.QTableWidgetItem('%d' % int(tool_id))
  1944. idd.setFlags(QtCore.Qt.ItemIsSelectable | QtCore.Qt.ItemIsEnabled)
  1945. self.tools_table_exc.setItem(self.tool_row, 0, idd) # Tool name/id
  1946. # Make sure that the drill diameter when in MM is with no more than 2 decimals
  1947. # There are no drill bits in MM with more than 2 decimals diameter
  1948. # For INCH the decimals should be no more than 4. There are no drills under 10mils
  1949. dia = QtWidgets.QTableWidgetItem('%.*f' % (self.decimals, self.olddia_newdia[tool_no]))
  1950. dia.setFlags(QtCore.Qt.ItemIsEnabled)
  1951. drill_count = QtWidgets.QTableWidgetItem('%d' % drill_cnt)
  1952. drill_count.setFlags(QtCore.Qt.ItemIsEnabled)
  1953. # if the slot number is zero is better to not clutter the GUI with zero's so we print a space
  1954. if slot_cnt > 0:
  1955. slot_count = QtWidgets.QTableWidgetItem('%d' % slot_cnt)
  1956. else:
  1957. slot_count = QtWidgets.QTableWidgetItem('')
  1958. slot_count.setFlags(QtCore.Qt.ItemIsEnabled)
  1959. self.tools_table_exc.setItem(self.tool_row, 1, dia) # Diameter
  1960. self.tools_table_exc.setItem(self.tool_row, 2, drill_count) # Number of drills per tool
  1961. self.tools_table_exc.setItem(self.tool_row, 3, slot_count) # Number of drills per tool
  1962. if first_run is True:
  1963. # set now the last tool selected
  1964. self.last_tool_selected = int(tool_id)
  1965. self.tool_row += 1
  1966. # make the diameter column editable
  1967. for row in range(self.tool_row):
  1968. self.tools_table_exc.item(row, 1).setFlags(
  1969. QtCore.Qt.ItemIsEditable | QtCore.Qt.ItemIsSelectable | QtCore.Qt.ItemIsEnabled)
  1970. self.tools_table_exc.item(row, 2).setForeground(QtGui.QColor(0, 0, 0))
  1971. self.tools_table_exc.item(row, 3).setForeground(QtGui.QColor(0, 0, 0))
  1972. # add a last row with the Total number of drills
  1973. # HACK: made the text on this cell '9999' such it will always be the one before last when sorting
  1974. # it will have to have the foreground color (font color) white
  1975. empty = QtWidgets.QTableWidgetItem('9998')
  1976. empty.setForeground(QtGui.QColor(255, 255, 255))
  1977. empty.setFlags(empty.flags() ^ QtCore.Qt.ItemIsEnabled)
  1978. empty_b = QtWidgets.QTableWidgetItem('')
  1979. empty_b.setFlags(empty_b.flags() ^ QtCore.Qt.ItemIsEnabled)
  1980. label_tot_drill_count = QtWidgets.QTableWidgetItem(_('Total Drills'))
  1981. tot_drill_count = QtWidgets.QTableWidgetItem('%d' % self.tot_drill_cnt)
  1982. label_tot_drill_count.setFlags(label_tot_drill_count.flags() ^ QtCore.Qt.ItemIsEnabled)
  1983. tot_drill_count.setFlags(tot_drill_count.flags() ^ QtCore.Qt.ItemIsEnabled)
  1984. self.tools_table_exc.setItem(self.tool_row, 0, empty)
  1985. self.tools_table_exc.setItem(self.tool_row, 1, label_tot_drill_count)
  1986. self.tools_table_exc.setItem(self.tool_row, 2, tot_drill_count) # Total number of drills
  1987. self.tools_table_exc.setItem(self.tool_row, 3, empty_b)
  1988. font = QtGui.QFont()
  1989. font.setBold(True)
  1990. font.setWeight(75)
  1991. for k in [1, 2]:
  1992. self.tools_table_exc.item(self.tool_row, k).setForeground(QtGui.QColor(127, 0, 255))
  1993. self.tools_table_exc.item(self.tool_row, k).setFont(font)
  1994. self.tool_row += 1
  1995. # add a last row with the Total number of slots
  1996. # HACK: made the text on this cell '9999' such it will always be the last when sorting
  1997. # it will have to have the foreground color (font color) white
  1998. empty_2 = QtWidgets.QTableWidgetItem('9999')
  1999. empty_2.setForeground(QtGui.QColor(255, 255, 255))
  2000. empty_2.setFlags(empty_2.flags() ^ QtCore.Qt.ItemIsEnabled)
  2001. empty_3 = QtWidgets.QTableWidgetItem('')
  2002. empty_3.setFlags(empty_3.flags() ^ QtCore.Qt.ItemIsEnabled)
  2003. label_tot_slot_count = QtWidgets.QTableWidgetItem(_('Total Slots'))
  2004. tot_slot_count = QtWidgets.QTableWidgetItem('%d' % self.tot_slot_cnt)
  2005. label_tot_slot_count.setFlags(label_tot_slot_count.flags() ^ QtCore.Qt.ItemIsEnabled)
  2006. tot_slot_count.setFlags(tot_slot_count.flags() ^ QtCore.Qt.ItemIsEnabled)
  2007. self.tools_table_exc.setItem(self.tool_row, 0, empty_2)
  2008. self.tools_table_exc.setItem(self.tool_row, 1, label_tot_slot_count)
  2009. self.tools_table_exc.setItem(self.tool_row, 2, empty_3)
  2010. self.tools_table_exc.setItem(self.tool_row, 3, tot_slot_count) # Total number of slots
  2011. for kl in [1, 2, 3]:
  2012. self.tools_table_exc.item(self.tool_row, kl).setFont(font)
  2013. self.tools_table_exc.item(self.tool_row, kl).setForeground(QtGui.QColor(0, 70, 255))
  2014. # all the tools are selected by default
  2015. self.tools_table_exc.selectColumn(0)
  2016. #
  2017. self.tools_table_exc.resizeColumnsToContents()
  2018. self.tools_table_exc.resizeRowsToContents()
  2019. vertical_header = self.tools_table_exc.verticalHeader()
  2020. # vertical_header.setSectionResizeMode(QtWidgets.QHeaderView.ResizeToContents)
  2021. vertical_header.hide()
  2022. self.tools_table_exc.setVerticalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff)
  2023. horizontal_header = self.tools_table_exc.horizontalHeader()
  2024. horizontal_header.setSectionResizeMode(0, QtWidgets.QHeaderView.ResizeToContents)
  2025. horizontal_header.setSectionResizeMode(1, QtWidgets.QHeaderView.Stretch)
  2026. horizontal_header.setSectionResizeMode(2, QtWidgets.QHeaderView.ResizeToContents)
  2027. horizontal_header.setSectionResizeMode(3, QtWidgets.QHeaderView.ResizeToContents)
  2028. # horizontal_header.setStretchLastSection(True)
  2029. # self.tools_table_exc.setSortingEnabled(True)
  2030. # sort by tool diameter
  2031. self.tools_table_exc.sortItems(1)
  2032. # After sorting, to display also the number of drills in the right row we need to update self.initial_rows dict
  2033. # with the new order. Of course the last 2 rows in the tool table are just for display therefore we don't
  2034. # use them
  2035. self.tool2tooldia.clear()
  2036. for row in range(self.tools_table_exc.rowCount() - 2):
  2037. tool = int(self.tools_table_exc.item(row, 0).text())
  2038. diameter = float(self.tools_table_exc.item(row, 1).text())
  2039. self.tool2tooldia[tool] = diameter
  2040. self.tools_table_exc.setMinimumHeight(self.tools_table_exc.getHeight())
  2041. self.tools_table_exc.setMaximumHeight(self.tools_table_exc.getHeight())
  2042. # make sure no rows are selected so the user have to click the correct row, meaning selecting the correct tool
  2043. self.tools_table_exc.clearSelection()
  2044. # Remove anything else in the GUI Selected Tab
  2045. self.app.ui.selected_scroll_area.takeWidget()
  2046. # Put ourself in the GUI Selected Tab
  2047. self.app.ui.selected_scroll_area.setWidget(self.exc_edit_widget)
  2048. # Switch notebook to Selected page
  2049. self.app.ui.notebook.setCurrentWidget(self.app.ui.selected_tab)
  2050. # we reactivate the signals after the after the tool adding as we don't need to see the tool been populated
  2051. self.tools_table_exc.itemChanged.connect(self.on_tool_edit)
  2052. self.tools_table_exc.cellPressed.connect(self.on_row_selected)
  2053. def on_tool_add(self, tooldia=None):
  2054. self.is_modified = True
  2055. if tooldia:
  2056. tool_dia = tooldia
  2057. else:
  2058. try:
  2059. tool_dia = float(self.addtool_entry.get_value())
  2060. except ValueError:
  2061. # try to convert comma to decimal point. if it's still not working error message and return
  2062. try:
  2063. tool_dia = float(self.addtool_entry.get_value().replace(',', '.'))
  2064. except ValueError:
  2065. self.app.inform.emit('[ERROR_NOTCL] %s' %
  2066. _("Wrong value format entered, use a number."))
  2067. return
  2068. if tool_dia not in self.olddia_newdia:
  2069. storage_elem = FlatCAMGeoEditor.make_storage()
  2070. self.storage_dict[tool_dia] = storage_elem
  2071. # self.olddia_newdia dict keeps the evidence on current tools diameters as keys and gets updated on values
  2072. # each time a tool diameter is edited or added
  2073. self.olddia_newdia[tool_dia] = tool_dia
  2074. else:
  2075. self.app.inform.emit('[WARNING_NOTCL] %s' % _("Tool already in the original or actual tool list.\n"
  2076. "Save and reedit Excellon if you need to add this tool. "))
  2077. return
  2078. # since we add a new tool, we update also the initial state of the tool_table through it's dictionary
  2079. # we add a new entry in the tool2tooldia dict
  2080. self.tool2tooldia[len(self.olddia_newdia)] = tool_dia
  2081. self.app.inform.emit('[success] %s: %s %s' %
  2082. (_("Added new tool with dia"), str(tool_dia), str(self.units)))
  2083. self.build_ui()
  2084. # make a quick sort through the tool2tooldia dict so we find which row to select
  2085. row_to_be_selected = None
  2086. for key in sorted(self.tool2tooldia):
  2087. if self.tool2tooldia[key] == tool_dia:
  2088. row_to_be_selected = int(key) - 1
  2089. self.last_tool_selected = int(key)
  2090. break
  2091. try:
  2092. self.tools_table_exc.selectRow(row_to_be_selected)
  2093. except TypeError as e:
  2094. log.debug("FlatCAMExcEditor.on_tool_add() --> %s" % str(e))
  2095. def on_tool_delete(self, dia=None):
  2096. self.is_modified = True
  2097. deleted_tool_dia_list = []
  2098. try:
  2099. if dia is None or dia is False:
  2100. # deleted_tool_dia = float(self.tools_table_exc.item(self.tools_table_exc.currentRow(), 1).text())
  2101. for index in self.tools_table_exc.selectionModel().selectedRows():
  2102. row = index.row()
  2103. deleted_tool_dia_list.append(float(self.tools_table_exc.item(row, 1).text()))
  2104. else:
  2105. if isinstance(dia, list):
  2106. for dd in dia:
  2107. deleted_tool_dia_list.append(float('%.*f' % (self.decimals, dd)))
  2108. else:
  2109. deleted_tool_dia_list.append(float('%.*f' % (self.decimals, dia)))
  2110. except Exception:
  2111. self.app.inform.emit('[WARNING_NOTCL] %s' % _("Select a tool in Tool Table"))
  2112. return
  2113. for deleted_tool_dia in deleted_tool_dia_list:
  2114. # delete the storage used for that tool
  2115. storage_elem = FlatCAMGeoEditor.make_storage()
  2116. self.storage_dict[deleted_tool_dia] = storage_elem
  2117. self.storage_dict.pop(deleted_tool_dia, None)
  2118. # I've added this flag_del variable because dictionary don't like
  2119. # having keys deleted while iterating through them
  2120. flag_del = []
  2121. # self.points_edit.pop(deleted_tool_dia, None)
  2122. for deleted_tool in self.tool2tooldia:
  2123. if self.tool2tooldia[deleted_tool] == deleted_tool_dia:
  2124. flag_del.append(deleted_tool)
  2125. if flag_del:
  2126. for tool_to_be_deleted in flag_del:
  2127. # delete the tool
  2128. self.tool2tooldia.pop(tool_to_be_deleted, None)
  2129. # delete also the drills from points_edit dict just in case we add the tool again,
  2130. # we don't want to show the number of drills from before was deleter
  2131. self.points_edit[deleted_tool_dia] = []
  2132. self.olddia_newdia.pop(deleted_tool_dia, None)
  2133. self.app.inform.emit('[success] %s: %s %s' %
  2134. (_("Deleted tool with diameter"), str(deleted_tool_dia), str(self.units)))
  2135. self.replot()
  2136. # self.app.inform.emit("Could not delete selected tool")
  2137. self.build_ui()
  2138. def on_tool_edit(self, item_changed):
  2139. # if connected, disconnect the signal from the slot on item_changed as it creates issues
  2140. try:
  2141. self.tools_table_exc.itemChanged.disconnect()
  2142. except TypeError:
  2143. pass
  2144. try:
  2145. self.tools_table_exc.cellPressed.disconnect()
  2146. except TypeError:
  2147. pass
  2148. # self.tools_table_exc.selectionModel().currentChanged.disconnect()
  2149. self.is_modified = True
  2150. # new_dia = None
  2151. try:
  2152. new_dia = float(self.tools_table_exc.currentItem().text())
  2153. except ValueError as e:
  2154. log.debug("FlatCAMExcEditor.on_tool_edit() --> %s" % str(e))
  2155. return
  2156. row_of_item_changed = self.tools_table_exc.currentRow()
  2157. # rows start with 0, tools start with 1 so we adjust the value by 1
  2158. key_in_tool2tooldia = row_of_item_changed + 1
  2159. old_dia = self.tool2tooldia[key_in_tool2tooldia]
  2160. # SOURCE storage
  2161. source_storage = self.storage_dict[old_dia]
  2162. # DESTINATION storage
  2163. # tool diameter is not used so we create a new tool with the desired diameter
  2164. if new_dia not in self.olddia_newdia:
  2165. destination_storage = FlatCAMGeoEditor.make_storage()
  2166. self.storage_dict[new_dia] = destination_storage
  2167. # self.olddia_newdia dict keeps the evidence on current tools diameters as keys and gets updated on values
  2168. # each time a tool diameter is edited or added
  2169. self.olddia_newdia[new_dia] = new_dia
  2170. else:
  2171. # tool diameter is already in use so we move the drills from the prior tool to the new tool
  2172. destination_storage = self.storage_dict[new_dia]
  2173. # since we add a new tool, we update also the intial state of the tool_table through it's dictionary
  2174. # we add a new entry in the tool2tooldia dict
  2175. self.tool2tooldia[len(self.olddia_newdia)] = new_dia
  2176. # CHANGE the elements geometry according to the new diameter
  2177. factor = new_dia / old_dia
  2178. new_geo = Polygon()
  2179. for shape_exc in source_storage.get_objects():
  2180. geo_list = []
  2181. if isinstance(shape_exc.geo, MultiLineString):
  2182. for subgeo in shape_exc.geo:
  2183. geo_list.append(affinity.scale(subgeo, xfact=factor, yfact=factor, origin='center'))
  2184. new_geo = MultiLineString(geo_list)
  2185. elif isinstance(shape_exc.geo, Polygon):
  2186. # I don't have any info regarding the angle of the slot geometry, nor how thick it is or
  2187. # how long it is given the angle. So I will have to make an approximation because
  2188. # we need to conserve the slot length, we only resize the diameter for the tool
  2189. # Therefore scaling won't work and buffering will not work either.
  2190. # First we get the Linestring that is one that the original slot is built around with the
  2191. # tool having the diameter sel_dia
  2192. poly = shape_exc.geo
  2193. xmin, ymin, xmax, ymax = poly.bounds
  2194. # a line that is certain to be bigger than our slot because it's the diagonal
  2195. # of it's bounding box
  2196. poly_diagonal = LineString([(xmin, ymin), (xmax, ymax)])
  2197. poly_centroid = poly.centroid
  2198. # center of the slot geometry
  2199. poly_center = (poly_centroid.x, poly_centroid.y)
  2200. # make a list of intersections with the rotated line
  2201. list_of_cuttings = []
  2202. for angle in range(0, 359, 1):
  2203. rot_poly_diagonal = affinity.rotate(poly_diagonal, angle=angle, origin=poly_center)
  2204. cut_line = rot_poly_diagonal.intersection(poly)
  2205. cut_line_len = cut_line.length
  2206. list_of_cuttings.append(
  2207. (cut_line_len, cut_line)
  2208. )
  2209. # find the cut_line with the maximum length which is the LineString for which the start
  2210. # and stop point are the start and stop point of the slot as in the Gerber file
  2211. cut_line_with_max_length = max(list_of_cuttings, key=lambda i: i[0])[1]
  2212. # find the coordinates of this line
  2213. cut_line_with_max_length_coords = list(cut_line_with_max_length.coords)
  2214. # extract the first and last point of the line and build some buffered polygon circles
  2215. # around them
  2216. start_pt = Point(cut_line_with_max_length_coords[0])
  2217. stop_pt = Point(cut_line_with_max_length_coords[1])
  2218. start_cut_geo = start_pt.buffer(new_dia / 2)
  2219. stop_cut_geo = stop_pt.buffer(new_dia / 2)
  2220. # and we cut the above circle polygons from our line and get in this way a line around
  2221. # which we can build the new slot by buffering with the new tool diameter
  2222. new_line = cut_line_with_max_length.difference(start_cut_geo)
  2223. new_line = new_line.difference(stop_cut_geo)
  2224. # create the geometry for the resized slot by buffering with half of the
  2225. # new diameter value: new_dia
  2226. new_geo = new_line.buffer(new_dia / 2)
  2227. try:
  2228. self.points_edit.pop(old_dia, None)
  2229. except KeyError:
  2230. pass
  2231. try:
  2232. self.slot_points_edit.pop(old_dia, None)
  2233. except KeyError:
  2234. pass
  2235. # add bogus drill/slots points (for total count of drills/slots)
  2236. # for drills
  2237. if isinstance(shape_exc.geo, MultiLineString):
  2238. if new_dia not in self.points_edit:
  2239. self.points_edit[new_dia] = [(0, 0)]
  2240. else:
  2241. self.points_edit[new_dia].append((0, 0))
  2242. # for slots
  2243. if isinstance(shape_exc.geo, Polygon):
  2244. if new_dia not in self.slot_points_edit:
  2245. self.slot_points_edit[new_dia] = [(0, 0)]
  2246. else:
  2247. self.slot_points_edit[new_dia].append((0, 0))
  2248. self.add_exc_shape(shape=DrawToolShape(new_geo), storage=destination_storage)
  2249. # update the UI and the CANVAS
  2250. self.build_ui()
  2251. self.replot()
  2252. # delete the old tool
  2253. self.on_tool_delete(dia=old_dia)
  2254. # we reactivate the signals after the after the tool editing
  2255. self.tools_table_exc.itemChanged.connect(self.on_tool_edit)
  2256. self.tools_table_exc.cellPressed.connect(self.on_row_selected)
  2257. self.app.inform.emit('[success] %s' %
  2258. _("Done. Tool edit completed."))
  2259. # self.tools_table_exc.selectionModel().currentChanged.connect(self.on_row_selected)
  2260. def on_name_activate(self):
  2261. self.edited_obj_name = self.name_entry.get_value()
  2262. def activate(self):
  2263. # adjust the status of the menu entries related to the editor
  2264. self.app.ui.menueditedit.setDisabled(True)
  2265. self.app.ui.menueditok.setDisabled(False)
  2266. # adjust the visibility of some of the canvas context menu
  2267. self.app.ui.popmenu_edit.setVisible(False)
  2268. self.app.ui.popmenu_save.setVisible(True)
  2269. self.connect_canvas_event_handlers()
  2270. # initialize working objects
  2271. self.storage_dict = {}
  2272. self.current_storage = []
  2273. self.points_edit = {}
  2274. self.sorted_diameters = []
  2275. self.new_drills = []
  2276. self.new_tools = {}
  2277. self.new_slots = []
  2278. self.olddia_newdia = {}
  2279. self.shapes.enabled = True
  2280. self.tool_shape.enabled = True
  2281. # self.app.app_cursor.enabled = True
  2282. self.app.ui.corner_snap_btn.setVisible(True)
  2283. self.app.ui.snap_magnet.setVisible(True)
  2284. self.app.ui.exc_editor_menu.setDisabled(False)
  2285. self.app.ui.exc_editor_menu.menuAction().setVisible(True)
  2286. self.app.ui.update_obj_btn.setEnabled(True)
  2287. self.app.ui.e_editor_cmenu.setEnabled(True)
  2288. self.app.ui.exc_edit_toolbar.setDisabled(False)
  2289. self.app.ui.exc_edit_toolbar.setVisible(True)
  2290. # self.app.ui.status_toolbar.setDisabled(False)
  2291. # start with GRID toolbar activated
  2292. if self.app.ui.grid_snap_btn.isChecked() is False:
  2293. self.app.ui.grid_snap_btn.trigger()
  2294. self.app.ui.popmenu_disable.setVisible(False)
  2295. self.app.ui.cmenu_newmenu.menuAction().setVisible(False)
  2296. self.app.ui.popmenu_properties.setVisible(False)
  2297. self.app.ui.e_editor_cmenu.menuAction().setVisible(True)
  2298. self.app.ui.g_editor_cmenu.menuAction().setVisible(False)
  2299. self.app.ui.grb_editor_cmenu.menuAction().setVisible(False)
  2300. # Tell the App that the editor is active
  2301. self.editor_active = True
  2302. # show the UI
  2303. self.drills_frame.show()
  2304. def deactivate(self):
  2305. try:
  2306. QtGui.QGuiApplication.restoreOverrideCursor()
  2307. except Exception:
  2308. pass
  2309. # adjust the status of the menu entries related to the editor
  2310. self.app.ui.menueditedit.setDisabled(False)
  2311. self.app.ui.menueditok.setDisabled(True)
  2312. # adjust the visibility of some of the canvas context menu
  2313. self.app.ui.popmenu_edit.setVisible(True)
  2314. self.app.ui.popmenu_save.setVisible(False)
  2315. self.disconnect_canvas_event_handlers()
  2316. self.clear()
  2317. self.app.ui.exc_edit_toolbar.setDisabled(True)
  2318. self.app.ui.corner_snap_btn.setVisible(False)
  2319. self.app.ui.snap_magnet.setVisible(False)
  2320. # set the Editor Toolbar visibility to what was before entering in the Editor
  2321. self.app.ui.exc_edit_toolbar.setVisible(False) if self.toolbar_old_state is False \
  2322. else self.app.ui.exc_edit_toolbar.setVisible(True)
  2323. # Disable visuals
  2324. self.shapes.enabled = False
  2325. self.tool_shape.enabled = False
  2326. # self.app.app_cursor.enabled = False
  2327. # Tell the app that the editor is no longer active
  2328. self.editor_active = False
  2329. self.app.ui.exc_editor_menu.setDisabled(True)
  2330. self.app.ui.exc_editor_menu.menuAction().setVisible(False)
  2331. self.app.ui.update_obj_btn.setEnabled(False)
  2332. self.app.ui.popmenu_disable.setVisible(True)
  2333. self.app.ui.cmenu_newmenu.menuAction().setVisible(True)
  2334. self.app.ui.popmenu_properties.setVisible(True)
  2335. self.app.ui.g_editor_cmenu.menuAction().setVisible(False)
  2336. self.app.ui.e_editor_cmenu.menuAction().setVisible(False)
  2337. self.app.ui.grb_editor_cmenu.menuAction().setVisible(False)
  2338. # Show original geometry
  2339. if self.exc_obj:
  2340. self.exc_obj.visible = True
  2341. # hide the UI
  2342. self.drills_frame.hide()
  2343. def connect_canvas_event_handlers(self):
  2344. # ## Canvas events
  2345. # first connect to new, then disconnect the old handlers
  2346. # don't ask why but if there is nothing connected I've seen issues
  2347. self.mp = self.canvas.graph_event_connect('mouse_press', self.on_canvas_click)
  2348. self.mm = self.canvas.graph_event_connect('mouse_move', self.on_canvas_move)
  2349. self.mr = self.canvas.graph_event_connect('mouse_release', self.on_exc_click_release)
  2350. # make sure that the shortcuts key and mouse events will no longer be linked to the methods from FlatCAMApp
  2351. # but those from FlatCAMGeoEditor
  2352. if self.app.is_legacy is False:
  2353. self.app.plotcanvas.graph_event_disconnect('mouse_press', self.app.on_mouse_click_over_plot)
  2354. self.app.plotcanvas.graph_event_disconnect('mouse_move', self.app.on_mouse_move_over_plot)
  2355. self.app.plotcanvas.graph_event_disconnect('mouse_release', self.app.on_mouse_click_release_over_plot)
  2356. self.app.plotcanvas.graph_event_disconnect('mouse_double_click', self.app.on_mouse_double_click_over_plot)
  2357. else:
  2358. self.app.plotcanvas.graph_event_disconnect(self.app.mp)
  2359. self.app.plotcanvas.graph_event_disconnect(self.app.mm)
  2360. self.app.plotcanvas.graph_event_disconnect(self.app.mr)
  2361. self.app.plotcanvas.graph_event_disconnect(self.app.mdc)
  2362. self.app.collection.view.clicked.disconnect()
  2363. self.app.ui.popmenu_copy.triggered.disconnect()
  2364. self.app.ui.popmenu_delete.triggered.disconnect()
  2365. self.app.ui.popmenu_move.triggered.disconnect()
  2366. self.app.ui.popmenu_copy.triggered.connect(self.exc_copy_drills)
  2367. self.app.ui.popmenu_delete.triggered.connect(self.on_delete_btn)
  2368. self.app.ui.popmenu_move.triggered.connect(self.exc_move_drills)
  2369. # Excellon Editor
  2370. self.app.ui.drill.triggered.connect(self.exc_add_drill)
  2371. self.app.ui.drill_array.triggered.connect(self.exc_add_drill_array)
  2372. def disconnect_canvas_event_handlers(self):
  2373. # we restore the key and mouse control to FlatCAMApp method
  2374. # first connect to new, then disconnect the old handlers
  2375. # don't ask why but if there is nothing connected I've seen issues
  2376. self.app.mp = self.app.plotcanvas.graph_event_connect('mouse_press', self.app.on_mouse_click_over_plot)
  2377. self.app.mm = self.app.plotcanvas.graph_event_connect('mouse_move', self.app.on_mouse_move_over_plot)
  2378. self.app.mr = self.app.plotcanvas.graph_event_connect('mouse_release',
  2379. self.app.on_mouse_click_release_over_plot)
  2380. self.app.mdc = self.app.plotcanvas.graph_event_connect('mouse_double_click',
  2381. self.app.on_mouse_double_click_over_plot)
  2382. self.app.collection.view.clicked.connect(self.app.collection.on_mouse_down)
  2383. if self.app.is_legacy is False:
  2384. self.canvas.graph_event_disconnect('mouse_press', self.on_canvas_click)
  2385. self.canvas.graph_event_disconnect('mouse_move', self.on_canvas_move)
  2386. self.canvas.graph_event_disconnect('mouse_release', self.on_exc_click_release)
  2387. else:
  2388. self.canvas.graph_event_disconnect(self.mp)
  2389. self.canvas.graph_event_disconnect(self.mm)
  2390. self.canvas.graph_event_disconnect(self.mr)
  2391. try:
  2392. self.app.ui.popmenu_copy.triggered.disconnect(self.exc_copy_drills)
  2393. except (TypeError, AttributeError):
  2394. pass
  2395. try:
  2396. self.app.ui.popmenu_delete.triggered.disconnect(self.on_delete_btn)
  2397. except (TypeError, AttributeError):
  2398. pass
  2399. try:
  2400. self.app.ui.popmenu_move.triggered.disconnect(self.exc_move_drills)
  2401. except (TypeError, AttributeError):
  2402. pass
  2403. self.app.ui.popmenu_copy.triggered.connect(self.app.on_copy_command)
  2404. self.app.ui.popmenu_delete.triggered.connect(self.app.on_delete)
  2405. self.app.ui.popmenu_move.triggered.connect(self.app.obj_move)
  2406. # Excellon Editor
  2407. try:
  2408. self.app.ui.drill.triggered.disconnect(self.exc_add_drill)
  2409. except (TypeError, AttributeError):
  2410. pass
  2411. try:
  2412. self.app.ui.drill_array.triggered.disconnect(self.exc_add_drill_array)
  2413. except (TypeError, AttributeError):
  2414. pass
  2415. try:
  2416. self.app.jump_signal.disconnect()
  2417. except (TypeError, AttributeError):
  2418. pass
  2419. def clear(self):
  2420. self.active_tool = None
  2421. # self.shape_buffer = []
  2422. self.selected = []
  2423. self.points_edit = {}
  2424. self.new_tools = {}
  2425. self.new_drills = []
  2426. # self.storage_dict = {}
  2427. self.shapes.clear(update=True)
  2428. self.tool_shape.clear(update=True)
  2429. # self.storage = FlatCAMExcEditor.make_storage()
  2430. self.replot()
  2431. def edit_fcexcellon(self, exc_obj):
  2432. """
  2433. Imports the geometry from the given FlatCAM Excellon object
  2434. into the editor.
  2435. :param exc_obj: ExcellonObject object
  2436. :return: None
  2437. """
  2438. assert isinstance(exc_obj, Excellon), \
  2439. "Expected an Excellon Object, got %s" % type(exc_obj)
  2440. self.deactivate()
  2441. self.activate()
  2442. # Hide original geometry
  2443. self.exc_obj = exc_obj
  2444. exc_obj.visible = False
  2445. self.points_edit = {}
  2446. self.slot_points_edit = {}
  2447. # Set selection tolerance
  2448. # DrawToolShape.tolerance = fc_excellon.drawing_tolerance * 10
  2449. self.select_tool("drill_select")
  2450. # reset the tool table
  2451. self.tools_table_exc.clear()
  2452. self.tools_table_exc.setHorizontalHeaderLabels(['#', _('Diameter'), 'D', 'S'])
  2453. self.last_tool_selected = None
  2454. self.set_ui()
  2455. # now that we hava data, create the appGUI interface and add it to the Tool Tab
  2456. self.build_ui(first_run=True)
  2457. # we activate this after the initial build as we don't need to see the tool been populated
  2458. self.tools_table_exc.itemChanged.connect(self.on_tool_edit)
  2459. # build the geometry for each tool-diameter, each drill will be represented by a '+' symbol
  2460. # and then add it to the storage elements (each storage elements is a member of a list
  2461. for tool_dia in self.points_edit:
  2462. storage_elem = FlatCAMGeoEditor.make_storage()
  2463. for point in self.points_edit[tool_dia]:
  2464. # make a '+' sign, the line length is the tool diameter
  2465. start_hor_line = ((point.x - (tool_dia / 2)), point.y)
  2466. stop_hor_line = ((point.x + (tool_dia / 2)), point.y)
  2467. start_vert_line = (point.x, (point.y - (tool_dia / 2)))
  2468. stop_vert_line = (point.x, (point.y + (tool_dia / 2)))
  2469. shape_geo = MultiLineString([(start_hor_line, stop_hor_line), (start_vert_line, stop_vert_line)])
  2470. if shape_geo is not None:
  2471. self.add_exc_shape(DrawToolShape(shape_geo), storage_elem)
  2472. self.storage_dict[tool_dia] = storage_elem
  2473. # slots
  2474. for tool_dia in self.slot_points_edit:
  2475. buf_value = float(tool_dia) / 2
  2476. for elem_dict in self.slot_points_edit[tool_dia]:
  2477. line_geo = LineString([elem_dict['start'], elem_dict['stop']])
  2478. shape_geo = line_geo.buffer(buf_value)
  2479. if tool_dia not in self.storage_dict:
  2480. storage_elem = FlatCAMGeoEditor.make_storage()
  2481. self.storage_dict[tool_dia] = storage_elem
  2482. if shape_geo is not None:
  2483. self.add_exc_shape(DrawToolShape(shape_geo), self.storage_dict[tool_dia])
  2484. self.replot()
  2485. # add a first tool in the Tool Table but only if the Excellon Object is empty
  2486. if not self.tool2tooldia:
  2487. self.on_tool_add(tooldia=float('%.*f' % (self.decimals,
  2488. float(self.app.defaults['excellon_editor_newdia']))))
  2489. def update_fcexcellon(self, exc_obj):
  2490. """
  2491. Create a new Excellon object that contain the edited content of the source Excellon object
  2492. :param exc_obj: ExcellonObject
  2493. :return: None
  2494. """
  2495. # this dictionary will contain tooldia's as keys and a list of coordinates tuple as values
  2496. # the values of this dict are coordinates of the holes (drills)
  2497. edited_points = {}
  2498. """
  2499. - this dictionary will contain tooldia's as keys and a list of another dicts as values
  2500. - the dict element of the list has the structure
  2501. ================ ====================================
  2502. Key Value
  2503. ================ ====================================
  2504. start (Shapely.Point) Start point of the slot
  2505. stop (Shapely.Point) Stop point of the slot
  2506. ================ ====================================
  2507. """
  2508. edited_slot_points = {}
  2509. for storage_tooldia in self.storage_dict:
  2510. for x in self.storage_dict[storage_tooldia].get_objects():
  2511. if isinstance(x.geo, MultiLineString):
  2512. # all x.geo in self.storage_dict[storage] are MultiLinestring objects for drills
  2513. # each MultiLineString is made out of Linestrings
  2514. # select first Linestring object in the current MultiLineString
  2515. first_linestring = x.geo[0]
  2516. # get it's coordinates
  2517. first_linestring_coords = first_linestring.coords
  2518. x_coord = first_linestring_coords[0][0] + (float(first_linestring.length / 2))
  2519. y_coord = first_linestring_coords[0][1]
  2520. # create a tuple with the coordinates (x, y) and add it to the list that is the value of the
  2521. # edited_points dictionary
  2522. point = (x_coord, y_coord)
  2523. if storage_tooldia not in edited_points:
  2524. edited_points[storage_tooldia] = [point]
  2525. else:
  2526. edited_points[storage_tooldia].append(point)
  2527. elif isinstance(x.geo, Polygon):
  2528. # create a tuple with the points (start, stop) and add it to the list that is the value of the
  2529. # edited_points dictionary
  2530. # first determine the start and stop coordinates for the slot knowing the geometry and the tool
  2531. # diameter
  2532. radius = float(storage_tooldia) / 2
  2533. radius = radius - 0.0000001
  2534. poly = x.geo
  2535. poly = poly.buffer(-radius)
  2536. xmin, ymin, xmax, ymax = poly.bounds
  2537. line_one = LineString([(xmin, ymin), (xmax, ymax)]).intersection(poly).length
  2538. line_two = LineString([(xmin, ymax), (xmax, ymin)]).intersection(poly).length
  2539. if line_one < line_two:
  2540. point_elem = {
  2541. "start": (xmin, ymax),
  2542. "stop": (xmax, ymin)
  2543. }
  2544. else:
  2545. point_elem = {
  2546. "start": (xmin, ymin),
  2547. "stop": (xmax, ymax)
  2548. }
  2549. if storage_tooldia not in edited_slot_points:
  2550. edited_slot_points[storage_tooldia] = [point_elem]
  2551. else:
  2552. edited_slot_points[storage_tooldia].append(point_elem)
  2553. # recreate the drills and tools to be added to the new Excellon edited object
  2554. # first, we look in the tool table if one of the tool diameters was changed then
  2555. # append that a tuple formed by (old_dia, edited_dia) to a list
  2556. changed_key = set()
  2557. for initial_dia in self.olddia_newdia:
  2558. edited_dia = self.olddia_newdia[initial_dia]
  2559. if edited_dia != initial_dia:
  2560. # for drills
  2561. for old_dia in edited_points:
  2562. if old_dia == initial_dia:
  2563. changed_key.add((old_dia, edited_dia))
  2564. # for slots
  2565. for old_dia in edited_slot_points:
  2566. if old_dia == initial_dia:
  2567. changed_key.add((old_dia, edited_dia))
  2568. # if the initial_dia is not in edited_points it means it is a new tool with no drill points
  2569. # (and we have to add it)
  2570. # because in case we have drill points it will have to be already added in edited_points
  2571. # if initial_dia not in edited_points.keys():
  2572. # edited_points[initial_dia] = []
  2573. for el in changed_key:
  2574. edited_points[el[1]] = edited_points.pop(el[0])
  2575. edited_slot_points[el[1]] = edited_slot_points.pop(el[0])
  2576. # Let's sort the edited_points dictionary by keys (diameters) and store the result in a zipped list
  2577. # ordered_edited_points is a ordered list of tuples;
  2578. # element[0] of the tuple is the diameter and
  2579. # element[1] of the tuple is a list of coordinates (a tuple themselves)
  2580. ordered_edited_points = sorted(zip(edited_points.keys(), edited_points.values()))
  2581. current_tool = 0
  2582. for tool_dia in ordered_edited_points:
  2583. current_tool += 1
  2584. # create the self.tools for the new Excellon object (the one with edited content)
  2585. name = str(current_tool)
  2586. spec = {"C": float(tool_dia[0])}
  2587. self.new_tools[name] = spec
  2588. # add in self.tools the 'solid_geometry' key, the value (a list) is populated below
  2589. self.new_tools[name]['solid_geometry'] = []
  2590. # create the self.drills for the new Excellon object (the one with edited content)
  2591. for point in tool_dia[1]:
  2592. self.new_drills.append(
  2593. {
  2594. 'point': Point(point),
  2595. 'tool': str(current_tool)
  2596. }
  2597. )
  2598. # repopulate the 'solid_geometry' for each tool
  2599. poly = Point(point).buffer(float(tool_dia[0]) / 2.0, int(int(exc_obj.geo_steps_per_circle) / 4))
  2600. self.new_tools[name]['solid_geometry'].append(poly)
  2601. ordered_edited_slot_points = sorted(zip(edited_slot_points.keys(), edited_slot_points.values()))
  2602. for tool_dia in ordered_edited_slot_points:
  2603. tool_exist_flag = False
  2604. for tool in self.new_tools:
  2605. if tool_dia[0] == self.new_tools[tool]["C"]:
  2606. current_tool = tool
  2607. tool_exist_flag = True
  2608. break
  2609. if tool_exist_flag is False:
  2610. current_tool += 1
  2611. # create the self.tools for the new Excellon object (the one with edited content)
  2612. name = str(current_tool)
  2613. spec = {"C": float(tool_dia[0])}
  2614. self.new_tools[name] = spec
  2615. # add in self.tools the 'solid_geometry' key, the value (a list) is populated below
  2616. self.new_tools[name]['solid_geometry'] = []
  2617. # create the self.slots for the new Excellon object (the one with edited content)
  2618. for coord_dict in tool_dia[1]:
  2619. self.new_slots.append(
  2620. {
  2621. 'start': Point(coord_dict['start']),
  2622. 'stop': Point(coord_dict['stop']),
  2623. 'tool': str(current_tool)
  2624. }
  2625. )
  2626. # repopulate the 'solid_geometry' for each tool
  2627. poly = LineString([coord_dict['start'], coord_dict['stop']]).buffer(
  2628. float(tool_dia[0]) / 2.0, int(int(exc_obj.geo_steps_per_circle) / 4)
  2629. )
  2630. self.new_tools[str(current_tool)]['solid_geometry'].append(poly)
  2631. if self.is_modified is True:
  2632. if "_edit" in self.edited_obj_name:
  2633. try:
  2634. idd = int(self.edited_obj_name[-1]) + 1
  2635. self.edited_obj_name = self.edited_obj_name[:-1] + str(idd)
  2636. except ValueError:
  2637. self.edited_obj_name += "_1"
  2638. else:
  2639. self.edited_obj_name += "_edit"
  2640. self.app.worker_task.emit({'fcn': self.new_edited_excellon,
  2641. 'params': [self.edited_obj_name,
  2642. self.new_drills,
  2643. self.new_slots,
  2644. self.new_tools]})
  2645. return self.edited_obj_name
  2646. @staticmethod
  2647. def update_options(obj):
  2648. try:
  2649. if not obj.options:
  2650. obj.options = {}
  2651. obj.options['xmin'] = 0
  2652. obj.options['ymin'] = 0
  2653. obj.options['xmax'] = 0
  2654. obj.options['ymax'] = 0
  2655. return True
  2656. else:
  2657. return False
  2658. except AttributeError:
  2659. obj.options = {}
  2660. return True
  2661. def new_edited_excellon(self, outname, n_drills, n_slots, n_tools):
  2662. """
  2663. Creates a new Excellon object for the edited Excellon. Thread-safe.
  2664. :param outname: Name of the resulting object. None causes the
  2665. name to be that of the file.
  2666. :type outname: str
  2667. :param n_drills: The new Drills storage
  2668. :param n_slots: The new Slots storage
  2669. :param n_tools: The new Tools storage
  2670. :return: None
  2671. """
  2672. self.app.log.debug("Update the Excellon object with edited content. Source is %s" %
  2673. self.exc_obj.options['name'])
  2674. new_drills = n_drills
  2675. new_slots = n_slots
  2676. new_tools = n_tools
  2677. # How the object should be initialized
  2678. def obj_init(excellon_obj, app_obj):
  2679. excellon_obj.drills = deepcopy(new_drills)
  2680. excellon_obj.tools = deepcopy(new_tools)
  2681. excellon_obj.slots = deepcopy(new_slots)
  2682. excellon_obj.options['name'] = outname
  2683. # add a 'data' dict for each tool with the default values
  2684. for tool in excellon_obj.tools:
  2685. excellon_obj.tools[tool]['data'] = {}
  2686. excellon_obj.tools[tool]['data'].update(deepcopy(self.data_defaults))
  2687. try:
  2688. excellon_obj.create_geometry()
  2689. except KeyError:
  2690. self.app.inform.emit('[ERROR_NOTCL] %s' %
  2691. _("There are no Tools definitions in the file. Aborting Excellon creation.")
  2692. )
  2693. except Exception:
  2694. msg = '[ERROR] %s' % \
  2695. _("An internal error has ocurred. See Shell.\n")
  2696. msg += traceback.format_exc()
  2697. app_obj.inform.emit(msg)
  2698. return
  2699. with self.app.proc_container.new(_("Creating Excellon.")):
  2700. try:
  2701. edited_obj = self.app.app_obj.new_object("excellon", outname, obj_init)
  2702. edited_obj.source_file = self.app.export_excellon(obj_name=edited_obj.options['name'],
  2703. local_use=edited_obj,
  2704. filename=None,
  2705. use_thread=False)
  2706. except Exception as e:
  2707. self.deactivate()
  2708. log.error("Error on Edited object creation: %s" % str(e))
  2709. return
  2710. self.deactivate()
  2711. self.app.inform.emit('[success] %s' % _("Excellon editing finished."))
  2712. def on_tool_select(self, tool):
  2713. """
  2714. Behavior of the toolbar. Tool initialization.
  2715. :rtype : None
  2716. """
  2717. current_tool = tool
  2718. self.app.log.debug("on_tool_select('%s')" % tool)
  2719. if self.last_tool_selected is None and current_tool != 'drill_select':
  2720. # self.draw_app.select_tool('drill_select')
  2721. self.complete = True
  2722. current_tool = 'drill_select'
  2723. self.app.inform.emit('[WARNING_NOTCL] %s' %
  2724. _("Cancelled. There is no Tool/Drill selected"))
  2725. # This is to make the group behave as radio group
  2726. if current_tool in self.tools_exc:
  2727. if self.tools_exc[current_tool]["button"].isChecked():
  2728. self.app.log.debug("%s is checked." % current_tool)
  2729. for t in self.tools_exc:
  2730. if t != current_tool:
  2731. self.tools_exc[t]["button"].setChecked(False)
  2732. # this is where the Editor toolbar classes (button's) are instantiated
  2733. self.active_tool = self.tools_exc[current_tool]["constructor"](self)
  2734. # self.app.inform.emit(self.active_tool.start_msg)
  2735. else:
  2736. self.app.log.debug("%s is NOT checked." % current_tool)
  2737. for t in self.tools_exc:
  2738. self.tools_exc[t]["button"].setChecked(False)
  2739. self.select_tool('drill_select')
  2740. self.active_tool = FCDrillSelect(self)
  2741. def on_row_selected(self, row, col):
  2742. if col == 0:
  2743. key_modifier = QtWidgets.QApplication.keyboardModifiers()
  2744. if self.app.defaults["global_mselect_key"] == 'Control':
  2745. modifier_to_use = Qt.ControlModifier
  2746. else:
  2747. modifier_to_use = Qt.ShiftModifier
  2748. if key_modifier == modifier_to_use:
  2749. pass
  2750. else:
  2751. self.selected = []
  2752. try:
  2753. selected_dia = self.tool2tooldia[self.tools_table_exc.currentRow() + 1]
  2754. self.last_tool_selected = int(self.tools_table_exc.currentRow()) + 1
  2755. for obj in self.storage_dict[selected_dia].get_objects():
  2756. self.selected.append(obj)
  2757. except Exception as e:
  2758. self.app.log.debug(str(e))
  2759. self.replot()
  2760. # def toolbar_tool_toggle(self, key):
  2761. # self.options[key] = self.sender().isChecked()
  2762. # if self.options[key] is True:
  2763. # return 1
  2764. # else:
  2765. # return 0
  2766. def on_canvas_click(self, event):
  2767. """
  2768. event.x and .y have canvas coordinates
  2769. event.xdata and .ydata have plot coordinates
  2770. :param event: Event object dispatched by VisPy
  2771. :return: None
  2772. """
  2773. if self.app.is_legacy is False:
  2774. event_pos = event.pos
  2775. # event_is_dragging = event.is_dragging
  2776. # right_button = 2
  2777. else:
  2778. event_pos = (event.xdata, event.ydata)
  2779. # event_is_dragging = self.app.plotcanvas.is_dragging
  2780. # right_button = 3
  2781. self.pos = self.canvas.translate_coords(event_pos)
  2782. if self.app.grid_status():
  2783. self.pos = self.app.geo_editor.snap(self.pos[0], self.pos[1])
  2784. else:
  2785. self.pos = (self.pos[0], self.pos[1])
  2786. if event.button == 1:
  2787. # self.app.ui.rel_position_label.setText("<b>Dx</b>: %.4f&nbsp;&nbsp; <b>Dy</b>: "
  2788. # "%.4f&nbsp;&nbsp;&nbsp;&nbsp;" % (0, 0))
  2789. # Selection with left mouse button
  2790. if self.active_tool is not None and event.button == 1:
  2791. # Dispatch event to active_tool
  2792. # msg = self.active_tool.click(self.app.geo_editor.snap(event.xdata, event.ydata))
  2793. self.active_tool.click(self.app.geo_editor.snap(self.pos[0], self.pos[1]))
  2794. # If it is a shape generating tool
  2795. if isinstance(self.active_tool, FCShapeTool) and self.active_tool.complete:
  2796. if self.current_storage is not None:
  2797. self.on_exc_shape_complete(self.current_storage)
  2798. self.build_ui()
  2799. # MS: always return to the Select Tool if modifier key is not pressed
  2800. # else return to the current tool
  2801. key_modifier = QtWidgets.QApplication.keyboardModifiers()
  2802. if self.app.defaults["global_mselect_key"] == 'Control':
  2803. modifier_to_use = Qt.ControlModifier
  2804. else:
  2805. modifier_to_use = Qt.ShiftModifier
  2806. # if modifier key is pressed then we add to the selected list the current shape but if it's already
  2807. # in the selected list, we removed it. Therefore first click selects, second deselects.
  2808. if key_modifier == modifier_to_use:
  2809. self.select_tool(self.active_tool.name)
  2810. else:
  2811. # return to Select tool but not for FCDrillAdd or FCSlot
  2812. if isinstance(self.active_tool, FCDrillAdd) or isinstance(self.active_tool, FCSlot):
  2813. self.select_tool(self.active_tool.name)
  2814. else:
  2815. self.select_tool("drill_select")
  2816. return
  2817. if isinstance(self.active_tool, FCDrillSelect):
  2818. # self.app.log.debug("Replotting after click.")
  2819. self.replot()
  2820. else:
  2821. self.app.log.debug("No active tool to respond to click!")
  2822. def on_exc_shape_complete(self, storage):
  2823. self.app.log.debug("on_shape_complete()")
  2824. # Add shape
  2825. if type(storage) is list:
  2826. for item_storage in storage:
  2827. self.add_exc_shape(self.active_tool.geometry, item_storage)
  2828. else:
  2829. self.add_exc_shape(self.active_tool.geometry, storage)
  2830. # Remove any utility shapes
  2831. self.delete_utility_geometry()
  2832. self.tool_shape.clear(update=True)
  2833. # Replot and reset tool.
  2834. self.replot()
  2835. # self.active_tool = type(self.active_tool)(self)
  2836. def add_exc_shape(self, shape, storage):
  2837. """
  2838. Adds a shape to a specified shape storage.
  2839. :param shape: Shape to be added.
  2840. :type shape: DrawToolShape
  2841. :param storage: object where to store the shapes
  2842. :return: None
  2843. """
  2844. # List of DrawToolShape?
  2845. if isinstance(shape, list):
  2846. for subshape in shape:
  2847. self.add_exc_shape(subshape, storage)
  2848. return
  2849. assert isinstance(shape, DrawToolShape), \
  2850. "Expected a DrawToolShape, got %s" % str(type(shape))
  2851. assert shape.geo is not None, \
  2852. "Shape object has empty geometry (None)"
  2853. assert (isinstance(shape.geo, list) and len(shape.geo) > 0) or not isinstance(shape.geo, list), \
  2854. "Shape objects has empty geometry ([])"
  2855. if isinstance(shape, DrawToolUtilityShape):
  2856. self.utility.append(shape)
  2857. else:
  2858. storage.insert(shape) # TODO: Check performance
  2859. def add_shape(self, shape):
  2860. """
  2861. Adds a shape to the shape storage.
  2862. :param shape: Shape to be added.
  2863. :type shape: DrawToolShape
  2864. :return: None
  2865. """
  2866. # List of DrawToolShape?
  2867. if isinstance(shape, list):
  2868. for subshape in shape:
  2869. self.add_shape(subshape)
  2870. return
  2871. assert isinstance(shape, DrawToolShape), \
  2872. "Expected a DrawToolShape, got %s" % type(shape)
  2873. assert shape.geo is not None, \
  2874. "Shape object has empty geometry (None)"
  2875. assert (isinstance(shape.geo, list) and len(shape.geo) > 0) or not isinstance(shape.geo, list), \
  2876. "Shape objects has empty geometry ([])"
  2877. if isinstance(shape, DrawToolUtilityShape):
  2878. self.utility.append(shape)
  2879. # else:
  2880. # self.storage.insert(shape)
  2881. def on_exc_click_release(self, event):
  2882. """
  2883. Handler of the "mouse_release" event.
  2884. It will pop-up the context menu on right mouse click unless there was a panning move (decided in the
  2885. "mouse_move" event handler) and only if the current tool is the Select tool.
  2886. It will 'close' a Editor tool if it is the case.
  2887. :param event: Event object dispatched by VisPy SceneCavas
  2888. :return: None
  2889. """
  2890. if self.app.is_legacy is False:
  2891. event_pos = event.pos
  2892. # event_is_dragging = event.is_dragging
  2893. right_button = 2
  2894. else:
  2895. event_pos = (event.xdata, event.ydata)
  2896. # event_is_dragging = self.app.plotcanvas.is_dragging
  2897. right_button = 3
  2898. pos_canvas = self.canvas.translate_coords(event_pos)
  2899. if self.app.grid_status():
  2900. pos = self.app.geo_editor.snap(pos_canvas[0], pos_canvas[1])
  2901. else:
  2902. pos = (pos_canvas[0], pos_canvas[1])
  2903. # if the released mouse button was RMB then test if it was a panning motion or not, if not it was a context
  2904. # canvas menu
  2905. try:
  2906. if event.button == right_button: # right click
  2907. if self.app.ui.popMenu.mouse_is_panning is False:
  2908. try:
  2909. QtGui.QGuiApplication.restoreOverrideCursor()
  2910. except Exception:
  2911. pass
  2912. if self.active_tool.complete is False and not isinstance(self.active_tool, FCDrillSelect):
  2913. self.active_tool.complete = True
  2914. self.in_action = False
  2915. self.delete_utility_geometry()
  2916. self.app.inform.emit('[success] %s' %
  2917. _("Done."))
  2918. self.select_tool('drill_select')
  2919. else:
  2920. if isinstance(self.active_tool, FCDrillAdd):
  2921. self.active_tool.complete = True
  2922. self.in_action = False
  2923. self.delete_utility_geometry()
  2924. self.app.inform.emit('[success] %s' %
  2925. _("Done."))
  2926. self.select_tool('drill_select')
  2927. self.app.cursor = QtGui.QCursor()
  2928. self.app.populate_cmenu_grids()
  2929. self.app.ui.popMenu.popup(self.app.cursor.pos())
  2930. except Exception as e:
  2931. log.warning("FlatCAMExcEditor.on_exc_click_release() RMB click --> Error: %s" % str(e))
  2932. raise
  2933. # if the released mouse button was LMB then test if we had a right-to-left selection or a left-to-right
  2934. # selection and then select a type of selection ("enclosing" or "touching")
  2935. try:
  2936. if event.button == 1: # left click
  2937. if self.app.selection_type is not None:
  2938. self.draw_selection_area_handler(self.pos, pos, self.app.selection_type)
  2939. self.app.selection_type = None
  2940. elif isinstance(self.active_tool, FCDrillSelect):
  2941. self.active_tool.click_release((self.pos[0], self.pos[1]))
  2942. # if there are selected objects then plot them
  2943. if self.selected:
  2944. self.replot()
  2945. except Exception as e:
  2946. log.warning("FlatCAMExcEditor.on_exc_click_release() LMB click --> Error: %s" % str(e))
  2947. raise
  2948. def draw_selection_area_handler(self, start, end, sel_type):
  2949. """
  2950. This function is called whenever we have a left mouse click release and only we have a left mouse click drag,
  2951. be it from left to right or from right to left. The direction of the drag is decided in the "mouse_move"
  2952. event handler.
  2953. Pressing a modifier key (eg. Ctrl, Shift or Alt) will change the behavior of the selection.
  2954. Depending on which tool belongs the selected shapes, the corresponding rows in the Tools Table are selected or
  2955. deselected.
  2956. :param start: mouse position when the selection LMB click was done
  2957. :param end: mouse position when the left mouse button is released
  2958. :param sel_type: if True it's a left to right selection (enclosure), if False it's a 'touch' selection
  2959. :return:
  2960. """
  2961. start_pos = (start[0], start[1])
  2962. end_pos = (end[0], end[1])
  2963. poly_selection = Polygon([start_pos, (end_pos[0], start_pos[1]), end_pos, (start_pos[0], end_pos[1])])
  2964. modifiers = None
  2965. # delete the selection shape that was just drawn, we no longer need it
  2966. self.app.delete_selection_shape()
  2967. # detect if a modifier key was pressed while the left mouse button was released
  2968. self.modifiers = QtWidgets.QApplication.keyboardModifiers()
  2969. if self.modifiers == QtCore.Qt.ShiftModifier:
  2970. modifiers = 'Shift'
  2971. elif self.modifiers == QtCore.Qt.ControlModifier:
  2972. modifiers = 'Control'
  2973. if modifiers == self.app.defaults["global_mselect_key"]:
  2974. for storage in self.storage_dict:
  2975. for obj in self.storage_dict[storage].get_objects():
  2976. if (sel_type is True and poly_selection.contains(obj.geo)) or \
  2977. (sel_type is False and poly_selection.intersects(obj.geo)):
  2978. if obj in self.selected:
  2979. # remove the shape object from the selected shapes storage
  2980. self.selected.remove(obj)
  2981. else:
  2982. # add the shape object to the selected shapes storage
  2983. self.selected.append(obj)
  2984. else:
  2985. # clear the selection shapes storage
  2986. self.selected = []
  2987. # then add to the selection shapes storage the shapes that are included (touched) by the selection rectangle
  2988. for storage in self.storage_dict:
  2989. for obj in self.storage_dict[storage].get_objects():
  2990. if (sel_type is True and poly_selection.contains(obj.geo)) or \
  2991. (sel_type is False and poly_selection.intersects(obj.geo)):
  2992. self.selected.append(obj)
  2993. try:
  2994. self.tools_table_exc.cellPressed.disconnect()
  2995. except Exception:
  2996. pass
  2997. # first deselect all rows (tools) in the Tools Table
  2998. self.tools_table_exc.clearSelection()
  2999. # and select the rows (tools) in the tool table according to the diameter(s) of the selected shape(s)
  3000. self.tools_table_exc.setSelectionMode(QtWidgets.QAbstractItemView.MultiSelection)
  3001. for storage in self.storage_dict:
  3002. for shape_s in self.selected:
  3003. if shape_s in self.storage_dict[storage].get_objects():
  3004. for key_tool_nr in self.tool2tooldia:
  3005. if self.tool2tooldia[key_tool_nr] == storage:
  3006. row_to_sel = key_tool_nr - 1
  3007. # item = self.tools_table_exc.item(row_to_sel, 1)
  3008. # self.tools_table_exc.setCurrentItem(item)
  3009. # item.setSelected(True)
  3010. # if the row to be selected is not already in the selected rows then select it
  3011. # otherwise don't do it as it seems that we have a toggle effect
  3012. if row_to_sel not in set(index.row() for index in self.tools_table_exc.selectedIndexes()):
  3013. self.tools_table_exc.selectRow(row_to_sel)
  3014. self.last_tool_selected = int(key_tool_nr)
  3015. self.tools_table_exc.setSelectionMode(QtWidgets.QAbstractItemView.ExtendedSelection)
  3016. self.tools_table_exc.cellPressed.connect(self.on_row_selected)
  3017. self.replot()
  3018. def on_canvas_move(self, event):
  3019. """
  3020. Called on 'mouse_move' event.
  3021. It updates the mouse cursor if the grid snapping is ON.
  3022. It decide if we have a mouse drag and if it is done with the right mouse click. Then it passes this info to a
  3023. class object which is used in the "mouse_release" handler to decide if to pop-up the context menu or not.
  3024. It draws utility_geometry for the Editor tools.
  3025. Update the position labels from status bar.
  3026. Decide if we have a right to left or a left to right mouse drag with left mouse button and call a function
  3027. that will draw a selection shape on canvas.
  3028. event.pos have canvas screen coordinates
  3029. :param event: Event object dispatched by VisPy SceneCavas
  3030. :return: None
  3031. """
  3032. if self.app.is_legacy is False:
  3033. event_pos = event.pos
  3034. event_is_dragging = event.is_dragging
  3035. right_button = 2
  3036. else:
  3037. event_pos = (event.xdata, event.ydata)
  3038. event_is_dragging = self.app.plotcanvas.is_dragging
  3039. right_button = 3
  3040. pos = self.canvas.translate_coords(event_pos)
  3041. event.xdata, event.ydata = pos[0], pos[1]
  3042. self.x = event.xdata
  3043. self.y = event.ydata
  3044. self.app.ui.popMenu.mouse_is_panning = False
  3045. # if the RMB is clicked and mouse is moving over plot then 'panning_action' is True
  3046. if event.button == right_button and event_is_dragging == 1:
  3047. self.app.ui.popMenu.mouse_is_panning = True
  3048. return
  3049. try:
  3050. x = float(event.xdata)
  3051. y = float(event.ydata)
  3052. except TypeError:
  3053. return
  3054. if self.active_tool is None:
  3055. return
  3056. # ## Snap coordinates
  3057. if self.app.grid_status():
  3058. x, y = self.app.geo_editor.snap(x, y)
  3059. # Update cursor
  3060. self.app.app_cursor.set_data(np.asarray([(x, y)]), symbol='++', edge_color=self.app.cursor_color_3D,
  3061. edge_width=self.app.defaults["global_cursor_width"],
  3062. size=self.app.defaults["global_cursor_size"])
  3063. self.snap_x = x
  3064. self.snap_y = y
  3065. if self.pos is None:
  3066. self.pos = (0, 0)
  3067. self.app.dx = x - self.pos[0]
  3068. self.app.dy = y - self.pos[1]
  3069. # # update the position label in the infobar since the APP mouse event handlers are disconnected
  3070. self.app.ui.position_label.setText("&nbsp;<b>X</b>: %.4f&nbsp;&nbsp; "
  3071. "<b>Y</b>: %.4f&nbsp;" % (x, y))
  3072. # # update the reference position label in the infobar since the APP mouse event handlers are disconnected
  3073. # self.app.ui.rel_position_label.setText("<b>Dx</b>: %.4f&nbsp;&nbsp; <b>Dy</b>: "
  3074. # "%.4f&nbsp;&nbsp;&nbsp;&nbsp;" % (self.app.dx, self.app.dy))
  3075. units = self.app.defaults["units"].lower()
  3076. self.app.plotcanvas.text_hud.text = \
  3077. 'Dx:\t{:<.4f} [{:s}]\nDy:\t{:<.4f} [{:s}]\n\nX: \t{:<.4f} [{:s}]\nY: \t{:<.4f} [{:s}]'.format(
  3078. self.app.dx, units, self.app.dy, units, x, units, y, units)
  3079. # ## Utility geometry (animated)
  3080. self.update_utility_geometry(data=(x, y))
  3081. # ## Selection area on canvas section # ##
  3082. if event_is_dragging == 1 and event.button == 1:
  3083. # I make an exception for FCDrillAdd and FCDrillArray because clicking and dragging while making regions
  3084. # can create strange issues. Also for FCSlot and FCSlotArray
  3085. if isinstance(self.active_tool, FCDrillAdd) or isinstance(self.active_tool, FCDrillArray) or \
  3086. isinstance(self.active_tool, FCSlot) or isinstance(self.active_tool, FCSlotArray):
  3087. self.app.selection_type = None
  3088. else:
  3089. dx = pos[0] - self.pos[0]
  3090. self.app.delete_selection_shape()
  3091. if dx < 0:
  3092. self.app.draw_moving_selection_shape((self.pos[0], self.pos[1]), (x, y),
  3093. color=self.app.defaults["global_alt_sel_line"],
  3094. face_color=self.app.defaults['global_alt_sel_fill'])
  3095. self.app.selection_type = False
  3096. else:
  3097. self.app.draw_moving_selection_shape((self.pos[0], self.pos[1]), (x, y))
  3098. self.app.selection_type = True
  3099. else:
  3100. self.app.selection_type = None
  3101. # Update cursor
  3102. self.app.app_cursor.set_data(np.asarray([(x, y)]), symbol='++', edge_color=self.app.cursor_color_3D,
  3103. edge_width=self.app.defaults["global_cursor_width"],
  3104. size=self.app.defaults["global_cursor_size"])
  3105. def update_utility_geometry(self, data):
  3106. # ### Utility geometry (animated) ###
  3107. geo = self.active_tool.utility_geometry(data=data)
  3108. if isinstance(geo, DrawToolShape) and geo.geo is not None:
  3109. # Remove any previous utility shape
  3110. self.tool_shape.clear(update=True)
  3111. self.draw_utility_geometry(geo=geo)
  3112. def on_canvas_key_release(self, event):
  3113. self.key = None
  3114. def draw_utility_geometry(self, geo):
  3115. # Add the new utility shape
  3116. try:
  3117. # this case is for the Font Parse
  3118. for el in list(geo.geo):
  3119. if type(el) == MultiPolygon:
  3120. for poly in el:
  3121. self.tool_shape.add(
  3122. shape=poly,
  3123. color=(self.app.defaults["global_draw_color"] + '80'),
  3124. update=False,
  3125. layer=0,
  3126. tolerance=None
  3127. )
  3128. elif type(el) == MultiLineString:
  3129. for linestring in el:
  3130. self.tool_shape.add(
  3131. shape=linestring,
  3132. color=(self.app.defaults["global_draw_color"] + '80'),
  3133. update=False,
  3134. layer=0,
  3135. tolerance=None
  3136. )
  3137. else:
  3138. self.tool_shape.add(
  3139. shape=el,
  3140. color=(self.app.defaults["global_draw_color"] + '80'),
  3141. update=False,
  3142. layer=0,
  3143. tolerance=None
  3144. )
  3145. except TypeError:
  3146. self.tool_shape.add(
  3147. shape=geo.geo, color=(self.app.defaults["global_draw_color"] + '80'),
  3148. update=False, layer=0, tolerance=None)
  3149. self.tool_shape.redraw()
  3150. def replot(self):
  3151. self.plot_all()
  3152. def plot_all(self):
  3153. """
  3154. Plots all shapes in the editor.
  3155. :return: None
  3156. :rtype: None
  3157. """
  3158. # self.app.log.debug("plot_all()")
  3159. self.shapes.clear(update=True)
  3160. for storage in self.storage_dict:
  3161. for shape_plus in self.storage_dict[storage].get_objects():
  3162. if shape_plus.geo is None:
  3163. continue
  3164. if shape_plus in self.selected:
  3165. self.plot_shape(geometry=shape_plus.geo, color=self.app.defaults['global_sel_draw_color'] + 'FF',
  3166. linewidth=2)
  3167. continue
  3168. self.plot_shape(geometry=shape_plus.geo, color=self.app.defaults['global_draw_color'] + 'FF')
  3169. # for shape in self.storage.get_objects():
  3170. # if shape.geo is None: # TODO: This shouldn't have happened
  3171. # continue
  3172. #
  3173. # if shape in self.selected:
  3174. # self.plot_shape(geometry=shape.geo, color=self.app.defaults['global_sel_draw_color'], linewidth=2)
  3175. # continue
  3176. #
  3177. # self.plot_shape(geometry=shape.geo, color=self.app.defaults['global_draw_color'])
  3178. for shape_form in self.utility:
  3179. self.plot_shape(geometry=shape_form.geo, linewidth=1)
  3180. continue
  3181. self.shapes.redraw()
  3182. def plot_shape(self, geometry=None, color='0x000000FF', linewidth=1):
  3183. """
  3184. Plots a geometric object or list of objects without rendering. Plotted objects
  3185. are returned as a list. This allows for efficient/animated rendering.
  3186. :param geometry: Geometry to be plotted (Any Shapely.geom kind or list of such)
  3187. :param color: Shape color
  3188. :param linewidth: Width of lines in # of pixels.
  3189. :return: List of plotted elements.
  3190. """
  3191. plot_elements = []
  3192. if geometry is None:
  3193. geometry = self.active_tool.geometry
  3194. try:
  3195. for geo in geometry:
  3196. plot_elements += self.plot_shape(geometry=geo, color=color, linewidth=linewidth)
  3197. # ## Non-iterable
  3198. except TypeError:
  3199. # ## DrawToolShape
  3200. if isinstance(geometry, DrawToolShape):
  3201. plot_elements += self.plot_shape(geometry=geometry.geo, color=color, linewidth=linewidth)
  3202. # ## Polygon: Descend into exterior and each interior.
  3203. if type(geometry) == Polygon:
  3204. plot_elements += self.plot_shape(geometry=geometry.exterior, color=color, linewidth=linewidth)
  3205. plot_elements += self.plot_shape(geometry=geometry.interiors, color=color, linewidth=linewidth)
  3206. if type(geometry) == LineString or type(geometry) == LinearRing:
  3207. plot_elements.append(self.shapes.add(shape=geometry, color=color, layer=0, tolerance=self.tolerance))
  3208. if type(geometry) == Point:
  3209. pass
  3210. return plot_elements
  3211. def on_shape_complete(self):
  3212. self.app.log.debug("on_shape_complete()")
  3213. # Add shape
  3214. self.add_shape(self.active_tool.geometry)
  3215. # Remove any utility shapes
  3216. self.delete_utility_geometry()
  3217. self.tool_shape.clear(update=True)
  3218. # Replot and reset tool.
  3219. self.replot()
  3220. # self.active_tool = type(self.active_tool)(self)
  3221. def get_selected(self):
  3222. """
  3223. Returns list of shapes that are selected in the editor.
  3224. :return: List of shapes.
  3225. """
  3226. # return [shape for shape in self.shape_buffer if shape["selected"]]
  3227. return self.selected
  3228. def delete_selected(self):
  3229. temp_ref = [s for s in self.selected]
  3230. for shape_sel in temp_ref:
  3231. self.delete_shape(shape_sel)
  3232. self.selected = []
  3233. self.build_ui()
  3234. self.app.inform.emit('[success] %s' %
  3235. _("Done. Drill(s) deleted."))
  3236. def delete_shape(self, del_shape):
  3237. self.is_modified = True
  3238. if del_shape in self.utility:
  3239. self.utility.remove(del_shape)
  3240. return
  3241. for storage in self.storage_dict:
  3242. # try:
  3243. # self.storage_dict[storage].remove(shape)
  3244. # except:
  3245. # pass
  3246. if del_shape in self.storage_dict[storage].get_objects():
  3247. if isinstance(del_shape.geo, MultiLineString):
  3248. self.storage_dict[storage].remove(del_shape)
  3249. # a hack to make the tool_table display less drills per diameter
  3250. # self.points_edit it's only useful first time when we load the data into the storage
  3251. # but is still used as referecen when building tool_table in self.build_ui()
  3252. # the number of drills displayed in column 2 is just a len(self.points_edit) therefore
  3253. # deleting self.points_edit elements (doesn't matter who but just the number)
  3254. # solved the display issue.
  3255. del self.points_edit[storage][0]
  3256. else:
  3257. self.storage_dict[storage].remove(del_shape)
  3258. del self.slot_points_edit[storage][0]
  3259. if del_shape in self.selected:
  3260. self.selected.remove(del_shape)
  3261. def delete_utility_geometry(self):
  3262. for_deletion = [util_shape for util_shape in self.utility]
  3263. for util_shape in for_deletion:
  3264. self.delete_shape(util_shape)
  3265. self.tool_shape.clear(update=True)
  3266. self.tool_shape.redraw()
  3267. def on_delete_btn(self):
  3268. self.delete_selected()
  3269. self.replot()
  3270. def select_tool(self, toolname):
  3271. """
  3272. Selects a drawing tool. Impacts the object and appGUI.
  3273. :param toolname: Name of the tool.
  3274. :return: None
  3275. """
  3276. self.tools_exc[toolname]["button"].setChecked(True)
  3277. self.on_tool_select(toolname)
  3278. def set_selected(self, sel_shape):
  3279. # Remove and add to the end.
  3280. if sel_shape in self.selected:
  3281. self.selected.remove(sel_shape)
  3282. self.selected.append(sel_shape)
  3283. def set_unselected(self, unsel_shape):
  3284. if unsel_shape in self.selected:
  3285. self.selected.remove(unsel_shape)
  3286. def on_array_type_combo(self):
  3287. if self.array_type_combo.currentIndex() == 0:
  3288. self.array_circular_frame.hide()
  3289. self.array_linear_frame.show()
  3290. else:
  3291. self.delete_utility_geometry()
  3292. self.array_circular_frame.show()
  3293. self.array_linear_frame.hide()
  3294. self.app.inform.emit(_("Click on the circular array Center position"))
  3295. def on_slot_array_type_combo(self):
  3296. if self.slot_array_type_combo.currentIndex() == 0:
  3297. self.slot_array_circular_frame.hide()
  3298. self.slot_array_linear_frame.show()
  3299. else:
  3300. self.delete_utility_geometry()
  3301. self.slot_array_circular_frame.show()
  3302. self.slot_array_linear_frame.hide()
  3303. self.app.inform.emit(_("Click on the circular array Center position"))
  3304. def on_linear_angle_radio(self):
  3305. val = self.drill_axis_radio.get_value()
  3306. if val == 'A':
  3307. self.linear_angle_spinner.show()
  3308. self.linear_angle_label.show()
  3309. else:
  3310. self.linear_angle_spinner.hide()
  3311. self.linear_angle_label.hide()
  3312. def on_slot_array_linear_angle_radio(self):
  3313. val = self.slot_array_axis_radio.get_value()
  3314. if val == 'A':
  3315. self.slot_array_linear_angle_spinner.show()
  3316. self.slot_array_linear_angle_label.show()
  3317. else:
  3318. self.slot_array_linear_angle_spinner.hide()
  3319. self.slot_array_linear_angle_label.hide()
  3320. def on_slot_angle_radio(self):
  3321. val = self.slot_axis_radio.get_value()
  3322. if val == 'A':
  3323. self.slot_angle_spinner.show()
  3324. self.slot_angle_label.show()
  3325. else:
  3326. self.slot_angle_spinner.hide()
  3327. self.slot_angle_label.hide()
  3328. def exc_add_drill(self):
  3329. self.select_tool('drill_add')
  3330. return
  3331. def exc_add_drill_array(self):
  3332. self.select_tool('drill_array')
  3333. return
  3334. def exc_add_slot(self):
  3335. self.select_tool('slot_add')
  3336. return
  3337. def exc_add_slot_array(self):
  3338. self.select_tool('slot_array')
  3339. return
  3340. def exc_resize_drills(self):
  3341. self.select_tool('drill_resize')
  3342. return
  3343. def exc_copy_drills(self):
  3344. self.select_tool('drill_copy')
  3345. return
  3346. def exc_move_drills(self):
  3347. self.select_tool('drill_move')
  3348. return
  3349. def get_shapely_list_bounds(geometry_list):
  3350. xmin = np.Inf
  3351. ymin = np.Inf
  3352. xmax = -np.Inf
  3353. ymax = -np.Inf
  3354. for gs in geometry_list:
  3355. try:
  3356. gxmin, gymin, gxmax, gymax = gs.bounds
  3357. xmin = min([xmin, gxmin])
  3358. ymin = min([ymin, gymin])
  3359. xmax = max([xmax, gxmax])
  3360. ymax = max([ymax, gymax])
  3361. except Exception as e:
  3362. log.warning("DEVELOPMENT: Tried to get bounds of empty geometry. --> %s" % str(e))
  3363. return [xmin, ymin, xmax, ymax]
  3364. # EOF