Community
Arnold General Rendering Forum
abbrechen
Suchergebnisse werden angezeigt für 
Anzeigen  nur  | Stattdessen suchen nach 
Meintest du: 

Arnold C++ API of "kick -nodes"

3 ANTWORTEN 3
GELÖST
Antworten
Nachricht 1 von 4
Anonymous
429 Aufrufe, 3 Antworten

Arnold C++ API of "kick -nodes"

Hi all,

My google-fu is failing me - anyone happen to know what the Arnold C++ API to list all the loaded nodes is?

i.e. the thing that's probably called under the hook when you execute "kick -nodes"

Cheers,

Alan.

Tags (1)
Beschriftungen (1)
3 ANTWORTEN 3
Nachricht 2 von 4
Stephen.Blair
als Antwort auf: Anonymous

Here's the Python from the old pykick. The C++ is basically the same calls...

def PrintRangeOfNodes(first, sort):
   nodes = []
   i = 0
   it = AiUniverseGetNodeEntryIterator(AI_NODE_ALL)
   # skip first node entries to start on the specified one
   while not AiNodeEntryIteratorFinished(it) and i < first:
      AiNodeEntryIteratorGetNext(it)
      i += 1
#
#
   while not AiNodeEntryIteratorFinished(it):
      nentry   = AiNodeEntryIteratorGetNext(it)
      nodename = AiNodeEntryGetName(nentry)
      typename = AiNodeEntryGetTypeName(nentry)
      nodes.append([nodename, typename])
   AiNodeEntryIteratorDestroy(it)
#
# ...
#


// Stephen Blair
// Arnold Renderer Support
Nachricht 3 von 4
thiago.ize
als Antwort auf: Anonymous

You'll want to use the AiUniverseGetNodeEntryIterator(AI_NODE_ALL) to get an iterator that lets you examine all the node types. The you call AiNodeEntryIteratorGetNext() on the iterator to get an AtNodeEntry which you can then pass to AiNodeEntryGetName(), AiNodeEntryGetTypeName, etc. to get information on these nodes. Take a look at the doxygen/headers included in the Arnold SDK to get info on all these functions. Hopefully this helps?

Nachricht 4 von 4
Anonymous
als Antwort auf: Anonymous

Thanks, @Stephen Blair and @Thiago Ize - most appreciated.

Sie finden nicht, was Sie suchen? Fragen Sie die Community oder teilen Sie Ihr Wissen mit anderen.

In Foren veröffentlichen  

Autodesk Design & Make Report