forked from FreeCAD/FreeCAD-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PartsLibrary.FCMacro
executable file
·464 lines (395 loc) · 20.1 KB
/
PartsLibrary.FCMacro
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#***************************************************************************
#* *
#* Copyright (c) 2013 Yorik van Havre <yorik@uncreated.net> *
#* *
#* This program is free software; you can redistribute it and/or modify *
#* it under the terms of the GNU Lesser General Public License (LGPL) *
#* as published by the Free Software Foundation; either version 2 of *
#* the License, or (at your option) any later version. *
#* for detail see the LICENCE text file. *
#* *
#* This program is distributed in the hope that it will be useful, *
#* but WITHOUT ANY WARRANTY; without even the implied warranty of *
#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
#* GNU Library General Public License for more details. *
#* *
#* You should have received a copy of the GNU Library General Public *
#* License along with this program; if not, write to the Free Software *
#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
#* USA *
#* *
#***************************************************************************
from __future__ import print_function
__title__="FreeCAD Parts Library Macro"
__author__ = "Yorik van Havre"
__url__ = "http://www.freecadweb.org"
'''
FreeCAD Parts Library import macro
INSTALLATION
This script is made to be used as a FreeCAD macro, and to be placed
inside your macros folder (default is $HOME/.FreeCAD on mac/linux,
C:/Users/youruser/Application Data/FreeCAD on windows).
After it is installed on the above location, it will be available
in the macros menu. On first run, it will ask you for the location
of your library.
USAGE
This macro adds a browser window to the FreeCAD interface, from
which you can browse and install items from the library.
ADVANCED USE
The update, config, and push buttons all rely on git, and need the
python-git package installed. Once that is done, and provided the
library is a git repository (ie. you cloned it with git instead of
just downloading it), the above mentioned buttons will be enabled.
The "update" button will simply update your local library with the
latest contents from the online repository.
CONTRIBUTING
When cloning the official FreeCAD Parts library, you will usually
not have write permission to it, and therefore cannot push to it.
The best way to proceed is, instead of cloning the FreeCAD library
directly, to fork it first (for example using the github "fork"
button), then clone that foked repo instead, where you will have
the correct permissions.
Once you pushed some contents there, you can make a pull request on
the official repo to have it merged.
If you create a folder named Private in your library, it won't be
considered when pushing, so you can place private Parts there.
'''
import sys, FreeCAD, FreeCADGui, Part, zipfile, tempfile, Mesh, os, subprocess
from PySide import QtGui, QtCore
param = FreeCAD.ParamGet('User parameter:Plugins/parts_library')
s = param.GetString('destination')
#print('User parameter:Plugins/partlib : destination : ',s)
try:
QtCore.QTextCodec.setCodecForTr(QTextCodec.codecForName("UTF-8"))
except:
pass # Will fallback to Latin-1
if s:
LIBRARYPATH = s
else:
folderDialog = QtGui.QFileDialog.getExistingDirectory(None,QtGui.QApplication.translate("PartsLibrary", "Location of your existing Parts library"))
param.SetString('destination',folderDialog.replace("\\","/")) # forward slashes apparently work on windows too
LIBRARYPATH = param.GetString('destination')
def translate(context, text):
# Will fallback to Latin-1
return QtGui.QApplication.translate(context, text)
class ExpFileSystemModel(QtGui.QFileSystemModel):
"a custom QFileSystemModel that displays freecad file icons"
def __init__(self):
QtGui.QFileSystemModel.__init__(self)
def data(self, index, role):
if index.column() == 0 and role == QtCore.Qt.DecorationRole:
if index.data().lower().endswith('.fcstd'):
return QtGui.QIcon(':icons/freecad-doc.png')
elif index.data().lower() == "private":
return QtGui.QIcon.fromTheme("folder-lock")
return super(ExpFileSystemModel, self).data(index, role)
class ExpDockWidget(QtGui.QDockWidget):
"a library explorer dock widget"
def __init__(self,LIBRARYPATH):
QtGui.QDockWidget.__init__(self)
self.setObjectName("PartsLibrary")
# setting up a directory model that shows only fcstd, step and brep
self.dirmodel = ExpFileSystemModel()
self.dirmodel.setRootPath(LIBRARYPATH)
self.dirmodel.setNameFilters(["*.fcstd","*.FcStd","*.FCSTD","*.stp","*.STP","*.step","*.STEP", "*.brp", "*.BRP", "*.brep", "*.BREP"])
self.dirmodel.setNameFilterDisables(0)
self.folder = QtGui.QTreeView()
self.folder.setModel(self.dirmodel)
self.folder.clicked[QtCore.QModelIndex].connect(self.clicked)
self.folder.doubleClicked[QtCore.QModelIndex].connect(self.doubleclicked)
# Don't show columns for size, file type, and last modified
self.folder.setHeaderHidden(True)
self.folder.hideColumn(1)
self.folder.hideColumn(2)
self.folder.hideColumn(3)
self.folder.setRootIndex(self.dirmodel.index(LIBRARYPATH))
self.preview = QtGui.QLabel()
self.preview.setFixedHeight(128)
self.updatebutton = QtGui.QPushButton()
icon = QtGui.QIcon.fromTheme("emblem-synchronizing")
self.updatebutton.setIcon(icon)
self.updatebutton.clicked.connect(self.updatelibrary)
self.updatebutton.hide()
self.configbutton = QtGui.QPushButton()
icon = QtGui.QIcon.fromTheme("emblem-system")
self.configbutton.setIcon(icon)
self.configbutton.clicked.connect(self.setconfig)
self.configbutton.hide()
self.formatLabel = QtGui.QLabel()
self.formatLabel.hide()
self.savebutton = QtGui.QPushButton()
icon = QtGui.QIcon.fromTheme("document-save")
self.savebutton.setIcon(icon)
self.savebutton.clicked.connect(self.addtolibrary)
self.savebutton.hide()
self.pushbutton = QtGui.QPushButton()
icon = QtGui.QIcon.fromTheme("document-export")
self.pushbutton.setIcon(icon)
self.pushbutton.clicked.connect(self.pushlibrary)
self.pushbutton.hide()
self.prevbutton = QtGui.QPushButton()
self.prevbutton.clicked.connect(self.showpreview)
self.prevbutton.setStyleSheet("text-align: left;")
self.optbutton = QtGui.QPushButton()
self.optbutton.clicked.connect(self.showoptions)
self.optbutton.setStyleSheet("text-align: left;")
self.fcstdCB = QtGui.QCheckBox('FCStd')
self.fcstdCB.setCheckState(QtCore.Qt.Checked)
self.fcstdCB.setEnabled(False)
self.fcstdCB.hide()
self.stepCB = QtGui.QCheckBox('STEP')
self.stepCB.setCheckState(QtCore.Qt.Checked)
self.stepCB.hide()
self.stlCB = QtGui.QCheckBox('STL')
self.stlCB.setCheckState(QtCore.Qt.Checked)
self.stlCB.hide()
container = QtGui.QWidget()
grid = QtGui.QGridLayout()
grid.setSpacing(10)
grid.addWidget(self.folder,0,0,1,2)
grid.addWidget(self.prevbutton,1,0,1,2)
grid.addWidget(self.preview,2,0,1,2)
grid.addWidget(self.optbutton,3,0,1,2)
grid.addWidget(self.updatebutton,4,0,1,1)
grid.addWidget(self.configbutton,4,1,1,1)
grid.addWidget(self.formatLabel,5,0,1,2)
grid.addWidget(self.fcstdCB,6,0,1,2)
grid.addWidget(self.stepCB,7,0,1,2)
grid.addWidget(self.stlCB,8,0,1,2)
grid.addWidget(self.savebutton,9,0,1,1)
grid.addWidget(self.pushbutton,9,1,1,1)
global repo
repo = None
try:
import git
except:
FreeCAD.Console.PrintWarning("python-git not found. Git-related functions will be disabled\n")
else:
try:
repo = git.Repo(LIBRARYPATH)
except:
FreeCAD.Console.PrintWarning("Your library is not a valid Git repository. Git-related functions will be disabled\n")
else:
if not repo.remotes:
FreeCAD.Console.PrintWarning("No remote repository set. Git-related functions will be disabled\n")
repo = None
if not repo:
self.updatebutton.setEnabled(False)
#self.configbutton.setEnabled(False)
self.pushbutton.setEnabled(False)
self.retranslateUi()
container.setLayout(grid)
self.setWidget(container)
def retranslateUi(self):
self.setWindowTitle(translate("PartsLibrary", "Parts Library"))
self.updatebutton.setText(translate("PartsLibrary", "Update from Git"))
self.configbutton.setText(translate("PartsLibrary", "Config"))
self.formatLabel.setText(translate("PartsLibrary", "Add to library"))
self.savebutton.setText(translate("PartsLibrary", "Save"))
self.pushbutton.setText(translate("PartsLibrary", "Push to Git"))
self.optbutton.setText(translate("PartsLibrary", "Options ⏷"))
self.prevbutton.setText(translate("PartsLibrary", "Preview ⏶"))
def clicked(self, index):
path = self.dirmodel.filePath(index)
if path.lower().endswith(".fcstd"):
zfile=zipfile.ZipFile(path)
files=zfile.namelist()
# check for meta-file if it's really a FreeCAD document
if files[0] == "Document.xml":
image="thumbnails/Thumbnail.png"
if image in files:
image=zfile.read(image)
thumbfile = tempfile.mkstemp(suffix='.png')[1]
thumb = open(thumbfile,"wb")
thumb.write(image)
thumb.close()
im = QtGui.QPixmap(thumbfile)
self.preview.setPixmap(im)
return
self.preview.clear()
def doubleclicked(self, index):
path = self.dirmodel.filePath(index)
if path.lower().endswith(".stp") or path.lower().endswith(".step") or path.lower().endswith(".brp") or path.lower().endswith(".brep"):
Part.show(Part.read(path))
elif path.lower().endswith(".fcstd"):
FreeCADGui.ActiveDocument.mergeProject(path)
FreeCADGui.SendMsgToActiveView("ViewFit")
def addtolibrary(self):
fileDialog = QtGui.QFileDialog.getSaveFileName(None,u"Choose category and set a filename without extension", LIBRARYPATH)
if fileDialog != '':
#filename = fileDialog[0].split("/")[-1]
#if filename.split(".")[-1].lowercase == "fcstd" or "stl
FCfilename = fileDialog[0] + ".fcstd"
FreeCAD.ActiveDocument.saveCopy(FCfilename)
if self.stepCB.isChecked() or self.stlCB.isChecked():
toexport = []
objs = FreeCAD.ActiveDocument.Objects
for obj in objs :
if obj.ViewObject.Visibility == True :
toexport.append(obj)
if self.stepCB.isChecked() :
STEPfilename = fileDialog[0] + ".step"
Part.export(toexport,STEPfilename)
if self.stlCB.isChecked() :
STLfilename = fileDialog[0] + ".stl"
Mesh.export(toexport,STLfilename)
def pushlibrary(self):
modified_files = [f for f in repo.git.diff("--name-only").split("\n") if (f and (f != 'PartsLibrary.FCMacro'))]
#print(modified_files)
untracked_files = [f for f in repo.git.ls_files("--other","--exclude-standard").split("\n") if f]
#print(untracked_files)
import ArchServer
d = ArchServer._ArchGitDialog()
d.label.setText(str(len(modified_files)+len(untracked_files))+" new and modified file(s)")
d.lineEdit.setText("Changed " + str(modified_files))
d.checkBox.hide()
d.radioButton.hide()
d.radioButton_2.hide()
r = d.exec_()
if r:
for o in modified_files + untracked_files:
repo.git.add(o)
repo.git.commit(m=d.lineEdit.text())
if d.checkBox.isChecked():
repo.git.push()
def updatelibrary(self):
repo.git.pull()
def setconfig(self):
d = ConfigDialog()
if repo:
d.lineEdit.setText(repo.remote().url)
if hasattr(repo.remote(),"pushurl"):
d.lineEdit_2.setText(repo.remote().pushurl)
else:
d.lineEdit_2.setText(repo.remote().url)
else:
d.groupBox.setEnabled(False)
d.groupBox_2.setEnabled(False)
r = d.exec_()
def showoptions(self):
controls = [self.updatebutton,self.configbutton,self.formatLabel,
self.fcstdCB,self.stepCB,self.stlCB,self.savebutton,self.pushbutton]
tree = [self.preview]
if self.updatebutton.isVisible():
for c in controls:
c.hide()
for c in tree:
c.show()
self.optbutton.setText(translate("PartsLibrary", "Options ⏷"))
else:
for c in controls:
c.show()
for c in tree:
c.hide()
self.optbutton.setText(translate("PartsLibrary", "Options ⏶"))
def showpreview(self):
if self.preview.isVisible():
self.preview.hide()
self.prevbutton.setText(translate("PartsLibrary", "Preview ⏷"))
else:
self.preview.show()
self.prevbutton.setText(translate("PartsLibrary", "Preview ⏶"))
class ConfigDialog(QtGui.QDialog):
def __init__(self):
QtGui.QDialog.__init__(self)
self.setObjectName("GitConfig")
self.resize(420, 250)
self.verticalLayout = QtGui.QVBoxLayout(self)
self.verticalLayout.setObjectName("verticalLayout")
self.groupBox_3 = QtGui.QGroupBox(self)
self.groupBox_3.setObjectName("groupBox_3")
self.horizontalLayout_3 = QtGui.QHBoxLayout(self.groupBox_3)
self.horizontalLayout_3.setObjectName("horizontalLayout_3")
self.lineEdit_3 = QtGui.QLineEdit(self.groupBox_3)
self.lineEdit_3.setObjectName("lineEdit_3")
self.horizontalLayout_3.addWidget(self.lineEdit_3)
self.pushButton_3 = QtGui.QPushButton(self.groupBox_3)
self.pushButton_3.setObjectName("pushButton_3")
self.horizontalLayout_3.addWidget(self.pushButton_3)
self.verticalLayout.addWidget(self.groupBox_3)
self.groupBox = QtGui.QGroupBox(self)
self.groupBox.setObjectName("groupBox")
self.horizontalLayout = QtGui.QHBoxLayout(self.groupBox)
self.horizontalLayout.setObjectName("horizontalLayout")
self.lineEdit = QtGui.QLineEdit(self.groupBox)
self.lineEdit.setObjectName("lineEdit")
self.horizontalLayout.addWidget(self.lineEdit)
self.pushButton = QtGui.QPushButton(self.groupBox)
self.pushButton.setObjectName("pushButton")
self.horizontalLayout.addWidget(self.pushButton)
self.verticalLayout.addWidget(self.groupBox)
self.groupBox_2 = QtGui.QGroupBox(self)
self.groupBox_2.setObjectName("groupBox_2")
self.verticalLayout_2 = QtGui.QVBoxLayout(self.groupBox_2)
self.verticalLayout_2.setObjectName("verticalLayout_2")
self.lineEdit_2 = QtGui.QLineEdit(self.groupBox_2)
self.lineEdit_2.setObjectName("lineEdit_2")
self.verticalLayout_2.addWidget(self.lineEdit_2)
self.label = QtGui.QLabel(self.groupBox_2)
self.label.setObjectName("label")
self.verticalLayout_2.addWidget(self.label)
self.verticalLayout.addWidget(self.groupBox_2)
self.buttonBox = QtGui.QDialogButtonBox(self)
self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok)
self.buttonBox.setObjectName("buttonBox")
self.verticalLayout.addWidget(self.buttonBox)
self.retranslateUi()
QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL("accepted()"), self.accept)
QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL("rejected()"), self.reject)
QtCore.QObject.connect(self.pushButton, QtCore.SIGNAL("clicked()"), self.setdefaulturl)
QtCore.QObject.connect(self.pushButton_3, QtCore.SIGNAL("clicked()"), self.changepath)
QtCore.QMetaObject.connectSlotsByName(self)
librarypath = FreeCAD.ParamGet('User parameter:Plugins/parts_library').GetString('destination','')
self.lineEdit_3.setText(librarypath)
def retranslateUi(self):
self.setWindowTitle(QtGui.QApplication.translate("PartsLibrary", "Parts library configuration"))
self.groupBox.setTitle(QtGui.QApplication.translate("PartsLibrary", "Pull server (where you get your updates from)"))
self.lineEdit.setToolTip(QtGui.QApplication.translate("PartsLibrary", "Enter the URL of the pull server here"))
self.pushButton.setToolTip(QtGui.QApplication.translate("PartsLibrary", "Use the official FreeCAD-library repository"))
self.pushButton.setText(QtGui.QApplication.translate("PartsLibrary", "use official"))
self.groupBox_2.setTitle(QtGui.QApplication.translate("PartsLibrary", "Push server (where you push your changes to)"))
self.lineEdit_2.setToolTip(QtGui.QApplication.translate("PartsLibrary", "Enter the URL of the push server here"))
self.label.setText(QtGui.QApplication.translate("PartsLibrary", "Warning: You need write permission on this server"))
self.groupBox_3.setTitle(QtGui.QApplication.translate("PartsLibrary", "Library path"))
self.lineEdit_3.setToolTip(QtGui.QApplication.translate("PartsLibrary", "Enter the path to your parts library"))
self.pushButton_3.setToolTip(QtGui.QApplication.translate("PartsLibrary", "Browse to your path library"))
self.pushButton_3.setText(QtGui.QApplication.translate("PartsLibrary", "..."))
def setdefaulturl(self):
self.lineEdit.setText("https://github.com/FreeCAD/FreeCAD-library.git")
def changepath(self):
librarypath = FreeCAD.ParamGet('User parameter:Plugins/parts_library').GetString('destination','')
np = QtGui.QFileDialog.getExistingDirectory(self,"Location of your existing Parts library",librarypath)
if np:
self.lineEdit_3.setText(np)
def accept(self):
if repo:
cw = repo.remote().config_writer
if self.lineEdit.text():
cw.set("url", str(self.lineEdit.text()))
if self.lineEdit_2.text():
cw.set("pushurl", str(self.lineEdit_2.text()))
if hasattr(cw,"release"):
cw.release()
if self.lineEdit_3.text():
FreeCAD.ParamGet('User parameter:Plugins/parts_library').SetString('destination',self.lineEdit_3.text())
QtGui.QDialog.accept(self)
if QtCore.QDir(LIBRARYPATH).exists():
m = FreeCADGui.getMainWindow()
w = m.findChild(QtGui.QDockWidget,"PartsLibrary")
if w:
if hasattr(w,"isVisible"):
if w.isVisible():
w.hide()
else:
w.show()
else:
# something went wrong with our widget... Recreate it
del w
m.addDockWidget(QtCore.Qt.RightDockWidgetArea,ExpDockWidget(LIBRARYPATH))
else:
m.addDockWidget(QtCore.Qt.RightDockWidgetArea,ExpDockWidget(LIBRARYPATH))
else:
print("Library path ", LIBRARYPATH, "not found.")