有没有办法通过父级,约束或与另一个对象的连接来检查对象是否依赖?我想在为对象提供父级之前进行此检查,以查看它是否会导致依赖性循环。
我记得3DsMax有一个完全执行此操作的命令。我检查了OpenMaya
,但无法找到任何内容。有cmds.cycleCheck
,但这只适用于目前有一个周期,这对我来说太晚了。
棘手的是,这2个对象可能位于场景层次结构中的任何位置,因此它们可能有也可能没有直接的父母关系。
修改
检查层次结构是否会导致任何问题相对容易:
children = cmds.listRelatives(obj1, ad = True, f = True)
if obj2 in children:
print "Can't parent to its own children!"
检查约束或连接是另一回事。
答案 0 :(得分:2)
取决于您要查找的内容,cmds.listHistory
或cmds.listConnections
会告诉您某个节点的内容。 listHistory
仅限于驱动形状节点更改的可能连接的子集,因此如果您对约束感兴趣,则需要遍历节点的listConnections
并查看上游的内容。该列表可以是任意大的,因为它可能包含许多隐藏节点,如单元翻译,组部件等,您可能不想关注。
这是一种简单的方法来转发节点的传入连接并获得传入连接树:
def input_tree(root_node):
visited = set() # so we don't get into loops
# recursively extract input connections
def upstream(node, depth = 0):
if node not in visited:
visited.add(node)
children = cmds.listConnections(node, s=True, d=False)
if children:
grandparents = ()
for history_node in children:
grandparents += (tuple(d for d in upstream(history_node, depth + 1)))
yield node, tuple((g for g in grandparents if len(g)))
# unfold the recursive generation of the tree
tree_iter = tuple((i for i in upstream(root_node)))
# return the grandparent array of the first node
return tree_iter[0][-1]
哪个应该生成一个嵌套的输入连接列表,如
((u'pCube1_parentConstraint1',
((u'pSphere1',
((u'pSphere1_orientConstraint1', ()),
(u'pSphere1_scaleConstraint1', ()))),)),
(u'pCube1_scaleConstraint1', ()))
其中每个级别包含一个输入列表。然后,您可以通过它来查看您提议的更改是否包含该项目。
此不会告诉您连接是否会导致实际循环,但是:这取决于不同节点内的数据流。一旦你确定了可能的循环,你可以回过头来看看循环是否真实(例如,两个项目影响彼此的翻译)或无害(我影响你的轮换并影响我的翻译)。
答案 1 :(得分:1)
这不是最优雅的方法,但它是一种快速而肮脏的方式,似乎到目前为止工作正常。这个想法是,如果一个循环发生,那么只需撤消操作并停止脚本的其余部分。使用装备进行测试,连接的复杂程度无关紧要,它会抓住它。
# Class to use to undo operations
class UndoStack():
def __init__(self, inputName = ''):
self.name = inputName
def __enter__(self):
cmds.undoInfo(openChunk = True, chunkName = self.name, length = 300)
def __exit__(self, type, value, traceback):
cmds.undoInfo(closeChunk = True)
# Create a sphere and a box
mySphere = cmds.polySphere()[0]
myBox = cmds.polyCube()[0]
# Parent box to the sphere
myBox = cmds.parent(myBox, mySphere)[0]
# Set constraint from sphere to box (will cause cycle)
with UndoStack("Parent box"):
cmds.parentConstraint(myBox, mySphere)
# If there's a cycle, undo it
hasCycle = cmds.cycleCheck([mySphere, myBox])
if hasCycle:
cmds.undo()
cmds.warning("Can't do this operation, a dependency cycle has occurred!")