Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Gilbert <ascotan@gmail.com>2004-04-05 08:17:01 +0400
committerJoseph Gilbert <ascotan@gmail.com>2004-04-05 08:17:01 +0400
commit136b66c19f59a2d8b63521b442d73aa485eeafd3 (patch)
treec94b2314159ad291a1fac3e408c5f4cb3036d0a5 /source/blender/python/api2_2x/Armature.c
parent09b19aead2842b904406c657b5444673c51910ad (diff)
- getBones() fixed - returns all armature bones including children
Diffstat (limited to 'source/blender/python/api2_2x/Armature.c')
-rw-r--r--source/blender/python/api2_2x/Armature.c48
1 files changed, 27 insertions, 21 deletions
diff --git a/source/blender/python/api2_2x/Armature.c b/source/blender/python/api2_2x/Armature.c
index a5b24bcada5..b10fb6574d0 100644
--- a/source/blender/python/api2_2x/Armature.c
+++ b/source/blender/python/api2_2x/Armature.c
@@ -314,29 +314,37 @@ Armature_getName (BPy_Armature * self)
}
-/** Create and return a list of the root bones for this armature. */
+static void
+append_childrenToList(Bone *parent, PyObject *listbones)
+{
+ Bone *child = NULL;
+
+ //append children
+ for(child = parent->childbase.first; child; child = child->next){
+ PyList_Append (listbones, Bone_CreatePyObject (child));
+ if(child->childbase.first){ //has children?
+ append_childrenToList(child, listbones);
+ }
+ }
+
+}
+
static PyObject *
Armature_getBones (BPy_Armature * self)
{
- int totbones = 0;
+
PyObject *listbones = NULL;
- Bone *current = NULL;
- int i;
-
- /* Count the number of bones to create the list */
- current = self->armature->bonebase.first;
- for (; current; current = current->next)
- totbones++;
-
- /* Create a list with a bone wrapper for each bone */
- current = self->armature->bonebase.first;
- listbones = PyList_New (totbones);
- for (i = 0; i < totbones; i++)
- {
- /* Wrap and set to corresponding element of the list. */
- PyList_SetItem (listbones, i, Bone_CreatePyObject (current));
- current = current->next;
- }
+ Bone *parent = NULL;
+
+ listbones = PyList_New(0);
+
+ //append root bones
+ for (parent = self->armature->bonebase.first; parent; parent = parent->next){
+ PyList_Append (listbones, Bone_CreatePyObject (parent));
+ if(parent->childbase.first){ //has children?
+ append_childrenToList(parent, listbones);
+ }
+ }
return listbones;
}
@@ -525,8 +533,6 @@ Armature_setAttr (BPy_Armature * self, char *name, PyObject * value)
if (strcmp (name, "name") == 0)
error = Armature_setName (self, valtuple);
- /* if (strcmp (name, "bones") == 0)
- error = Armature_setBones (self, valtuple); */
else
{ /* Error */
Py_DECREF (valtuple);