base_definitions.py 47 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073
  1. #Mantis Nodes Base
  2. import bpy
  3. from bpy.props import (BoolProperty, StringProperty, EnumProperty, CollectionProperty, \
  4. IntProperty, IntVectorProperty, PointerProperty, BoolVectorProperty)
  5. from . import ops_nodegroup
  6. from bpy.types import NodeTree, Node, PropertyGroup, Operator, UIList, Panel
  7. from .utilities import (prRed, prGreen, prPurple, prWhite,
  8. prOrange,
  9. wrapRed, wrapGreen, wrapPurple, wrapWhite,
  10. wrapOrange,)
  11. from .utilities import get_socket_maps, relink_socket_map, do_relink
  12. FLOAT_EPSILON=0.0001 # used to check against floating point inaccuracy
  13. def TellClasses():
  14. #Why use a function to do this? Because I don't need every class to register.
  15. return [ MantisTree,
  16. SchemaTree,
  17. MantisNodeGroup,
  18. SchemaGroup,
  19. ]
  20. def error_popup_draw(self, context):
  21. self.layout.label(text="Error executing tree. See Console.")
  22. mantis_root = ".".join(__name__.split('.')[:-1]) # absolute HACK
  23. # https://docs.blender.org/api/master/bpy.types.NodeTree.html#bpy.types.NodeTree.valid_socket_type
  24. # thank you, Sverchok
  25. def valid_interface_types(cls : NodeTree, socket_idname : str):
  26. from .socket_definitions import tell_valid_bl_idnames, TellClasses
  27. #TODO: do the versioning code to handle this so it can be in all versions
  28. if bpy.app.version <= (4,4,0): # should work in 4.4.1
  29. return socket_idname in [cls.bl_idname for cls in TellClasses()]
  30. else: # once versioning is finished this will be unnecesary.
  31. return socket_idname in tell_valid_bl_idnames()
  32. def fix_reroute_colors(tree):
  33. context = bpy.context
  34. if any((tree.is_executing, tree.is_exporting, tree.do_live_update==False, context.space_data is None) ):
  35. return
  36. from collections import deque
  37. from .utilities import socket_seek
  38. from .socket_definitions import MantisSocket
  39. reroutes_without_color = deque()
  40. for n in tree.nodes:
  41. if n.bl_idname=='NodeReroute' and n.inputs[0].bl_idname == "NodeSocketColor":
  42. reroutes_without_color.append(n)
  43. try:
  44. while reroutes_without_color:
  45. rr = reroutes_without_color.pop()
  46. if rr.inputs[0].is_linked:
  47. link = rr.inputs[0].links[0]
  48. socket = socket_seek(link, tree.links)
  49. if isinstance(socket, MantisSocket):
  50. rr.socket_idname = socket.bl_idname
  51. except Exception as e:
  52. print(wrapOrange("WARN: Updating reroute color failed with exception: ")+wrapWhite(f"{e.__class__.__name__}"))
  53. #functions to identify the state of the system using hashes
  54. # this function runs a lot so it should be optimized as well as possible.
  55. def hash_tree(tree):
  56. trees=set(); links=[]; hash_data=""
  57. for node in tree.nodes:
  58. hash_data+=str(node.name)
  59. if hasattr(node, 'node_tree'):
  60. trees.add(node.node_tree)
  61. for other_tree in trees:
  62. hash_data+=str(hash_tree(other_tree))
  63. for link in tree.links:
  64. links.append( link.from_node.name+link.from_socket.name+
  65. link.to_node.name+link.to_socket.name+
  66. str(link.multi_input_sort_id) )
  67. links.sort(); hash_data+=''.join(links)
  68. return hash(hash_data)
  69. class MantisTree(NodeTree):
  70. '''A custom node tree type that will show up in the editor type list'''
  71. bl_idname = 'MantisTree'
  72. bl_label = "Rigging Nodes"
  73. bl_icon = 'OUTLINER_OB_ARMATURE'
  74. tree_valid:BoolProperty(default=False)
  75. hash:StringProperty(default='')
  76. do_live_update:BoolProperty(default=True) # use this to disable updates for e.g. scripts
  77. num_links:IntProperty(default=-1)
  78. filepath:StringProperty(default="", subtype='FILE_PATH')
  79. is_executing:BoolProperty(default=False)
  80. is_exporting:BoolProperty(default=False)
  81. execution_id:StringProperty(default='')
  82. # prev_execution_id:StringProperty(default='')
  83. mantis_version:IntVectorProperty(default=[0,9,2])
  84. # this prevents the node group from executing on the next depsgraph update
  85. # because I don't always have control over when the dg update happens.
  86. prevent_next_exec:BoolProperty(default=False)
  87. parsed_tree={}
  88. if (bpy.app.version < (4, 4, 0)): # in 4.4 this leads to a crash
  89. @classmethod
  90. def valid_socket_type(cls : NodeTree, socket_idname: str):
  91. return valid_interface_types(cls, socket_idname)
  92. def update(self): # set the reroute colors
  93. if (bpy.app.version >= (4,4,0)):
  94. fix_reroute_colors(self)
  95. def update_tree(self, context = None, force=False):
  96. if self.is_exporting:
  97. return
  98. my_hash = str( hash_tree(self) )
  99. if my_hash != self.hash or force:
  100. self.hash = my_hash
  101. self.is_executing = True
  102. from . import readtree
  103. prGreen("Validating Tree: %s" % self.name)
  104. try:
  105. import bpy # I am importing here so that the context passed in
  106. # is used for display update... but I always want to do this
  107. scene = bpy.context.scene
  108. scene.render.use_lock_interface = True
  109. self.parsed_tree = readtree.parse_tree(self)
  110. if context:
  111. self.display_update(context)
  112. self.tree_valid = True
  113. except GraphError as e:
  114. prRed("Failed to update node tree due to error.")
  115. self.tree_valid = False
  116. raise e
  117. finally:
  118. scene.render.use_lock_interface = False
  119. self.is_executing = False
  120. def display_update(self, context):
  121. if self.is_exporting:
  122. return
  123. self.is_executing = True
  124. current_tree = bpy.context.space_data.path[-1].node_tree
  125. for node in current_tree.nodes:
  126. if hasattr(node, "display_update"):
  127. try:
  128. node.display_update(self.parsed_tree, context)
  129. except Exception as e:
  130. print("Node \"%s\" failed to update display with error: %s" %(wrapGreen(node.name), wrapRed(e)))
  131. self.is_executing = False
  132. # TODO: deal with invalid links properly.
  133. # - Non-hierarchy links should be ignored in the circle-check and so the links should be marked valid in such a circle
  134. # - hierarchy-links should be marked invalid and prevent the tree from executing.
  135. def execute_tree(self,context, error_popups = False):
  136. self.prevent_next_exec = False
  137. if not self.hash:
  138. return
  139. if self.is_exporting or self.is_executing:
  140. return
  141. prGreen("Executing Tree: %s" % self.name)
  142. self.is_executing = True
  143. from . import readtree
  144. try:
  145. context.scene.render.use_lock_interface = True
  146. readtree.execute_tree(self.parsed_tree, self, context, error_popups)
  147. except RecursionError as e:
  148. prRed("Recursion error while parsing tree.")
  149. finally:
  150. context.scene.render.use_lock_interface = False
  151. self.is_executing = False
  152. class SchemaTree(NodeTree):
  153. '''A node tree representing a schema to generate a Mantis tree'''
  154. bl_idname = 'SchemaTree'
  155. bl_label = "Rigging Nodes Schema"
  156. bl_icon = 'RIGID_BODY_CONSTRAINT'
  157. # these are only needed for consistent interface, but should not be used
  158. do_live_update:BoolProperty(default=True) # default to true so that updates work
  159. is_executing:BoolProperty(default=False)
  160. is_exporting:BoolProperty(default=False)
  161. mantis_version:IntVectorProperty(default=[0,9,2])
  162. if (bpy.app.version < (4, 4, 0)): # in 4.4 this leads to a crash
  163. @classmethod
  164. def valid_socket_type(cls : NodeTree, socket_idname: str):
  165. return valid_interface_types(cls, socket_idname)
  166. def update(self): # set the reroute colors
  167. if (bpy.app.version >= (4,4,0)):
  168. fix_reroute_colors(self)
  169. from dataclasses import dataclass, field
  170. from typing import Any
  171. @dataclass
  172. class MantisSocketTemplate():
  173. name : str = field(default="")
  174. bl_idname : str = field(default="")
  175. traverse_target : str = field(default="")
  176. identifier : str = field(default="")
  177. display_shape : str = field(default="") # for arrays
  178. category : str = field(default="") # for use in display update
  179. blender_property : str | tuple[str] = field(default="") # for props_sockets -> evaluate sockets
  180. is_input : bool = field(default=False)
  181. hide : bool = field(default=False)
  182. use_multi_input : bool = field(default=False)
  183. default_value : Any = field(default=None)
  184. #TODO: do a better job explaining how MantisNode and MantisUINode relate.
  185. class MantisUINode:
  186. """
  187. This class contains the common user-interface features of Mantis nodes.
  188. MantisUINode objects will spawn one or more MantisNode objects when the graph is evaluated.
  189. The MantisNode objects will pull the data from the UI node and use it to generate the graph.
  190. """
  191. mantis_node_library=''
  192. mantis_node_class_name=''
  193. mantis_class=None
  194. @classmethod
  195. def poll(cls, ntree):
  196. return (ntree.bl_idname in ['MantisTree', 'SchemaTree'])
  197. @classmethod
  198. def set_mantis_class(self):
  199. from importlib import import_module
  200. # do not catch errors, they should cause a failure.
  201. try:
  202. module = import_module(self.mantis_node_library, package=mantis_root)
  203. self.mantis_class=getattr(module, self.mantis_node_class_name)
  204. except Exception as e:
  205. print(self)
  206. raise e
  207. def insert_link(self, link):
  208. if (bpy.app.version >= (4, 4, 0)):
  209. return # this causes a crash due to a bug.
  210. context = bpy.context
  211. if context.space_data:
  212. node_tree = context.space_data.path[0].node_tree
  213. if node_tree.do_live_update:
  214. node_tree.update_tree(context)
  215. if (link.to_socket.is_linked == False):
  216. node_tree.num_links+=1
  217. elif (link.to_socket.is_multi_input):
  218. node_tree.num_links+=1
  219. def init_sockets(self, socket_templates : tuple[MantisSocketTemplate]):
  220. for template in socket_templates:
  221. collection = self.outputs
  222. if template.is_input:
  223. collection = self.inputs
  224. identifier = template.name
  225. if template.identifier:
  226. identifier = template.identifier
  227. use_multi_input = template.use_multi_input if template.is_input else False
  228. socket = collection.new(
  229. template.bl_idname,
  230. template.name,
  231. identifier=identifier,
  232. use_multi_input=use_multi_input
  233. )
  234. socket.hide= template.hide
  235. if template.category:
  236. # a custom property for the UI functions to use.
  237. socket['category'] = template.category
  238. if template.default_value is not None:
  239. socket.default_value = template.default_value
  240. # this can throw a TypeError - it is the caller's
  241. # responsibility to send the right type.
  242. if template.use_multi_input: # this is an array
  243. socket.display_shape = 'SQUARE_DOT'
  244. class SchemaUINode(MantisUINode):
  245. mantis_node_library='.schema_containers'
  246. @classmethod
  247. def poll(cls, ntree):
  248. return (ntree.bl_idname in ['SchemaTree'])
  249. class LinkNode(MantisUINode):
  250. mantis_node_library='.link_containers'
  251. @classmethod
  252. def poll(cls, ntree):
  253. return (ntree.bl_idname in ['MantisTree', 'SchemaTree'])
  254. class xFormNode(MantisUINode):
  255. mantis_node_library='.xForm_containers'
  256. @classmethod
  257. def poll(cls, ntree):
  258. return (ntree.bl_idname in ['MantisTree', 'SchemaTree'])
  259. class DeformerNode(MantisUINode):
  260. mantis_node_library='.deformer_containers'
  261. @classmethod
  262. def poll(cls, ntree):
  263. return (ntree.bl_idname in ['MantisTree', 'SchemaTree'])
  264. def poll_node_tree(self, object):
  265. forbid = []
  266. context = bpy.context
  267. if context.space_data:
  268. if context.space_data.path:
  269. for path_item in context.space_data.path:
  270. forbid.append(path_item.node_tree.name)
  271. if isinstance(object, MantisTree) and object.name not in forbid:
  272. return True
  273. return False
  274. # TODO: try and remove the extra loop used here... but it is OK for now
  275. def should_remove_socket(node, socket):
  276. # a function to check if the socket is in the interface
  277. id_found = False
  278. for item in node.node_tree.interface.items_tree:
  279. if item.item_type != "SOCKET": continue
  280. if item.identifier == socket.identifier:
  281. id_found = True; break
  282. return not id_found
  283. # TODO: try to check identifiers instead of name.
  284. def node_group_update(node, force = False):
  285. if not node.is_updating:
  286. raise RuntimeError("Cannot update node while it is not marked as updating.")
  287. if not force:
  288. if (node.id_data.do_live_update == False) or \
  289. (node.id_data.is_executing == True) or \
  290. (node.id_data.is_exporting == True):
  291. return
  292. # note: if (node.id_data.is_exporting == True) I need to be able to update so I can make links.
  293. toggle_update = node.id_data.do_live_update
  294. node.id_data.do_live_update = False
  295. identifiers_in={socket.identifier:socket for socket in node.inputs}
  296. identifiers_out={socket.identifier:socket for socket in node.outputs}
  297. indices_in,indices_out={},{} # check by INDEX to see if the socket's name/type match.
  298. for collection, map in [(node.inputs, indices_in), (node.outputs, indices_out)]:
  299. for i, socket in enumerate(collection):
  300. map[socket.identifier]=i
  301. if node.node_tree is None:
  302. node.inputs.clear(); node.outputs.clear()
  303. node.id_data.do_live_update = toggle_update
  304. return
  305. found_in, found_out = [], []
  306. update_input, update_output = False, False
  307. for item in node.node_tree.interface.items_tree:
  308. if item.item_type != "SOCKET": continue
  309. if item.in_out == 'OUTPUT':
  310. if s:= identifiers_out.get(item.identifier): # if the requested output doesn't exist, update
  311. found_out.append(item.identifier)
  312. if (indices_out[s.identifier]!=item.index): update_output=True; continue
  313. if update_output: continue
  314. if s.bl_idname != item.socket_type: update_output = True; continue
  315. else: update_output = True; continue
  316. else:
  317. if s:= identifiers_in.get(item.identifier): # if the requested input doesn't exist, update
  318. found_in.append(item.identifier)
  319. if (indices_in[s.identifier]!=item.index): update_input=True; continue
  320. if update_input: continue # done here
  321. if s.bl_idname != item.socket_type: update_input = True; continue
  322. else: update_input = True; continue
  323. # Schema has an extra input for Length and for Extend.
  324. if node.bl_idname == 'MantisSchemaGroup':
  325. found_in.extend(['Schema Length', ''])
  326. # if we have too many elements, just get rid of the ones we don't need
  327. if len(node.inputs) > len(found_in):#
  328. for inp in node.inputs:
  329. if inp.identifier in found_in: continue
  330. node.inputs.remove(inp)
  331. if len(node.outputs) > len(found_out):
  332. for out in node.outputs:
  333. if out.identifier in found_out: continue
  334. node.outputs.remove(out)
  335. #
  336. if len(node.inputs) > 0 and (inp := node.inputs[-1]).bl_idname == 'WildcardSocket' and inp.is_linked:
  337. update_input = True
  338. #
  339. if not (update_input or update_output):
  340. node.id_data.do_live_update = toggle_update
  341. return
  342. if update_input or update_output:
  343. socket_maps = get_socket_maps(node,)
  344. if socket_maps:
  345. socket_map_in, socket_map_out = socket_maps
  346. if node.bl_idname == "MantisSchemaGroup" and \
  347. len(node.inputs)+len(node.outputs)<=2 and\
  348. len(node.node_tree.interface.items_tree) > 0:
  349. socket_map_in, socket_map_out = None, None
  350. # We have to initialize the node because it only has its base inputs.
  351. elif socket_maps is None:
  352. node.id_data.do_live_update = toggle_update
  353. return
  354. if update_input :
  355. if node.bl_idname == 'MantisSchemaGroup':
  356. schema_length=0
  357. if sl := node.inputs.get("Schema Length"):
  358. schema_length = sl.default_value
  359. # sometimes this isn't available yet # TODO not happy about this solution
  360. remove_me=[]
  361. # remove all found map items but the Schema Length input (reuse it)
  362. for i, socket in enumerate(node.inputs):
  363. if socket.identifier == "Schema Length" and i == 0:
  364. continue
  365. elif (socket_map_in is None) or socket.identifier in socket_map_in.keys():
  366. remove_me.append(socket)
  367. elif should_remove_socket(node, socket):
  368. remove_me.append(socket)
  369. while remove_me:
  370. node.inputs.remove(remove_me.pop())
  371. if update_output:
  372. remove_me=[]
  373. for socket in node.outputs:
  374. if (socket_map_out is None) or socket.identifier in socket_map_out.keys():
  375. remove_me.append(socket)
  376. elif should_remove_socket(node, socket):
  377. remove_me.append(socket)
  378. while remove_me:
  379. node.inputs.remove(remove_me.pop())
  380. from .utilities import relink_socket_map_add_socket
  381. reorder_me_input = []; input_index = 0
  382. reorder_me_output = []; output_index = 0
  383. def update_group_sockets(interface_item, is_input):
  384. socket_map = socket_map_in if is_input else socket_map_out
  385. socket_collection = node.inputs if is_input else node.outputs
  386. counter = input_index if is_input else output_index
  387. reorder_collection = reorder_me_input if is_input else reorder_me_output
  388. if socket_map:
  389. if item.identifier in socket_map.keys():
  390. socket = relink_socket_map_add_socket(node, socket_collection, item)
  391. do_relink(node, socket, socket_map, item.in_out)
  392. else:
  393. for has_socket in socket_collection:
  394. if has_socket.bl_idname == item.socket_type and \
  395. has_socket.name == item.name:
  396. reorder_collection.append((has_socket, counter))
  397. break
  398. else:
  399. socket = relink_socket_map_add_socket(node, socket_collection, item)
  400. else:
  401. socket = relink_socket_map_add_socket(node, socket_collection, item)
  402. counter += 1
  403. for item in node.node_tree.interface.items_tree:
  404. if item.item_type != "SOCKET": continue
  405. if (item.in_out == 'INPUT' and update_input):
  406. update_group_sockets(item, True)
  407. if (item.in_out == 'OUTPUT' and update_output):
  408. update_group_sockets(item, False)
  409. both_reorders = zip([reorder_me_input, reorder_me_output], [node.inputs, node.outputs])
  410. for reorder_task, collection in both_reorders:
  411. for socket, position in reorder_task:
  412. for i, s in enumerate(collection): # get the index
  413. if s.identifier == socket.identifier: break
  414. else:
  415. prRed(f"WARN: could not reorder socket {socket.name}")
  416. to_index = position
  417. if (not socket.is_output) and node.bl_idname == "MantisSchemaGroup":
  418. to_index+=1
  419. collection.move(i, to_index)
  420. # at this point there is no wildcard socket
  421. if socket_map_in and '__extend__' in socket_map_in.keys():
  422. do_relink(node, None, socket_map_in, in_out='INPUT', parent_name='Constant' )
  423. node.id_data.do_live_update = toggle_update
  424. def node_tree_prop_update(self, context):
  425. if self.is_updating: # update() can be called from update() and that leads to an infinite loop.
  426. return # so we check if an update is currently running.
  427. self.is_updating = True
  428. def init_schema(self, context):
  429. if len(self.inputs) == 0:
  430. self.inputs.new("UnsignedIntSocket", "Schema Length", identifier='Schema Length')
  431. if self.inputs[-1].bl_idname != "WildcardSocket":
  432. self.inputs.new("WildcardSocket", "", identifier="__extend__")
  433. init_schema(self, context)
  434. try:
  435. node_group_update(self, force=True)
  436. finally: # ensure this line is run even if there is an error
  437. self.is_updating = False
  438. if self.bl_idname in ['MantisSchemaGroup'] and self.node_tree is not None:
  439. init_schema(self, context)
  440. from bpy.types import NodeCustomGroup
  441. def group_draw_buttons(self, context, layout):
  442. row = layout.row(align=True)
  443. row.prop(self, "node_tree", text="")
  444. if self.node_tree is None:
  445. row.operator("mantis.new_node_tree", text="", icon='PLUS', emboss=True)
  446. else:
  447. row.operator("mantis.edit_group", text="", icon='NODETREE', emboss=True)
  448. class MantisNodeGroup(Node, MantisUINode):
  449. bl_idname = "MantisNodeGroup"
  450. bl_label = "Node Group"
  451. node_tree:PointerProperty(type=NodeTree, poll=poll_node_tree, update=node_tree_prop_update,)
  452. is_updating:BoolProperty(default=False)
  453. def draw_label(self):
  454. if self.node_tree is None:
  455. return "Node Group"
  456. else:
  457. return self.node_tree.name
  458. def draw_buttons(self, context, layout):
  459. group_draw_buttons(self, context, layout)
  460. def update(self):
  461. if self.node_tree is None:
  462. return
  463. if self.is_updating: # update() can be called from update() and that leads to an infinite loop.
  464. return # so we check if an update is currently running.
  465. live_update = self.id_data.do_live_update
  466. self.is_updating = True
  467. try:
  468. node_group_update(self)
  469. finally: # we need to reset this regardless of whether or not the operation succeeds!
  470. self.is_updating = False
  471. self.id_data.do_live_update = live_update # ensure this remains the same
  472. class GraphError(Exception):
  473. pass
  474. def get_signature_from_edited_tree(node, context):
  475. sig_path=[None,]
  476. for item in context.space_data.path[:-1]:
  477. sig_path.append(item.node_tree.nodes.active.name)
  478. return tuple(sig_path+[node.name])
  479. def poll_node_tree_schema(self, object):
  480. if isinstance(object, SchemaTree):
  481. return True
  482. return False
  483. # TODO tiny UI problem - inserting new links into the tree will not place them in the right place.
  484. class SchemaGroup(Node, MantisUINode):
  485. bl_idname = "MantisSchemaGroup"
  486. bl_label = "Node Schema"
  487. node_tree:PointerProperty(type=NodeTree, poll=poll_node_tree_schema, update=node_tree_prop_update,)
  488. is_updating:BoolProperty(default=False)
  489. def draw_buttons(self, context, layout):
  490. group_draw_buttons(self, context, layout)
  491. def draw_label(self):
  492. if self.node_tree is None:
  493. return "Schema Group"
  494. else:
  495. return self.node_tree.name
  496. def update(self):
  497. if self.is_updating: # update() can be called from update() and that leads to an infinite loop.
  498. return # so we check if an update is currently running.
  499. if self.node_tree is None:
  500. return
  501. live_update = self.id_data.do_live_update
  502. self.is_updating = True
  503. try:
  504. node_group_update(self)
  505. # reset things if necessary:
  506. if self.node_tree:
  507. if len(self.inputs) == 0:
  508. self.inputs.new("UnsignedIntSocket", "Schema Length", identifier='Schema Length')
  509. if self.inputs[-1].identifier != "__extend__":
  510. self.inputs.new("WildcardSocket", "", identifier="__extend__")
  511. finally: # we need to reset this regardless of whether or not the operation succeeds!
  512. self.is_updating = False
  513. self.id_data.do_live_update = live_update # ensure this remains the same
  514. NODES_REMOVED=["xFormRootNode"]
  515. # Node bl_idname, # Socket Name
  516. SOCKETS_REMOVED=[("UtilityDriverVariable", "Transform Channel"),
  517. ("xFormRootNode","World Out"),
  518. ("UtilitySwitch","xForm"),
  519. ("LinkDrivenParameter", "Enable")]
  520. # Node Class #Prior bl_idname # prior name # new bl_idname # new name, # Multi
  521. SOCKETS_RENAMED=[ ("LinkDrivenParameter", "DriverSocket", "Driver", "FloatSocket", "Value", False),
  522. ("DeformerHook", "IntSocket", "Index", "UnsignedIntSocket", "Point Index", False)]
  523. # NODE CLASS NAME IN_OUT SOCKET TYPE SOCKET NAME INDEX MULTI DEFAULT
  524. SOCKETS_ADDED=[("DeformerMorphTargetDeform", 'INPUT', 'BooleanSocket', "Use Shape Key", 1, False, False),
  525. ("DeformerMorphTargetDeform", 'INPUT', 'BooleanSocket', "Use Offset", 2, False, True),
  526. ("UtilityFCurve", 'INPUT', "eFCrvExtrapolationMode", "Extrapolation Mode", 0, False, 'CONSTANT'),
  527. ("LinkCopyScale", 'INPUT', "BooleanSocket", "Additive", 3, False, False),
  528. ("DeformerHook", 'INPUT', "FloatFactorSocket", "Influence",3, False, 1.0),
  529. ("DeformerHook", 'INPUT', "UnsignedIntSocket", "Spline Index", 2, False, 0),
  530. ("DeformerHook", 'INPUT', "BooleanSocket", "Auto-Bezier", 5, False, True),
  531. ("UtilityCompare", 'INPUT', "EnumCompareOperation", "Comparison", 0, False, 'EQUAL'),
  532. ("UtilityMatrixFromCurve", 'INPUT', "UnsignedIntSocket", "Spline Index", 1, False, 0),
  533. ("UtilityMatricesFromCurve", 'INPUT', "UnsignedIntSocket", "Spline Index", 1, False, 0),
  534. ("UtilityPointFromCurve", 'INPUT', "UnsignedIntSocket", "Spline Index", 1, False, 0),
  535. ("LinkCopyScale", 'INPUT', "FloatFactorSocket", "Power", 5, False, 1.0),
  536. ]
  537. # replace names with bl_idnames for reading the tree and solving schemas.
  538. replace_types = ["NodeGroupInput", "NodeGroupOutput", "SchemaIncomingConnection",
  539. "SchemaArrayInput", "SchemaArrayInputAll", "SchemaConstInput", "SchemaConstOutput",
  540. "SchemaIndex", "SchemaOutgoingConnection", "SchemaArrayOutput","SchemaArrayInputGet",
  541. ]
  542. # anything that gets properties added in the graph... this is a clumsy approach but I need to watch for this
  543. # in schema generation and this is the easiest way to do it for now.
  544. custom_props_types = ["LinkArmature", "UtilityKeyframe", "UtilityFCurve", "UtilityDriver", "xFormBone"]
  545. # filters for determining if a link is a hierarchy link or a non-hierarchy (cyclic) link.
  546. from_name_filter = ["Driver",]
  547. to_name_filter = [
  548. "Custom Object xForm Override",
  549. "Custom Object",
  550. "Deform Bones",
  551. ]
  552. # nodes that must be solved as if they were Schema because they send arrays out.
  553. array_output_types = [
  554. 'UtilityArrayGet', 'UtilityKDChoosePoint', 'UtilityKDChooseXForm',
  555. ]
  556. # TODO:
  557. # - get the execution context in the execution code
  558. # - from there, begin to use it for stuff I can't do without it
  559. # - and slowly start transferring stuff to it
  560. # The Mantis Overlay class is used to store node-tree specific information
  561. # such as inputs and outputs
  562. # used for e.g. allowing strings to pass as $variables in node names
  563. class MantisOverlay():
  564. def __init__( self, parent, inputs, outputs, ):
  565. pass
  566. # The MantisExecutionContext class is used to store the execution-specific variables
  567. # that are used when executing the tree
  568. # Importantly, it is NOT used to store variables between solutions, these belong to the
  569. # tree itself.
  570. class MantisExecutionContext():
  571. def __init__(
  572. self,
  573. base_tree,
  574. ):
  575. self.base_tree = base_tree
  576. self.execution_id = base_tree.execution_id
  577. self.b_objects={} # objects created by Mantis during execution
  578. class MantisNode:
  579. """
  580. This class contains the basic interface for a Mantis Node.
  581. A MantisNode is used internally by Mantis to represent the final evaluated node graph.
  582. It gets generated with data from a MantisUINode when the graph is read.
  583. """
  584. def __init__(self, signature : tuple,
  585. base_tree : bpy.types.NodeTree,
  586. socket_templates : list[MantisSocketTemplate]=[],):
  587. self.base_tree=base_tree
  588. self.signature = signature
  589. self.ui_signature = signature
  590. self.inputs = MantisNodeSocketCollection(node=self, is_input=True)
  591. self.outputs = MantisNodeSocketCollection(node=self, is_input=False)
  592. self.parameters, self.drivers = {}, {}; self.bObject=None
  593. self.node_type='UNINITIALIZED'
  594. self.hierarchy_connections, self.connections = [], []
  595. self.hierarchy_dependencies, self.dependencies = [], []
  596. self.prepared, self.executed = False, False
  597. self.execution_prepared = False
  598. # the above is for tracking prep state in execution, so that I can avoid preparing nodes
  599. # again without changing the readtree code much.
  600. self.socket_templates = socket_templates
  601. self.mContext = None # for now I am gonna set this at runtime
  602. # I know it isn't "beautiful OOP" or whatever, but it is just easier
  603. # code should be simple and do things in the simplest way.
  604. # in the future I can refactor it, but it will require changes to 100+
  605. # classes, instead of adding about 5 lines of code elsewhere.
  606. if self.socket_templates:
  607. self.init_sockets()
  608. @property
  609. def name(self):
  610. return self.ui_signature[-1]
  611. @property
  612. def bl_idname(self): # this and the above exist solely to maintain interface w/bpy.types.Node
  613. from .utilities import get_node_prototype
  614. return get_node_prototype(self.ui_signature, self.base_tree).bl_idname
  615. def reset_execution(self) -> None:
  616. """ Reset the node for additional execution without re-building the tree."""
  617. self.drivers={}; self.bObject=None
  618. self.executed = False
  619. self.execution_prepared = False
  620. def init_sockets(self) -> None:
  621. self.inputs.init_sockets(self.socket_templates)
  622. self.outputs.init_sockets(self.socket_templates)
  623. def init_parameters(self, additional_parameters = {}) -> None:
  624. for socket in self.inputs:
  625. self.parameters[socket.name] = None
  626. for socket in self.outputs:
  627. self.parameters[socket.name] = None
  628. for key, value in additional_parameters.items():
  629. self.parameters[key]=value
  630. def gen_property_socket_map(self) -> dict:
  631. props_sockets = {}
  632. for s_template in self.socket_templates:
  633. if not s_template.blender_property:
  634. continue
  635. if isinstance(s_template.blender_property, str):
  636. props_sockets[s_template.blender_property]=(s_template.name, s_template.default_value)
  637. elif isinstance(s_template.blender_property, (tuple, list)):
  638. for index, sub_prop in enumerate(s_template.blender_property):
  639. props_sockets[sub_prop]=( (s_template.name, index),s_template.default_value[index] )
  640. return props_sockets
  641. def set_traverse(self, traversal_pairs = [(str, str)]) -> None:
  642. for (a, b) in traversal_pairs:
  643. self.inputs[a].set_traverse_target(self.outputs[b])
  644. self.outputs[b].set_traverse_target(self.inputs[a])
  645. def flush_links(self) -> None:
  646. for inp in self.inputs.values():
  647. inp.flush_links()
  648. for out in self.outputs.values():
  649. out.flush_links()
  650. def update_socket_value(self, blender_property, value) -> bool:
  651. change_handled=False
  652. if self.node_type == 'LINK':
  653. for b_ob in self.bObject:
  654. try:
  655. setattr(b_ob, blender_property, value)
  656. change_handled=True
  657. except Exception as e:
  658. print("Failed to update mantis socket because of %s" % e,
  659. "Updating tree instead.")
  660. else:
  661. try:
  662. setattr(self.bObject, blender_property, value)
  663. change_handled=True
  664. except Exception as e:
  665. print("Failed to update mantis socket because of %s" % e,
  666. "Updating tree instead.")
  667. return change_handled
  668. def ui_modify_socket(self, ui_socket, socket_name=None) -> bool:
  669. """ Handle changes in the node's UI. Updates the rig if possible."""
  670. # Always update the node's data
  671. change_handled=False
  672. if socket_name is None: socket_name = ui_socket.name
  673. value = ui_socket.default_value
  674. if socket_name == 'Enable': value = not value
  675. try:
  676. self.parameters[ui_socket.name]=value
  677. except KeyError:
  678. prRed(f"Unhandled change occured in socket {ui_socket.name} in node"
  679. f" {ui_socket.node.name} in tree {ui_socket.node.id_data.name}.")
  680. for s_template in self.socket_templates:
  681. if s_template.name==ui_socket.name:
  682. change_handled = True
  683. if not s_template.blender_property: return False
  684. elif isinstance(s_template.blender_property, str):
  685. change_handled &= self.update_socket_value(
  686. s_template.blender_property, value)
  687. else: # it is a tuple
  688. for i, prop in enumerate(s_template.blender_property):
  689. try:
  690. change_handled &= self.update_socket_value(
  691. prop, value[i])
  692. except IndexError:
  693. prRed(f"{ui_socket.name} does not have enough values to unpack"
  694. " to update the Mantis tree. Please report this as a bug.")
  695. change_handled=False
  696. break # we don't have to look through any more socket templates
  697. return change_handled
  698. # the goal here is to tag the node as unprepared
  699. # but some nodes are always prepared, so we have to kick it forward.
  700. def reset_execution_recursive(self):
  701. self.reset_execution()
  702. if self.prepared==False: return # all good from here
  703. for conn in self.hierarchy_connections:
  704. conn.reset_execution_recursive()
  705. def evaluate_input(self, input_name, index=0) -> Any:
  706. from .node_container_common import trace_single_line
  707. if not (self.inputs.get(input_name)): # get the named parameter if there is no input
  708. return self.parameters.get(input_name) # this will return None if the parameter does not exist.
  709. # this trace() should give a key error if there is a problem
  710. # it is NOT handled here because it should NOT happen - so I want the error message.
  711. trace = trace_single_line(self, input_name, index)
  712. prop = trace[0][-1].parameters[trace[1].name] #trace[0] = the list of traced nodes; read its parameters
  713. return prop
  714. def fill_parameters(self, ui_node=None) -> None:
  715. from .utilities import get_node_prototype
  716. from .node_container_common import get_socket_value
  717. if not ui_node:
  718. if ( (self.signature[0] in ["MANTIS_AUTOGENERATED", "SCHEMA_AUTOGENERATED" ]) or
  719. (self.signature[-1] in ["NodeGroupOutput", "NodeGroupInput"]) ): # I think this is harmless
  720. return None
  721. else:
  722. ui_node = get_node_prototype(self.signature, self.base_tree)
  723. if not ui_node:
  724. raise RuntimeError(wrapRed("No node prototype found for... %s" % ( [self.base_tree] + list(self.signature[1:]) ) ) )
  725. for key in self.parameters.keys():
  726. node_socket = ui_node.inputs.get(key)
  727. if self.parameters[key] is not None: # the parameters are usually initialized as None.
  728. continue # will be filled by the node itself
  729. if not node_socket: #maybe the node socket has no name
  730. if ( ( len(ui_node.inputs) == 0) and ( len(ui_node.outputs) == 1) ):
  731. node_socket = ui_node.outputs[0] # this is a simple input node.
  732. elif key == 'Name': # for Links we just use the Node Label, or if there is no label, the name.
  733. self.parameters[key] = ui_node.label if ui_node.label else ui_node.name
  734. continue
  735. if node_socket:
  736. if node_socket.bl_idname in ['RelationshipSocket', 'xFormSocket']: continue
  737. elif node_socket.is_linked and (not node_socket.is_output): continue
  738. # we will get the value from the link, because this is a linked input port.
  739. # very importantly, we do not pass linked outputs
  740. # fill these because they are probably Input nodes.
  741. elif hasattr(node_socket, "default_value"):
  742. if (value := get_socket_value(node_socket)) is not None:
  743. self.parameters[key] = value
  744. else:
  745. raise RuntimeError(wrapRed("No value found for " + self.__repr__() + " when filling out node parameters for " + ui_node.name + "::"+node_socket.name))
  746. # I don't think this works! but I like the idea
  747. def call_on_all_ancestors(self, *args, **kwargs):
  748. """Resolve the dependencies of this node with the named method and its arguments.
  749. First, dependencies are discovered by walking backwards through the tree. Once the root
  750. nodes are discovered, the method is called by each node in dependency order.
  751. The first argument MUST be the name of the method as a string.
  752. """
  753. prGreen(self)
  754. if args[0] == 'call_on_all_ancestors': raise RuntimeError("Very funny!")
  755. from .utilities import get_all_dependencies
  756. from collections import deque
  757. # get all dependencies by walking backward through the tree.
  758. all_dependencies = get_all_dependencies(self)
  759. # get just the roots
  760. can_solve = deque(filter(lambda a : len(a.hierarchy_connections) == 0, all_dependencies))
  761. solved = set()
  762. while can_solve:
  763. node = can_solve.pop()
  764. print(node)
  765. method = getattr(node, args[0])
  766. method(*args[0:], **kwargs)
  767. solved.add(node)
  768. can_solve.extendleft(filter(lambda a : a in all_dependencies, node.hierarchy_connections))
  769. if self in solved:
  770. break
  771. return
  772. # gets targets for constraints and deformers and should handle all cases
  773. def get_target_and_subtarget(self, constraint_or_deformer, input_name = "Target"):
  774. from bpy.types import PoseBone, Object, SplineIKConstraint
  775. subtarget = ''; target = self.evaluate_input(input_name)
  776. if target:
  777. if not hasattr(target, "bGetObject"):
  778. prRed(f"No {input_name} target found for {constraint_or_deformer.name} in {self} because there is no connected node, or node is wrong type")
  779. return
  780. if (isinstance(target.bGetObject(), PoseBone)):
  781. subtarget = target.bGetObject().name
  782. target = target.bGetParentArmature()
  783. elif (isinstance(target.bGetObject(), Object) ):
  784. target = target.bGetObject()
  785. else:
  786. raise RuntimeError("Cannot interpret constraint or deformer target!")
  787. if (isinstance(constraint_or_deformer, SplineIKConstraint)):
  788. if target and target.type not in ["CURVE"]:
  789. raise GraphError(wrapRed("Error: %s requires a Curve input, not %s" %
  790. (self, type(target))))
  791. constraint_or_deformer.target = target# don't get a subtarget
  792. if (input_name == 'Pole Target'):
  793. constraint_or_deformer.pole_target, constraint_or_deformer.pole_subtarget = target, subtarget
  794. else:
  795. if hasattr(constraint_or_deformer, "target"):
  796. constraint_or_deformer.target = target
  797. if hasattr(constraint_or_deformer, "object"):
  798. constraint_or_deformer.object = target
  799. if hasattr(constraint_or_deformer, "subtarget"):
  800. constraint_or_deformer.subtarget = subtarget
  801. def bPrepare(self, bContext=None):
  802. return
  803. def bExecute(self, bContext=None):
  804. return
  805. def bFinalize(self, bContext=None):
  806. return
  807. def __repr__(self):
  808. return self.signature.__repr__()
  809. # do I need this and the link class above?
  810. class DummyLink:
  811. #gonna use this for faking links to keep the interface consistent
  812. def __init__(self, from_socket, to_socket, nc_from=None, nc_to=None, original_from=None, multi_input_sort_id=0):
  813. self.from_socket = from_socket
  814. self.to_socket = to_socket
  815. self.nc_from = nc_from
  816. self.nc_to = nc_to
  817. self.multi_input_sort_id = multi_input_sort_id
  818. # self.from_node = from_socket.node
  819. # self.to_node = to_socket.node
  820. if (original_from):
  821. self.original_from = original_from
  822. else:
  823. self.original_from = self.from_socket
  824. def __repr__(self):
  825. return(self.nc_from.__repr__()+":"+self.from_socket.name + " -> " + self.nc_to.__repr__()+":"+self.to_socket.name)
  826. def detect_hierarchy_link(from_node, from_socket, to_node, to_socket,):
  827. if to_node.node_type in ['DUMMY_SCHEMA', 'SCHEMA']:
  828. return False
  829. if (from_socket in from_name_filter) or (to_socket in to_name_filter):
  830. return False
  831. # if from_node.__class__.__name__ in ["UtilityCombineVector", "UtilityCombineThreeBool"]:
  832. # return False
  833. return True
  834. class NodeLink:
  835. from_node = None
  836. from_socket = None
  837. to_node = None
  838. to_socket = None
  839. def __init__(self, from_node, from_socket, to_node, to_socket, multi_input_sort_id=0):
  840. if from_node.signature == to_node.signature:
  841. raise RuntimeError("Cannot connect a node to itself.")
  842. self.from_node = from_node
  843. self.from_socket = from_socket
  844. self.to_node = to_node
  845. self.to_socket = to_socket
  846. self.from_node.outputs[self.from_socket].links.append(self)
  847. # it is the responsibility of the node that uses these links to sort them correctly based on the sort_id
  848. self.multi_input_sort_id = multi_input_sort_id
  849. self.to_node.inputs[self.to_socket].links.append(self)
  850. self.is_hierarchy = detect_hierarchy_link(from_node, from_socket, to_node, to_socket,)
  851. self.is_alive = True
  852. def __repr__(self):
  853. return self.from_node.outputs[self.from_socket].__repr__() + " --> " + self.to_node.inputs[self.to_socket].__repr__()
  854. # link_string = # if I need to colorize output for debugging.
  855. # if self.is_hierarchy:
  856. # return wrapOrange(link_string)
  857. # else:
  858. # return wrapWhite(link_string)
  859. def die(self):
  860. self.is_alive = False
  861. self.to_node.inputs[self.to_socket].flush_links()
  862. self.from_node.outputs[self.from_socket].flush_links()
  863. def insert_node(self, middle_node, middle_node_in, middle_node_out, re_init_hierarchy = True):
  864. to_node = self.to_node
  865. to_socket = self.to_socket
  866. self.to_node = middle_node
  867. self.to_socket = middle_node_in
  868. middle_node.outputs[middle_node_out].connect(to_node, to_socket)
  869. if re_init_hierarchy:
  870. from .utilities import init_connections, init_dependencies
  871. init_connections(self.from_node)
  872. init_connections(middle_node)
  873. init_dependencies(middle_node)
  874. init_dependencies(to_node)
  875. class NodeSocket:
  876. # @property # this is a read-only property.
  877. # def is_linked(self):
  878. # return bool(self.links)
  879. def __init__(self, is_input = False,
  880. node = None, name = None,
  881. traverse_target = None):
  882. self.can_traverse = False # to/from the other side of the parent node
  883. self.traverse_target = None
  884. self.node = node
  885. self.name = name
  886. self.is_input = is_input
  887. self.links = []
  888. self.is_linked = False
  889. if (traverse_target):
  890. self.can_traverse = True
  891. def connect(self, node, socket, sort_id=0):
  892. if (self.is_input):
  893. to_node = self.node; from_node = node
  894. to_socket = self.name; from_socket = socket
  895. else:
  896. from_node = self.node; to_node = node
  897. from_socket = self.name; to_socket = socket
  898. from_node.outputs[from_socket].is_linked = True
  899. to_node.inputs[to_socket].is_linked = True
  900. for l in from_node.outputs[from_socket].links:
  901. if l.to_node==to_node and l.to_socket==to_socket:
  902. return None
  903. new_link = NodeLink(
  904. from_node,
  905. from_socket,
  906. to_node,
  907. to_socket,
  908. sort_id)
  909. return new_link
  910. def set_traverse_target(self, traverse_target):
  911. self.traverse_target = traverse_target
  912. self.can_traverse = True
  913. def flush_links(self):
  914. """ Removes dead links from this socket."""
  915. self.links = [l for l in self.links if l.is_alive]
  916. self.links.sort(key=lambda a : -a.multi_input_sort_id)
  917. self.is_linked = bool(self.links)
  918. @property
  919. def is_connected(self):
  920. return len(self.links)>0
  921. def __repr__(self):
  922. return self.node.__repr__() + "::" + self.name
  923. class MantisNodeSocketCollection(dict):
  924. def __init__(self, node, is_input=False):
  925. self.is_input = is_input
  926. self.node = node
  927. def init_sockets(self, sockets):
  928. for socket in sockets:
  929. if isinstance(socket, str):
  930. self[socket] = NodeSocket(is_input=self.is_input, name=socket, node=self.node)
  931. elif isinstance(socket, MantisSocketTemplate):
  932. if socket.is_input != self.is_input: continue
  933. self[socket.name] = NodeSocket(is_input=self.is_input, name=socket.name, node=self.node)
  934. else:
  935. raise RuntimeError(f"NodeSocketCollection keys must be str or MantisSocketTemplate, not {type(socket)}")
  936. def __delitem__(self, key):
  937. """Deletes a node socket by name, and all its links."""
  938. socket = self[key]
  939. for l in socket.links:
  940. l.die()
  941. super().__delitem__(key)
  942. def __iter__(self):
  943. """Makes the class iterable"""
  944. return iter(self.values())