New IFC add node

This commit is contained in:
Dion Moult
2020-10-11 12:32:23 +11:00
parent 60147a8ec9
commit 275fa479d6
2 changed files with 38 additions and 0 deletions
+1
View File
@@ -31,6 +31,7 @@ def nodes_index():
("ifc.by_guid", "SvIfcByGuid"),
("ifc.by_type", "SvIfcByType"),
("ifc.by_query", "SvIfcByQuery"),
("ifc.add", "SvIfcAdd"),
("ifc.select_blender_objects", "SvIfcSelectBlenderObjects"),
])]
+37
View File
@@ -0,0 +1,37 @@
import bpy
import ifcopenshell
import ifcsverchok.helper
from bpy.props import StringProperty
from sverchok.node_tree import SverchCustomTreeNode
from sverchok.data_structure import updateNode
class SvIfcAdd(bpy.types.Node, SverchCustomTreeNode, ifcsverchok.helper.SvIfcCore):
bl_idname = 'SvIfcAdd'
bl_label = 'IFC Add'
file: StringProperty(name='file', update=updateNode)
entity: StringProperty(name='entity', update=updateNode)
def sv_init(self, context):
self.inputs.new('SvStringsSocket', 'file').prop_name = 'file'
self.inputs.new('SvStringsSocket', 'entity').prop_name = 'entity'
self.outputs.new('SvStringsSocket', 'file')
self.outputs.new('SvStringsSocket', 'entity')
def process(self):
self.sv_input_names = ['file', 'entity']
self.file_out = []
self.entity_out = []
super().process()
self.outputs['file'].sv_set([self.file_out])
self.outputs['entity'].sv_set([self.entity_out])
def process_ifc(self, file, entity):
self.entity_out.append(file.add(entity))
self.file_out.append(file)
def register():
bpy.utils.register_class(SvIfcAdd)
def unregister():
bpy.utils.unregister_class(SvIfcAdd)