2020-09-22 21:22:10 +10:00
|
|
|
import bpy
|
|
|
|
|
import ifcopenshell
|
|
|
|
|
import ifcsverchok.helper
|
|
|
|
|
from bpy.props import StringProperty
|
|
|
|
|
from sverchok.node_tree import SverchCustomTreeNode
|
|
|
|
|
from sverchok.data_structure import updateNode
|
|
|
|
|
|
|
|
|
|
|
2020-10-01 14:47:42 +10:00
|
|
|
class SvIfcReadFile(bpy.types.Node, SverchCustomTreeNode, ifcsverchok.helper.SvIfcCore):
|
|
|
|
|
bl_idname = "SvIfcReadFile"
|
|
|
|
|
bl_label = "IFC Read File"
|
2020-09-22 21:22:10 +10:00
|
|
|
path: StringProperty(name="path", update=updateNode)
|
|
|
|
|
|
|
|
|
|
def sv_init(self, context):
|
|
|
|
|
self.inputs.new("SvStringsSocket", "path").prop_name = "path"
|
|
|
|
|
self.outputs.new("SvVerticesSocket", "file")
|
|
|
|
|
|
|
|
|
|
def process(self):
|
|
|
|
|
self.sv_input_names = ["path"]
|
|
|
|
|
super().process()
|
|
|
|
|
|
|
|
|
|
def process_ifc(self, path):
|
|
|
|
|
guid = ifcopenshell.guid.new()
|
|
|
|
|
ifcsverchok.helper.ifc_files[guid] = ifcopenshell.open(path)
|
|
|
|
|
self.outputs["file"].sv_set([[ifcsverchok.helper.ifc_files[guid]]])
|
2020-11-01 19:24:01 +07:00
|
|
|
|
2020-09-22 21:22:10 +10:00
|
|
|
|
|
|
|
|
def register():
|
2020-10-01 14:47:42 +10:00
|
|
|
bpy.utils.register_class(SvIfcReadFile)
|
2020-09-22 21:22:10 +10:00
|
|
|
|
2020-11-01 19:24:01 +07:00
|
|
|
|
2020-09-22 21:22:10 +10:00
|
|
|
def unregister():
|
2020-10-01 14:47:42 +10:00
|
|
|
bpy.utils.unregister_class(SvIfcReadFile)
|