2021-08-17 08:39:38 +10:00
|
|
|
# IfcSverchok - IFC Sverchok extension
|
2022-11-09 01:49:01 +01:00
|
|
|
# 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 19:40:42 +11:00
|
|
|
import bpy
|
|
|
|
|
import ifcopenshell
|
2024-05-08 17:21:00 +05:00
|
|
|
import ifcopenshell.guid
|
2020-10-13 19:40:42 +11:00
|
|
|
from sverchok.node_tree import SverchCustomTreeNode
|
|
|
|
|
|
2025-12-19 18:53:04 +05:00
|
|
|
import ifcsverchok.helper
|
|
|
|
|
|
2020-10-13 19:40:42 +11:00
|
|
|
|
|
|
|
|
class SvIfcGenerateGuid(bpy.types.Node, SverchCustomTreeNode, ifcsverchok.helper.SvIfcCore):
|
|
|
|
|
bl_idname = "SvIfcGenerateGuid"
|
|
|
|
|
bl_label = "IFC Generate Guid"
|
|
|
|
|
|
|
|
|
|
def sv_init(self, context):
|
|
|
|
|
self.outputs.new("SvStringsSocket", "guid")
|
|
|
|
|
|
|
|
|
|
def process(self):
|
|
|
|
|
self.outputs["guid"].sv_set([[ifcopenshell.guid.new()]])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def register():
|
|
|
|
|
bpy.utils.register_class(SvIfcGenerateGuid)
|
|
|
|
|
|
2020-11-01 19:24:01 +07:00
|
|
|
|
2020-10-13 19:40:42 +11:00
|
|
|
def unregister():
|
|
|
|
|
bpy.utils.unregister_class(SvIfcGenerateGuid)
|