-
Notifications
You must be signed in to change notification settings - Fork 75
/
placeLinkUI.py
799 lines (713 loc) · 35.9 KB
/
placeLinkUI.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
#!/usr/bin/env python3
# coding: utf-8
#
# placeLinkUI.py
#
# LGPL
# Copyright HUBERT Zoltán
import os, time
from PySide import QtGui, QtCore
import FreeCADGui as Gui
import FreeCAD as App
from FreeCAD import Console as FCC
import Asm4_libs as Asm4
from placePartUI import placePartUI
import selectionFilter
"""
+-----------------------------------------------+
| Global variables |
+-----------------------------------------------+
"""
# link being placed view properties overrides
DrawStyle = 'Solid'
LineWidth = 3.0
DiffuseColor = (1.0, 1.0, 1.0, 0.0)
Transparency = 0.50
LineHighlight = (1.0, 1.0, 0.0, 0.0)
"""
+-----------------------------------------------+
| The UI and functions in the Task panel |
+-----------------------------------------------+
"""
class placeLinkUI():
def __init__(self):
# remove selectionFilter
self.selectionFilterStatus = selectionFilter.observerStatus()
selectionFilter.observerDisable()
# get the current active document to avoid errors if user changes tab
self.activeDoc = App.ActiveDocument
# we have checked before that all this is correct
selection = Asm4.getSelectedLink()
if selection is None:
selection = Asm4.getSelectedVarLink()
self.selectedObj = selection
#self.rootAssembly = self.selectedObj.getParentGeoFeatureGroup()
self.rootAssembly = Asm4.getAssembly()
# has been checked before, this is for security only
if Asm4.isAsm4EE(self.selectedObj):
# get the old values
self.old_AO = self.selectedObj.AttachmentOffset
self.old_linkLCS = self.selectedObj.AttachedBy[1:]
else:
# this shouldn't happen
FCC.PrintWarning("WARNING : unsupported Assembly/Solver/Part combination, you shouldn't be seeing this\n")
Asm4.makeAsmProperties(self.selectedObj)
self.old_AO = []
self.old_linkLCS = ''
# define the GUI
# draw the GUI, objects are defined later down
# self.UI = QtGui.QWidget()
# self.form = self.UI
self.form = QtGui.QWidget()
iconFile = os.path.join( Asm4.iconPath , 'Place_Link.svg')
self.form.setWindowIcon(QtGui.QIcon( iconFile ))
self.form.setWindowTitle('Place linked Part')
self.drawUI()
#save original AttachmentOffset of linked part
self.old_LinkAttachmentOffset = self.selectedObj.AttachmentOffset
self.old_LinkRotation = self.selectedObj.AttachmentOffset.Rotation
self.old_LinkPosition = self.selectedObj.AttachmentOffset.Base
# default values correspond to original AttachmentOffset of linked part
self.Xtranslation = self.old_LinkPosition[0]
self.Ytranslation = self.old_LinkPosition[1]
self.Ztranslation = self.old_LinkPosition[2]
self.XrotationAngle = self.old_LinkRotation.toEuler()[0]
self.YrotationAngle = self.old_LinkRotation.toEuler()[1]
self.ZrotationAngle = self.old_LinkRotation.toEuler()[2]
# save previous view properties
self.old_OverrideMaterial = self.selectedObj.ViewObject.OverrideMaterial
self.old_DrawStyle = self.selectedObj.ViewObject.DrawStyle
self.old_LineWidth = self.selectedObj.ViewObject.LineWidth
self.old_DiffuseColor = self.selectedObj.ViewObject.ShapeMaterial.DiffuseColor
self.old_Transparency = self.selectedObj.ViewObject.ShapeMaterial.Transparency
# set new view properties
self.selectedObj.ViewObject.OverrideMaterial = True
self.selectedObj.ViewObject.DrawStyle = DrawStyle
self.selectedObj.ViewObject.LineWidth = LineWidth
self.selectedObj.ViewObject.ShapeMaterial.DiffuseColor = DiffuseColor
self.selectedObj.ViewObject.ShapeMaterial.Transparency = Transparency
# get the old values
self.old_EE = ''
old_Parent = ''
old_ParentPart = ''
old_attLCS = ''
constrName = ''
linkedDoc = ''
old_linkLCS = ''
# get and store the current expression engine:
self.old_EE = Asm4.placementEE(self.selectedObj.ExpressionEngine)
# decode the old ExpressionEngine
# if the decode is unsuccessful, old_Expression is set to False and the other things are set to 'None'
(self.old_Parent, separator, self.old_parentLCS) = self.selectedObj.AttachedTo.partition('#')
( old_Parent, old_attLCS, old_linkLCS ) = self.splitExpressionLink( self.old_EE, self.old_Parent )
# sometimes, the object is in << >> which is an error by FreeCAD,
# because that's reserved for labels, but we still look for it
if len(old_attLCS)>4 and old_attLCS[:2]=='<<' and old_attLCS[-2:]=='>>':
old_attLCS = old_attLCS[2:-2]
if len(old_linkLCS)>4 and old_linkLCS[:2]=='<<' and old_linkLCS[-2:]=='>>':
old_linkLCS = old_linkLCS[2:-2]
# initialize the UI with the current data
self.attLCStable = []
self.initUI()
# now self.parentList and self.parentTable are available
# find all the LCS in the selected link
self.partLCStable = Asm4.getPartLCS( self.selectedObj.LinkedObject )
# build the list
self.partLCSlist.clear()
for lcs in self.partLCStable:
newItem = QtGui.QListWidgetItem()
newItem.setText(Asm4.labelName(lcs))
newItem.setIcon( lcs.ViewObject.Icon )
self.partLCSlist.addItem(newItem)
# find the old LCS in the list of LCS of the linked part...
# MatchExactly, MatchContains, MatchEndsWith ...
# find with Name ...
lcs_found = self.partLCSlist.findItems( old_linkLCS, QtCore.Qt.MatchExactly )
# ... or with (Name)
if not lcs_found:
lcs_found = self.partLCSlist.findItems( '('+old_linkLCS+')', QtCore.Qt.MatchEndsWith )
if lcs_found:
# ... and select it
self.partLCSlist.setCurrentItem( lcs_found[0] )
else:
# If no LCS is selected, select the first LCS if there is only one
if self.partLCSlist.count()==1:
firstLCSItem = self.partLCSlist.item(0)
if firstLCSItem is not None:
self.partLCSlist.setCurrentItem(firstLCSItem)
# find all the linked parts in the assembly
for obj in self.activeDoc.findObjects("App::Link"):
if self.rootAssembly.getObject(obj.Name) is not None and hasattr(obj.LinkedObject,'isDerivedFrom'):
linkedObj = obj.LinkedObject
if linkedObj.isDerivedFrom('App::Part') or linkedObj.isDerivedFrom('PartDesign::Body'):
# ... except if it's the selected link itself
if obj != self.selectedObj:
self.parentTable.append( obj )
# add to the drop-down combo box with the assembly tree's parts
objIcon = linkedObj.ViewObject.Icon
objText = Asm4.labelName(obj)
self.parentList.addItem( objIcon, objText, obj)
# find the oldPart in the part list...
parent_index = 1
if old_Parent == 'Parent Assembly':
parent_found = True
else:
parent_found = False
for item in self.parentTable[1:]:
if item.Name == old_Parent:
parent_found = True
break
else:
parent_index += 1
if not parent_found:
parent_index = 0
self.parentList.setCurrentIndex( parent_index )
# this should have triggered Asm4.getPartLCS() to fill the LCS list
# find the old attachment Datum in the list of the Datums in the linked part...
lcs_found = self.attLCSlist.findItems( old_attLCS, QtCore.Qt.MatchExactly )
# may-be it was renamed, see if we can find it as (name)
if not lcs_found:
lcs_found = self.attLCSlist.findItems( '('+old_attLCS+')', QtCore.Qt.MatchEndsWith )
if lcs_found:
# ... and select it
self.attLCSlist.setCurrentItem( lcs_found[0] )
# selection observer to detect selection of LCS in the 3D window and tree
Gui.Selection.addObserver(self, 0)
# Close
def finish(self):
# remove the observer
Gui.Selection.removeObserver(self)
self.restoreView()
Gui.Selection.clearSelection()
Gui.Selection.addSelection( self.activeDoc.Name, self.rootAssembly.Name, self.selectedObj.Name+'.' )
# restore previous selection filter (if any)
if self.selectionFilterStatus:
selectionFilter.observerEnable()
Gui.Control.closeDialog()
# restore initial view properties
def restoreView(self, normal=True):
self.selectedObj.ViewObject.OverrideMaterial = False
self.selectedObj.ViewObject.DrawStyle = self.old_DrawStyle
self.selectedObj.ViewObject.LineWidth = self.old_LineWidth
self.selectedObj.ViewObject.ShapeMaterial.DiffuseColor = self.old_DiffuseColor
self.selectedObj.ViewObject.ShapeMaterial.Transparency = self.old_Transparency
# standard FreeCAD Task panel buttons
def getStandardButtons(self):
return QtGui.QDialogButtonBox.Cancel | QtGui.QDialogButtonBox.Ok | QtGui.QDialogButtonBox.Ignore
# OK
def accept(self):
if self.Apply():
# highlight in the 3D window the object we placed
self.finish()
else:
FCC.PrintWarning("Problem in selections\n")
return
# Cancel, restore previous values if available
def reject(self):
if self.old_AO:
self.selectedObj.AttachmentOffset = self.old_AO
if self.old_EE:
self.selectedObj.setExpression( 'Placement', self.old_EE )
self.selectedObj.recompute()
# highlight in the 3D window the object we placed
self.finish()
# Free insert
def clicked(self, button):
if button == QtGui.QDialogButtonBox.Apply:
self.Apply()
elif button == QtGui.QDialogButtonBox.Ignore:
# ask for confirmation before resetting everything
msgName = Asm4.labelName(self.selectedObj)
# see whether the ExpressionEngine field is filled
if self.selectedObj.ExpressionEngine :
# if yes, then ask for confirmation
confirmed = Asm4.confirmBox('This command will release all attachments on '+msgName+' and set it to manual positioning in its current location.')
# if not, then it's useless to bother the user
else:
confirmed = True
if confirmed:
# unset the ExpressionEngine for the Placement
self.selectedObj.setExpression('Placement', None)
# reset the assembly properties
Asm4.makeAsmProperties( self.selectedObj, reset=True )
# finish
FCC.PrintMessage("Part is now manually placed\n")
self.finish()
else:
FCC.PrintMessage("Part untouched\n")
self.finish()
"""
+-----------------------------------------------+
| check that all necessary things are selected, |
| populate the expression with the selected |
| elements, put them into the constraint |
| and trigger the recomputation of the part |
+-----------------------------------------------+
"""
def Apply( self ):
# get the instance to attach to:
# it's either the top level assembly or a sister App::Link
if self.parentList.currentText() == 'Parent Assembly':
a_Link = 'Parent Assembly'
a_Part = None
elif self.parentList.currentIndex() > 1:
parent = self.parentTable[ self.parentList.currentIndex() ]
a_Link = parent.Name
a_Part = parent.LinkedObject.Document.Name
else:
a_Link = None
a_Part = None
# the attachment LCS's name in the parent
# check that something is selected in the QlistWidget
if self.attLCSlist.selectedItems():
a_LCS = self.attLCStable[ self.attLCSlist.currentRow() ].Name
else:
a_LCS = None
# the linked App::Part's name
l_Part = self.selectedObj.LinkedObject.Document.Name
# the LCS's name in the linked part to be used for its attachment
# check that something is selected in the QlistWidget
if self.partLCSlist.selectedItems():
#l_LCS = self.partLCSlist.selectedItems()[0].text()
l_LCS = self.partLCStable[ self.partLCSlist.currentRow() ].Name
else:
l_LCS = None
# check that all of them have something in
# constrName has been checked at the beginning
if a_Link and a_LCS and l_Part and l_LCS :
# add the Asm4 properties if it's a pure App::Link
Asm4.makeAsmProperties(self.selectedObj)
# self.selectedObj.AssemblyType = 'Part::Link'
self.selectedObj.AttachedBy = '#'+l_LCS
self.selectedObj.AttachedTo = a_Link+'#'+a_LCS
self.selectedObj.SolverId = 'Asm4EE'
# build the expression for the ExpressionEngine
# this is where all the magic is, see:
#
# https://forum.freecadweb.org/viewtopic.php?p=278124#p278124
#
# as of FreeCAD v0.19 the syntax is different:
# https://forum.freecadweb.org/viewtopic.php?f=17&t=38974&p=337784#p337784
#
# expr = ParentLink.Placement * ParentPart#LCS.Placement * constr_LinkName.AttachmentOffset * LinkedPart#LCS.Placement ^ -1'
# expr = LCS_in_the_assembly.Placement * constr_LinkName.AttachmentOffset * LinkedPart#LCS.Placement ^ -1'
expr = Asm4.makeExpressionPart( a_Link, a_Part, a_LCS, l_Part, l_LCS )
# load the expression into the link's Expression Engine
self.selectedObj.setExpression('Placement', expr )
# recompute the object to apply the placement:
self.selectedObj.recompute()
self.rootAssembly.recompute(True)
return True
else:
FCC.PrintWarning("Problem in selections\n")
return False
# fill the LCS list when changing the parent
def onParentSelected(self):
# clear the selection in the GUI window
Gui.Selection.clearSelection()
# build the LCS table
self.attLCStable = []
# the current text in the combo-box is the link's name...
# ... or it's 'Parent Assembly' then the parent is the 'Model' root App::Part
if self.parentList.currentText() == 'Parent Assembly':
parentName = 'Parent Assembly'
parentPart = self.rootAssembly
# we get the LCS directly in the root App::Part 'Model'
self.attLCStable = Asm4.getPartLCS( parentPart )
self.parentDoc.setText( Asm4.labelName(parentPart) )
# if something is selected
elif self.parentList.currentIndex() > 1:
parentName = self.parentTable[ self.parentList.currentIndex() ].Name
parentPart = self.activeDoc.getObject( parentName )
if parentPart:
# we get the LCS from the linked part
self.attLCStable = Asm4.getPartLCS( parentPart.LinkedObject )
# linked part & doc
dText = ''
if parentPart.LinkedObject.Document != self.activeDoc:
dText = parentPart.LinkedObject.Document.Name +'#'
# if the linked part has been renamed by the user
pText = Asm4.labelName( parentPart.LinkedObject )
self.parentDoc.setText( dText + pText )
# highlight the selected part for a short time:
Gui.Selection.addSelection( \
parentPart.Document.Name, self.rootAssembly.Name, parentPart.Name+'.' )
QtCore.QTimer.singleShot(1500, lambda:Gui.Selection.removeSelection( \
parentPart.Document.Name, self.rootAssembly.Name, parentPart.Name+'.' ) )
# something wrong
else:
return
# build the list
self.attLCSlist.clear()
for lcs in self.attLCStable:
newItem = QtGui.QListWidgetItem()
newItem.setText(Asm4.labelName(lcs))
newItem.setIcon( lcs.ViewObject.Icon )
self.attLCSlist.addItem( newItem )
#self.attLCStable.append(lcs)
return
# highlight selected LCSs
def onLCSclicked( self ):
p_LCS_selected = False
a_LCS_selected = False
# LCS of the linked part
if len(self.partLCSlist.selectedItems())>0:
p_LCS = self.partLCStable[ self.partLCSlist.currentRow() ]
p_LCS.Visibility = True
p_LCStext = self.selectedObj.Name+'.'+p_LCS.Name+'.'
p_LCS_selected = True
# LCS in the parent
if len(self.attLCSlist.selectedItems())>0:
a_LCS = self.attLCStable[ self.attLCSlist.currentRow() ]
# get the part where the selected LCS is
# parent assembly and sister part need a different treatment
if self.parentList.currentText() == 'Parent Assembly':
a_LCStext = a_LCS.Name+'.'
else:
a_Part = self.parentTable[ self.parentList.currentIndex() ].Name
a_LCStext = a_Part+'.'+a_LCS.Name+'.'
a_LCS.Visibility = True
a_LCS_selected = True
# clear the selection in the GUI window
Gui.Selection.clearSelection()
# apply selections
sel = ''
if p_LCS_selected:
if a_LCS_selected:
selText = p_LCStext+','+a_LCStext
else:
selText = p_LCStext
elif a_LCS_selected:
selText = a_LCStext
if sel:
Gui.Selection.addSelection( self.activeDoc.Name, self.rootAssembly.Name, sel)
if p_LCS_selected and a_LCS_selected:
self.Apply()
return
# selection observer
def addSelection(self, doc, obj, sub, pnt):
parentFound = False
# selected object
selObj = Gui.Selection.getSelection()[0]
selPath = Asm4.getSelectionPath(doc, obj, sub)
# check that a datum object is selected
if selObj.TypeId in Asm4.datumTypes and len(selPath) > 2:
selLink = self.activeDoc.getObject(selPath[2])
# if it's the selected link to be placed:
if selLink == self.selectedObj:
# try to find the selected LCS in the partLCS list
found = self.partLCSlist.findItems(Asm4.labelName(selObj), QtCore.Qt.MatchExactly)
if len(found) > 0:
self.partLCSlist.clearSelection()
self.partLCSlist.scrollToItem(found[0])
self.partLCSlist.setCurrentItem(found[0])
# show and highlight LCS
selObj.Visibility=True
# highlight the entire object if selected in the 3D window
if pnt != (0,0,0):
pass
# preview the part's placement
self.Apply()
# if it's a child in the assembly:
elif selLink in self.parentTable:
# find the parent
idx = self.parentList.findText(Asm4.labelName(selLink), QtCore.Qt.MatchExactly)
if idx >= 0:
self.parentList.setCurrentIndex(idx)
# this has triggered to fill in the attachment LCS list
parentFound = True
# if it's the object itself, then it belongs to the root assembly
elif selLink == selObj and obj == self.rootAssembly.Name:
self.parentList.setCurrentIndex(1)
# this has triggered to fill in the attachment LCS list
parentFound = True
# if a parent was found
if parentFound:
# now lets try to find the selected LCS in this list
found = self.attLCSlist.findItems(Asm4.labelName(selObj), QtCore.Qt.MatchExactly)
if len(found) > 0:
self.attLCSlist.clearSelection()
self.attLCSlist.scrollToItem(found[0])
self.attLCSlist.setCurrentItem(found[0])
# show and highlight LCS
selObj.Visibility=True
# highlight the entire object if selected in the 3D window
if pnt != (0,0,0):
pass
# preview the part's placement
self.Apply()
# if it's a part and not on an LCS
# Fill only the parent list selection, and show all its LCS
elif selObj.isDerivedFrom('Part::Feature') and len(selPath) > 2:
selLink = self.activeDoc.getObject(selPath[2])
if selLink in self.parentTable:
# find the parent
idx = self.parentList.findText(Asm4.labelName(selLink), QtCore.Qt.MatchExactly)
if idx >= 0:
self.parentList.setCurrentIndex(idx)
# Reorientation
def reorientLink( self ):
moveXYZ = App.Placement( App.Vector(self.Xtranslation,self.Ytranslation,self.Ztranslation), self.old_LinkRotation )
# New AttachmentOffset rotation of the link is difference between set rotation angles and original AttachmentOffset rotation of the link
rotationX = App.Placement( App.Vector(0.00, 0.00, 0.00), App.Rotation( App.Vector(1,0,0), self.XrotationAngle - self.old_LinkRotation.toEuler()[0] ))
rotationY = App.Placement( App.Vector(0.00, 0.00, 0.00), App.Rotation( App.Vector(0,1,0), self.YrotationAngle - self.old_LinkRotation.toEuler()[1] ))
rotationZ = App.Placement( App.Vector(0.00, 0.00, 0.00), App.Rotation( App.Vector(0,0,1), self.ZrotationAngle - self.old_LinkRotation.toEuler()[2] ))
self.selectedObj.AttachmentOffset = moveXYZ * rotationX * rotationY * rotationZ
self.selectedObj.recompute()
def onXTranslValChanged(self):
self.Xtranslation = self.XtranslSpinBox.value()
self.reorientLink()
def onYTranslValChanged(self):
self.Ytranslation = self.YtranslSpinBox.value()
self.reorientLink()
def onZTranslValChanged(self):
self.Ztranslation = self.ZtranslSpinBox.value()
self.reorientLink()
# Rotations
def onRotX(self):
if self.XrotationAngle > 270.0:
self.XrotationAngle = self.XrotationAngle - 270.0
else:
self.XrotationAngle = self.XrotationAngle + 90.0
self.reorientLink()
def onRotY(self):
if self.YrotationAngle > 270.0:
self.YrotationAngle = self.YrotationAngle - 270.0
else:
self.YrotationAngle = self.YrotationAngle + 90.0
self.reorientLink()
def onRotZ(self):
if self.ZrotationAngle > 270.0:
self.ZrotationAngle = self.ZrotationAngle - 270.0
else:
self.ZrotationAngle = self.ZrotationAngle + 90.0
self.reorientLink()
"""
+-----------------------------------------------+
| split the ExpressionEngine of a linked part |
| to find the old attachments |
| (in the parent assembly or a sister part) |
| and the old target LCS in the linked Part |
+-----------------------------------------------+
"""
def splitExpressionLink( self, expr, parent ):
# same document:
# expr = LCS_target.Placement * AttachmentOffset * LCS_attachment.Placement ^ -1
# external document:
# expr = LCS_target.Placement * AttachmentOffset * linkedPart#LCS_attachment.Placement ^ -1
# expr = sisterLink.Placement * sisterPart#LCS_target.Placement * AttachmentOffset * linkedPart#LCS_attachment.Placement ^ -1
retval = ( expr, 'None', 'None' )
restFinal = ''
attLink = ''
# expr is empty
if not expr:
return retval
nbHash = expr.count('#')
if nbHash==0:
# linked part, sister part and assembly in the same document
if parent == 'Parent Assembly':
# we're attached to an LCS in the parent assembly
# expr = LCS_in_the_assembly.Placement * AttachmentOffset * LCS_linkedPart.Placement ^ -1
( attLCS, separator, rest1 ) = expr.partition('.Placement * AttachmentOffset * ')
( linkLCS, separator, rest2 ) = rest1.partition('.Placement ^ ')
restFinal = rest2
attLink = parent
attPart = 'None'
else:
# we're attached to an LCS in a sister part
# expr = ParentLink.Placement * LCS_parent.Placement * AttachmentOffset * LCS_linkedPart.Placement ^ -1
( attLink, separator, rest1 ) = expr.partition('.Placement * ')
( attLCS, separator, rest2 ) = rest1.partition('.Placement * AttachmentOffset * ')
( linkLCS, separator, rest3 ) = rest2.partition('.Placement ^ ')
restFinal = rest3
elif nbHash==1:
# an external part is linked to the assembly
if parent == 'Parent Assembly':
# we're attached to an LCS in the parent assembly
# expr = LCS_assembly.Placement * AttachmentOffset * LinkedPart#LCS.Placement ^ -1
( attLCS, separator, rest1 ) = expr.partition('.Placement * AttachmentOffset * ')
( linkedDoc, separator, rest2 ) = rest1.partition('#')
( linkLCS, separator, rest3 ) = rest2.partition('.Placement ^ ')
restFinal = rest3
attLink = parent
attPart = 'None'
else:
# if parent is in another document as the assembly
parentObj = self.rootAssembly.Document.getObject(parent)
if parentObj and parentObj.isDerivedFrom('App::Link') and not parentObj.LinkedObject.Document==self.rootAssembly.Document:
# expr = Rail_40x40_Y.Placement * Rails_V_Slot#LCS_AR.Placement * AttachmentOffset * LCS_Plaque_Laterale_sym.Placement ^ -1
# expr = parentLink.Placement * externalDoc#LCS_parentPart * AttachmentOffset * LCS_linkedPart.Placement ^ -1
( attLink, separator, rest1 ) = expr.partition('.Placement * ')
( linkedDoc, separator, rest2 ) = rest1.partition('#')
( attLCS, separator, rest3 ) = rest2.partition('.Placement * AttachmentOffset * ')
( linkLCS, separator, rest4 ) = rest3.partition('.Placement ^ ')
restFinal = rest4
# parent is in this document and link is a part in another document
else:
# expr = Part001.Placement * LCS_0.Placement * AttachmentOffset * varTmpDoc_4#LCS_1.Placement ^ -1
( attLink, separator, rest1 ) = expr.partition('.Placement * ')
( attLCS, separator, rest2 ) = rest1.partition('.Placement * AttachmentOffset * ')
( linkedDoc, separator, rest3 ) = rest2.partition('#')
( linkLCS, separator, rest4 ) = rest3.partition('.Placement ^ ')
restFinal = rest4
elif nbHash==2:
# linked part and sister part in external documents to the parent assembly:
# expr = ParentLink.Placement * ParentPart#LCS.Placement * AttachmentOffset * LinkedPart#LCS.Placement ^ -1
( attLink, separator, rest1 ) = expr.partition('.Placement * ')
( attPart, separator, rest2 ) = rest1.partition('#')
( attLCS, separator, rest3 ) = rest2.partition('.Placement * AttachmentOffset * ')
( linkedDoc, separator, rest4 ) = rest3.partition('#')
( linkLCS, separator, rest5 ) = rest4.partition('.Placement ^ ')
restFinal = rest5
else:
# complicated stuff, we'll do it later
pass
if restFinal != '':
restFinal = restFinal[1:3] if restFinal.startswith('(') else restFinal[0:2]
# final check, all options should give the correct data
if restFinal=='-1' and attLink==parent :
# wow, everything went according to plan
retval = ( attLink, attLCS, linkLCS )
return retval
"""
+-----------------------------------------------+
| the UI |
+-----------------------------------------------+
"""
# initialize the UI for the selected link
def initUI(self):
# clear the parent name (if any)
self.parentDoc.clear()
self.partLCSlist.clear()
self.attLCSlist.clear()
# the selected link's name
self.linkName.setText( Asm4.labelName(self.selectedObj) )
# linked part & doc
dText = ''
if self.selectedObj.LinkedObject.Document != self.activeDoc :
dText = self.selectedObj.LinkedObject.Document.Name +'#'
# if the linked part has been renamed by the user, keep the label and add (.Name)
pText = Asm4.labelName(self.selectedObj.LinkedObject)
self.linkedDoc.setText( dText + pText )
# Initialize the assembly tree with the Parent Assembly as first element
# clear the available parents combo box
self.parentTable = []
self.parentList.clear()
self.parentTable.append( [] )
self.parentList.addItem('Please select')
self.parentTable.append( self.rootAssembly )
parentIcon = self.rootAssembly.ViewObject.Icon
self.parentList.addItem( parentIcon, 'Parent Assembly', self.rootAssembly )
# set the old position values
self.XtranslSpinBox.setValue(self.old_LinkPosition[0])
self.YtranslSpinBox.setValue(self.old_LinkPosition[1])
self.ZtranslSpinBox.setValue(self.old_LinkPosition[2])
# defines the UI, only static elements
def drawUI(self):
# the layout for the main window is vertical (top to down)
self.mainLayout = QtGui.QVBoxLayout()
# Define the fields for the form ( label + widget )
self.formLayout = QtGui.QFormLayout()
# Selected Link (the name as seen in the tree of the selected link)
self.linkName = QtGui.QLineEdit()
self.linkName.setReadOnly(True)
self.formLayout.addRow(QtGui.QLabel('Selected Link :'),self.linkName)
# combobox showing all available App::Link
self.parentList = QtGui.QComboBox()
self.parentList.setMaximumWidth(300)
self.parentList.setToolTip('Choose the part in which the attachment\ncoordinate system is to be found')
# the parent assembly is hardcoded, and made the first real element
self.formLayout.addRow(QtGui.QLabel('Attach to :'),self.parentList)
self.mainLayout.addLayout(self.formLayout)
# with 2 columns
self.columnsLayout = QtGui.QHBoxLayout()
self.leftLayout = QtGui.QVBoxLayout()
self.rightLayout = QtGui.QVBoxLayout()
# Part, left side
#
# the document containing the linked part
self.leftLayout.addWidget(QtGui.QLabel("Linked Part :"))
self.linkedDoc = QtGui.QLineEdit()
self.linkedDoc.setReadOnly(True)
self.leftLayout.addWidget(self.linkedDoc)
# The list of all LCS in the part is a QListWidget
self.leftLayout.addWidget(QtGui.QLabel("Select LCS in Part :"))
self.partLCSlist = QtGui.QListWidget(self.form)
self.partLCSlist.setMinimumHeight(200)
self.partLCSlist.setToolTip('Select a coordinate system from the list')
self.leftLayout.addWidget(self.partLCSlist)
# Assembly, Right side
#
# the document containing the linked object
self.rightLayout.addWidget(QtGui.QLabel("Parent Part :"))
self.parentDoc = QtGui.QLineEdit()
self.parentDoc.setReadOnly(True)
self.rightLayout.addWidget(self.parentDoc)
# The list of all attachment LCS in the assembly is a QListWidget
# it is populated only when the parent combo-box is activated
self.rightLayout.addWidget(QtGui.QLabel("Select LCS in Parent :"))
self.attLCSlist = QtGui.QListWidget(self.form)
self.attLCSlist.setMinimumHeight(200)
self.attLCSlist.setToolTip('Select a coordinate system from the list')
self.rightLayout.addWidget(self.attLCSlist)
# add the 2 columns
self.columnsLayout.addLayout(self.leftLayout)
self.columnsLayout.addLayout(self.rightLayout)
self.mainLayout.addLayout(self.columnsLayout)
# The number of decimals in the global configuration
numberOfDecimals = App.ParamGet("User parameter:BaseApp/Preferences/Units").GetInt('Decimals')
# X Translation Value
self.XoffsetLayout = QtGui.QHBoxLayout()
self.XtranslSpinBoxLabel = self.XoffsetLayout.addWidget(QtGui.QLabel("X Translation :"))
self.XtranslSpinBox = Asm4.QUnitSpinBox()
self.XtranslSpinBox.setRange(-999999.00, 999999.00)
self.XtranslSpinBox.setDecimals(numberOfDecimals)
self.XtranslSpinBox.setToolTip("Translation along X axis")
self.RotXButton = QtGui.QPushButton('Rotate X +90°')
self.RotXButton.setToolTip("Rotate 90 deg around X axis")
# add the QLDoubleSpinBox
self.XoffsetLayout.addWidget(self.XtranslSpinBox)
self.XoffsetLayout.addStretch()
self.XoffsetLayout.addWidget(self.RotXButton)
self.mainLayout.addLayout(self.XoffsetLayout)
# Y Translation Value
self.YoffsetLayout = QtGui.QHBoxLayout()
self.YtranslSpinBoxLabel = self.YoffsetLayout.addWidget(QtGui.QLabel("Y Translation :"))
self.YtranslSpinBox = Asm4.QUnitSpinBox()
self.YtranslSpinBox.setRange(-999999.00, 999999.00)
self.YtranslSpinBox.setDecimals(numberOfDecimals)
self.YtranslSpinBox.setToolTip("Translation along Y")
self.RotYButton = QtGui.QPushButton('Rotate Y +90°')
self.RotYButton.setToolTip("Rotate 90 deg around Y axis")
# add the QLDoubleSpinBox
self.YoffsetLayout.addWidget(self.YtranslSpinBox)
self.YoffsetLayout.addStretch()
self.YoffsetLayout.addWidget(self.RotYButton)
self.mainLayout.addLayout(self.YoffsetLayout)
# Z Translation Value
self.ZoffsetLayout = QtGui.QHBoxLayout()
self.ZtranslSpinBoxLabel = self.ZoffsetLayout.addWidget(QtGui.QLabel("Z Translation :"))
self.ZtranslSpinBox = Asm4.QUnitSpinBox()
self.ZtranslSpinBox.setRange(-999999.00, 999999.00)
self.ZtranslSpinBox.setDecimals(numberOfDecimals)
self.ZtranslSpinBox.setToolTip("Translation along Z:")
self.RotZButton = QtGui.QPushButton('Rotate Z +90°')
self.RotZButton.setToolTip("Rotate 90 deg around Z axis")
# add to the layout
self.ZoffsetLayout.addWidget(self.ZtranslSpinBox)
self.ZoffsetLayout.addStretch()
self.ZoffsetLayout.addWidget(self.RotZButton)
self.mainLayout.addLayout(self.ZoffsetLayout)
# apply the layout to the main window
self.form.setLayout(self.mainLayout)
# Actions
self.parentList.currentIndexChanged.connect( self.onParentSelected )
self.parentList.activated.connect( self.onParentSelected )
self.partLCSlist.itemClicked.connect( self.onLCSclicked )
self.attLCSlist.itemClicked.connect( self.onLCSclicked )
self.RotXButton.clicked.connect( self.onRotX )
self.RotYButton.clicked.connect( self.onRotY )
self.RotZButton.clicked.connect( self.onRotZ )
self.XtranslSpinBox.valueChanged.connect(self.onXTranslValChanged)
self.YtranslSpinBox.valueChanged.connect(self.onYTranslValChanged)
self.ZtranslSpinBox.valueChanged.connect(self.onZTranslValChanged)