FlatCAMExcEditor.py 174 KB

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