File size: 39,355 Bytes
985c397 | 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 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 | # SPDX-License-Identifier: LGPL-2.1-or-later
# ***************************************************************************
# * *
# * Copyright (c) 2018 Yorik van Havre <yorik@uncreated.net> *
# * *
# * This file is part of FreeCAD. *
# * *
# * FreeCAD is free software: you can redistribute it and/or modify it *
# * under the terms of the GNU Lesser General Public License as *
# * published by the Free Software Foundation, either version 2.1 of the *
# * License, or (at your option) any later version. *
# * *
# * FreeCAD 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 *
# * Lesser General Public License for more details. *
# * *
# * You should have received a copy of the GNU Lesser General Public *
# * License along with FreeCAD. If not, see *
# * <https://www.gnu.org/licenses/>. *
# * *
# ***************************************************************************
__title__ = "FreeCAD Arch External Reference"
__author__ = "Yorik van Havre"
__url__ = "https://www.freecad.org"
## @package ArchReference
# \ingroup ARCH
# \brief The Reference object and tools
#
# This module provides tools to build Reference objects.
# References can take a shape from a Part-based object in
# another file.
import os
import re
import struct
import zipfile
import FreeCAD
from draftutils import params
if FreeCAD.GuiUp:
from PySide import QtCore, QtGui
from PySide.QtCore import QT_TRANSLATE_NOOP
import FreeCADGui
from draftutils.translate import translate
else:
# \cond
def translate(ctxt, txt):
return txt
def QT_TRANSLATE_NOOP(ctxt, txt):
return txt
# \endcond
class ArchReference:
"""The Arch Reference object"""
def __init__(self, obj):
obj.Proxy = self
self.Type = "Reference"
ArchReference.setProperties(self, obj)
self.reload = True
def setProperties(self, obj):
pl = obj.PropertiesList
if not "File" in pl:
t = QT_TRANSLATE_NOOP("App::Property", "The base file this component is built upon")
obj.addProperty("App::PropertyFile", "File", "Reference", t, locked=True)
if not "Part" in pl:
t = QT_TRANSLATE_NOOP("App::Property", "The part to use from the base file")
obj.addProperty("App::PropertyString", "Part", "Reference", t, locked=True)
if not "ReferenceMode" in pl:
t = QT_TRANSLATE_NOOP(
"App::Property",
"The way the referenced objects are included in the current document. 'Normal' includes the shape, 'Transient' discards the shape when the object is switched off (smaller filesize), 'Lightweight' does not import the shape but only the OpenInventor representation",
)
obj.addProperty(
"App::PropertyEnumeration", "ReferenceMode", "Reference", t, locked=True
)
obj.ReferenceMode = ["Normal", "Transient", "Lightweight"]
if "TransientReference" in pl:
if obj.TransientReference:
obj.ReferenceMode = "Transient"
obj.removeProperty("TransientReference")
t = translate("Arch", "TransientReference property to ReferenceMode")
FreeCAD.Console.PrintMessage(
translate("Arch", "Upgrading") + " " + obj.Label + " " + t + "\n"
)
if not "FuseArch" in pl:
t = QT_TRANSLATE_NOOP("App::Property", "Fuse objects of same material")
obj.addProperty("App::PropertyBool", "FuseArch", "Reference", t, locked=True)
def onDocumentRestored(self, obj):
ArchReference.setProperties(self, obj)
if obj.ReferenceMode == "Lightweight":
self.reload = False
if obj.ViewObject and obj.ViewObject.Proxy:
obj.ViewObject.Proxy.loadInventor(obj)
else:
self.reload = True
self.execute(obj) # sets self.reload to False again
def dumps(self):
return None
def loads(self, state):
self.Type = "Reference"
def onChanged(self, obj, prop):
if prop in ["File", "Part"]:
self.reload = True
elif prop == "ReferenceMode":
if obj.ReferenceMode == "Normal":
if obj.ViewObject and obj.ViewObject.Proxy:
obj.ViewObject.Proxy.unloadInventor(obj)
if (not obj.Shape) or obj.Shape.isNull():
self.reload = True
obj.touch()
elif obj.ReferenceMode == "Transient":
if obj.ViewObject and obj.ViewObject.Proxy:
obj.ViewObject.Proxy.unloadInventor(obj)
self.reload = False
elif obj.ReferenceMode == "Lightweight":
self.reload = False
import Part
pl = obj.Placement
obj.Shape = Part.Shape()
obj.Placement = pl
if obj.ViewObject and obj.ViewObject.Proxy:
obj.ViewObject.Proxy.loadInventor(obj)
def execute(self, obj):
import Part
pl = obj.Placement
filename = self.getFile(obj)
if filename and self.reload and obj.ReferenceMode in ["Normal", "Transient"]:
self.parts = self.getPartsList(obj)
if self.parts:
if filename.lower().endswith(".fcstd"):
zdoc = zipfile.ZipFile(filename)
if zdoc:
self.shapes = []
if obj.Part:
if obj.Part in self.parts:
if self.parts[obj.Part][1] in zdoc.namelist():
f = zdoc.open(self.parts[obj.Part][1])
shapedata = f.read()
f.close()
shapedata = shapedata.decode("utf8")
shape = self.cleanShape(shapedata, obj, self.parts[obj.Part][2])
self.shapes.append(shape)
obj.Shape = shape
if not pl.isIdentity():
obj.Placement = pl
else:
t = translate("Arch", "Part not found in file")
FreeCAD.Console.PrintError(t + "\n")
else:
for part in self.parts.values():
f = zdoc.open(part[1])
shapedata = f.read()
f.close()
shapedata = shapedata.decode("utf8")
shape = self.cleanShape(shapedata, obj)
self.shapes.append(shape)
if self.shapes:
obj.Shape = Part.makeCompound(self.shapes)
elif filename.lower().endswith(".ifc"):
ifcfile = self.getIfcFile(filename)
if not ifcfile:
return
try:
from nativeifc import ifc_tools
from nativeifc import ifc_generator
except:
t = translate(
"Arch", "NativeIFC not available - unable to process IFC files"
)
FreeCAD.Console.PrintError(t + "\n")
return
elements = self.getIFCElements(obj, ifcfile)
shape, colors = ifc_generator.generate_shape(ifcfile, elements, cached=True)
if shape:
placement = shape.Placement
obj.Shape = shape
obj.Placement = placement
if colors:
ifc_tools.set_colors(obj, colors)
elif filename.lower().endswith(".dxf"):
# create a special parameter set to control the DXF importer
loc = "User parameter:BaseApp/Preferences/Mod/Arch"
hGrp = FreeCAD.ParamGet(loc).GetGroup("RefDxfImport")
hGrp.SetBool("dxfUseDraftVisGroups", False)
hGrp.SetBool("dxfGetOriginalColors", False)
hGrp.SetBool("groupLayers", True)
hGrp.SetFloat("dxfScaling", 1.0)
hGrp.SetBool("dxftext", False)
hGrp.SetBool("dxfImportPoints", True)
hGrp.SetBool("dxflayout", False)
hGrp.SetBool("dxfstarblocks", False)
doc = obj.Document
oldobjs = list(doc.Objects)
import Import
Import.readDXF(filename, doc.Name, True, loc + "/RefDxfImport")
newobjs = [o for o in doc.Objects if o not in oldobjs]
shapes = [o.Shape for o in newobjs if o.isDerivedFrom("Part::Feature")]
if len(shapes) == 1:
obj.Shape = shapes[0]
elif len(shapes) > 1:
obj.Shape = Part.makeCompound(shapes)
names = [o.Name for o in newobjs]
for n in names:
doc.removeObject(n)
self.reload = False
def getIFCElements(self, obj, ifcfile):
"""returns IFC elements for this object"""
try:
from nativeifc import ifc_generator
except:
t = translate("Arch", "NativeIFC not available - unable to process IFC files")
FreeCAD.Console.PrintError(t + "\n")
return
if obj.Part:
element = ifcfile[int(obj.Part)]
else:
element = ifcfile.by_type("IfcProject")[0]
elements = ifc_generator.get_decomposed_elements(element)
elements = ifc_generator.filter_types(elements)
return elements
def cleanShape(self, shapedata, obj, materials=None):
"""cleans the imported shape"""
import Part
shape = Part.Shape()
shape.importBrepFromString(shapedata)
if obj.FuseArch and materials:
# separate lone edges
shapes = []
for edge in shape.Edges:
found = False
for solid in shape.Solids:
for soledge in solid.Edges:
if edge.hashCode() == soledge.hashCode():
found = True
break
if found:
break
if found:
break
else:
shapes.append(edge)
# print("solids:",len(shape.Solids),"mattable:",materials)
for key, solindexes in materials.items():
if key == "Undefined":
# do not join objects with no defined material
for solindex in [int(i) for i in solindexes.split(",")]:
shapes.append(shape.Solids[solindex])
else:
fusion = None
for solindex in [int(i) for i in solindexes.split(",")]:
if not fusion:
fusion = shape.Solids[solindex]
else:
fusion = fusion.fuse(shape.Solids[solindex])
if fusion:
shapes.append(fusion)
shape = Part.makeCompound(shapes)
try:
shape = shape.removeSplitter()
except Exception:
t = translate("Arch", "Error removing splitter")
FreeCAD.Console.PrintError(obj.Label + ": " + t + "\n")
return shape
def exists(self, filepath):
"""case-insensitive version of os.path.exists. Returns the actual file path or None"""
if os.path.exists(filepath):
return filepath
# check for uppercase/lowercase extensions
p, e = os.path.splitext(filepath)
if os.path.exists(p + e.lower()):
return p + e.lower()
if os.path.exists(p + e.upper()):
return p + e.upper()
return None
def getFile(self, obj, filename=None):
"""gets a valid file, if possible"""
if not filename:
filename = obj.File
if not filename:
return None
if not filename.lower().endswith(".fcstd"):
if not filename.lower().endswith(".ifc"):
if not filename.lower().endswith(".dxf"):
return None
if not self.exists(filename):
# search for the file in the current directory if not found
basename = os.path.basename(filename)
currentdir = os.path.dirname(obj.Document.FileName)
altfile = os.path.join(currentdir, basename)
if altfile == obj.Document.FileName:
return None
elif self.exists(altfile):
return self.exists(altfile)
else:
# search for subpaths in current folder
altfile = None
subdirs = self.splitall(os.path.dirname(filename))
for i in range(len(subdirs)):
subpath = [currentdir] + subdirs[-i:] + [basename]
altfile = os.path.join(*subpath)
if self.exists(altfile):
return self.exists(altfile)
return None
return self.exists(filename)
def getPartsList(self, obj, filename=None):
"""returns a list of Part-based objects in a file"""
filename = self.getFile(obj, filename)
if not filename:
return None
if filename.lower().endswith(".fcstd"):
return self.getPartsListFCSTD(obj, filename)
elif filename.lower().endswith(".ifc"):
return self.getPartsListIFC(obj, filename)
elif filename.lower().endswith(".dxf"):
return self.getPartsListDXF(obj, filename)
def getPartsListDXF(self, obj, filename):
"""returns a list of Part-based objects in a DXF file"""
# support layers
# with open(filename) as f:
# txt = f.read()
return {}
def getPartsListIFC(self, obj, filename):
"""returns a list of Part-based objects in a IFC file"""
ifcfile = self.getIfcFile(filename)
if not ifcfile:
return None
structs = ifcfile.by_type("IfcSpatialElement")
res = {}
for s in structs:
n = s.Name
if not n:
n = ""
name = "#" + str(s.id()) + " " + n + "(" + s.is_a() + ")"
res[str(s.id())] = [name, s, None]
return res
def getPartsListFCSTD(self, obj, filename):
"""returns a list of Part-based objects in a FCStd file"""
parts = {}
materials = {}
zdoc = zipfile.ZipFile(filename)
with zdoc.open("Document.xml") as docf:
name = None
label = None
part = None
materials = {}
writemode = False
for line in docf:
line = line.decode("utf8")
if "<Object name=" in line:
n = re.findall(r"name=\"(.*?)\"", line)
if n:
name = n[0]
elif '<Property name="Label"' in line:
writemode = True
elif writemode and "<String value=" in line:
n = re.findall(r"value=\"(.*?)\"", line)
if n:
label = n[0]
writemode = False
elif '<Property name="Shape" type="Part::PropertyPartShape"' in line:
writemode = True
elif writemode and "<Part" in line and "file=" in line:
n = re.findall(r"file=\"(.*?)\"", line)
if n:
part = n[0]
writemode = False
elif '<Property name="MaterialsTable" type="App::PropertyMap"' in line:
writemode = True
elif writemode and "<Item key=" in line:
n = re.findall(r"key=\"(.*?)\"", line)
v = re.findall(r"value=\"(.*?)\"", line)
if n and v:
materials[n[0]] = v[0]
elif writemode and "</Map>" in line:
writemode = False
elif "</Object>" in line:
if name and label and part:
parts[name] = [label, part, materials]
name = None
label = None
part = None
materials = {}
writemode = False
return parts
def getIfcFile(self, filename):
"""Gets an IfcOpenShell object"""
try:
import ifcopenshell
except:
t = translate("Arch", "NativeIFC not available - unable to process IFC files")
FreeCAD.Console.PrintError(t + "\n")
return None
if not getattr(self, "ifcfile", None):
self.ifcfile = ifcopenshell.open(filename)
return self.ifcfile
def getColors(self, obj):
"""returns the Shape Appearance of the referenced object(s)"""
filename = self.getFile(obj)
if not filename:
return []
if not filename.lower().endswith(".fcstd"):
return []
if not getattr(self, "parts", {}):
return []
if not getattr(self, "shapes", []):
return []
totalcolors = []
parts = [obj.Part] if obj.Part else self.parts.keys()
lenparts = len(parts)
for i, part in enumerate(parts):
lenfaces = len(self.shapes[i].Faces)
if lenfaces:
colors = self._getColorsPart(filename, part)
if len(colors) == lenfaces:
totalcolors.extend(colors)
elif lenparts == 1:
totalcolors.append(colors[0])
else:
totalcolors.extend([colors[0]] * lenfaces)
return totalcolors
def _getColorsPart(self, filename, part):
zdoc = zipfile.ZipFile(filename)
if not "GuiDocument.xml" in zdoc.namelist():
return []
colors = []
colorfile = None
with zdoc.open("GuiDocument.xml") as docf:
writemode1 = False
writemode2 = False
writemode3 = False
for line in docf:
line = line.decode("utf8")
if ('<ViewProvider name="' + part + '"') in line:
writemode1 = True
elif writemode1 and ('<Property name="DiffuseColor"' in line):
writemode1 = False
writemode2 = True
elif writemode1 and ('<Property name="ShapeAppearance"' in line):
writemode1 = False
writemode3 = True
elif writemode2 and ("<ColorList file=" in line):
n = re.findall(r"file=\"(.*?)\"", line)
if n:
colorfile = n[0]
break
elif writemode3 and ("<MaterialList file=" in line):
n = re.findall(r"file=\"(.*?)\"", line)
if n:
colorfile = n[0]
break
if not colorfile:
return []
if not colorfile in zdoc.namelist():
return []
cf = zdoc.open(colorfile)
buf = cf.read()
cf.close()
colors = []
if writemode2:
# Old DiffuseColor support:
alpha_to_transparency = False
for i in range(1, int(len(buf) / 4)):
# ShapeAppearance material with default v0.21 properties:
material = FreeCAD.Material()
color = self._processColor(buf, i * 4)
material.DiffuseColor = color[:3] + (255,)
material.Transparency = color[3] / 255.0
colors.append(material)
if material.Transparency == 1.0:
# Assumption: a face with 100% transparency indicates
# we are actually dealing with alpha values.
alpha_to_transparency = True
if alpha_to_transparency:
for material in colors:
material.Transparency = 1.0 - material.Transparency
if writemode3:
# File format ShapeAppearance files in FCStd file:
# - 1st byte: number of faces
# - Next 3 bytes: zero
# - For each face: 6 fields with 4 bytes in this order:
# - ambient color
# - diffuse color
# - specular color
# - emissive color
# - shininess
# - transparency
# - Tail of file: unknown repetition of bytes
for face_idx in range(buf[0]):
face_buf = buf[face_idx * 24 + 4 : face_idx * 24 + 28]
# ShapeAppearance material with default v0.21 properties:
material = FreeCAD.Material()
material.AmbientColor = self._processColor(face_buf, 0)
material.DiffuseColor = self._processColor(face_buf, 4)
material.SpecularColor = self._processColor(face_buf, 8)
material.EmissiveColor = self._processColor(face_buf, 12)
material.Shininess = self._processNumber(face_buf, 16)
material.Transparency = self._processNumber(face_buf, 20)
colors.append(material)
return colors
def _processColor(self, buf, i):
"""returns a tuple with 4 ints (0-255)"""
return (buf[i + 3], buf[i + 2], buf[i + 1], buf[i])
def _processNumber(self, buf, i):
"""returns a float"""
return struct.unpack("f", buf[i : i + 4])[0]
def splitall(self, path):
"""splits a path between its components"""
allparts = []
while 1:
parts = os.path.split(path)
if parts[0] == path: # sentinel for absolute paths
allparts.insert(0, parts[0])
break
elif parts[1] == path: # sentinel for relative paths
allparts.insert(0, parts[1])
break
else:
path = parts[0]
allparts.insert(0, parts[1])
return allparts
class ViewProviderArchReference:
"""A View Provider for the Arch Reference object"""
def __init__(self, vobj):
vobj.Proxy = self
self.setProperties(vobj)
def setProperties(self, vobj):
pl = vobj.PropertiesList
if not "TimeStamp" in pl:
t = QT_TRANSLATE_NOOP("App::Property", "The latest time stamp of the linked file")
vobj.addProperty("App::PropertyFloat", "TimeStamp", "Reference", t, locked=True)
vobj.setEditorMode("TimeStamp", 2)
if not "UpdateColors" in pl:
t = QT_TRANSLATE_NOOP(
"App::Property", "If true, the colors from the linked file will be kept updated"
)
vobj.addProperty("App::PropertyBool", "UpdateColors", "Reference", t, locked=True)
vobj.UpdateColors = True
def getIcon(self):
import Arch_rc
return ":/icons/Arch_Reference.svg"
def attach(self, vobj):
self.Object = vobj.Object
# Check for file change every minute
self.timer = QtCore.QTimer()
self.timer.timeout.connect(self.checkChanges)
s = params.get_param_arch("ReferenceCheckInterval")
self.timer.start(1000 * s)
def dumps(self):
return None
def loads(self, state):
return None
def updateData(self, obj, prop):
if prop == "Shape":
if hasattr(obj.ViewObject, "UpdateColors") and obj.ViewObject.UpdateColors:
if obj.Shape and not obj.Shape.isNull():
colors = obj.Proxy.getColors(obj)
if colors:
obj.ViewObject.ShapeAppearance = colors
def checkChanges(self):
"checks if the linked file has changed"
if hasattr(self, "Object") and self.Object:
try:
f = self.Object.File
except ReferenceError:
f = None
if hasattr(self, "timer"):
self.timer.stop()
del self.timer
if f:
filename = self.Object.Proxy.getFile(self.Object)
if filename:
st_mtime = os.stat(filename).st_mtime
if hasattr(self.Object.ViewObject, "TimeStamp"):
if self.Object.ViewObject.TimeStamp:
if self.Object.ViewObject.TimeStamp != st_mtime:
self.Object.Proxy.reload = True
self.Object.touch()
self.Object.ViewObject.TimeStamp = st_mtime
def onChanged(self, vobj, prop):
if prop == "ShapeColor":
# prevent ShapeColor from overriding DiffuseColor
if hasattr(vobj, "DiffuseColor") and hasattr(vobj, "UpdateColors"):
if vobj.DiffuseColor and vobj.UpdateColors:
vobj.DiffuseColor = vobj.DiffuseColor
elif prop == "Visibility":
if vobj.Visibility:
if (not vobj.Object.Shape) or vobj.Object.Shape.isNull():
vobj.Object.Proxy.reload = True
vobj.Object.Proxy.execute(vobj.Object)
else:
if hasattr(vobj.Object, "ReferenceMode"):
if vobj.Object.ReferenceMode == "Transient":
vobj.Object.Proxy.reload = False
import Part
pl = vobj.Object.Placement
vobj.Object.Shape = Part.Shape()
vobj.Object.Placement = pl
def onDelete(self, obj, doc):
if hasattr(self, "timer"):
self.timer.stop()
del self.timer
return True
def setEdit(self, vobj, mode):
if mode != 0:
return None
taskd = ArchReferenceTaskPanel(vobj.Object)
FreeCADGui.Control.showDialog(taskd)
return True
def unsetEdit(self, vobj, mode):
if mode != 0:
return None
FreeCADGui.Control.closeDialog()
return True
def setupContextMenu(self, vobj, menu):
if FreeCADGui.activeWorkbench().name() != "BIMWorkbench":
return
actionEdit = QtGui.QAction(translate("Arch", "Edit"), menu)
QtCore.QObject.connect(actionEdit, QtCore.SIGNAL("triggered()"), self.edit)
menu.addAction(actionEdit)
actionOnReload = QtGui.QAction(
QtGui.QIcon(":/icons/view-refresh.svg"), translate("Arch", "Reload reference"), menu
)
QtCore.QObject.connect(actionOnReload, QtCore.SIGNAL("triggered()"), self.onReload)
menu.addAction(actionOnReload)
actionOnOpen = QtGui.QAction(
QtGui.QIcon(":/icons/document-open.svg"), translate("Arch", "Open reference"), menu
)
QtCore.QObject.connect(actionOnOpen, QtCore.SIGNAL("triggered()"), self.onOpen)
menu.addAction(actionOnOpen)
def edit(self):
FreeCADGui.ActiveDocument.setEdit(self.Object, 0)
def onReload(self):
"reloads the reference object"
if hasattr(self, "Object") and self.Object:
self.Object.Proxy.reload = True
self.Object.touch()
FreeCAD.ActiveDocument.recompute()
def onOpen(self):
"opens the reference file"
if hasattr(self, "Object") and self.Object:
if self.Object.File:
FreeCAD.openDocument(self.Object.File)
def loadInventor(self, obj):
"loads an openinventor file and replace the root node of this object"
filename = obj.Proxy.getFile(obj)
if not filename:
return None
if filename.lower().endswith(".ifc"):
self.setIFCNode(obj, filename)
return
# check inventor contents
ivstring = self.getInventorString(obj)
if not ivstring:
t = translate("Arch", "Unable to get lightWeight node for object referenced in")
FreeCAD.Console.PrintWarning(t + " " + obj.Label + "\n")
return
from pivy import coin
from draftutils import gui_utils
inputnode = coin.SoInput()
inputnode.setBuffer(ivstring)
lwnode = coin.SoDB.readAll(inputnode)
if not isinstance(lwnode, coin.SoSeparator):
t = translate("Arch", "Invalid lightWeight node for object referenced in")
FreeCAD.Console.PrintError(t + " " + obj.Label + "\n")
return
if lwnode.getNumChildren() < 2:
t = translate("Arch", "Invalid lightWeight node for object referenced in")
FreeCAD.Console.PrintError(t + " " + obj.Label + "\n")
return
flatlines = lwnode
shaded = lwnode.getChild(0)
wireframe = lwnode.getChild(1)
# check node contents
rootnode = obj.ViewObject.RootNode
# display mode switch
switch = gui_utils.find_coin_node(obj.ViewObject.RootNode, coin.SoSwitch)
if switch is None or switch.getNumChildren() != 4:
FreeCAD.Console.PrintError(
translate("Arch", "Invalid root node in") + " " + obj.Label + "\n"
)
return
# keep a copy of the original nodes
self.orig_flatlines = switch.getChild(0).copy()
self.orig_shaded = switch.getChild(1).copy()
self.orig_wireframe = switch.getChild(2).copy()
# replace root node of object
switch.replaceChild(0, flatlines)
switch.replaceChild(1, shaded)
switch.replaceChild(2, wireframe)
def unloadInventor(self, obj):
"restore original nodes"
if (not hasattr(self, "orig_flatlines")) or (not self.orig_flatlines):
return
if (not hasattr(self, "orig_shaded")) or (not self.orig_shaded):
return
if (not hasattr(self, "orig_wireframe")) or (not self.orig_wireframe):
return
from pivy import coin
from draftutils import gui_utils
# check node contents
rootnode = obj.ViewObject.RootNode
# display mode switch
switch = gui_utils.find_coin_node(obj.ViewObject.RootNode, coin.SoSwitch)
if switch is None or switch.getNumChildren() != 4:
FreeCAD.Console.PrintError(
translate("Arch", "Invalid root node in") + " " + obj.Label + "\n"
)
return
# replace root node of object
switch.replaceChild(0, self.orig_flatlines)
switch.replaceChild(1, self.orig_shaded)
switch.replaceChild(2, self.orig_wireframe)
# discard old content
self.orig_flatlines = None
self.orig_shaded = None
self.orig_wireframe = None
def getInventorString(self, obj):
"locates and loads an iv file saved together with an object, if existing"
filename = obj.Proxy.getFile(obj)
if not filename:
return None
part = obj.Part
if not obj.Part:
return None
zdoc = zipfile.ZipFile(filename)
if not "Document.xml" in zdoc.namelist():
return None
ivfile = None
with zdoc.open("Document.xml") as docf:
writemode1 = False
writemode2 = False
for line in docf:
line = line.decode("utf8")
if ("<Object name=" in line) and (part in line):
writemode1 = True
elif writemode1 and ('<Property name="SavedInventor"' in line):
writemode1 = False
writemode2 = True
elif writemode2 and ("<FileIncluded file=" in line):
n = re.findall(r"file=\"(.*?)\"", line)
if n:
ivfile = n[0]
break
if not ivfile:
return None
if not ivfile in zdoc.namelist():
return None
f = zdoc.open(ivfile)
buf = f.read()
buf = buf.decode("utf8")
f.close()
buf = buf.replace("lineWidth 2", "lineWidth " + str(int(obj.ViewObject.LineWidth)))
return buf
def setIFCNode(self, obj, filename):
"""Sets the coin node of this object from an IFC file"""
try:
from nativeifc import ifc_tools
from nativeifc import ifc_generator
except:
t = translate("Arch", "NativeIFC not available - unable to process IFC files")
FreeCAD.Console.PrintError(t + "\n")
return
ifcfile = obj.Proxy.getIfcFile(filename)
elements = obj.Proxy.getIFCElements(obj, ifcfile)
node, placement = ifc_generator.generate_coin(ifcfile, elements, cached=True)
if node:
ifc_generator.set_representation(obj.ViewObject, node)
colors = node[0]
if colors:
ifc_tools.set_colors(obj, colors)
else:
ifc_generator.set_representation(obj.ViewObject, None)
if placement:
obj.Placement = placement
class ArchReferenceTaskPanel:
"""The editmode TaskPanel for Reference objects"""
def __init__(self, obj):
self.obj = obj
self.filename = None
self.form = QtGui.QWidget()
self.form.setWindowTitle(translate("Arch", "External reference"))
layout = QtGui.QVBoxLayout(self.form)
label1 = QtGui.QLabel(translate("Arch", "External file") + ":")
layout.addWidget(label1)
self.fileButton = QtGui.QPushButton(self.form)
self.openButton = QtGui.QPushButton(self.form)
self.openButton.setText(translate("Arch", "Open"))
if not self.obj.File:
self.openButton.setEnabled(False)
l2 = QtGui.QHBoxLayout()
layout.addLayout(l2)
l2.addWidget(self.fileButton)
l2.addWidget(self.openButton)
label2 = QtGui.QLabel(translate("Arch", "Part to use:"))
layout.addWidget(label2)
if self.obj.File:
self.fileButton.setText(os.path.basename(self.obj.File))
else:
self.fileButton.setText(translate("Arch", "Choose File"))
self.partCombo = QtGui.QComboBox(self.form)
self.partCombo.setEnabled(False)
layout.addWidget(self.partCombo)
if hasattr(self.obj.Proxy, "parts"):
parts = self.obj.Proxy.parts
else:
parts = self.obj.Proxy.getPartsList(self.obj)
if parts:
self.partCombo.setEnabled(True)
sortedkeys = sorted(parts)
self.partCombo.addItem(translate("Arch", "None (Use whole object)"), "")
for k in sortedkeys:
self.partCombo.addItem(parts[k][0], k)
if self.obj.Part:
if self.obj.Part in sortedkeys:
self.partCombo.setCurrentIndex(sortedkeys.index(self.obj.Part) + 1)
else:
self.partCombo.setEnabled(False)
QtCore.QObject.connect(self.fileButton, QtCore.SIGNAL("clicked()"), self.chooseFile)
QtCore.QObject.connect(self.openButton, QtCore.SIGNAL("clicked()"), self.openFile)
def accept(self):
from PySide import QtCore
if self.filename:
if self.filename != self.obj.File:
self.obj.File = self.filename
FreeCAD.ActiveDocument.recompute()
if self.partCombo.currentText():
i = self.partCombo.currentIndex()
if i >= 1:
if self.partCombo.itemData(i) != self.obj.Part:
self.obj.Part = self.partCombo.itemData(i)
else:
self.obj.Part = ""
QtCore.QTimer.singleShot(0, FreeCAD.ActiveDocument.recompute)
if self.filename and self.obj.Label == "External Reference":
self.obj.Label = os.path.basename(self.filename)
FreeCADGui.ActiveDocument.resetEdit()
return True
def reject(self):
FreeCAD.ActiveDocument.recompute()
FreeCADGui.ActiveDocument.resetEdit()
return True
def chooseFile(self):
loc = QtCore.QDir.homePath()
if self.obj.File:
loc = os.path.dirname(self.obj.File)
filters = "*.FCStd *.dxf"
# enable IFC support if NativeIFC is present
try:
from nativeifc import ifc_tools
except:
pass
else:
filters += " *.ifc"
filters = translate("Arch", "Reference files") + " (" + filters + ")"
f = QtGui.QFileDialog.getOpenFileName(
self.form, translate("Arch", "Choose reference file"), loc, filters
)
if f:
self.filename = f[0]
self.fileButton.setText(os.path.basename(self.filename))
parts = self.obj.Proxy.getPartsList(self.obj, self.filename)
self.partCombo.clear()
if parts:
self.partCombo.setEnabled(True)
sortedkeys = sorted(parts)
self.partCombo.addItem(translate("Arch", "None (Use whole object)"), "")
for k in sortedkeys:
self.partCombo.addItem(parts[k][0], k)
if self.obj.Part:
if self.obj.Part in sortedkeys:
self.partCombo.setCurrentIndex(sortedkeys.index(self.obj.Part) + 1)
else:
self.partCombo.setEnabled(False)
def openFile(self):
if self.obj.File:
if self.obj.File.lower().endswith(".fcstd"):
FreeCAD.openDocument(self.obj.File)
else:
FreeCAD.loadFile(self.obj.File)
FreeCADGui.Control.closeDialog()
FreeCADGui.ActiveDocument.resetEdit()
|