mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-09 17:31:45 +00:00
374 lines
14 KiB
Python
374 lines
14 KiB
Python
import sys
|
|
import time
|
|
import operator
|
|
import functools
|
|
|
|
import OCC.AIS
|
|
|
|
import ifcopenshell
|
|
|
|
from collections import defaultdict, Iterable
|
|
|
|
from PyQt4 import QtGui, QtCore
|
|
|
|
try: from OCC.Display.pyqt4Display import qtViewer3d
|
|
except:
|
|
import OCC.Display
|
|
OCC.Display.backend.get_backend("qt-pyqt4")
|
|
from OCC.Display.qtDisplay import qtViewer3d
|
|
|
|
from .main import create_shape, settings
|
|
from .occ_utils import display_shape
|
|
|
|
# Depending on Python version and what not there may or may not be a QString
|
|
try:
|
|
from PyQt4.QtCore import QString
|
|
except ImportError:
|
|
QString = str
|
|
|
|
class application(QtGui.QApplication):
|
|
|
|
"""A pythonOCC, PyQt based IfcOpenShell application
|
|
with two tree views and a graphical 3d view"""
|
|
|
|
class abstract_treeview(QtGui.QTreeWidget):
|
|
|
|
"""Base class for the two treeview controls"""
|
|
|
|
instanceSelected = QtCore.pyqtSignal([object])
|
|
instanceVisibilityChanged = QtCore.pyqtSignal([object, int])
|
|
instanceDisplayModeChanged = QtCore.pyqtSignal([object, int])
|
|
|
|
def __init__(self):
|
|
QtGui.QTreeView.__init__(self)
|
|
self.setColumnCount(len(self.ATTRIBUTES))
|
|
self.setHeaderLabels(self.ATTRIBUTES)
|
|
self.children = defaultdict(list)
|
|
|
|
def get_children(self, inst):
|
|
c = [inst]
|
|
i = 0
|
|
while i < len(c):
|
|
c.extend(self.children[c[i]])
|
|
i += 1
|
|
return c
|
|
|
|
def contextMenuEvent(self, event):
|
|
menu = QtGui.QMenu(self)
|
|
visibility = [menu.addAction("Show"), menu.addAction("Hide")]
|
|
displaymode = [menu.addAction("Solid"), menu.addAction("Wireframe")]
|
|
action = menu.exec_(self.mapToGlobal(event.pos()))
|
|
index = self.selectionModel().currentIndex()
|
|
inst = index.data(QtCore.Qt.UserRole)
|
|
if hasattr(inst, 'toPyObject'):
|
|
inst = inst.toPyObject()
|
|
if action in visibility:
|
|
self.instanceVisibilityChanged.emit(inst, visibility.index(action))
|
|
elif action in displaymode:
|
|
self.instanceDisplayModeChanged.emit(inst, displaymode.index(action))
|
|
|
|
def clicked(self, index):
|
|
inst = index.data(QtCore.Qt.UserRole)
|
|
if hasattr(inst, 'toPyObject'):
|
|
inst = inst.toPyObject()
|
|
if inst:
|
|
self.instanceSelected.emit(inst)
|
|
|
|
def select(self, product):
|
|
itm = self.product_to_item.get(product)
|
|
if itm is None: return
|
|
self.selectionModel().setCurrentIndex(itm, QtGui.QItemSelectionModel.SelectCurrent | QtGui.QItemSelectionModel.Rows);
|
|
|
|
class decomposition_treeview(abstract_treeview):
|
|
|
|
"""Treeview with typical IFC decomposition relationships"""
|
|
|
|
ATTRIBUTES = ['Entity', 'GlobalId', 'Name']
|
|
|
|
def parent(self, instance):
|
|
if instance.is_a("IfcOpeningElement"):
|
|
return instance.VoidsElements[0].RelatingBuildingElement
|
|
if instance.is_a("IfcElement"):
|
|
fills = instance.FillsVoids
|
|
if len(fills):
|
|
return fills[0].RelatingOpeningElement
|
|
containments = instance.ContainedInStructure
|
|
if len(containments):
|
|
return containments[0].RelatingStructure
|
|
if instance.is_a("IfcObjectDefinition"):
|
|
decompositions = instance.Decomposes
|
|
if len(decompositions):
|
|
return decompositions[0].RelatingObject
|
|
|
|
def load_file(self, f, **kwargs):
|
|
products = list(f.by_type("IfcProduct")) + list(f.by_type("IfcProject"))
|
|
parents = list(map(self.parent, products))
|
|
items = {}
|
|
skipped = 0
|
|
ATTRS = self.ATTRIBUTES
|
|
while len(items) + skipped < len(products):
|
|
for product, parent in zip(products, parents):
|
|
if parent is None and not product.is_a("IfcProject"):
|
|
skipped += 1
|
|
continue
|
|
if (parent is None or parent in items) and product not in items:
|
|
sl = []
|
|
for attr in ATTRS:
|
|
if attr == 'Entity':
|
|
sl.append(product.is_a())
|
|
else:
|
|
sl.append(getattr(product, attr) or '')
|
|
itm = items[product] = QtGui.QTreeWidgetItem(items.get(parent, self), sl)
|
|
itm.setData(0, QtCore.Qt.UserRole, product)
|
|
self.children[parent].append(product)
|
|
self.product_to_item = dict(zip(items.keys(), map(self.indexFromItem, items.values())))
|
|
self.connect(self, QtCore.SIGNAL("clicked(const QModelIndex &)"), self.clicked)
|
|
self.expandAll()
|
|
|
|
class type_treeview(abstract_treeview):
|
|
|
|
"""Treeview with typical IFC decomposition relationships"""
|
|
|
|
ATTRIBUTES = ['Name']
|
|
|
|
def load_file(self, f, **kwargs):
|
|
products = list(f.by_type("IfcProduct"))
|
|
types = set(map(lambda i: i.is_a(), products))
|
|
items = {}
|
|
for t in types:
|
|
def add(t):
|
|
s = ifcopenshell.get_supertype(t)
|
|
if s: add(s)
|
|
s2, t2 = map(QString, (s,t))
|
|
if t2 not in items:
|
|
itm = items[t2] = QtGui.QTreeWidgetItem(items.get(s2, self), [t2])
|
|
itm.setData(0, QtCore.Qt.UserRole, t2)
|
|
self.children[s2].append(t2)
|
|
add(t)
|
|
|
|
for p in products:
|
|
t = QString(p.is_a())
|
|
itm = items[p] = QtGui.QTreeWidgetItem(items.get(t, self), [p.Name or '<no name>'])
|
|
itm.setData(0, QtCore.Qt.UserRole, t)
|
|
self.children[t].append(p)
|
|
|
|
self.product_to_item = dict(zip(items.keys(), map(self.indexFromItem, items.values())))
|
|
self.connect(self, QtCore.SIGNAL("clicked(const QModelIndex &)"), self.clicked)
|
|
self.expandAll()
|
|
|
|
class viewer(qtViewer3d):
|
|
|
|
instanceSelected = QtCore.pyqtSignal([object])
|
|
|
|
@staticmethod
|
|
def ais_to_key(ais_handle):
|
|
def yield_shapes():
|
|
ais = ais_handle.GetObject()
|
|
if hasattr(ais, 'Shape'):
|
|
yield ais.Shape()
|
|
return
|
|
shp = OCC.AIS.Handle_AIS_Shape.DownCast(ais_handle)
|
|
if not shp.IsNull(): yield shp.Shape()
|
|
return
|
|
mult = ais_handle
|
|
if mult.IsNull():
|
|
shp = OCC.AIS.Handle_AIS_Shape.DownCast(ais_handle)
|
|
if not shp.IsNull(): yield shp
|
|
else:
|
|
li = mult.GetObject().ConnectedTo()
|
|
for i in range(li.Length()):
|
|
shp = OCC.AIS.Handle_AIS_Shape.DownCast(li.Value(i+1))
|
|
if not shp.IsNull(): yield shp
|
|
return tuple(shp.HashCode(1 << 24) for shp in yield_shapes())
|
|
|
|
def __init__(self, widget):
|
|
qtViewer3d.__init__(self, widget)
|
|
self.ais_to_product = {}
|
|
self.product_to_ais = {}
|
|
self.counter = 0
|
|
self.window = widget
|
|
|
|
def initialize(self):
|
|
self.InitDriver()
|
|
self._display.Select = self.HandleSelection
|
|
|
|
def load_file(self, f, setting=None):
|
|
|
|
if setting is None:
|
|
setting = settings()
|
|
setting.set(setting.USE_PYTHON_OPENCASCADE, True)
|
|
|
|
v = self._display
|
|
|
|
t = {0: time.time()}
|
|
def update(dt = None):
|
|
t1 = time.time()
|
|
if t1 - t[0] > (dt or -1):
|
|
v.FitAll()
|
|
v.Repaint()
|
|
t[0] = t1
|
|
|
|
terminate = [False]
|
|
self.window.window_closed.connect(lambda *args: operator.setitem(terminate, 0, True))
|
|
|
|
for p in f.by_type("IfcProduct"):
|
|
if terminate[0]: break
|
|
if p.Representation is None: continue
|
|
shape = create_shape(setting, p)
|
|
ais = display_shape(shape, viewer_handle=v)
|
|
ais.GetObject().SetSelectionPriority(self.counter)
|
|
self.ais_to_product[self.counter] = p
|
|
self.product_to_ais[p] = ais
|
|
self.counter += 1
|
|
QtGui.QApplication.processEvents()
|
|
if p.is_a() in {'IfcSpace', 'IfcOpeningElement'}:
|
|
v.Context.Erase(ais, True)
|
|
update(0.1)
|
|
update()
|
|
|
|
def select(self, product):
|
|
ais = self.product_to_ais.get(product)
|
|
if ais is None: return
|
|
v = self._display.Context
|
|
v.ClearSelected(False)
|
|
v.SetSelected(ais, True)
|
|
|
|
def toggle(self, product_or_products, fn):
|
|
if not isinstance(product_or_products, Iterable):
|
|
product_or_products = [product_or_products]
|
|
aiss = list(filter(None, map(self.product_to_ais.get, product_or_products)))
|
|
last = len(aiss) - 1
|
|
for i, ais in enumerate(aiss):
|
|
fn(ais, i == last)
|
|
|
|
def toggle_visibility(self, product_or_products, flag):
|
|
v = self._display.Context
|
|
if flag:
|
|
def visibility(ais, last):
|
|
v.Erase(ais, last)
|
|
else:
|
|
def visibility(ais, last):
|
|
v.Display(ais, last)
|
|
self.toggle(product_or_products, visibility)
|
|
|
|
def toggle_wireframe(self, product_or_products, flag):
|
|
v = self._display.Context
|
|
if flag:
|
|
def wireframe(ais, last):
|
|
if v.IsDisplayed(ais):
|
|
v.SetDisplayMode(ais, 0, last)
|
|
else:
|
|
def wireframe(ais, last):
|
|
if v.IsDisplayed(ais):
|
|
v.SetDisplayMode(ais, 1, last)
|
|
self.toggle(product_or_products, wireframe)
|
|
|
|
def HandleSelection(self, X, Y):
|
|
v = self._display.Context
|
|
v.Select()
|
|
v.InitSelected()
|
|
if v.MoreSelected():
|
|
ais = v.SelectedInteractive()
|
|
inst = self.ais_to_product[ais.GetObject().SelectionPriority()]
|
|
self.instanceSelected.emit(inst)
|
|
|
|
class window(QtGui.QMainWindow):
|
|
|
|
TITLE = "IfcOpenShell IFC viewer"
|
|
|
|
window_closed = QtCore.pyqtSignal([])
|
|
|
|
def __init__(self):
|
|
QtGui.QMainWindow.__init__(self)
|
|
self.setWindowTitle(self.TITLE)
|
|
self.menu = self.menuBar()
|
|
self.menus = {}
|
|
|
|
def closeEvent(self, *args):
|
|
self.window_closed.emit()
|
|
|
|
def add_menu_item(self, menu, label, callback, icon=None, shortcut=None):
|
|
m = self.menus.get(menu)
|
|
if m is None:
|
|
m = self.menu.addMenu(menu)
|
|
self.menus[menu] = m
|
|
|
|
if icon:
|
|
a = QtGui.QAction(QtGui.QIcon(icon), label, self)
|
|
else:
|
|
a = QtGui.QAction(label, self)
|
|
|
|
if shortcut:
|
|
a.setShortcut(shortcut)
|
|
|
|
a.triggered.connect(callback)
|
|
m.addAction(a)
|
|
|
|
|
|
def makeSelectionHandler(self, component):
|
|
def handler(inst):
|
|
for c in self.components:
|
|
if c != component:
|
|
c.select(inst)
|
|
return handler
|
|
|
|
def __init__(self, settings=None):
|
|
QtGui.QApplication.__init__(self, sys.argv)
|
|
self.window = application.window()
|
|
self.tree = application.decomposition_treeview()
|
|
self.tree2 = application.type_treeview()
|
|
self.canvas = application.viewer(self.window)
|
|
self.tabs = QtGui.QTabWidget()
|
|
self.window.resize(800, 600)
|
|
splitter = QtGui.QSplitter(QtCore.Qt.Horizontal)
|
|
splitter.addWidget(self.tabs)
|
|
self.tabs.addTab(self.tree, 'Decomposition')
|
|
self.tabs.addTab(self.tree2, 'Types')
|
|
splitter.addWidget(self.canvas)
|
|
splitter.setSizes([200,600])
|
|
self.window.setCentralWidget(splitter)
|
|
self.canvas.initialize()
|
|
self.components = [self.tree, self.tree2, self.canvas]
|
|
self.files = {}
|
|
|
|
self.window.add_menu_item('File', '&Open', self.browse, shortcut='CTRL+O')
|
|
self.window.add_menu_item('File', '&Close', self.clear, shortcut='CTRL+W')
|
|
self.window.add_menu_item('File', '&Exit', self.window.close, shortcut='ALT+F4')
|
|
|
|
self.tree.instanceSelected.connect(self.makeSelectionHandler(self.tree))
|
|
self.tree2.instanceSelected.connect(self.makeSelectionHandler(self.tree2))
|
|
self.canvas.instanceSelected.connect(self.makeSelectionHandler(self.canvas))
|
|
for t in [self.tree, self.tree2]:
|
|
t.instanceVisibilityChanged.connect(functools.partial(self.change_visibility, t))
|
|
t.instanceDisplayModeChanged.connect(functools.partial(self.change_displaymode, t))
|
|
|
|
self.settings = settings
|
|
|
|
def change_visibility(self, tree, inst, flag):
|
|
insts = tree.get_children(inst)
|
|
self.canvas.toggle_visibility(insts, flag)
|
|
|
|
def change_displaymode(self, tree, inst, flag):
|
|
insts = tree.get_children(inst)
|
|
self.canvas.toggle_wireframe(insts, flag)
|
|
|
|
def start(self):
|
|
self.window.show()
|
|
sys.exit(self.exec_())
|
|
|
|
def browse(self):
|
|
filename = QtGui.QFileDialog.getOpenFileName(self.window, 'Open file',".","Industry Foundation Classes (*.ifc)")
|
|
self.load(filename)
|
|
|
|
def clear(self):
|
|
self.canvas._display.Context.RemoveAll()
|
|
self.tree.clear()
|
|
self.files.clear()
|
|
|
|
def load(self, fn):
|
|
if fn in self.files: return
|
|
f = ifcopenshell.open(fn)
|
|
self.files[fn] = f
|
|
for c in self.components:
|
|
c.load_file(f, setting=self.settings)
|