Files
IfcOpenShell/src/ifcsverchok/nodes/ifc/get_attribute.py
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

85 lines
3.2 KiB
Python
Raw Normal View History

2021-08-17 08:39:38 +10:00
# IfcSverchok - IFC Sverchok extension
# Copyright (C) 2020, 2021, 2022 Dion Moult <dion@thinkmoult.com>
2021-08-17 08:39:38 +10:00
#
# 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/>.
2020-10-13 20:30:00 +11:00
import bpy
import ifcopenshell
import ifcopenshell.util.element
from bpy.props import StringProperty
2025-12-19 18:53:04 +05:00
from sverchok.data_structure import flatten_data, updateNode
2020-10-13 20:30:00 +11:00
from sverchok.node_tree import SverchCustomTreeNode
2025-12-19 18:53:04 +05:00
import ifcsverchok.helper
from ifcsverchok.ifcstore import SvIfcStore
2020-10-13 20:30:00 +11:00
2024-07-26 12:13:29 +10:00
class SvIfcGetAttribute(bpy.types.Node, SverchCustomTreeNode, ifcsverchok.helper.SvIfcCore):
2020-10-13 20:30:00 +11:00
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,
)
2020-10-13 20:30:00 +11:00
def sv_init(self, context):
self.inputs.new("SvStringsSocket", "entity").prop_name = "entity"
2024-07-26 12:13:29 +10:00
self.inputs.new("SvStringsSocket", "attribute_name").prop_name = "attribute_name"
2020-10-13 20:30:00 +11:00
self.outputs.new("SvStringsSocket", "value")
def draw_buttons(self, context, layout):
2024-07-26 12:13:29 +10:00
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."
)
2020-10-13 20:30:00 +11:00
def process(self):
self.value_out = []
2024-07-26 12:13:29 +10:00
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:
2024-07-26 12:13:29 +10:00
entity_nested_inputs = [self.file.by_id(int(step_id)) for step_id in entity_nested_input_ids]
except Exception as e:
raise Exception("Instance ID not found", e)
2020-12-26 11:08:07 +07:00
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)
2020-10-13 20:30:00 +11:00
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)
2020-11-01 19:24:01 +07:00
2020-10-13 20:30:00 +11:00
def unregister():
bpy.utils.unregister_class(SvIfcGetAttribute)