base_definitions.py 49 KB

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