mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-23 10:52:45 +00:00
57 lines
2.3 KiB
Python
57 lines
2.3 KiB
Python
import bpy
|
|
from bpy.types import Panel
|
|
from blenderbim.bim.module.void.data import Data
|
|
|
|
|
|
class BIM_PT_voids(Panel):
|
|
bl_label = "IFC Voids"
|
|
bl_idname = "BIM_PT_voids"
|
|
bl_options = {"DEFAULT_CLOSED"}
|
|
bl_space_type = "PROPERTIES"
|
|
bl_region_type = "WINDOW"
|
|
bl_context = "object"
|
|
|
|
def draw(self, context):
|
|
props = context.active_object.BIMObjectProperties
|
|
if props.ifc_definition_id not in Data.products:
|
|
Data.load(props.ifc_definition_id)
|
|
|
|
row = self.layout.row(align=True)
|
|
if len(context.selected_objects) == 2:
|
|
op = row.operator("bim.add_opening", icon="ADD", text="Add Selected")
|
|
for obj in context.selected_objects:
|
|
if "IfcOpeningElement" in obj.name or not obj.BIMObjectProperties.ifc_definition_id:
|
|
op.opening = obj.name
|
|
else:
|
|
op.obj = obj.name
|
|
|
|
opening_id = None
|
|
obj_name = None
|
|
for obj in context.selected_objects:
|
|
if obj.BIMObjectProperties.ifc_definition_id in Data.openings:
|
|
opening_id = obj.BIMObjectProperties.ifc_definition_id
|
|
elif obj.BIMObjectProperties.ifc_definition_id in Data.fillings:
|
|
opening_id = Data.fillings[obj.BIMObjectProperties.ifc_definition_id]["FillsVoid"]
|
|
else:
|
|
obj_name = obj.name
|
|
if opening_id and obj_name:
|
|
op = row.operator("bim.remove_opening", icon="X", text="Remove Selected")
|
|
op.opening_id = opening_id
|
|
op.obj = obj_name
|
|
else:
|
|
row.label(text="Select an opening and an element to modify", icon="HELP")
|
|
|
|
for opening_id in Data.products[props.ifc_definition_id]:
|
|
opening = Data.openings[opening_id]
|
|
if opening["HasFillings"]:
|
|
for filling_id in opening["HasFillings"]:
|
|
filling = Data.fillings[filling_id]
|
|
row = self.layout.row(align=True)
|
|
row.label(text=opening["Name"])
|
|
row.label(text=filling["Name"])
|
|
else:
|
|
row = self.layout.row(align=True)
|
|
row.label(text=opening["Name"])
|
|
op = row.operator("bim.remove_opening", icon="X", text="")
|
|
op.opening_id = opening_id
|