mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-21 14:23:53 +00:00
69 lines
2.4 KiB
Python
69 lines
2.4 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 itertools
|
|
|
|
import bpy
|
|
import ifcopenshell
|
|
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 SvIfcByGuid(bpy.types.Node, SverchCustomTreeNode, ifcsverchok.helper.SvIfcCore):
|
|
bl_idname = "SvIfcByGuid"
|
|
bl_label = "IFC By Guid"
|
|
n_id: StringProperty(default="")
|
|
guid: StringProperty(name="Guid(s)", update=updateNode)
|
|
id_iter = itertools.count()
|
|
|
|
def sv_init(self, context):
|
|
self.inputs.new("SvStringsSocket", "guid").prop_name = "guid"
|
|
self.outputs.new("SvStringsSocket", "Entities")
|
|
|
|
def draw_buttons(self, context, layout):
|
|
layout.operator(
|
|
"node.sv_ifc_tooltip", text="", icon="QUESTION", emboss=False
|
|
).tooltip = "Get IFC element by guid. Takes one or multiple guids."
|
|
|
|
def process(self):
|
|
print("\n\n", "#" * 30, "Running SvIfcByGuid node", "#" * 30)
|
|
print("self: ", self)
|
|
print("id(self): ", id(self))
|
|
print("hash(self): ", hash(self))
|
|
print("node_id: ", self.node_id)
|
|
self.id = next(self.id_iter)
|
|
print("self.id (itertool counter): ", self.id)
|
|
|
|
self.guids = flatten_data(self.inputs["guid"].sv_get(), target_level=1)
|
|
if not self.guids[0]:
|
|
return
|
|
self.file = SvIfcStore.get_file()
|
|
self.entities = [self.file.by_guid(guid) for guid in self.guids]
|
|
self.outputs["Entities"].sv_set(self.entities)
|
|
|
|
|
|
def register():
|
|
bpy.utils.register_class(SvIfcByGuid)
|
|
|
|
|
|
def unregister():
|
|
bpy.utils.unregister_class(SvIfcByGuid)
|