56 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| from lnx.logicnode.lnx_nodes import *
 | |
| 
 | |
| class StringMapNode(LnxLogicTreeNode):
 | |
|     """Create String Map.
 | |
| 
 | |
|     @input In: Create a map using given keys and values.
 | |
| 
 | |
|     @input Key: Key.
 | |
| 
 | |
|     @input Value: Value.
 | |
| 
 | |
|     @output Out: Run after map is created.
 | |
| 
 | |
|     @output Map: The created map.
 | |
|     """
 | |
| 
 | |
|     bl_idname = 'LNStringMapNode'
 | |
|     bl_label = 'String Map'
 | |
|     lnx_version = 1
 | |
| 
 | |
|     min_inputs = 1
 | |
|     property0: HaxeIntProperty('property0', name='Number of keys', default=0)
 | |
| 
 | |
|     def __init__(self, *args, **kwargs):
 | |
|         super(StringMapNode, self).__init__(*args, **kwargs)
 | |
|         self.register_id()
 | |
| 
 | |
|     def lnx_init(self, context):
 | |
|         self.add_input('LnxNodeSocketAction', 'In')
 | |
|         self.add_output('LnxNodeSocketAction', 'Out')
 | |
|         self.add_output('LnxDynamicSocket', 'Map')
 | |
| 
 | |
|     def add_sockets(self):
 | |
|         self.add_input('LnxStringSocket', f'Key [{self.property0}]')
 | |
|         self.add_input('LnxStringSocket', f'Value [{self.property0}]')
 | |
|         self.property0 += 1
 | |
| 
 | |
|     def remove_sockets(self):
 | |
|         if self.property0 > 0:
 | |
|             self.inputs.remove(self.inputs.values()[-1])
 | |
|             self.inputs.remove(self.inputs.values()[-1])
 | |
|             self.property0 -= 1
 | |
| 
 | |
|     def draw_buttons(self, context, layout):
 | |
|         row = layout.row(align=True)
 | |
| 
 | |
|         op = row.operator('lnx.node_call_func', text='New', icon='PLUS', emboss=True)
 | |
|         op.node_index = self.get_id_str()
 | |
|         op.callback_name = 'add_sockets'
 | |
|         column = row.column(align=True)
 | |
|         op = column.operator('lnx.node_call_func', text='', icon='X', emboss=True)
 | |
|         op.node_index = self.get_id_str()
 | |
|         op.callback_name = 'remove_sockets'
 | |
|         if len(self.inputs) == self.min_inputs:
 | |
|             column.enabled = False
 |