mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-29 16:22:53 +00:00
95 lines
3.3 KiB
Python
95 lines
3.3 KiB
Python
# IfcSverchok - IFC Sverchok extension
|
|
# Copyright (C) 2020, 2021, 2022 Dion Moult <dion@thinkmoult.com>
|
|
#
|
|
# This file is part of IfcSverchok.
|
|
#
|
|
# IfcSverchok 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.
|
|
#
|
|
# IfcSverchok 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 IfcSverchok. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import bpy
|
|
import ifcopenshell
|
|
import ifcopenshell.util.element
|
|
import ifcsverchok.helper
|
|
from ifcsverchok.ifcstore import SvIfcStore
|
|
from bpy.props import StringProperty
|
|
from sverchok.node_tree import SverchCustomTreeNode
|
|
from sverchok.data_structure import updateNode, flatten_data
|
|
|
|
|
|
class SvIfcGetAttribute(
|
|
bpy.types.Node, SverchCustomTreeNode, ifcsverchok.helper.SvIfcCore
|
|
):
|
|
bl_idname = "SvIfcGetAttribute"
|
|
bl_label = "IFC Get Attribute"
|
|
entity: StringProperty(name="Entity Ids", update=updateNode)
|
|
attribute_name: StringProperty(
|
|
name="Attribute name",
|
|
description='Name of attribute, eg. "Name".',
|
|
update=updateNode,
|
|
)
|
|
|
|
def sv_init(self, context):
|
|
self.inputs.new("SvStringsSocket", "entity").prop_name = "entity"
|
|
self.inputs.new(
|
|
"SvStringsSocket", "attribute_name"
|
|
).prop_name = "attribute_name"
|
|
self.outputs.new("SvStringsSocket", "value")
|
|
|
|
def draw_buttons(self, context, layout):
|
|
layout.operator(
|
|
"node.sv_ifc_tooltip", text="", icon="QUESTION", emboss=False
|
|
).tooltip = (
|
|
"Get the value of an attribute of an IfcEntity. Can take multiple entities."
|
|
)
|
|
|
|
def process(self):
|
|
self.value_out = []
|
|
entity_nested_input_ids = flatten_data(
|
|
self.inputs["entity"].sv_get(), target_level=1
|
|
)
|
|
if not entity_nested_input_ids[0]:
|
|
return
|
|
self.file = SvIfcStore.get_file()
|
|
try:
|
|
entity_nested_inputs = [
|
|
self.file.by_id(int(step_id)) for step_id in entity_nested_input_ids
|
|
]
|
|
print(entity_nested_inputs)
|
|
except Exception as e:
|
|
raise Exception("Instance ID not found", e)
|
|
attribute_name = self.inputs["attribute_name"].sv_get()[0][0]
|
|
for entities in entity_nested_inputs:
|
|
if hasattr(entities, "__iter__"):
|
|
for entity in entities:
|
|
self.process_ifc(entity, attribute_name)
|
|
else:
|
|
self.process_ifc(entities, attribute_name)
|
|
self.outputs["value"].sv_set(self.value_out)
|
|
|
|
def process_ifc(self, entity, attribute_name):
|
|
try:
|
|
if attribute_name.isnumeric():
|
|
self.value_out.append(entity[int(attribute_name)])
|
|
else:
|
|
self.value_out.append(entity.get_info()[attribute_name])
|
|
except:
|
|
pass
|
|
|
|
|
|
def register():
|
|
bpy.utils.register_class(SvIfcGetAttribute)
|
|
|
|
|
|
def unregister():
|
|
bpy.utils.unregister_class(SvIfcGetAttribute)
|