mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-29 08:13:14 +00:00
96 lines
4.2 KiB
Python
96 lines
4.2 KiB
Python
# BlenderBIM Add-on - OpenBIM Blender Add-on
|
|
# Copyright (C) 2020, 2021 Dion Moult <dion@thinkmoult.com>
|
|
#
|
|
# This file is part of BlenderBIM Add-on.
|
|
#
|
|
# BlenderBIM Add-on is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# BlenderBIM Add-on 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 General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with BlenderBIM Add-on. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
from bpy.types import Panel
|
|
from blenderbim.bim.module.aggregate.data import AggregateData
|
|
from blenderbim.bim.ifc import IfcStore
|
|
|
|
|
|
class BIM_PT_aggregate(Panel):
|
|
bl_label = "IFC Aggregates"
|
|
bl_idname = "BIM_PT_aggregate"
|
|
bl_options = {"DEFAULT_CLOSED"}
|
|
bl_space_type = "PROPERTIES"
|
|
bl_region_type = "WINDOW"
|
|
bl_context = "object"
|
|
bl_parent_id = "BIM_PT_object_metadata"
|
|
|
|
@classmethod
|
|
def poll(cls, context):
|
|
if not context.active_object:
|
|
return False
|
|
props = context.active_object.BIMObjectProperties
|
|
if not props.ifc_definition_id:
|
|
return False
|
|
if not IfcStore.get_element(props.ifc_definition_id):
|
|
return False
|
|
if not IfcStore.get_file().by_id(props.ifc_definition_id).is_a("IfcObjectDefinition"):
|
|
return False
|
|
return True
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
if not AggregateData.is_loaded:
|
|
AggregateData.load()
|
|
|
|
props = context.active_object.BIMObjectAggregateProperties
|
|
|
|
if props.is_editing:
|
|
row = layout.row(align=True)
|
|
row.prop(props, "relating_object", text="")
|
|
if props.relating_object:
|
|
op = row.operator("bim.assign_object", icon="CHECKMARK", text="")
|
|
op.relating_object = props.relating_object.BIMObjectProperties.ifc_definition_id
|
|
op.related_object = context.active_object.BIMObjectProperties.ifc_definition_id
|
|
row.operator("bim.disable_editing_aggregate", icon="CANCEL", text="")
|
|
else:
|
|
row = layout.row(align=True)
|
|
if AggregateData.data["has_relating_object"]:
|
|
row.label(text=AggregateData.data["relating_object_label"], icon="TRIA_UP")
|
|
op = row.operator("bim.select_aggregate", icon="RESTRICT_SELECT_OFF", text="")
|
|
op.obj = context.active_object.name
|
|
row.operator("bim.enable_editing_aggregate", icon="GREASEPENCIL", text="")
|
|
row.operator("bim.add_aggregate", icon="ADD", text="")
|
|
op = row.operator("bim.unassign_object", icon="X", text="")
|
|
op.relating_object = AggregateData.data["relating_object_id"]
|
|
op.related_object = context.active_object.BIMObjectProperties.ifc_definition_id
|
|
else:
|
|
row.label(text="No Aggregate", icon="TRIA_UP")
|
|
row.operator("bim.enable_editing_aggregate", icon="GREASEPENCIL", text="")
|
|
row.operator("bim.add_aggregate", icon="ADD", text="")
|
|
|
|
row = layout.row(align=True)
|
|
parts = AggregateData.data["related_objects_amount"]
|
|
row.label(text=f"{parts or 'No'} Part{'s' if parts > 1 else ''}", icon="TRIA_DOWN")
|
|
if AggregateData.data["has_related_objects"]:
|
|
op = row.operator("bim.select_parts", icon="RESTRICT_SELECT_OFF", text="")
|
|
op.obj = context.active_object.name
|
|
|
|
ifc_class = AggregateData.data["ifc_class"]
|
|
part_class = ""
|
|
if ifc_class == "IfcBuilding":
|
|
part_class = "IfcBuildingStorey"
|
|
elif ifc_class == "IfcSite":
|
|
part_class = "IfcBuilding"
|
|
elif ifc_class == "IfcProject":
|
|
part_class = "IfcSite"
|
|
if part_class != "":
|
|
op = layout.operator("bim.add_part_to_object", text="Add " + part_class.lstrip("Ifc"))
|
|
op.part_class = part_class
|
|
op.obj = context.active_object.name
|