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:
authorBastien Montagne <montagne29@wanadoo.fr>2012-03-06 03:30:41 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2012-03-06 03:30:41 +0400
commit0114d78c33edfaef5bc412eefcb5d52a0a6823b0 (patch)
tree2deb1401eb9152ccf44855b8674ee75560b1ad9f /source/blender/makesrna/intern/makesrna.c
parent1eb893a11410955a9cf3ceb41ab50d515f5393b1 (diff)
Code cleanup in rna files (huge, higly automated with py script).
Addresses: * C++ comments. * Spaces after if/for/while/switch statements. * Spaces around assignment operators.
Diffstat (limited to 'source/blender/makesrna/intern/makesrna.c')
-rw-r--r--source/blender/makesrna/intern/makesrna.c1290
1 files changed, 645 insertions, 645 deletions
diff --git a/source/blender/makesrna/intern/makesrna.c b/source/blender/makesrna/intern/makesrna.c
index f6bf7b69887..5e2669d3227 100644
--- a/source/blender/makesrna/intern/makesrna.c
+++ b/source/blender/makesrna/intern/makesrna.c
@@ -62,34 +62,34 @@
static int file_older(const char *file1, const char *file2)
{
struct stat st1, st2;
- // printf("compare: %s %s\n", file1, file2);
+ /* printf("compare: %s %s\n", file1, file2); */
- if(stat(file1, &st1)) return 0;
- if(stat(file2, &st2)) return 0;
+ if (stat(file1, &st1)) return 0;
+ if (stat(file2, &st2)) return 0;
return (st1.st_mtime < st2.st_mtime);
}
-static const char *makesrna_path= NULL;
+static const char *makesrna_path = NULL;
static int replace_if_different(char *tmpfile, const char *dep_files[])
{
- // return 0; // use for testing had edited rna
+ /* return 0; *//* use for testing had edited rna */
#define REN_IF_DIFF \
{ \
- FILE *file_test= fopen(orgfile, "rb"); \
- if(file_test) { \
+ FILE *file_test = fopen(orgfile, "rb"); \
+ if (file_test) { \
fclose(file_test); \
- if(fp_org) fclose(fp_org); \
- if(fp_new) fclose(fp_new); \
- if(remove(orgfile) != 0) { \
+ if (fp_org) fclose(fp_org); \
+ if (fp_new) fclose(fp_new); \
+ if (remove(orgfile) != 0) { \
fprintf(stderr, "%s:%d, Remove Error (%s): \"%s\"\n", \
__FILE__, __LINE__, strerror(errno), orgfile); \
return -1; \
} \
} \
} \
- if(rename(tmpfile, orgfile) != 0) { \
+ if (rename(tmpfile, orgfile) != 0) { \
fprintf(stderr, "%s:%d, Rename Error (%s): \"%s\" -> \"%s\"\n", \
__FILE__, __LINE__, strerror(errno), tmpfile, orgfile); \
return -1; \
@@ -100,7 +100,7 @@ static int replace_if_different(char *tmpfile, const char *dep_files[])
/* end REN_IF_DIFF */
- FILE *fp_new= NULL, *fp_org= NULL;
+ FILE *fp_new = NULL, *fp_org = NULL;
int len_new, len_org;
char *arr_new, *arr_org;
int cmp;
@@ -110,9 +110,9 @@ static int replace_if_different(char *tmpfile, const char *dep_files[])
strcpy(orgfile, tmpfile);
orgfile[strlen(orgfile) - strlen(TMP_EXT)] = '\0'; /* strip '.tmp' */
- fp_org= fopen(orgfile, "rb");
+ fp_org = fopen(orgfile, "rb");
- if(fp_org==NULL) {
+ if (fp_org == NULL) {
REN_IF_DIFF;
}
@@ -120,30 +120,30 @@ static int replace_if_different(char *tmpfile, const char *dep_files[])
/* XXX, trick to work around dependency problem
* assumes dep_files is in the same dir as makesrna.c, which is true for now. */
- if(1) {
+ if (1) {
/* first check if makesrna.c is newer then generated files
* for development on makesrna.c you may want to disable this */
- if(file_older(orgfile, __FILE__)) {
+ if (file_older(orgfile, __FILE__)) {
REN_IF_DIFF;
}
- if(file_older(orgfile, makesrna_path)) {
+ if (file_older(orgfile, makesrna_path)) {
REN_IF_DIFF;
}
/* now check if any files we depend on are newer then any generated files */
- if(dep_files) {
+ if (dep_files) {
int pass;
- for(pass=0; dep_files[pass]; pass++) {
- char from_path[4096]= __FILE__;
+ for (pass = 0; dep_files[pass]; pass++) {
+ char from_path[4096] = __FILE__;
char *p1, *p2;
/* dir only */
- p1= strrchr(from_path, '/');
- p2= strrchr(from_path, '\\');
+ p1 = strrchr(from_path, '/');
+ p2 = strrchr(from_path, '\\');
strcpy((p1 > p2 ? p1 : p2)+1, dep_files[pass]);
/* account for build deps, if makesrna.c (this file) is newer */
- if(file_older(orgfile, from_path)) {
+ if (file_older(orgfile, from_path)) {
REN_IF_DIFF;
}
}
@@ -152,9 +152,9 @@ static int replace_if_different(char *tmpfile, const char *dep_files[])
/* XXX end dep trick */
- fp_new= fopen(tmpfile, "rb");
+ fp_new = fopen(tmpfile, "rb");
- if(fp_new==NULL) {
+ if (fp_new == NULL) {
/* shouldn't happen, just to be safe */
fprintf(stderr, "%s:%d, open error: \"%s\"\n", __FILE__, __LINE__, tmpfile);
fclose(fp_org);
@@ -165,30 +165,30 @@ static int replace_if_different(char *tmpfile, const char *dep_files[])
fseek(fp_org, 0L, SEEK_END); len_org = ftell(fp_org); fseek(fp_org, 0L, SEEK_SET);
- if(len_new != len_org) {
+ if (len_new != len_org) {
fclose(fp_new);
fclose(fp_org);
REN_IF_DIFF;
}
/* now compare the files... */
- arr_new= MEM_mallocN(sizeof(char)*len_new, "rna_cmp_file_new");
- arr_org= MEM_mallocN(sizeof(char)*len_org, "rna_cmp_file_org");
+ arr_new = MEM_mallocN(sizeof(char)*len_new, "rna_cmp_file_new");
+ arr_org = MEM_mallocN(sizeof(char)*len_org, "rna_cmp_file_org");
- if(fread(arr_new, sizeof(char), len_new, fp_new) != len_new)
+ if (fread(arr_new, sizeof(char), len_new, fp_new) != len_new)
fprintf(stderr, "%s:%d, error reading file %s for comparison.\n", __FILE__, __LINE__, tmpfile);
- if(fread(arr_org, sizeof(char), len_org, fp_org) != len_org)
+ if (fread(arr_org, sizeof(char), len_org, fp_org) != len_org)
fprintf(stderr, "%s:%d, error reading file %s for comparison.\n", __FILE__, __LINE__, orgfile);
fclose(fp_new);
fclose(fp_org);
- cmp= memcmp(arr_new, arr_org, len_new);
+ cmp = memcmp(arr_new, arr_org, len_new);
MEM_freeN(arr_new);
MEM_freeN(arr_org);
- if(cmp) {
+ if (cmp) {
REN_IF_DIFF;
}
else {
@@ -203,9 +203,9 @@ static int replace_if_different(char *tmpfile, const char *dep_files[])
static const char *rna_safe_id(const char *id)
{
- if(strcmp(id, "default") == 0)
+ if (strcmp(id, "default") == 0)
return "default_value";
- else if(strcmp(id, "operator") == 0)
+ else if (strcmp(id, "operator") == 0)
return "operator_value";
return id;
@@ -215,38 +215,38 @@ static const char *rna_safe_id(const char *id)
static int cmp_struct(const void *a, const void *b)
{
- const StructRNA *structa= *(const StructRNA**)a;
- const StructRNA *structb= *(const StructRNA**)b;
+ const StructRNA *structa = *(const StructRNA**)a;
+ const StructRNA *structb = *(const StructRNA**)b;
return strcmp(structa->identifier, structb->identifier);
}
static int cmp_property(const void *a, const void *b)
{
- const PropertyRNA *propa= *(const PropertyRNA**)a;
- const PropertyRNA *propb= *(const PropertyRNA**)b;
+ const PropertyRNA *propa = *(const PropertyRNA**)a;
+ const PropertyRNA *propb = *(const PropertyRNA**)b;
- if(strcmp(propa->identifier, "rna_type") == 0) return -1;
- else if(strcmp(propb->identifier, "rna_type") == 0) return 1;
+ if (strcmp(propa->identifier, "rna_type") == 0) return -1;
+ else if (strcmp(propb->identifier, "rna_type") == 0) return 1;
- if(strcmp(propa->identifier, "name") == 0) return -1;
- else if(strcmp(propb->identifier, "name") == 0) return 1;
+ if (strcmp(propa->identifier, "name") == 0) return -1;
+ else if (strcmp(propb->identifier, "name") == 0) return 1;
return strcmp(propa->name, propb->name);
}
static int cmp_def_struct(const void *a, const void *b)
{
- const StructDefRNA *dsa= *(const StructDefRNA**)a;
- const StructDefRNA *dsb= *(const StructDefRNA**)b;
+ const StructDefRNA *dsa = *(const StructDefRNA**)a;
+ const StructDefRNA *dsb = *(const StructDefRNA**)b;
return cmp_struct(&dsa->srna, &dsb->srna);
}
static int cmp_def_property(const void *a, const void *b)
{
- const PropertyDefRNA *dpa= *(const PropertyDefRNA**)a;
- const PropertyDefRNA *dpb= *(const PropertyDefRNA**)b;
+ const PropertyDefRNA *dpa = *(const PropertyDefRNA**)a;
+ const PropertyDefRNA *dpb = *(const PropertyDefRNA**)b;
return cmp_property(&dpa->prop, &dpb->prop);
}
@@ -257,22 +257,22 @@ static void rna_sortlist(ListBase *listbase, int(*cmp)(const void*, const void*)
void **array;
int a, size;
- if(listbase->first == listbase->last)
+ if (listbase->first == listbase->last)
return;
- for(size=0, link=listbase->first; link; link=link->next)
+ for (size = 0, link = listbase->first; link; link = link->next)
size++;
- array= MEM_mallocN(sizeof(void*)*size, "rna_sortlist");
- for(a=0, link=listbase->first; link; link=link->next, a++)
- array[a]= link;
+ array = MEM_mallocN(sizeof(void*)*size, "rna_sortlist");
+ for (a = 0, link = listbase->first; link; link = link->next, a++)
+ array[a] = link;
qsort(array, size, sizeof(void*), cmp);
- listbase->first= listbase->last= NULL;
- for(a=0; a<size; a++) {
- link= array[a];
- link->next= link->prev= NULL;
+ listbase->first = listbase->last = NULL;
+ for (a = 0; a<size; a++) {
+ link = array[a];
+ link->next = link->prev = NULL;
rna_addtail(listbase, link);
}
@@ -286,18 +286,18 @@ static void rna_print_c_string(FILE *f, const char *str)
static const char *escape[] = {"\''", "\"\"", "\??", "\\\\","\aa", "\bb", "\ff", "\nn", "\rr", "\tt", "\vv", NULL};
int i, j;
- if(!str) {
+ if (!str) {
fprintf(f, "NULL");
return;
}
fprintf(f, "\"");
- for(i=0; str[i]; i++) {
- for(j=0; escape[j]; j++)
- if(str[i] == escape[j][0])
+ for (i = 0; str[i]; i++) {
+ for (j = 0; escape[j]; j++)
+ if (str[i] == escape[j][0])
break;
- if(escape[j]) fprintf(f, "\\%c", escape[j][1]);
+ if (escape[j]) fprintf(f, "\\%c", escape[j][1]);
else fprintf(f, "%c", str[i]);
}
fprintf(f, "\"");
@@ -305,7 +305,7 @@ static void rna_print_c_string(FILE *f, const char *str)
static void rna_print_data_get(FILE *f, PropertyDefRNA *dp)
{
- if(dp->dnastructfromname && dp->dnastructfromprop)
+ if (dp->dnastructfromname && dp->dnastructfromprop)
fprintf(f, " %s *data= (%s*)(((%s*)ptr->data)->%s);\n", dp->dnastructname, dp->dnastructname, dp->dnastructfromname, dp->dnastructfromprop);
else
fprintf(f, " %s *data= (%s*)(ptr->data);\n", dp->dnastructname, dp->dnastructname);
@@ -323,11 +323,11 @@ static char *rna_alloc_function_name(const char *structname, const char *propnam
char *result;
snprintf(buffer, sizeof(buffer), "%s_%s_%s", structname, propname, type);
- result= MEM_callocN(sizeof(char)*strlen(buffer)+1, "rna_alloc_function_name");
+ result = MEM_callocN(sizeof(char)*strlen(buffer)+1, "rna_alloc_function_name");
strcpy(result, buffer);
- alloc= MEM_callocN(sizeof(AllocDefRNA), "AllocDefRNA");
- alloc->mem= result;
+ alloc = MEM_callocN(sizeof(AllocDefRNA), "AllocDefRNA");
+ alloc->mem = result;
rna_addtail(&DefRNA.allocs, alloc);
return result;
@@ -337,8 +337,8 @@ static StructRNA *rna_find_struct(const char *identifier)
{
StructDefRNA *ds;
- for(ds=DefRNA.structs.first; ds; ds=ds->cont.next)
- if(strcmp(ds->srna->identifier, identifier)==0)
+ for (ds = DefRNA.structs.first; ds; ds = ds->cont.next)
+ if (strcmp(ds->srna->identifier, identifier) == 0)
return ds->srna;
return NULL;
@@ -348,8 +348,8 @@ static const char *rna_find_type(const char *type)
{
StructDefRNA *ds;
- for(ds=DefRNA.structs.first; ds; ds=ds->cont.next)
- if(ds->dnaname && strcmp(ds->dnaname, type)==0)
+ for (ds = DefRNA.structs.first; ds; ds = ds->cont.next)
+ if (ds->dnaname && strcmp(ds->dnaname, type) == 0)
return ds->srna->identifier;
return NULL;
@@ -359,8 +359,8 @@ static const char *rna_find_dna_type(const char *type)
{
StructDefRNA *ds;
- for(ds=DefRNA.structs.first; ds; ds=ds->cont.next)
- if(strcmp(ds->srna->identifier, type)==0)
+ for (ds = DefRNA.structs.first; ds; ds = ds->cont.next)
+ if (strcmp(ds->srna->identifier, type) == 0)
return ds->dnaname;
return NULL;
@@ -368,7 +368,7 @@ static const char *rna_find_dna_type(const char *type)
static const char *rna_type_type_name(PropertyRNA *prop)
{
- switch(prop->type) {
+ switch (prop->type) {
case PROP_BOOLEAN:
case PROP_INT:
case PROP_ENUM:
@@ -376,7 +376,7 @@ static const char *rna_type_type_name(PropertyRNA *prop)
case PROP_FLOAT:
return "float";
case PROP_STRING:
- if(prop->flag & PROP_THICK_WRAP) {
+ if (prop->flag & PROP_THICK_WRAP) {
return "char*";
}
else {
@@ -391,9 +391,9 @@ static const char *rna_type_type(PropertyRNA *prop)
{
const char *type;
- type= rna_type_type_name(prop);
+ type = rna_type_type_name(prop);
- if(type)
+ if (type)
return type;
return "PointerRNA";
@@ -403,9 +403,9 @@ static const char *rna_type_struct(PropertyRNA *prop)
{
const char *type;
- type= rna_type_type_name(prop);
+ type = rna_type_type_name(prop);
- if(type)
+ if (type)
return "";
return "struct ";
@@ -415,16 +415,16 @@ static const char *rna_parameter_type_name(PropertyRNA *parm)
{
const char *type;
- type= rna_type_type_name(parm);
+ type = rna_type_type_name(parm);
- if(type)
+ if (type)
return type;
- switch(parm->type) {
+ switch (parm->type) {
case PROP_POINTER: {
- PointerPropertyRNA *pparm= (PointerPropertyRNA*)parm;
+ PointerPropertyRNA *pparm = (PointerPropertyRNA*)parm;
- if(parm->flag & PROP_RNAPTR)
+ if (parm->flag & PROP_RNAPTR)
return "PointerRNA";
else
return rna_find_dna_type((const char *)pparm->type);
@@ -439,12 +439,12 @@ static const char *rna_parameter_type_name(PropertyRNA *parm)
static int rna_enum_bitmask(PropertyRNA *prop)
{
- EnumPropertyRNA *eprop= (EnumPropertyRNA*)prop;
- int a, mask= 0;
+ EnumPropertyRNA *eprop = (EnumPropertyRNA*)prop;
+ int a, mask = 0;
- if(eprop->item) {
- for(a=0; a<eprop->totitem; a++)
- if(eprop->item[a].identifier[0])
+ if (eprop->item) {
+ for (a = 0; a<eprop->totitem; a++)
+ if (eprop->item[a].identifier[0])
mask |= eprop->item[a].value;
}
@@ -454,7 +454,7 @@ static int rna_enum_bitmask(PropertyRNA *prop)
static int rna_color_quantize(PropertyRNA *prop, PropertyDefRNA *dp)
{
return ( (prop->type == PROP_FLOAT) &&
- (prop->subtype==PROP_COLOR || prop->subtype==PROP_COLOR_GAMMA) &&
+ (prop->subtype == PROP_COLOR || prop->subtype == PROP_COLOR_GAMMA) &&
(IS_DNATYPE_FLOAT_COMPAT(dp->dnatype) == 0) );
}
@@ -465,16 +465,16 @@ static const char *rna_function_string(void *func)
static void rna_float_print(FILE *f, float num)
{
- if(num == -FLT_MAX) fprintf(f, "-FLT_MAX");
- else if(num == FLT_MAX) fprintf(f, "FLT_MAX");
- else if((int)num == num) fprintf(f, "%.1ff", num);
+ if (num == -FLT_MAX) fprintf(f, "-FLT_MAX");
+ else if (num == FLT_MAX) fprintf(f, "FLT_MAX");
+ else if ((int)num == num) fprintf(f, "%.1ff", num);
else fprintf(f, "%.10ff", num);
}
static void rna_int_print(FILE *f, int num)
{
- if(num == INT_MIN) fprintf(f, "INT_MIN");
- else if(num == INT_MAX) fprintf(f, "INT_MAX");
+ if (num == INT_MIN) fprintf(f, "INT_MIN");
+ else if (num == INT_MAX) fprintf(f, "INT_MAX");
else fprintf(f, "%d", num);
}
@@ -482,35 +482,35 @@ static char *rna_def_property_get_func(FILE *f, StructRNA *srna, PropertyRNA *pr
{
char *func;
- if(prop->flag & PROP_IDPROPERTY && manualfunc==NULL)
+ if (prop->flag & PROP_IDPROPERTY && manualfunc == NULL)
return NULL;
- if(!manualfunc) {
- if(!dp->dnastructname || !dp->dnaname) {
+ if (!manualfunc) {
+ if (!dp->dnastructname || !dp->dnaname) {
fprintf(stderr, "%s (0): %s.%s has no valid dna info.\n",
__func__, srna->identifier, prop->identifier);
- DefRNA.error= 1;
+ DefRNA.error = 1;
return NULL;
}
/* typecheck, */
- if(dp->dnatype && *dp->dnatype) {
+ if (dp->dnatype && *dp->dnatype) {
- if(prop->type == PROP_FLOAT) {
- if(IS_DNATYPE_FLOAT_COMPAT(dp->dnatype) == 0) {
- if(prop->subtype != PROP_COLOR_GAMMA) { /* colors are an exception. these get translated */
+ if (prop->type == PROP_FLOAT) {
+ if (IS_DNATYPE_FLOAT_COMPAT(dp->dnatype) == 0) {
+ if (prop->subtype != PROP_COLOR_GAMMA) { /* colors are an exception. these get translated */
fprintf(stderr, "%s (1): %s.%s is a '%s' but wrapped as type '%s'.\n",
__func__, srna->identifier, prop->identifier, dp->dnatype, RNA_property_typename(prop->type));
- DefRNA.error= 1;
+ DefRNA.error = 1;
return NULL;
}
}
}
- else if(prop->type == PROP_INT || prop->type == PROP_BOOLEAN || prop->type == PROP_ENUM) {
- if(IS_DNATYPE_INT_COMPAT(dp->dnatype) == 0) {
+ else if (prop->type == PROP_INT || prop->type == PROP_BOOLEAN || prop->type == PROP_ENUM) {
+ if (IS_DNATYPE_INT_COMPAT(dp->dnatype) == 0) {
fprintf(stderr, "%s (2): %s.%s is a '%s' but wrapped as type '%s'.\n",
__func__, srna->identifier, prop->identifier, dp->dnatype, RNA_property_typename(prop->type));
- DefRNA.error= 1;
+ DefRNA.error = 1;
return NULL;
}
}
@@ -518,26 +518,26 @@ static char *rna_def_property_get_func(FILE *f, StructRNA *srna, PropertyRNA *pr
}
- func= rna_alloc_function_name(srna->identifier, rna_safe_id(prop->identifier), "get");
+ func = rna_alloc_function_name(srna->identifier, rna_safe_id(prop->identifier), "get");
- switch(prop->type) {
+ switch (prop->type) {
case PROP_STRING: {
- StringPropertyRNA *sprop= (StringPropertyRNA*)prop;
+ StringPropertyRNA *sprop = (StringPropertyRNA*)prop;
fprintf(f, "void %s(PointerRNA *ptr, char *value)\n", func);
fprintf(f, "{\n");
- if(manualfunc) {
+ if (manualfunc) {
fprintf(f, " %s(ptr, value);\n", manualfunc);
}
else {
- const PropertySubType subtype= prop->subtype;
- const char *string_copy_func= (subtype==PROP_FILEPATH ||
- subtype==PROP_DIRPATH ||
- subtype==PROP_FILENAME ||
- subtype==PROP_BYTESTRING) ?
+ const PropertySubType subtype = prop->subtype;
+ const char *string_copy_func = (subtype == PROP_FILEPATH ||
+ subtype == PROP_DIRPATH ||
+ subtype == PROP_FILENAME ||
+ subtype == PROP_BYTESTRING) ?
"BLI_strncpy" : "BLI_strncpy_utf8";
rna_print_data_get(f, dp);
- if(sprop->maxlength)
+ if (sprop->maxlength)
fprintf(f, " %s(value, data->%s, %d);\n", string_copy_func, dp->dnaname, sprop->maxlength);
else
fprintf(f, " %s(value, data->%s, sizeof(data->%s));\n", string_copy_func, dp->dnaname, dp->dnaname);
@@ -548,13 +548,13 @@ static char *rna_def_property_get_func(FILE *f, StructRNA *srna, PropertyRNA *pr
case PROP_POINTER: {
fprintf(f, "PointerRNA %s(PointerRNA *ptr)\n", func);
fprintf(f, "{\n");
- if(manualfunc) {
+ if (manualfunc) {
fprintf(f, " return %s(ptr);\n", manualfunc);
}
else {
- PointerPropertyRNA *pprop= (PointerPropertyRNA*)prop;
+ PointerPropertyRNA *pprop = (PointerPropertyRNA*)prop;
rna_print_data_get(f, dp);
- if(dp->dnapointerlevel == 0)
+ if (dp->dnapointerlevel == 0)
fprintf(f, " return rna_pointer_inherit_refine(ptr, &RNA_%s, &data->%s);\n", (const char*)pprop->type, dp->dnaname);
else
fprintf(f, " return rna_pointer_inherit_refine(ptr, &RNA_%s, data->%s);\n", (const char*)pprop->type, dp->dnaname);
@@ -563,12 +563,12 @@ static char *rna_def_property_get_func(FILE *f, StructRNA *srna, PropertyRNA *pr
break;
}
case PROP_COLLECTION: {
- CollectionPropertyRNA *cprop= (CollectionPropertyRNA*)prop;
+ CollectionPropertyRNA *cprop = (CollectionPropertyRNA*)prop;
fprintf(f, "static PointerRNA %s(CollectionPropertyIterator *iter)\n", func);
fprintf(f, "{\n");
- if(manualfunc) {
- if(strcmp(manualfunc, "rna_iterator_listbase_get") == 0 ||
+ if (manualfunc) {
+ if (strcmp(manualfunc, "rna_iterator_listbase_get") == 0 ||
strcmp(manualfunc, "rna_iterator_array_get") == 0 ||
strcmp(manualfunc, "rna_iterator_array_dereference_get") == 0)
fprintf(f, " return rna_pointer_inherit_refine(&iter->parent, &RNA_%s, %s(iter));\n", (cprop->item_type)? (const char*)cprop->item_type: "UnknownType", manualfunc);
@@ -579,21 +579,21 @@ static char *rna_def_property_get_func(FILE *f, StructRNA *srna, PropertyRNA *pr
break;
}
default:
- if(prop->arraydimension) {
- if(prop->flag & PROP_DYNAMIC)
+ if (prop->arraydimension) {
+ if (prop->flag & PROP_DYNAMIC)
fprintf(f, "void %s(PointerRNA *ptr, %s values[])\n", func, rna_type_type(prop));
else
fprintf(f, "void %s(PointerRNA *ptr, %s values[%u])\n", func, rna_type_type(prop), prop->totarraylength);
fprintf(f, "{\n");
- if(manualfunc) {
+ if (manualfunc) {
fprintf(f, " %s(ptr, values);\n", manualfunc);
}
else {
rna_print_data_get(f, dp);
- if(prop->flag & PROP_DYNAMIC) {
- char *lenfunc= rna_alloc_function_name(srna->identifier, rna_safe_id(prop->identifier), "get_length");
+ if (prop->flag & PROP_DYNAMIC) {
+ char *lenfunc = rna_alloc_function_name(srna->identifier, rna_safe_id(prop->identifier), "get_length");
fprintf(f, " int i, arraylen[RNA_MAX_ARRAY_DIMENSION];\n");
fprintf(f, " int len= %s(ptr, arraylen);\n\n", lenfunc);
fprintf(f, " for(i=0; i<len; i++) {\n");
@@ -604,21 +604,21 @@ static char *rna_def_property_get_func(FILE *f, StructRNA *srna, PropertyRNA *pr
fprintf(f, " for(i=0; i<%u; i++) {\n", prop->totarraylength);
}
- if(dp->dnaarraylength == 1) {
- if(prop->type == PROP_BOOLEAN && dp->booleanbit)
+ if (dp->dnaarraylength == 1) {
+ if (prop->type == PROP_BOOLEAN && dp->booleanbit)
fprintf(f, " values[i]= %s((data->%s & (%d<<i)) != 0);\n", (dp->booleannegative)? "!": "", dp->dnaname, dp->booleanbit);
else
fprintf(f, " values[i]= (%s)%s((&data->%s)[i]);\n", rna_type_type(prop), (dp->booleannegative)? "!": "", dp->dnaname);
}
else {
- if(prop->type == PROP_BOOLEAN && dp->booleanbit) {
+ if (prop->type == PROP_BOOLEAN && dp->booleanbit) {
fprintf(f, " values[i]= %s((data->%s[i] & ", (dp->booleannegative)? "!": "", dp->dnaname);
rna_int_print(f, dp->booleanbit);
fprintf(f, ") != 0);\n");
}
- else if(rna_color_quantize(prop, dp))
+ else if (rna_color_quantize(prop, dp))
fprintf(f, " values[i]= (%s)(data->%s[i]*(1.0f/255.0f));\n", rna_type_type(prop), dp->dnaname);
- else if(dp->dnatype)
+ else if (dp->dnatype)
fprintf(f, " values[i]= (%s)%s(((%s*)data->%s)[i]);\n", rna_type_type(prop), (dp->booleannegative)? "!": "", dp->dnatype, dp->dnaname);
else
fprintf(f, " values[i]= (%s)%s((data->%s)[i]);\n", rna_type_type(prop), (dp->booleannegative)? "!": "", dp->dnaname);
@@ -631,17 +631,17 @@ static char *rna_def_property_get_func(FILE *f, StructRNA *srna, PropertyRNA *pr
fprintf(f, "%s %s(PointerRNA *ptr)\n", rna_type_type(prop), func);
fprintf(f, "{\n");
- if(manualfunc) {
+ if (manualfunc) {
fprintf(f, " return %s(ptr);\n", manualfunc);
}
else {
rna_print_data_get(f, dp);
- if(prop->type == PROP_BOOLEAN && dp->booleanbit) {
+ if (prop->type == PROP_BOOLEAN && dp->booleanbit) {
fprintf(f, " return %s(((data->%s) & ", (dp->booleannegative)? "!": "", dp->dnaname);
rna_int_print(f, dp->booleanbit);
fprintf(f, ") != 0);\n");
}
- else if(prop->type == PROP_ENUM && dp->enumbitflags) {
+ else if (prop->type == PROP_ENUM && dp->enumbitflags) {
fprintf(f, " return ((data->%s) & ", dp->dnaname);
rna_int_print(f, rna_enum_bitmask(prop));
fprintf(f, ");\n");
@@ -661,16 +661,16 @@ static char *rna_def_property_get_func(FILE *f, StructRNA *srna, PropertyRNA *pr
/* defined min/max variables to be used by rna_clamp_value() */
static void rna_clamp_value_range(FILE *f, PropertyRNA *prop)
{
- if(prop->type == PROP_FLOAT) {
- FloatPropertyRNA *fprop= (FloatPropertyRNA*)prop;
- if(fprop->range) {
+ if (prop->type == PROP_FLOAT) {
+ FloatPropertyRNA *fprop = (FloatPropertyRNA*)prop;
+ if (fprop->range) {
fprintf(f, " float prop_clamp_min, prop_clamp_max;\n");
fprintf(f, " %s(ptr, &prop_clamp_min, &prop_clamp_max);\n", rna_function_string(fprop->range));
}
}
- else if(prop->type == PROP_INT) {
- IntPropertyRNA *iprop= (IntPropertyRNA*)prop;
- if(iprop->range) {
+ else if (prop->type == PROP_INT) {
+ IntPropertyRNA *iprop = (IntPropertyRNA*)prop;
+ if (iprop->range) {
fprintf(f, " int prop_clamp_min, prop_clamp_max;\n");
fprintf(f, " %s(ptr, &prop_clamp_min, &prop_clamp_max);\n", rna_function_string(iprop->range));
}
@@ -679,13 +679,13 @@ static void rna_clamp_value_range(FILE *f, PropertyRNA *prop)
static void rna_clamp_value(FILE *f, PropertyRNA *prop, int array)
{
- if(prop->type == PROP_INT) {
- IntPropertyRNA *iprop= (IntPropertyRNA*)prop;
+ if (prop->type == PROP_INT) {
+ IntPropertyRNA *iprop = (IntPropertyRNA*)prop;
- if(iprop->hardmin != INT_MIN || iprop->hardmax != INT_MAX) {
- if(array) fprintf(f, "CLAMPIS(values[i], ");
+ if (iprop->hardmin != INT_MIN || iprop->hardmax != INT_MAX) {
+ if (array) fprintf(f, "CLAMPIS(values[i], ");
else fprintf(f, "CLAMPIS(value, ");
- if(iprop->range) {
+ if (iprop->range) {
fprintf(f, "prop_clamp_min, prop_clamp_max);");
}
else {
@@ -695,13 +695,13 @@ static void rna_clamp_value(FILE *f, PropertyRNA *prop, int array)
return;
}
}
- else if(prop->type == PROP_FLOAT) {
- FloatPropertyRNA *fprop= (FloatPropertyRNA*)prop;
+ else if (prop->type == PROP_FLOAT) {
+ FloatPropertyRNA *fprop = (FloatPropertyRNA*)prop;
- if(fprop->hardmin != -FLT_MAX || fprop->hardmax != FLT_MAX) {
- if(array) fprintf(f, "CLAMPIS(values[i], ");
+ if (fprop->hardmin != -FLT_MAX || fprop->hardmax != FLT_MAX) {
+ if (array) fprintf(f, "CLAMPIS(values[i], ");
else fprintf(f, "CLAMPIS(value, ");
- if(fprop->range) {
+ if (fprop->range) {
fprintf(f, "prop_clamp_min, prop_clamp_max);");
}
else {
@@ -712,7 +712,7 @@ static void rna_clamp_value(FILE *f, PropertyRNA *prop, int array)
}
}
- if(array)
+ if (array)
fprintf(f, "values[i];\n");
else
fprintf(f, "value;\n");
@@ -722,42 +722,42 @@ static char *rna_def_property_set_func(FILE *f, StructRNA *srna, PropertyRNA *pr
{
char *func;
- if(!(prop->flag & PROP_EDITABLE))
+ if (!(prop->flag & PROP_EDITABLE))
return NULL;
- if(prop->flag & PROP_IDPROPERTY && manualfunc==NULL)
+ if (prop->flag & PROP_IDPROPERTY && manualfunc == NULL)
return NULL;
- if(!manualfunc) {
- if(!dp->dnastructname || !dp->dnaname) {
- if(prop->flag & PROP_EDITABLE) {
+ if (!manualfunc) {
+ if (!dp->dnastructname || !dp->dnaname) {
+ if (prop->flag & PROP_EDITABLE) {
fprintf(stderr, "%s: %s.%s has no valid dna info.\n",
__func__, srna->identifier, prop->identifier);
- DefRNA.error= 1;
+ DefRNA.error = 1;
}
return NULL;
}
}
- func= rna_alloc_function_name(srna->identifier, rna_safe_id(prop->identifier), "set");
+ func = rna_alloc_function_name(srna->identifier, rna_safe_id(prop->identifier), "set");
- switch(prop->type) {
+ switch (prop->type) {
case PROP_STRING: {
- StringPropertyRNA *sprop= (StringPropertyRNA*)prop;
+ StringPropertyRNA *sprop = (StringPropertyRNA*)prop;
fprintf(f, "void %s(PointerRNA *ptr, const char *value)\n", func);
fprintf(f, "{\n");
- if(manualfunc) {
+ if (manualfunc) {
fprintf(f, " %s(ptr, value);\n", manualfunc);
}
else {
- const PropertySubType subtype= prop->subtype;
- const char *string_copy_func= (subtype==PROP_FILEPATH ||
- subtype==PROP_DIRPATH ||
- subtype==PROP_FILENAME ||
- subtype==PROP_BYTESTRING) ?
+ const PropertySubType subtype = prop->subtype;
+ const char *string_copy_func = (subtype == PROP_FILEPATH ||
+ subtype == PROP_DIRPATH ||
+ subtype == PROP_FILENAME ||
+ subtype == PROP_BYTESTRING) ?
"BLI_strncpy" : "BLI_strncpy_utf8";
rna_print_data_get(f, dp);
- if(sprop->maxlength)
+ if (sprop->maxlength)
fprintf(f, " %s(data->%s, value, %d);\n", string_copy_func, dp->dnaname, sprop->maxlength);
else
fprintf(f, " %s(data->%s, value, sizeof(data->%s));\n", string_copy_func, dp->dnaname, dp->dnaname);
@@ -768,27 +768,27 @@ static char *rna_def_property_set_func(FILE *f, StructRNA *srna, PropertyRNA *pr
case PROP_POINTER: {
fprintf(f, "void %s(PointerRNA *ptr, PointerRNA value)\n", func);
fprintf(f, "{\n");
- if(manualfunc) {
+ if (manualfunc) {
fprintf(f, " %s(ptr, value);\n", manualfunc);
}
else {
rna_print_data_get(f, dp);
- if(prop->flag & PROP_ID_SELF_CHECK) {
+ if (prop->flag & PROP_ID_SELF_CHECK) {
rna_print_id_get(f, dp);
fprintf(f, " if(id==value.data) return;\n\n");
}
- if(prop->flag & PROP_ID_REFCOUNT) {
+ if (prop->flag & PROP_ID_REFCOUNT) {
fprintf(f, "\n if(data->%s)\n", dp->dnaname);
fprintf(f, " id_us_min((ID*)data->%s);\n", dp->dnaname);
fprintf(f, " if(value.data)\n");
fprintf(f, " id_us_plus((ID*)value.data);\n\n");
}
else {
- PointerPropertyRNA *pprop= (PointerPropertyRNA*)dp->prop;
- StructRNA *type= rna_find_struct((const char*)pprop->type);
- if(type && (type->flag & STRUCT_ID)) {
+ PointerPropertyRNA *pprop = (PointerPropertyRNA*)dp->prop;
+ StructRNA *type = rna_find_struct((const char*)pprop->type);
+ if (type && (type->flag & STRUCT_ID)) {
fprintf(f, " if(value.data)\n");
fprintf(f, " id_lib_extern((ID*)value.data);\n\n");
}
@@ -801,21 +801,21 @@ static char *rna_def_property_set_func(FILE *f, StructRNA *srna, PropertyRNA *pr
break;
}
default:
- if(prop->arraydimension) {
- if(prop->flag & PROP_DYNAMIC)
+ if (prop->arraydimension) {
+ if (prop->flag & PROP_DYNAMIC)
fprintf(f, "void %s(PointerRNA *ptr, const %s values[])\n", func, rna_type_type(prop));
else
fprintf(f, "void %s(PointerRNA *ptr, const %s values[%u])\n", func, rna_type_type(prop), prop->totarraylength);
fprintf(f, "{\n");
- if(manualfunc) {
+ if (manualfunc) {
fprintf(f, " %s(ptr, values);\n", manualfunc);
}
else {
rna_print_data_get(f, dp);
- if(prop->flag & PROP_DYNAMIC) {
- char *lenfunc= rna_alloc_function_name(srna->identifier, rna_safe_id(prop->identifier), "set_length");
+ if (prop->flag & PROP_DYNAMIC) {
+ char *lenfunc = rna_alloc_function_name(srna->identifier, rna_safe_id(prop->identifier), "set_length");
fprintf(f, " int i, arraylen[RNA_MAX_ARRAY_DIMENSION];\n");
fprintf(f, " int len= %s(ptr, arraylen);\n\n", lenfunc);
rna_clamp_value_range(f, prop);
@@ -828,8 +828,8 @@ static char *rna_def_property_set_func(FILE *f, StructRNA *srna, PropertyRNA *pr
fprintf(f, " for(i=0; i<%u; i++) {\n", prop->totarraylength);
}
- if(dp->dnaarraylength == 1) {
- if(prop->type == PROP_BOOLEAN && dp->booleanbit) {
+ if (dp->dnaarraylength == 1) {
+ if (prop->type == PROP_BOOLEAN && dp->booleanbit) {
fprintf(f, " if(%svalues[i]) data->%s |= (%d<<i);\n", (dp->booleannegative)? "!": "", dp->dnaname, dp->booleanbit);
fprintf(f, " else data->%s &= ~(%d<<i);\n", dp->dnaname, dp->booleanbit);
}
@@ -839,7 +839,7 @@ static char *rna_def_property_set_func(FILE *f, StructRNA *srna, PropertyRNA *pr
}
}
else {
- if(prop->type == PROP_BOOLEAN && dp->booleanbit) {
+ if (prop->type == PROP_BOOLEAN && dp->booleanbit) {
fprintf(f, " if(%svalues[i]) data->%s[i] |= ", (dp->booleannegative)? "!": "", dp->dnaname);
rna_int_print(f, dp->booleanbit);
fprintf(f, ";\n");
@@ -847,11 +847,11 @@ static char *rna_def_property_set_func(FILE *f, StructRNA *srna, PropertyRNA *pr
rna_int_print(f, dp->booleanbit);
fprintf(f, ";\n");
}
- else if(rna_color_quantize(prop, dp)) {
+ else if (rna_color_quantize(prop, dp)) {
fprintf(f, " data->%s[i]= FTOCHAR(values[i]);\n", dp->dnaname);
}
else {
- if(dp->dnatype)
+ if (dp->dnatype)
fprintf(f, " ((%s*)data->%s)[i]= %s", dp->dnatype, dp->dnaname, (dp->booleannegative)? "!": "");
else
fprintf(f, " (data->%s)[i]= %s", dp->dnaname, (dp->booleannegative)? "!": "");
@@ -866,12 +866,12 @@ static char *rna_def_property_set_func(FILE *f, StructRNA *srna, PropertyRNA *pr
fprintf(f, "void %s(PointerRNA *ptr, %s value)\n", func, rna_type_type(prop));
fprintf(f, "{\n");
- if(manualfunc) {
+ if (manualfunc) {
fprintf(f, " %s(ptr, value);\n", manualfunc);
}
else {
rna_print_data_get(f, dp);
- if(prop->type == PROP_BOOLEAN && dp->booleanbit) {
+ if (prop->type == PROP_BOOLEAN && dp->booleanbit) {
fprintf(f, " if(%svalue) data->%s |= ", (dp->booleannegative)? "!": "", dp->dnaname);
rna_int_print(f, dp->booleanbit);
fprintf(f, ";\n");
@@ -879,7 +879,7 @@ static char *rna_def_property_set_func(FILE *f, StructRNA *srna, PropertyRNA *pr
rna_int_print(f, dp->booleanbit);
fprintf(f, ";\n");
}
- else if(prop->type == PROP_ENUM && dp->enumbitflags) {
+ else if (prop->type == PROP_ENUM && dp->enumbitflags) {
fprintf(f, " data->%s &= ~", dp->dnaname);
rna_int_print(f, rna_enum_bitmask(prop));
fprintf(f, ";\n");
@@ -901,26 +901,26 @@ static char *rna_def_property_set_func(FILE *f, StructRNA *srna, PropertyRNA *pr
static char *rna_def_property_length_func(FILE *f, StructRNA *srna, PropertyRNA *prop, PropertyDefRNA *dp, const char *manualfunc)
{
- char *func= NULL;
+ char *func = NULL;
- if(prop->flag & PROP_IDPROPERTY && manualfunc==NULL)
+ if (prop->flag & PROP_IDPROPERTY && manualfunc == NULL)
return NULL;
- if(prop->type == PROP_STRING) {
- if(!manualfunc) {
- if(!dp->dnastructname || !dp->dnaname) {
+ if (prop->type == PROP_STRING) {
+ if (!manualfunc) {
+ if (!dp->dnastructname || !dp->dnaname) {
fprintf(stderr, "%s: %s.%s has no valid dna info.\n",
__func__, srna->identifier, prop->identifier);
- DefRNA.error= 1;
+ DefRNA.error = 1;
return NULL;
}
}
- func= rna_alloc_function_name(srna->identifier, rna_safe_id(prop->identifier), "length");
+ func = rna_alloc_function_name(srna->identifier, rna_safe_id(prop->identifier), "length");
fprintf(f, "int %s(PointerRNA *ptr)\n", func);
fprintf(f, "{\n");
- if(manualfunc) {
+ if (manualfunc) {
fprintf(f, " return %s(ptr);\n", manualfunc);
}
else {
@@ -929,26 +929,26 @@ static char *rna_def_property_length_func(FILE *f, StructRNA *srna, PropertyRNA
}
fprintf(f, "}\n\n");
}
- else if(prop->type == PROP_COLLECTION) {
- if(!manualfunc) {
- if(prop->type == PROP_COLLECTION && (!(dp->dnalengthname || dp->dnalengthfixed)|| !dp->dnaname)) {
+ else if (prop->type == PROP_COLLECTION) {
+ if (!manualfunc) {
+ if (prop->type == PROP_COLLECTION && (!(dp->dnalengthname || dp->dnalengthfixed)|| !dp->dnaname)) {
fprintf(stderr, "%s: %s.%s has no valid dna info.\n",
__func__, srna->identifier, prop->identifier);
- DefRNA.error= 1;
+ DefRNA.error = 1;
return NULL;
}
}
- func= rna_alloc_function_name(srna->identifier, rna_safe_id(prop->identifier), "length");
+ func = rna_alloc_function_name(srna->identifier, rna_safe_id(prop->identifier), "length");
fprintf(f, "int %s(PointerRNA *ptr)\n", func);
fprintf(f, "{\n");
- if(manualfunc) {
+ if (manualfunc) {
fprintf(f, " return %s(ptr);\n", manualfunc);
}
else {
rna_print_data_get(f, dp);
- if(dp->dnalengthname)
+ if (dp->dnalengthname)
fprintf(f, " return (data->%s == NULL)? 0: data->%s;\n", dp->dnaname, dp->dnalengthname);
else
fprintf(f, " return (data->%s == NULL)? 0: %d;\n", dp->dnaname, dp->dnalengthfixed);
@@ -963,51 +963,51 @@ static char *rna_def_property_begin_func(FILE *f, StructRNA *srna, PropertyRNA *
{
char *func, *getfunc;
- if(prop->flag & PROP_IDPROPERTY && manualfunc==NULL)
+ if (prop->flag & PROP_IDPROPERTY && manualfunc == NULL)
return NULL;
- if(!manualfunc) {
- if(!dp->dnastructname || !dp->dnaname) {
+ if (!manualfunc) {
+ if (!dp->dnastructname || !dp->dnaname) {
fprintf(stderr, "%s: %s.%s has no valid dna info.\n",
__func__, srna->identifier, prop->identifier);
- DefRNA.error= 1;
+ DefRNA.error = 1;
return NULL;
}
}
- func= rna_alloc_function_name(srna->identifier, rna_safe_id(prop->identifier), "begin");
+ func = rna_alloc_function_name(srna->identifier, rna_safe_id(prop->identifier), "begin");
fprintf(f, "void %s(CollectionPropertyIterator *iter, PointerRNA *ptr)\n", func);
fprintf(f, "{\n");
- if(!manualfunc)
+ if (!manualfunc)
rna_print_data_get(f, dp);
fprintf(f, "\n memset(iter, 0, sizeof(*iter));\n");
fprintf(f, " iter->parent= *ptr;\n");
fprintf(f, " iter->prop= (PropertyRNA*)&rna_%s_%s;\n", srna->identifier, prop->identifier);
- if(dp->dnalengthname || dp->dnalengthfixed) {
- if(manualfunc) {
+ if (dp->dnalengthname || dp->dnalengthfixed) {
+ if (manualfunc) {
fprintf(f, "\n %s(iter, ptr);\n", manualfunc);
}
else {
- if(dp->dnalengthname)
+ if (dp->dnalengthname)
fprintf(f, "\n rna_iterator_array_begin(iter, data->%s, sizeof(data->%s[0]), data->%s, 0, NULL);\n", dp->dnaname, dp->dnaname, dp->dnalengthname);
else
fprintf(f, "\n rna_iterator_array_begin(iter, data->%s, sizeof(data->%s[0]), %d, 0, NULL);\n", dp->dnaname, dp->dnaname, dp->dnalengthfixed);
}
}
else {
- if(manualfunc)
+ if (manualfunc)
fprintf(f, "\n %s(iter, ptr);\n", manualfunc);
- else if(dp->dnapointerlevel == 0)
+ else if (dp->dnapointerlevel == 0)
fprintf(f, "\n rna_iterator_listbase_begin(iter, &data->%s, NULL);\n", dp->dnaname);
else
fprintf(f, "\n rna_iterator_listbase_begin(iter, data->%s, NULL);\n", dp->dnaname);
}
- getfunc= rna_alloc_function_name(srna->identifier, rna_safe_id(prop->identifier), "get");
+ getfunc = rna_alloc_function_name(srna->identifier, rna_safe_id(prop->identifier), "get");
fprintf(f, "\n if(iter->valid)\n");
fprintf(f, " iter->ptr= %s(iter);\n", getfunc);
@@ -1024,25 +1024,25 @@ static char *rna_def_property_lookup_int_func(FILE *f, StructRNA *srna, Property
* so the the index can only be checked against the length when there is no 'skip' funcion. */
char *func;
- if(prop->flag & PROP_IDPROPERTY && manualfunc==NULL)
+ if (prop->flag & PROP_IDPROPERTY && manualfunc == NULL)
return NULL;
- if(!manualfunc) {
- if(!dp->dnastructname || !dp->dnaname)
+ if (!manualfunc) {
+ if (!dp->dnastructname || !dp->dnaname)
return NULL;
/* only supported in case of standard next functions */
- if(strcmp(nextfunc, "rna_iterator_array_next") == 0);
- else if(strcmp(nextfunc, "rna_iterator_listbase_next") == 0);
+ if (strcmp(nextfunc, "rna_iterator_array_next") == 0);
+ else if (strcmp(nextfunc, "rna_iterator_listbase_next") == 0);
else return NULL;
}
- func= rna_alloc_function_name(srna->identifier, rna_safe_id(prop->identifier), "lookup_int");
+ func = rna_alloc_function_name(srna->identifier, rna_safe_id(prop->identifier), "lookup_int");
fprintf(f, "int %s(PointerRNA *ptr, int index, PointerRNA *r_ptr)\n", func);
fprintf(f, "{\n");
- if(manualfunc) {
+ if (manualfunc) {
fprintf(f, "\n return %s(ptr, index, r_ptr);\n", manualfunc);
fprintf(f, "}\n\n");
return func;
@@ -1054,7 +1054,7 @@ static char *rna_def_property_lookup_int_func(FILE *f, StructRNA *srna, Property
fprintf(f, " %s_%s_begin(&iter, ptr);\n\n", srna->identifier, rna_safe_id(prop->identifier));
fprintf(f, " if(iter.valid){\n");
- if(strcmp(nextfunc, "rna_iterator_array_next") == 0) {
+ if (strcmp(nextfunc, "rna_iterator_array_next") == 0) {
fprintf(f, " ArrayIterator *internal= iter.internal;\n");
fprintf(f, " if(index < 0 || index >= internal->length) {\n");
fprintf(f, "#ifdef __GNUC__\n");
@@ -1074,7 +1074,7 @@ static char *rna_def_property_lookup_int_func(FILE *f, StructRNA *srna, Property
fprintf(f, " found= 1;\n");
fprintf(f, " }\n");
}
- else if(strcmp(nextfunc, "rna_iterator_listbase_next") == 0) {
+ else if (strcmp(nextfunc, "rna_iterator_listbase_next") == 0) {
fprintf(f, " ListBaseIterator *internal= iter.internal;\n");
fprintf(f, " if(internal->skip) {\n");
fprintf(f, " while(index-- > 0 && iter.valid) {\n");
@@ -1097,16 +1097,16 @@ static char *rna_def_property_lookup_int_func(FILE *f, StructRNA *srna, Property
#if 0
rna_print_data_get(f, dp);
- item_type= (cprop->item_type)? (const char*)cprop->item_type: "UnknownType";
+ item_type = (cprop->item_type)? (const char*)cprop->item_type: "UnknownType";
- if(dp->dnalengthname || dp->dnalengthfixed) {
- if(dp->dnalengthname)
+ if (dp->dnalengthname || dp->dnalengthfixed) {
+ if (dp->dnalengthname)
fprintf(f, "\n rna_array_lookup_int(ptr, &RNA_%s, data->%s, sizeof(data->%s[0]), data->%s, index);\n", item_type, dp->dnaname, dp->dnaname, dp->dnalengthname);
else
fprintf(f, "\n rna_array_lookup_int(ptr, &RNA_%s, data->%s, sizeof(data->%s[0]), %d, index);\n", item_type, dp->dnaname, dp->dnaname, dp->dnalengthfixed);
}
else {
- if(dp->dnapointerlevel == 0)
+ if (dp->dnapointerlevel == 0)
fprintf(f, "\n return rna_listbase_lookup_int(ptr, &RNA_%s, &data->%s, index);\n", item_type, dp->dnaname);
else
fprintf(f, "\n return rna_listbase_lookup_int(ptr, &RNA_%s, data->%s, index);\n", item_type, dp->dnaname);
@@ -1122,19 +1122,19 @@ static char *rna_def_property_next_func(FILE *f, StructRNA *srna, PropertyRNA *p
{
char *func, *getfunc;
- if(prop->flag & PROP_IDPROPERTY && manualfunc==NULL)
+ if (prop->flag & PROP_IDPROPERTY && manualfunc == NULL)
return NULL;
- if(!manualfunc)
+ if (!manualfunc)
return NULL;
- func= rna_alloc_function_name(srna->identifier, rna_safe_id(prop->identifier), "next");
+ func = rna_alloc_function_name(srna->identifier, rna_safe_id(prop->identifier), "next");
fprintf(f, "void %s(CollectionPropertyIterator *iter)\n", func);
fprintf(f, "{\n");
fprintf(f, " %s(iter);\n", manualfunc);
- getfunc= rna_alloc_function_name(srna->identifier, rna_safe_id(prop->identifier), "get");
+ getfunc = rna_alloc_function_name(srna->identifier, rna_safe_id(prop->identifier), "get");
fprintf(f, "\n if(iter->valid)\n");
fprintf(f, " iter->ptr= %s(iter);\n", getfunc);
@@ -1148,14 +1148,14 @@ static char *rna_def_property_end_func(FILE *f, StructRNA *srna, PropertyRNA *pr
{
char *func;
- if(prop->flag & PROP_IDPROPERTY && manualfunc==NULL)
+ if (prop->flag & PROP_IDPROPERTY && manualfunc == NULL)
return NULL;
- func= rna_alloc_function_name(srna->identifier, rna_safe_id(prop->identifier), "end");
+ func = rna_alloc_function_name(srna->identifier, rna_safe_id(prop->identifier), "end");
fprintf(f, "void %s(CollectionPropertyIterator *iter)\n", func);
fprintf(f, "{\n");
- if(manualfunc)
+ if (manualfunc)
fprintf(f, " %s(iter);\n", manualfunc);
fprintf(f, "}\n\n");
@@ -1164,36 +1164,36 @@ static char *rna_def_property_end_func(FILE *f, StructRNA *srna, PropertyRNA *pr
static void rna_set_raw_property(PropertyDefRNA *dp, PropertyRNA *prop)
{
- if(dp->dnapointerlevel != 0)
+ if (dp->dnapointerlevel != 0)
return;
- if(!dp->dnatype || !dp->dnaname || !dp->dnastructname)
+ if (!dp->dnatype || !dp->dnaname || !dp->dnastructname)
return;
- if(strcmp(dp->dnatype, "char") == 0) {
- prop->rawtype= PROP_RAW_CHAR;
+ if (strcmp(dp->dnatype, "char") == 0) {
+ prop->rawtype = PROP_RAW_CHAR;
prop->flag |= PROP_RAW_ACCESS;
}
- else if(strcmp(dp->dnatype, "short") == 0) {
- prop->rawtype= PROP_RAW_SHORT;
+ else if (strcmp(dp->dnatype, "short") == 0) {
+ prop->rawtype = PROP_RAW_SHORT;
prop->flag |= PROP_RAW_ACCESS;
}
- else if(strcmp(dp->dnatype, "int") == 0) {
- prop->rawtype= PROP_RAW_INT;
+ else if (strcmp(dp->dnatype, "int") == 0) {
+ prop->rawtype = PROP_RAW_INT;
prop->flag |= PROP_RAW_ACCESS;
}
- else if(strcmp(dp->dnatype, "float") == 0) {
- prop->rawtype= PROP_RAW_FLOAT;
+ else if (strcmp(dp->dnatype, "float") == 0) {
+ prop->rawtype = PROP_RAW_FLOAT;
prop->flag |= PROP_RAW_ACCESS;
}
- else if(strcmp(dp->dnatype, "double") == 0) {
- prop->rawtype= PROP_RAW_DOUBLE;
+ else if (strcmp(dp->dnatype, "double") == 0) {
+ prop->rawtype = PROP_RAW_DOUBLE;
prop->flag |= PROP_RAW_ACCESS;
}
}
static void rna_set_raw_offset(FILE *f, StructRNA *srna, PropertyRNA *prop)
{
- PropertyDefRNA *dp= rna_find_struct_property_def(srna, prop);
+ PropertyDefRNA *dp = rna_find_struct_property_def(srna, prop);
fprintf(f, "\toffsetof(%s, %s), %d", dp->dnastructname, dp->dnaname, prop->rawtype);
}
@@ -1202,132 +1202,132 @@ static void rna_def_property_funcs(FILE *f, StructRNA *srna, PropertyDefRNA *dp)
{
PropertyRNA *prop;
- prop= dp->prop;
+ prop = dp->prop;
- switch(prop->type) {
+ switch (prop->type) {
case PROP_BOOLEAN: {
- BoolPropertyRNA *bprop= (BoolPropertyRNA*)prop;
+ BoolPropertyRNA *bprop = (BoolPropertyRNA*)prop;
- if(!prop->arraydimension) {
- if(!bprop->get && !bprop->set && !dp->booleanbit)
+ if (!prop->arraydimension) {
+ if (!bprop->get && !bprop->set && !dp->booleanbit)
rna_set_raw_property(dp, prop);
- bprop->get= (void*)rna_def_property_get_func(f, srna, prop, dp, (const char*)bprop->get);
- bprop->set= (void*)rna_def_property_set_func(f, srna, prop, dp, (const char*)bprop->set);
+ bprop->get = (void*)rna_def_property_get_func(f, srna, prop, dp, (const char*)bprop->get);
+ bprop->set = (void*)rna_def_property_set_func(f, srna, prop, dp, (const char*)bprop->set);
}
else {
- bprop->getarray= (void*)rna_def_property_get_func(f, srna, prop, dp, (const char*)bprop->getarray);
- bprop->setarray= (void*)rna_def_property_set_func(f, srna, prop, dp, (const char*)bprop->setarray);
+ bprop->getarray = (void*)rna_def_property_get_func(f, srna, prop, dp, (const char*)bprop->getarray);
+ bprop->setarray = (void*)rna_def_property_set_func(f, srna, prop, dp, (const char*)bprop->setarray);
}
break;
}
case PROP_INT: {
- IntPropertyRNA *iprop= (IntPropertyRNA*)prop;
+ IntPropertyRNA *iprop = (IntPropertyRNA*)prop;
- if(!prop->arraydimension) {
- if(!iprop->get && !iprop->set)
+ if (!prop->arraydimension) {
+ if (!iprop->get && !iprop->set)
rna_set_raw_property(dp, prop);
- iprop->get= (void*)rna_def_property_get_func(f, srna, prop, dp, (const char*)iprop->get);
- iprop->set= (void*)rna_def_property_set_func(f, srna, prop, dp, (const char*)iprop->set);
+ iprop->get = (void*)rna_def_property_get_func(f, srna, prop, dp, (const char*)iprop->get);
+ iprop->set = (void*)rna_def_property_set_func(f, srna, prop, dp, (const char*)iprop->set);
}
else {
- if(!iprop->getarray && !iprop->setarray)
+ if (!iprop->getarray && !iprop->setarray)
rna_set_raw_property(dp, prop);
- iprop->getarray= (void*)rna_def_property_get_func(f, srna, prop, dp, (const char*)iprop->getarray);
- iprop->setarray= (void*)rna_def_property_set_func(f, srna, prop, dp, (const char*)iprop->setarray);
+ iprop->getarray = (void*)rna_def_property_get_func(f, srna, prop, dp, (const char*)iprop->getarray);
+ iprop->setarray = (void*)rna_def_property_set_func(f, srna, prop, dp, (const char*)iprop->setarray);
}
break;
}
case PROP_FLOAT: {
- FloatPropertyRNA *fprop= (FloatPropertyRNA*)prop;
+ FloatPropertyRNA *fprop = (FloatPropertyRNA*)prop;
- if(!prop->arraydimension) {
- if(!fprop->get && !fprop->set)
+ if (!prop->arraydimension) {
+ if (!fprop->get && !fprop->set)
rna_set_raw_property(dp, prop);
- fprop->get= (void*)rna_def_property_get_func(f, srna, prop, dp, (const char*)fprop->get);
- fprop->set= (void*)rna_def_property_set_func(f, srna, prop, dp, (const char*)fprop->set);
+ fprop->get = (void*)rna_def_property_get_func(f, srna, prop, dp, (const char*)fprop->get);
+ fprop->set = (void*)rna_def_property_set_func(f, srna, prop, dp, (const char*)fprop->set);
}
else {
- if(!fprop->getarray && !fprop->setarray)
+ if (!fprop->getarray && !fprop->setarray)
rna_set_raw_property(dp, prop);
- fprop->getarray= (void*)rna_def_property_get_func(f, srna, prop, dp, (const char*)fprop->getarray);
- fprop->setarray= (void*)rna_def_property_set_func(f, srna, prop, dp, (const char*)fprop->setarray);
+ fprop->getarray = (void*)rna_def_property_get_func(f, srna, prop, dp, (const char*)fprop->getarray);
+ fprop->setarray = (void*)rna_def_property_set_func(f, srna, prop, dp, (const char*)fprop->setarray);
}
break;
}
case PROP_ENUM: {
- EnumPropertyRNA *eprop= (EnumPropertyRNA*)prop;
+ EnumPropertyRNA *eprop = (EnumPropertyRNA*)prop;
- eprop->get= (void*)rna_def_property_get_func(f, srna, prop, dp, (const char*)eprop->get);
- eprop->set= (void*)rna_def_property_set_func(f, srna, prop, dp, (const char*)eprop->set);
+ eprop->get = (void*)rna_def_property_get_func(f, srna, prop, dp, (const char*)eprop->get);
+ eprop->set = (void*)rna_def_property_set_func(f, srna, prop, dp, (const char*)eprop->set);
break;
}
case PROP_STRING: {
- StringPropertyRNA *sprop= (StringPropertyRNA*)prop;
+ StringPropertyRNA *sprop = (StringPropertyRNA*)prop;
- sprop->get= (void*)rna_def_property_get_func(f, srna, prop, dp, (const char*)sprop->get);
- sprop->length= (void*)rna_def_property_length_func(f, srna, prop, dp, (const char*)sprop->length);
- sprop->set= (void*)rna_def_property_set_func(f, srna, prop, dp, (const char*)sprop->set);
+ sprop->get = (void*)rna_def_property_get_func(f, srna, prop, dp, (const char*)sprop->get);
+ sprop->length = (void*)rna_def_property_length_func(f, srna, prop, dp, (const char*)sprop->length);
+ sprop->set = (void*)rna_def_property_set_func(f, srna, prop, dp, (const char*)sprop->set);
break;
}
case PROP_POINTER: {
- PointerPropertyRNA *pprop= (PointerPropertyRNA*)prop;
+ PointerPropertyRNA *pprop = (PointerPropertyRNA*)prop;
- pprop->get= (void*)rna_def_property_get_func(f, srna, prop, dp, (const char*)pprop->get);
- pprop->set= (void*)rna_def_property_set_func(f, srna, prop, dp, (const char*)pprop->set);
- if(!pprop->type) {
+ pprop->get = (void*)rna_def_property_get_func(f, srna, prop, dp, (const char*)pprop->get);
+ pprop->set = (void*)rna_def_property_set_func(f, srna, prop, dp, (const char*)pprop->set);
+ if (!pprop->type) {
fprintf(stderr, "%s: %s.%s, pointer must have a struct type.\n",
__func__, srna->identifier, prop->identifier);
- DefRNA.error= 1;
+ DefRNA.error = 1;
}
break;
}
case PROP_COLLECTION: {
- CollectionPropertyRNA *cprop= (CollectionPropertyRNA*)prop;
- const char *nextfunc= (const char*)cprop->next;
+ CollectionPropertyRNA *cprop = (CollectionPropertyRNA*)prop;
+ const char *nextfunc = (const char*)cprop->next;
- if(dp->dnatype && strcmp(dp->dnatype, "ListBase")==0);
- else if(dp->dnalengthname || dp->dnalengthfixed)
- cprop->length= (void*)rna_def_property_length_func(f, srna, prop, dp, (const char*)cprop->length);
+ if (dp->dnatype && strcmp(dp->dnatype, "ListBase") == 0);
+ else if (dp->dnalengthname || dp->dnalengthfixed)
+ cprop->length = (void*)rna_def_property_length_func(f, srna, prop, dp, (const char*)cprop->length);
/* test if we can allow raw array access, if it is using our standard
* array get/next function, we can be sure it is an actual array */
- if(cprop->next && cprop->get)
- if(strcmp((const char*)cprop->next, "rna_iterator_array_next") == 0 &&
+ if (cprop->next && cprop->get)
+ if (strcmp((const char*)cprop->next, "rna_iterator_array_next") == 0 &&
strcmp((const char*)cprop->get, "rna_iterator_array_get") == 0)
prop->flag |= PROP_RAW_ARRAY;
- cprop->get= (void*)rna_def_property_get_func(f, srna, prop, dp, (const char*)cprop->get);
- cprop->begin= (void*)rna_def_property_begin_func(f, srna, prop, dp, (const char*)cprop->begin);
- cprop->next= (void*)rna_def_property_next_func(f, srna, prop, dp, (const char*)cprop->next);
- cprop->end= (void*)rna_def_property_end_func(f, srna, prop, dp, (const char*)cprop->end);
- cprop->lookupint= (void*)rna_def_property_lookup_int_func(f, srna, prop, dp, (const char*)cprop->lookupint, nextfunc);
+ cprop->get = (void*)rna_def_property_get_func(f, srna, prop, dp, (const char*)cprop->get);
+ cprop->begin = (void*)rna_def_property_begin_func(f, srna, prop, dp, (const char*)cprop->begin);
+ cprop->next = (void*)rna_def_property_next_func(f, srna, prop, dp, (const char*)cprop->next);
+ cprop->end = (void*)rna_def_property_end_func(f, srna, prop, dp, (const char*)cprop->end);
+ cprop->lookupint = (void*)rna_def_property_lookup_int_func(f, srna, prop, dp, (const char*)cprop->lookupint, nextfunc);
- if(!(prop->flag & PROP_IDPROPERTY)) {
- if(!cprop->begin) {
+ if (!(prop->flag & PROP_IDPROPERTY)) {
+ if (!cprop->begin) {
fprintf(stderr, "%s: %s.%s, collection must have a begin function.\n",
__func__, srna->identifier, prop->identifier);
- DefRNA.error= 1;
+ DefRNA.error = 1;
}
- if(!cprop->next) {
+ if (!cprop->next) {
fprintf(stderr, "%s: %s.%s, collection must have a next function.\n",
__func__, srna->identifier, prop->identifier);
- DefRNA.error= 1;
+ DefRNA.error = 1;
}
- if(!cprop->get) {
+ if (!cprop->get) {
fprintf(stderr, "%s: %s.%s, collection must have a get function.\n",
__func__, srna->identifier, prop->identifier);
- DefRNA.error= 1;
+ DefRNA.error = 1;
}
}
- if(!cprop->item_type) {
+ if (!cprop->item_type) {
fprintf(stderr, "%s: %s.%s, collection must have a struct type.\n",
__func__, srna->identifier, prop->identifier);
- DefRNA.error= 1;
+ DefRNA.error = 1;
}
break;
}
@@ -1339,89 +1339,89 @@ static void rna_def_property_funcs_header(FILE *f, StructRNA *srna, PropertyDefR
PropertyRNA *prop;
char *func;
- prop= dp->prop;
+ prop = dp->prop;
- if(prop->flag & (PROP_IDPROPERTY|PROP_BUILTIN))
+ if (prop->flag & (PROP_IDPROPERTY|PROP_BUILTIN))
return;
- func= rna_alloc_function_name(srna->identifier, rna_safe_id(prop->identifier), "");
+ func = rna_alloc_function_name(srna->identifier, rna_safe_id(prop->identifier), "");
- switch(prop->type) {
+ switch (prop->type) {
case PROP_BOOLEAN:
case PROP_INT: {
- if(!prop->arraydimension) {
+ if (!prop->arraydimension) {
fprintf(f, "int %sget(PointerRNA *ptr);\n", func);
- //fprintf(f, "void %sset(PointerRNA *ptr, int value);\n", func);
+ /*fprintf(f, "void %sset(PointerRNA *ptr, int value);\n", func); */
}
- else if(prop->arraydimension && prop->totarraylength) {
+ else if (prop->arraydimension && prop->totarraylength) {
fprintf(f, "void %sget(PointerRNA *ptr, int values[%u]);\n", func, prop->totarraylength);
- //fprintf(f, "void %sset(PointerRNA *ptr, const int values[%d]);\n", func, prop->arraylength);
+ /*fprintf(f, "void %sset(PointerRNA *ptr, const int values[%d]);\n", func, prop->arraylength); */
}
else {
fprintf(f, "void %sget(PointerRNA *ptr, int values[]);\n", func);
- //fprintf(f, "void %sset(PointerRNA *ptr, const int values[]);\n", func);
+ /*fprintf(f, "void %sset(PointerRNA *ptr, const int values[]);\n", func); */
}
break;
}
case PROP_FLOAT: {
- if(!prop->arraydimension) {
+ if (!prop->arraydimension) {
fprintf(f, "float %sget(PointerRNA *ptr);\n", func);
- //fprintf(f, "void %sset(PointerRNA *ptr, float value);\n", func);
+ /*fprintf(f, "void %sset(PointerRNA *ptr, float value);\n", func); */
}
- else if(prop->arraydimension && prop->totarraylength) {
+ else if (prop->arraydimension && prop->totarraylength) {
fprintf(f, "void %sget(PointerRNA *ptr, float values[%u]);\n", func, prop->totarraylength);
- //fprintf(f, "void %sset(PointerRNA *ptr, const float values[%d]);\n", func, prop->arraylength);
+ /*fprintf(f, "void %sset(PointerRNA *ptr, const float values[%d]);\n", func, prop->arraylength); */
}
else {
fprintf(f, "void %sget(PointerRNA *ptr, float values[]);\n", func);
- //fprintf(f, "void %sset(PointerRNA *ptr, const float values[]);\n", func);
+ /*fprintf(f, "void %sset(PointerRNA *ptr, const float values[]);\n", func); */
}
break;
}
case PROP_ENUM: {
- EnumPropertyRNA *eprop= (EnumPropertyRNA*)prop;
+ EnumPropertyRNA *eprop = (EnumPropertyRNA*)prop;
int i;
- if(eprop->item) {
+ if (eprop->item) {
fprintf(f, "enum {\n");
- for(i=0; i<eprop->totitem; i++)
- if(eprop->item[i].identifier[0])
+ for (i = 0; i<eprop->totitem; i++)
+ if (eprop->item[i].identifier[0])
fprintf(f, "\t%s_%s_%s = %d,\n", srna->identifier, prop->identifier, eprop->item[i].identifier, eprop->item[i].value);
fprintf(f, "};\n\n");
}
fprintf(f, "int %sget(PointerRNA *ptr);\n", func);
- //fprintf(f, "void %sset(PointerRNA *ptr, int value);\n", func);
+ /*fprintf(f, "void %sset(PointerRNA *ptr, int value);\n", func); */
break;
}
case PROP_STRING: {
- StringPropertyRNA *sprop= (StringPropertyRNA*)prop;
+ StringPropertyRNA *sprop = (StringPropertyRNA*)prop;
- if(sprop->maxlength) {
+ if (sprop->maxlength) {
fprintf(f, "#define %s_%s_MAX %d\n\n", srna->identifier, prop->identifier, sprop->maxlength);
}
fprintf(f, "void %sget(PointerRNA *ptr, char *value);\n", func);
fprintf(f, "int %slength(PointerRNA *ptr);\n", func);
- //fprintf(f, "void %sset(PointerRNA *ptr, const char *value);\n", func);
+ /*fprintf(f, "void %sset(PointerRNA *ptr, const char *value);\n", func); */
break;
}
case PROP_POINTER: {
fprintf(f, "PointerRNA %sget(PointerRNA *ptr);\n", func);
- //fprintf(f, "void %sset(PointerRNA *ptr, PointerRNA value);\n", func);
+ /*fprintf(f, "void %sset(PointerRNA *ptr, PointerRNA value);\n", func); */
break;
}
case PROP_COLLECTION: {
fprintf(f, "void %sbegin(CollectionPropertyIterator *iter, PointerRNA *ptr);\n", func);
fprintf(f, "void %snext(CollectionPropertyIterator *iter);\n", func);
fprintf(f, "void %send(CollectionPropertyIterator *iter);\n", func);
- //fprintf(f, "int %slength(PointerRNA *ptr);\n", func);
- //fprintf(f, "void %slookup_int(PointerRNA *ptr, int key, StructRNA **type);\n", func);
- //fprintf(f, "void %slookup_string(PointerRNA *ptr, const char *key, StructRNA **type);\n", func);
+ /*fprintf(f, "int %slength(PointerRNA *ptr);\n", func); */
+ /*fprintf(f, "void %slookup_int(PointerRNA *ptr, int key, StructRNA **type);\n", func); */
+ /*fprintf(f, "void %slookup_string(PointerRNA *ptr, const char *key, StructRNA **type);\n", func); */
break;
}
}
@@ -1433,49 +1433,49 @@ static void rna_def_property_funcs_header_cpp(FILE *f, StructRNA *srna, Property
{
PropertyRNA *prop;
- prop= dp->prop;
+ prop = dp->prop;
- if(prop->flag & (PROP_IDPROPERTY|PROP_BUILTIN))
+ if (prop->flag & (PROP_IDPROPERTY|PROP_BUILTIN))
return;
- if(prop->name && prop->description && prop->description[0] != '\0')
+ if (prop->name && prop->description && prop->description[0] != '\0')
fprintf(f, "\t/* %s: %s */\n", prop->name, prop->description);
- else if(prop->name)
+ else if (prop->name)
fprintf(f, "\t/* %s */\n", prop->name);
else
fprintf(f, "\t/* */\n");
- switch(prop->type) {
+ switch (prop->type) {
case PROP_BOOLEAN: {
- if(!prop->arraydimension)
+ if (!prop->arraydimension)
fprintf(f, "\tinline bool %s(void);", rna_safe_id(prop->identifier));
- else if(prop->totarraylength)
+ else if (prop->totarraylength)
fprintf(f, "\tinline Array<int, %u> %s(void);", prop->totarraylength, rna_safe_id(prop->identifier));
break;
}
case PROP_INT: {
- if(!prop->arraydimension)
+ if (!prop->arraydimension)
fprintf(f, "\tinline int %s(void);", rna_safe_id(prop->identifier));
- else if(prop->totarraylength)
+ else if (prop->totarraylength)
fprintf(f, "\tinline Array<int, %u> %s(void);", prop->totarraylength, rna_safe_id(prop->identifier));
break;
}
case PROP_FLOAT: {
- if(!prop->arraydimension)
+ if (!prop->arraydimension)
fprintf(f, "\tinline float %s(void);", rna_safe_id(prop->identifier));
- else if(prop->totarraylength)
+ else if (prop->totarraylength)
fprintf(f, "\tinline Array<float, %u> %s(void);", prop->totarraylength, rna_safe_id(prop->identifier));
break;
}
case PROP_ENUM: {
- EnumPropertyRNA *eprop= (EnumPropertyRNA*)prop;
+ EnumPropertyRNA *eprop = (EnumPropertyRNA*)prop;
int i;
- if(eprop->item) {
+ if (eprop->item) {
fprintf(f, "\tenum %s_enum {\n", rna_safe_id(prop->identifier));
- for(i=0; i<eprop->totitem; i++)
- if(eprop->item[i].identifier[0])
+ for (i = 0; i<eprop->totitem; i++)
+ if (eprop->item[i].identifier[0])
fprintf(f, "\t\t%s_%s = %d,\n", rna_safe_id(prop->identifier), eprop->item[i].identifier, eprop->item[i].value);
fprintf(f, "\t};\n");
@@ -1489,18 +1489,18 @@ static void rna_def_property_funcs_header_cpp(FILE *f, StructRNA *srna, Property
break;
}
case PROP_POINTER: {
- PointerPropertyRNA *pprop= (PointerPropertyRNA*)dp->prop;
+ PointerPropertyRNA *pprop = (PointerPropertyRNA*)dp->prop;
- if(pprop->type)
+ if (pprop->type)
fprintf(f, "\tinline %s %s(void);", (const char*)pprop->type, rna_safe_id(prop->identifier));
else
fprintf(f, "\tinline %s %s(void);", "UnknownType", rna_safe_id(prop->identifier));
break;
}
case PROP_COLLECTION: {
- CollectionPropertyRNA *cprop= (CollectionPropertyRNA*)dp->prop;
+ CollectionPropertyRNA *cprop = (CollectionPropertyRNA*)dp->prop;
- if(cprop->item_type)
+ if (cprop->item_type)
fprintf(f, "\tCOLLECTION_PROPERTY(%s, %s, %s)", (const char*)cprop->item_type, srna->identifier, rna_safe_id(prop->identifier));
else
fprintf(f, "\tCOLLECTION_PROPERTY(%s, %s, %s)", "UnknownType", srna->identifier, rna_safe_id(prop->identifier));
@@ -1515,30 +1515,30 @@ static void rna_def_property_funcs_impl_cpp(FILE *f, StructRNA *srna, PropertyDe
{
PropertyRNA *prop;
- prop= dp->prop;
+ prop = dp->prop;
- if(prop->flag & (PROP_IDPROPERTY|PROP_BUILTIN))
+ if (prop->flag & (PROP_IDPROPERTY|PROP_BUILTIN))
return;
- switch(prop->type) {
+ switch (prop->type) {
case PROP_BOOLEAN: {
- if(!prop->arraydimension)
+ if (!prop->arraydimension)
fprintf(f, "\tBOOLEAN_PROPERTY(%s, %s)", srna->identifier, rna_safe_id(prop->identifier));
- else if(prop->totarraylength)
+ else if (prop->totarraylength)
fprintf(f, "\tBOOLEAN_ARRAY_PROPERTY(%s, %u, %s)", srna->identifier, prop->totarraylength, rna_safe_id(prop->identifier));
break;
}
case PROP_INT: {
- if(!prop->arraydimension)
+ if (!prop->arraydimension)
fprintf(f, "\tINT_PROPERTY(%s, %s)", srna->identifier, rna_safe_id(prop->identifier));
- else if(prop->totarraylength)
+ else if (prop->totarraylength)
fprintf(f, "\tINT_ARRAY_PROPERTY(%s, %u, %s)", srna->identifier, prop->totarraylength, rna_safe_id(prop->identifier));
break;
}
case PROP_FLOAT: {
- if(!prop->arraydimension)
+ if (!prop->arraydimension)
fprintf(f, "\tFLOAT_PROPERTY(%s, %s)", srna->identifier, rna_safe_id(prop->identifier));
- else if(prop->totarraylength)
+ else if (prop->totarraylength)
fprintf(f, "\tFLOAT_ARRAY_PROPERTY(%s, %u, %s)", srna->identifier, prop->totarraylength, rna_safe_id(prop->identifier));
break;
}
@@ -1552,9 +1552,9 @@ static void rna_def_property_funcs_impl_cpp(FILE *f, StructRNA *srna, PropertyDe
break;
}
case PROP_POINTER: {
- PointerPropertyRNA *pprop= (PointerPropertyRNA*)dp->prop;
+ PointerPropertyRNA *pprop = (PointerPropertyRNA*)dp->prop;
- if(pprop->type)
+ if (pprop->type)
fprintf(f, "\tPOINTER_PROPERTY(%s, %s, %s)", (const char*)pprop->type, srna->identifier, rna_safe_id(prop->identifier));
else
fprintf(f, "\tPOINTER_PROPERTY(%s, %s, %s)", "UnknownType", srna->identifier, rna_safe_id(prop->identifier));
@@ -1582,16 +1582,16 @@ static void rna_def_function_funcs(FILE *f, StructDefRNA *dsrna, FunctionDefRNA
PropertyType type;
const char *funcname, *valstr;
const char *ptrstr;
- const short has_data= (dfunc->cont.properties.first != NULL);
+ const short has_data = (dfunc->cont.properties.first != NULL);
int flag, pout, cptr, first;
- srna= dsrna->srna;
- func= dfunc->func;
+ srna = dsrna->srna;
+ func = dfunc->func;
- if(!dfunc->call)
+ if (!dfunc->call)
return;
- funcname= rna_alloc_function_name(srna->identifier, func->identifier, "call");
+ funcname = rna_alloc_function_name(srna->identifier, func->identifier, "call");
/* function definition */
fprintf(f, "void %s(bContext *C, ReportList *reports, PointerRNA *_ptr, ParameterList *_parms)", funcname);
@@ -1599,35 +1599,35 @@ static void rna_def_function_funcs(FILE *f, StructDefRNA *dsrna, FunctionDefRNA
/* variable definitions */
- if(func->flag & FUNC_USE_SELF_ID) {
+ if (func->flag & FUNC_USE_SELF_ID) {
fprintf(f, "\tstruct ID *_selfid;\n");
}
- if((func->flag & FUNC_NO_SELF)==0) {
- if(dsrna->dnaname) fprintf(f, "\tstruct %s *_self;\n", dsrna->dnaname);
+ if ((func->flag & FUNC_NO_SELF) == 0) {
+ if (dsrna->dnaname) fprintf(f, "\tstruct %s *_self;\n", dsrna->dnaname);
else fprintf(f, "\tstruct %s *_self;\n", srna->identifier);
}
- dparm= dfunc->cont.properties.first;
- for(; dparm; dparm= dparm->next) {
+ dparm = dfunc->cont.properties.first;
+ for (; dparm; dparm = dparm->next) {
type = dparm->prop->type;
flag = dparm->prop->flag;
pout = (flag & PROP_OUTPUT);
cptr = ((type == PROP_POINTER) && !(flag & PROP_RNAPTR));
- if(dparm->prop==func->c_ret)
- ptrstr= cptr || dparm->prop->arraydimension ? "*" : "";
+ if (dparm->prop == func->c_ret)
+ ptrstr = cptr || dparm->prop->arraydimension ? "*" : "";
/* XXX only arrays and strings are allowed to be dynamic, is this checked anywhere? */
else if (cptr || (flag & PROP_DYNAMIC))
- ptrstr= pout ? "**" : "*";
+ ptrstr = pout ? "**" : "*";
/* fixed size arrays and RNA pointers are pre-allocated on the ParameterList stack, pass a pointer to it */
else if (type == PROP_POINTER || dparm->prop->arraydimension)
- ptrstr= "*";
+ ptrstr = "*";
/* PROP_THICK_WRAP strings are pre-allocated on the ParameterList stack, but type name for string props is already char*, so leave empty */
else if (type == PROP_STRING && (flag & PROP_THICK_WRAP))
- ptrstr= "";
+ ptrstr = "";
else
- ptrstr= pout ? "*" : "";
+ ptrstr = pout ? "*" : "";
/* for dynamic parameters we pass an additional int for the length of the parameter */
if (flag & PROP_DYNAMIC)
@@ -1636,62 +1636,62 @@ static void rna_def_function_funcs(FILE *f, StructDefRNA *dsrna, FunctionDefRNA
fprintf(f, "\t%s%s %s%s;\n", rna_type_struct(dparm->prop), rna_parameter_type_name(dparm->prop), ptrstr, dparm->prop->identifier);
}
- if(has_data) {
+ if (has_data) {
fprintf(f, "\tchar *_data");
- if(func->c_ret) fprintf(f, ", *_retdata");
+ if (func->c_ret) fprintf(f, ", *_retdata");
fprintf(f, ";\n");
fprintf(f, "\t\n");
}
/* assign self */
- if(func->flag & FUNC_USE_SELF_ID) {
+ if (func->flag & FUNC_USE_SELF_ID) {
fprintf(f, "\t_selfid= (struct ID*)_ptr->id.data;\n");
}
- if((func->flag & FUNC_NO_SELF)==0) {
- if(dsrna->dnaname) fprintf(f, "\t_self= (struct %s *)_ptr->data;\n", dsrna->dnaname);
+ if ((func->flag & FUNC_NO_SELF) == 0) {
+ if (dsrna->dnaname) fprintf(f, "\t_self= (struct %s *)_ptr->data;\n", dsrna->dnaname);
else fprintf(f, "\t_self= (struct %s *)_ptr->data;\n", srna->identifier);
}
- if(has_data) {
+ if (has_data) {
fprintf(f, "\t_data= (char *)_parms->data;\n");
}
- dparm= dfunc->cont.properties.first;
- for(; dparm; dparm= dparm->next) {
+ dparm = dfunc->cont.properties.first;
+ for (; dparm; dparm = dparm->next) {
type = dparm->prop->type;
flag = dparm->prop->flag;
pout = (flag & PROP_OUTPUT);
cptr = ((type == PROP_POINTER) && !(flag & PROP_RNAPTR));
- if(dparm->prop==func->c_ret)
+ if (dparm->prop == func->c_ret)
fprintf(f, "\t_retdata= _data;\n");
else {
const char *data_str;
if (cptr || (flag & PROP_DYNAMIC)) {
- ptrstr= "**";
- valstr= "*";
+ ptrstr = "**";
+ valstr = "*";
}
else if (type == PROP_POINTER || dparm->prop->arraydimension) {
- ptrstr= "*";
- valstr= "";
+ ptrstr = "*";
+ valstr = "";
}
else if (type == PROP_STRING && (flag & PROP_THICK_WRAP)) {
- ptrstr= "";
- valstr= "";
+ ptrstr = "";
+ valstr = "";
}
else {
- ptrstr= "*";
- valstr= "*";
+ ptrstr = "*";
+ valstr = "*";
}
/* this must be kept in sync with RNA_parameter_length_get_data, we could just call the function directly, but this is faster */
if (flag & PROP_DYNAMIC) {
fprintf(f, "\t%s_len= %s((int *)_data);\n", dparm->prop->identifier, pout ? "" : "*");
- data_str= "(&(((char *)_data)[sizeof(void *)]))";
+ data_str = "(&(((char *)_data)[sizeof(void *)]))";
}
else {
- data_str= "_data";
+ data_str = "_data";
}
fprintf(f, "\t%s= ", dparm->prop->identifier);
@@ -1701,54 +1701,54 @@ static void rna_def_function_funcs(FILE *f, StructDefRNA *dsrna, FunctionDefRNA
fprintf(f, "((%s%s%s)%s);\n", rna_type_struct(dparm->prop), rna_parameter_type_name(dparm->prop), ptrstr, data_str);
}
- if(dparm->next)
+ if (dparm->next)
fprintf(f, "\t_data+= %d;\n", rna_parameter_size_alloc(dparm->prop));
}
- if(dfunc->call) {
+ if (dfunc->call) {
fprintf(f, "\t\n");
fprintf(f, "\t");
- if(func->c_ret) fprintf(f, "%s= ", func->c_ret->identifier);
+ if (func->c_ret) fprintf(f, "%s= ", func->c_ret->identifier);
fprintf(f, "%s(", dfunc->call);
- first= 1;
+ first = 1;
- if(func->flag & FUNC_USE_SELF_ID) {
+ if (func->flag & FUNC_USE_SELF_ID) {
fprintf(f, "_selfid");
- first= 0;
+ first = 0;
}
- if((func->flag & FUNC_NO_SELF)==0) {
- if(!first) fprintf(f, ", ");
+ if ((func->flag & FUNC_NO_SELF) == 0) {
+ if (!first) fprintf(f, ", ");
fprintf(f, "_self");
- first= 0;
+ first = 0;
}
- if(func->flag & FUNC_USE_MAIN) {
- if(!first) fprintf(f, ", ");
- first= 0;
+ if (func->flag & FUNC_USE_MAIN) {
+ if (!first) fprintf(f, ", ");
+ first = 0;
fprintf(f, "CTX_data_main(C)"); /* may have direct access later */
}
- if(func->flag & FUNC_USE_CONTEXT) {
- if(!first) fprintf(f, ", ");
- first= 0;
+ if (func->flag & FUNC_USE_CONTEXT) {
+ if (!first) fprintf(f, ", ");
+ first = 0;
fprintf(f, "C");
}
- if(func->flag & FUNC_USE_REPORTS) {
- if(!first) fprintf(f, ", ");
- first= 0;
+ if (func->flag & FUNC_USE_REPORTS) {
+ if (!first) fprintf(f, ", ");
+ first = 0;
fprintf(f, "reports");
}
- dparm= dfunc->cont.properties.first;
- for(; dparm; dparm= dparm->next) {
- if(dparm->prop==func->c_ret)
+ dparm = dfunc->cont.properties.first;
+ for (; dparm; dparm = dparm->next) {
+ if (dparm->prop == func->c_ret)
continue;
- if(!first) fprintf(f, ", ");
- first= 0;
+ if (!first) fprintf(f, ", ");
+ first = 0;
if (dparm->prop->flag & PROP_DYNAMIC)
fprintf(f, "%s_len, %s", dparm->prop->identifier, dparm->prop->identifier);
@@ -1758,16 +1758,16 @@ static void rna_def_function_funcs(FILE *f, StructDefRNA *dsrna, FunctionDefRNA
fprintf(f, ");\n");
- if(func->c_ret) {
- dparm= rna_find_parameter_def(func->c_ret);
- ptrstr= (((dparm->prop->type == PROP_POINTER) && !(dparm->prop->flag & PROP_RNAPTR)) || (dparm->prop->arraydimension))? "*": "";
+ if (func->c_ret) {
+ dparm = rna_find_parameter_def(func->c_ret);
+ ptrstr = (((dparm->prop->type == PROP_POINTER) && !(dparm->prop->flag & PROP_RNAPTR)) || (dparm->prop->arraydimension))? "*": "";
fprintf(f, "\t*((%s%s%s*)_retdata)= %s;\n", rna_type_struct(dparm->prop), rna_parameter_type_name(dparm->prop), ptrstr, func->c_ret->identifier);
}
}
fprintf(f, "}\n\n");
- dfunc->gencall= funcname;
+ dfunc->gencall = funcname;
}
static void rna_auto_types(void)
@@ -1775,34 +1775,34 @@ static void rna_auto_types(void)
StructDefRNA *ds;
PropertyDefRNA *dp;
- for(ds=DefRNA.structs.first; ds; ds=ds->cont.next) {
+ for (ds = DefRNA.structs.first; ds; ds = ds->cont.next) {
/* DNA name for Screen is patched in 2.5, we do the reverse here .. */
- if(ds->dnaname && strcmp(ds->dnaname, "Screen") == 0)
- ds->dnaname= "bScreen";
+ if (ds->dnaname && strcmp(ds->dnaname, "Screen") == 0)
+ ds->dnaname = "bScreen";
- for(dp=ds->cont.properties.first; dp; dp=dp->next) {
- if(dp->dnastructname && strcmp(dp->dnastructname, "Screen") == 0)
- dp->dnastructname= "bScreen";
+ for (dp = ds->cont.properties.first; dp; dp = dp->next) {
+ if (dp->dnastructname && strcmp(dp->dnastructname, "Screen") == 0)
+ dp->dnastructname = "bScreen";
- if(dp->dnatype) {
- if(dp->prop->type == PROP_POINTER) {
- PointerPropertyRNA *pprop= (PointerPropertyRNA*)dp->prop;
+ if (dp->dnatype) {
+ if (dp->prop->type == PROP_POINTER) {
+ PointerPropertyRNA *pprop = (PointerPropertyRNA*)dp->prop;
StructRNA *type;
- if(!pprop->type && !pprop->get)
- pprop->type= (StructRNA*)rna_find_type(dp->dnatype);
+ if (!pprop->type && !pprop->get)
+ pprop->type = (StructRNA*)rna_find_type(dp->dnatype);
- if(pprop->type) {
- type= rna_find_struct((const char*)pprop->type);
- if(type && (type->flag & STRUCT_ID_REFCOUNT))
+ if (pprop->type) {
+ type = rna_find_struct((const char*)pprop->type);
+ if (type && (type->flag & STRUCT_ID_REFCOUNT))
pprop->property.flag |= PROP_ID_REFCOUNT;
}
}
- else if(dp->prop->type== PROP_COLLECTION) {
- CollectionPropertyRNA *cprop= (CollectionPropertyRNA*)dp->prop;
+ else if (dp->prop->type == PROP_COLLECTION) {
+ CollectionPropertyRNA *cprop = (CollectionPropertyRNA*)dp->prop;
- if(!cprop->item_type && !cprop->get && strcmp(dp->dnatype, "ListBase")==0)
- cprop->item_type= (StructRNA*)rna_find_type(dp->dnatype);
+ if (!cprop->item_type && !cprop->get && strcmp(dp->dnatype, "ListBase") == 0)
+ cprop->item_type = (StructRNA*)rna_find_type(dp->dnatype);
}
}
}
@@ -1817,16 +1817,16 @@ static void rna_sort(BlenderRNA *brna)
rna_sortlist(&brna->structs, cmp_struct);
rna_sortlist(&DefRNA.structs, cmp_def_struct);
- for(srna=brna->structs.first; srna; srna=srna->cont.next)
+ for (srna = brna->structs.first; srna; srna = srna->cont.next)
rna_sortlist(&srna->cont.properties, cmp_property);
- for(ds=DefRNA.structs.first; ds; ds=ds->cont.next)
+ for (ds = DefRNA.structs.first; ds; ds = ds->cont.next)
rna_sortlist(&ds->cont.properties, cmp_def_property);
}
static const char *rna_property_structname(PropertyType type)
{
- switch(type) {
+ switch (type) {
case PROP_BOOLEAN: return "BoolPropertyRNA";
case PROP_INT: return "IntPropertyRNA";
case PROP_FLOAT: return "FloatPropertyRNA";
@@ -1840,7 +1840,7 @@ static const char *rna_property_structname(PropertyType type)
static const char *rna_property_subtypename(PropertySubType type)
{
- switch(type) {
+ switch (type) {
case PROP_NONE: return "PROP_NONE";
case PROP_FILEPATH: return "PROP_FILEPATH";
case PROP_FILENAME: return "PROP_FILENAME";
@@ -1869,7 +1869,7 @@ static const char *rna_property_subtypename(PropertySubType type)
case PROP_LAYER_MEMBER: return "PROP_LAYER_MEMBER";
default: {
/* incase we dont have a type preset that includes the subtype */
- if(RNA_SUBTYPE_UNIT(type)) {
+ if (RNA_SUBTYPE_UNIT(type)) {
return rna_property_subtypename(type & ~RNA_SUBTYPE_UNIT(type));
}
else {
@@ -1881,7 +1881,7 @@ static const char *rna_property_subtypename(PropertySubType type)
static const char *rna_property_subtype_unit(PropertySubType type)
{
- switch(RNA_SUBTYPE_UNIT(type)) {
+ switch (RNA_SUBTYPE_UNIT(type)) {
case PROP_UNIT_NONE: return "PROP_UNIT_NONE";
case PROP_UNIT_LENGTH: return "PROP_UNIT_LENGTH";
case PROP_UNIT_AREA: return "PROP_UNIT_AREA";
@@ -1899,7 +1899,7 @@ static void rna_generate_prototypes(BlenderRNA *brna, FILE *f)
{
StructRNA *srna;
- for(srna=brna->structs.first; srna; srna=srna->cont.next)
+ for (srna = brna->structs.first; srna; srna = srna->cont.next)
fprintf(f, "extern StructRNA RNA_%s;\n", srna->identifier);
fprintf(f, "\n");
}
@@ -1910,12 +1910,12 @@ static void rna_generate_blender(BlenderRNA *brna, FILE *f)
fprintf(f, "BlenderRNA BLENDER_RNA = {");
- srna= brna->structs.first;
- if(srna) fprintf(f, "{&RNA_%s, ", srna->identifier);
+ srna = brna->structs.first;
+ if (srna) fprintf(f, "{&RNA_%s, ", srna->identifier);
else fprintf(f, "{NULL, ");
- srna= brna->structs.last;
- if(srna) fprintf(f, "&RNA_%s}", srna->identifier);
+ srna = brna->structs.last;
+ if (srna) fprintf(f, "&RNA_%s}", srna->identifier);
else fprintf(f, "NULL}");
fprintf(f, "};\n\n");
@@ -1926,18 +1926,18 @@ static void rna_generate_property_prototypes(BlenderRNA *brna, StructRNA *srna,
PropertyRNA *prop;
StructRNA *base;
- base= srna->base;
+ base = srna->base;
while (base) {
fprintf(f, "\n");
- for(prop=base->cont.properties.first; prop; prop=prop->next)
+ for (prop = base->cont.properties.first; prop; prop = prop->next)
fprintf(f, "%s%s rna_%s_%s;\n", "extern ", rna_property_structname(prop->type), base->identifier, prop->identifier);
- base= base->base;
+ base = base->base;
}
- if(srna->cont.properties.first)
+ if (srna->cont.properties.first)
fprintf(f, "\n");
- for(prop=srna->cont.properties.first; prop; prop=prop->next)
+ for (prop = srna->cont.properties.first; prop; prop = prop->next)
fprintf(f, "%s%s rna_%s_%s;\n", (prop->flag & PROP_EXPORT)? "": "", rna_property_structname(prop->type), srna->identifier, prop->identifier);
fprintf(f, "\n");
}
@@ -1946,10 +1946,10 @@ static void rna_generate_parameter_prototypes(BlenderRNA *brna, StructRNA *srna,
{
PropertyRNA *parm;
- for(parm= func->cont.properties.first; parm; parm= parm->next)
+ for (parm = func->cont.properties.first; parm; parm = parm->next)
fprintf(f, "%s%s rna_%s_%s_%s;\n", "extern ", rna_property_structname(parm->type), srna->identifier, func->identifier, parm->identifier);
- if(func->cont.properties.first)
+ if (func->cont.properties.first)
fprintf(f, "\n");
}
@@ -1958,25 +1958,25 @@ static void rna_generate_function_prototypes(BlenderRNA *brna, StructRNA *srna,
FunctionRNA *func;
StructRNA *base;
- base= srna->base;
+ base = srna->base;
while (base) {
- for(func= base->functions.first; func; func= func->cont.next) {
+ for (func = base->functions.first; func; func = func->cont.next) {
fprintf(f, "%s%s rna_%s_%s_func;\n", "extern ", "FunctionRNA", base->identifier, func->identifier);
rna_generate_parameter_prototypes(brna, base, func, f);
}
- if(base->functions.first)
+ if (base->functions.first)
fprintf(f, "\n");
- base= base->base;
+ base = base->base;
}
- for(func= srna->functions.first; func; func= func->cont.next) {
+ for (func = srna->functions.first; func; func = func->cont.next) {
fprintf(f, "%s%s rna_%s_%s_func;\n", "extern ", "FunctionRNA", srna->identifier, func->identifier);
rna_generate_parameter_prototypes(brna, srna, func, f);
}
- if(srna->functions.first)
+ if (srna->functions.first)
fprintf(f, "\n");
}
@@ -1989,15 +1989,15 @@ static void rna_generate_static_parameter_prototypes(BlenderRNA *brna, StructRNA
int flag, pout, cptr, first;
const char *ptrstr;
- dsrna= rna_find_struct_def(srna);
- func= dfunc->func;
+ dsrna = rna_find_struct_def(srna);
+ func = dfunc->func;
/* return type */
- for(dparm= dfunc->cont.properties.first; dparm; dparm= dparm->next) {
- if(dparm->prop==func->c_ret) {
- if(dparm->prop->arraydimension)
+ for (dparm = dfunc->cont.properties.first; dparm; dparm = dparm->next) {
+ if (dparm->prop == func->c_ret) {
+ if (dparm->prop->arraydimension)
fprintf(f, "XXX no array return types yet"); /* XXX not supported */
- else if(dparm->prop->type == PROP_POINTER && !(dparm->prop->flag & PROP_RNAPTR))
+ else if (dparm->prop->type == PROP_POINTER && !(dparm->prop->flag & PROP_RNAPTR))
fprintf(f, "%s%s *", rna_type_struct(dparm->prop), rna_parameter_type_name(dparm->prop));
else
fprintf(f, "%s%s ", rna_type_struct(dparm->prop), rna_parameter_type_name(dparm->prop));
@@ -2007,71 +2007,71 @@ static void rna_generate_static_parameter_prototypes(BlenderRNA *brna, StructRNA
}
/* void if nothing to return */
- if(!dparm)
+ if (!dparm)
fprintf(f, "void ");
/* function name */
fprintf(f, "%s(", dfunc->call);
- first= 1;
+ first = 1;
/* self, context and reports parameters */
- if(func->flag & FUNC_USE_SELF_ID) {
+ if (func->flag & FUNC_USE_SELF_ID) {
fprintf(f, "struct ID *_selfid");
- first= 0;
+ first = 0;
}
- if((func->flag & FUNC_NO_SELF)==0) {
- if(!first) fprintf(f, ", ");
- if(dsrna->dnaname) fprintf(f, "struct %s *_self", dsrna->dnaname);
+ if ((func->flag & FUNC_NO_SELF) == 0) {
+ if (!first) fprintf(f, ", ");
+ if (dsrna->dnaname) fprintf(f, "struct %s *_self", dsrna->dnaname);
else fprintf(f, "struct %s *_self", srna->identifier);
- first= 0;
+ first = 0;
}
- if(func->flag & FUNC_USE_MAIN) {
- if(!first) fprintf(f, ", ");
- first= 0;
+ if (func->flag & FUNC_USE_MAIN) {
+ if (!first) fprintf(f, ", ");
+ first = 0;
fprintf(f, "Main *bmain");
}
- if(func->flag & FUNC_USE_CONTEXT) {
- if(!first) fprintf(f, ", ");
- first= 0;
+ if (func->flag & FUNC_USE_CONTEXT) {
+ if (!first) fprintf(f, ", ");
+ first = 0;
fprintf(f, "bContext *C");
}
- if(func->flag & FUNC_USE_REPORTS) {
- if(!first) fprintf(f, ", ");
- first= 0;
+ if (func->flag & FUNC_USE_REPORTS) {
+ if (!first) fprintf(f, ", ");
+ first = 0;
fprintf(f, "ReportList *reports");
}
/* defined parameters */
- for(dparm= dfunc->cont.properties.first; dparm; dparm= dparm->next) {
+ for (dparm = dfunc->cont.properties.first; dparm; dparm = dparm->next) {
type = dparm->prop->type;
flag = dparm->prop->flag;
pout = (flag & PROP_OUTPUT);
cptr = ((type == PROP_POINTER) && !(flag & PROP_RNAPTR));
- if(dparm->prop==func->c_ret)
+ if (dparm->prop == func->c_ret)
continue;
if (cptr || (flag & PROP_DYNAMIC))
- ptrstr= pout ? "**" : "*";
+ ptrstr = pout ? "**" : "*";
else if (type == PROP_POINTER || dparm->prop->arraydimension)
- ptrstr= "*";
+ ptrstr = "*";
else if (type == PROP_STRING && (flag & PROP_THICK_WRAP))
- ptrstr= "";
+ ptrstr = "";
else
- ptrstr= pout ? "*" : "";
+ ptrstr = pout ? "*" : "";
- if(!first) fprintf(f, ", ");
- first= 0;
+ if (!first) fprintf(f, ", ");
+ first = 0;
if (flag & PROP_DYNAMIC)
fprintf(f, "int %s%s_len, ", pout ? "*" : "", dparm->prop->identifier);
- if(!(flag & PROP_DYNAMIC) && dparm->prop->arraydimension)
+ if (!(flag & PROP_DYNAMIC) && dparm->prop->arraydimension)
fprintf(f, "%s%s %s[%u]", rna_type_struct(dparm->prop), rna_parameter_type_name(dparm->prop), dparm->prop->identifier, dparm->prop->totarraylength);
else
fprintf(f, "%s%s %s%s", rna_type_struct(dparm->prop), rna_parameter_type_name(dparm->prop), ptrstr, dparm->prop->identifier);
@@ -2085,15 +2085,15 @@ static void rna_generate_static_function_prototypes(BlenderRNA *brna, StructRNA
{
FunctionRNA *func;
FunctionDefRNA *dfunc;
- int first= 1;
+ int first = 1;
- for(func= srna->functions.first; func; func= func->cont.next) {
- dfunc= rna_find_function_def(func);
+ for (func = srna->functions.first; func; func = func->cont.next) {
+ dfunc = rna_find_function_def(func);
- if(dfunc->call) {
- if(first) {
+ if (dfunc->call) {
+ if (first) {
fprintf(f, "/* Repeated prototypes to detect errors */\n\n");
- first= 0;
+ first = 0;
}
rna_generate_static_parameter_prototypes(brna, srna, dfunc, f);
@@ -2105,43 +2105,43 @@ static void rna_generate_static_function_prototypes(BlenderRNA *brna, StructRNA
static void rna_generate_property(FILE *f, StructRNA *srna, const char *nest, PropertyRNA *prop)
{
- char *strnest= "", *errnest= "";
- int len, freenest= 0;
+ char *strnest = "", *errnest = "";
+ int len, freenest = 0;
- if(nest != NULL) {
- len= strlen(nest);
+ if (nest != NULL) {
+ len = strlen(nest);
- strnest= MEM_mallocN(sizeof(char)*(len+2), "rna_generate_property -> strnest");
- errnest= MEM_mallocN(sizeof(char)*(len+2), "rna_generate_property -> errnest");
+ strnest = MEM_mallocN(sizeof(char)*(len+2), "rna_generate_property -> strnest");
+ errnest = MEM_mallocN(sizeof(char)*(len+2), "rna_generate_property -> errnest");
strcpy(strnest, "_"); strcat(strnest, nest);
strcpy(errnest, "."); strcat(errnest, nest);
- freenest= 1;
+ freenest = 1;
}
- switch(prop->type) {
+ switch (prop->type) {
case PROP_ENUM: {
- EnumPropertyRNA *eprop= (EnumPropertyRNA*)prop;
- int i, defaultfound= 0, totflag= 0;
+ EnumPropertyRNA *eprop = (EnumPropertyRNA*)prop;
+ int i, defaultfound = 0, totflag = 0;
- if(eprop->item) {
+ if (eprop->item) {
fprintf(f, "static EnumPropertyItem rna_%s%s_%s_items[%d] = {\n\t", srna->identifier, strnest, prop->identifier, eprop->totitem+1);
- for(i=0; i<eprop->totitem; i++) {
+ for (i = 0; i<eprop->totitem; i++) {
fprintf(f, "{%d, ", eprop->item[i].value);
rna_print_c_string(f, eprop->item[i].identifier); fprintf(f, ", ");
fprintf(f, "%d, ", eprop->item[i].icon);
rna_print_c_string(f, eprop->item[i].name); fprintf(f, ", ");
rna_print_c_string(f, eprop->item[i].description); fprintf(f, "},\n\t");
- if(eprop->item[i].identifier[0]) {
- if(prop->flag & PROP_ENUM_FLAG) {
+ if (eprop->item[i].identifier[0]) {
+ if (prop->flag & PROP_ENUM_FLAG) {
totflag |= eprop->item[i].value;
}
else {
- if(eprop->defaultvalue == eprop->item[i].value) {
- defaultfound= 1;
+ if (eprop->defaultvalue == eprop->item[i].value) {
+ defaultfound = 1;
}
}
}
@@ -2149,41 +2149,41 @@ static void rna_generate_property(FILE *f, StructRNA *srna, const char *nest, Pr
fprintf(f, "{0, NULL, 0, NULL, NULL}\n};\n\n");
- if(prop->flag & PROP_ENUM_FLAG) {
- if(eprop->defaultvalue & ~totflag) {
+ if (prop->flag & PROP_ENUM_FLAG) {
+ if (eprop->defaultvalue & ~totflag) {
fprintf(stderr, "%s: %s%s.%s, enum default includes unused bits (%d).\n",
__func__, srna->identifier, errnest, prop->identifier, eprop->defaultvalue & ~totflag);
- DefRNA.error= 1;
+ DefRNA.error = 1;
}
}
else {
- if(!defaultfound) {
+ if (!defaultfound) {
fprintf(stderr, "%s: %s%s.%s, enum default is not in items.\n",
__func__, srna->identifier, errnest, prop->identifier);
- DefRNA.error= 1;
+ DefRNA.error = 1;
}
}
}
else {
fprintf(stderr, "%s: %s%s.%s, enum must have items defined.\n",
__func__, srna->identifier, errnest, prop->identifier);
- DefRNA.error= 1;
+ DefRNA.error = 1;
}
break;
}
case PROP_BOOLEAN: {
- BoolPropertyRNA *bprop= (BoolPropertyRNA*)prop;
+ BoolPropertyRNA *bprop = (BoolPropertyRNA*)prop;
unsigned int i;
- if(prop->arraydimension && prop->totarraylength) {
+ if (prop->arraydimension && prop->totarraylength) {
fprintf(f, "static int rna_%s%s_%s_default[%u] = {\n\t", srna->identifier, strnest, prop->identifier, prop->totarraylength);
- for(i=0; i<prop->totarraylength; i++) {
- if(bprop->defaultarray)
+ for (i = 0; i<prop->totarraylength; i++) {
+ if (bprop->defaultarray)
fprintf(f, "%d", bprop->defaultarray[i]);
else
fprintf(f, "%d", bprop->defaultvalue);
- if(i != prop->totarraylength-1)
+ if (i != prop->totarraylength-1)
fprintf(f, ",\n\t");
}
@@ -2192,18 +2192,18 @@ static void rna_generate_property(FILE *f, StructRNA *srna, const char *nest, Pr
break;
}
case PROP_INT: {
- IntPropertyRNA *iprop= (IntPropertyRNA*)prop;
+ IntPropertyRNA *iprop = (IntPropertyRNA*)prop;
unsigned int i;
- if(prop->arraydimension && prop->totarraylength) {
+ if (prop->arraydimension && prop->totarraylength) {
fprintf(f, "static int rna_%s%s_%s_default[%u] = {\n\t", srna->identifier, strnest, prop->identifier, prop->totarraylength);
- for(i=0; i<prop->totarraylength; i++) {
- if(iprop->defaultarray)
+ for (i = 0; i<prop->totarraylength; i++) {
+ if (iprop->defaultarray)
fprintf(f, "%d", iprop->defaultarray[i]);
else
fprintf(f, "%d", iprop->defaultvalue);
- if(i != prop->totarraylength-1)
+ if (i != prop->totarraylength-1)
fprintf(f, ",\n\t");
}
@@ -2212,18 +2212,18 @@ static void rna_generate_property(FILE *f, StructRNA *srna, const char *nest, Pr
break;
}
case PROP_FLOAT: {
- FloatPropertyRNA *fprop= (FloatPropertyRNA*)prop;
+ FloatPropertyRNA *fprop = (FloatPropertyRNA*)prop;
unsigned int i;
- if(prop->arraydimension && prop->totarraylength) {
+ if (prop->arraydimension && prop->totarraylength) {
fprintf(f, "static float rna_%s%s_%s_default[%u] = {\n\t", srna->identifier, strnest, prop->identifier, prop->totarraylength);
- for(i=0; i<prop->totarraylength; i++) {
- if(fprop->defaultarray)
+ for (i = 0; i<prop->totarraylength; i++) {
+ if (fprop->defaultarray)
rna_float_print(f, fprop->defaultarray[i]);
else
rna_float_print(f, fprop->defaultvalue);
- if(i != prop->totarraylength-1)
+ if (i != prop->totarraylength-1)
fprintf(f, ",\n\t");
}
@@ -2237,9 +2237,9 @@ static void rna_generate_property(FILE *f, StructRNA *srna, const char *nest, Pr
fprintf(f, "%s%s rna_%s%s_%s = {\n", (prop->flag & PROP_EXPORT)? "": "", rna_property_structname(prop->type), srna->identifier, strnest, prop->identifier);
- if(prop->next) fprintf(f, "\t{(PropertyRNA*)&rna_%s%s_%s, ", srna->identifier, strnest, prop->next->identifier);
+ if (prop->next) fprintf(f, "\t{(PropertyRNA*)&rna_%s%s_%s, ", srna->identifier, strnest, prop->next->identifier);
else fprintf(f, "\t{NULL, ");
- if(prop->prev) fprintf(f, "(PropertyRNA*)&rna_%s%s_%s,\n", srna->identifier, strnest, prop->prev->identifier);
+ if (prop->prev) fprintf(f, "(PropertyRNA*)&rna_%s%s_%s,\n", srna->identifier, strnest, prop->prev->identifier);
else fprintf(f, "NULL,\n");
fprintf(f, "\t%d, ", prop->magic);
rna_print_c_string(f, prop->identifier);
@@ -2251,25 +2251,25 @@ static void rna_generate_property(FILE *f, StructRNA *srna, const char *nest, Pr
fprintf(f, "\t%s, %s|%s, %s, %u, {%u, %u, %u}, %u,\n", RNA_property_typename(prop->type), rna_property_subtypename(prop->subtype), rna_property_subtype_unit(prop->subtype), rna_function_string(prop->getlength), prop->arraydimension, prop->arraylength[0], prop->arraylength[1], prop->arraylength[2], prop->totarraylength);
fprintf(f, "\t%s%s, %d, %s, %s,\n", (prop->flag & PROP_CONTEXT_UPDATE)? "(UpdateFunc)": "", rna_function_string(prop->update), prop->noteflag, rna_function_string(prop->editable), rna_function_string(prop->itemeditable));
- if(prop->flag & PROP_RAW_ACCESS) rna_set_raw_offset(f, srna, prop);
+ if (prop->flag & PROP_RAW_ACCESS) rna_set_raw_offset(f, srna, prop);
else fprintf(f, "\t0, -1");
/* our own type - collections/arrays only */
- if(prop->srna) fprintf(f, ", &RNA_%s", (const char*)prop->srna);
+ if (prop->srna) fprintf(f, ", &RNA_%s", (const char*)prop->srna);
else fprintf(f, ", NULL");
fprintf(f, "},\n");
- switch(prop->type) {
+ switch (prop->type) {
case PROP_BOOLEAN: {
- BoolPropertyRNA *bprop= (BoolPropertyRNA*)prop;
+ BoolPropertyRNA *bprop = (BoolPropertyRNA*)prop;
fprintf(f, "\t%s, %s, %s, %s, %d, ", rna_function_string(bprop->get), rna_function_string(bprop->set), rna_function_string(bprop->getarray), rna_function_string(bprop->setarray), bprop->defaultvalue);
- if(prop->arraydimension && prop->totarraylength) fprintf(f, "rna_%s%s_%s_default\n", srna->identifier, strnest, prop->identifier);
+ if (prop->arraydimension && prop->totarraylength) fprintf(f, "rna_%s%s_%s_default\n", srna->identifier, strnest, prop->identifier);
else fprintf(f, "NULL\n");
break;
}
case PROP_INT: {
- IntPropertyRNA *iprop= (IntPropertyRNA*)prop;
+ IntPropertyRNA *iprop = (IntPropertyRNA*)prop;
fprintf(f, "\t%s, %s, %s, %s, %s,\n\t", rna_function_string(iprop->get), rna_function_string(iprop->set), rna_function_string(iprop->getarray), rna_function_string(iprop->setarray), rna_function_string(iprop->range));
rna_int_print(f, iprop->softmin); fprintf(f, ", ");
rna_int_print(f, iprop->softmax); fprintf(f, ", ");
@@ -2277,12 +2277,12 @@ static void rna_generate_property(FILE *f, StructRNA *srna, const char *nest, Pr
rna_int_print(f, iprop->hardmax); fprintf(f, ", ");
rna_int_print(f, iprop->step); fprintf(f, ", ");
rna_int_print(f, iprop->defaultvalue); fprintf(f, ", ");
- if(prop->arraydimension && prop->totarraylength) fprintf(f, "rna_%s%s_%s_default\n", srna->identifier, strnest, prop->identifier);
+ if (prop->arraydimension && prop->totarraylength) fprintf(f, "rna_%s%s_%s_default\n", srna->identifier, strnest, prop->identifier);
else fprintf(f, "NULL\n");
break;
}
case PROP_FLOAT: {
- FloatPropertyRNA *fprop= (FloatPropertyRNA*)prop;
+ FloatPropertyRNA *fprop = (FloatPropertyRNA*)prop;
fprintf(f, "\t%s, %s, %s, %s, %s, ", rna_function_string(fprop->get), rna_function_string(fprop->set), rna_function_string(fprop->getarray), rna_function_string(fprop->setarray), rna_function_string(fprop->range));
rna_float_print(f, fprop->softmin); fprintf(f, ", ");
rna_float_print(f, fprop->softmax); fprintf(f, ", ");
@@ -2291,20 +2291,20 @@ static void rna_generate_property(FILE *f, StructRNA *srna, const char *nest, Pr
rna_float_print(f, fprop->step); fprintf(f, ", ");
rna_int_print(f, (int)fprop->precision); fprintf(f, ", ");
rna_float_print(f, fprop->defaultvalue); fprintf(f, ", ");
- if(prop->arraydimension && prop->totarraylength) fprintf(f, "rna_%s%s_%s_default\n", srna->identifier, strnest, prop->identifier);
+ if (prop->arraydimension && prop->totarraylength) fprintf(f, "rna_%s%s_%s_default\n", srna->identifier, strnest, prop->identifier);
else fprintf(f, "NULL\n");
break;
}
case PROP_STRING: {
- StringPropertyRNA *sprop= (StringPropertyRNA*)prop;
+ StringPropertyRNA *sprop = (StringPropertyRNA*)prop;
fprintf(f, "\t%s, %s, %s, %d, ", rna_function_string(sprop->get), rna_function_string(sprop->length), rna_function_string(sprop->set), sprop->maxlength);
rna_print_c_string(f, sprop->defaultvalue); fprintf(f, "\n");
break;
}
case PROP_ENUM: {
- EnumPropertyRNA *eprop= (EnumPropertyRNA*)prop;
+ EnumPropertyRNA *eprop = (EnumPropertyRNA*)prop;
fprintf(f, "\t%s, %s, %s, NULL, ", rna_function_string(eprop->get), rna_function_string(eprop->set), rna_function_string(eprop->itemf));
- if(eprop->item)
+ if (eprop->item)
fprintf(f, "rna_%s%s_%s_items, ", srna->identifier, strnest, prop->identifier);
else
fprintf(f, "NULL, ");
@@ -2312,16 +2312,16 @@ static void rna_generate_property(FILE *f, StructRNA *srna, const char *nest, Pr
break;
}
case PROP_POINTER: {
- PointerPropertyRNA *pprop= (PointerPropertyRNA*)prop;
+ PointerPropertyRNA *pprop = (PointerPropertyRNA*)prop;
fprintf(f, "\t%s, %s, %s, %s,", rna_function_string(pprop->get), rna_function_string(pprop->set), rna_function_string(pprop->typef), rna_function_string(pprop->poll));
- if(pprop->type) fprintf(f, "&RNA_%s\n", (const char*)pprop->type);
+ if (pprop->type) fprintf(f, "&RNA_%s\n", (const char*)pprop->type);
else fprintf(f, "NULL\n");
break;
}
case PROP_COLLECTION: {
- CollectionPropertyRNA *cprop= (CollectionPropertyRNA*)prop;
+ CollectionPropertyRNA *cprop = (CollectionPropertyRNA*)prop;
fprintf(f, "\t%s, %s, %s, %s, %s, %s, %s, %s, ", rna_function_string(cprop->begin), rna_function_string(cprop->next), rna_function_string(cprop->end), rna_function_string(cprop->get), rna_function_string(cprop->length), rna_function_string(cprop->lookupint), rna_function_string(cprop->lookupstring), rna_function_string(cprop->assignint));
- if(cprop->item_type) fprintf(f, "&RNA_%s\n", (const char*)cprop->item_type);
+ if (cprop->item_type) fprintf(f, "&RNA_%s\n", (const char*)cprop->item_type);
else fprintf(f, "NULL\n");
break;
}
@@ -2329,7 +2329,7 @@ static void rna_generate_property(FILE *f, StructRNA *srna, const char *nest, Pr
fprintf(f, "};\n\n");
- if(freenest) {
+ if (freenest) {
MEM_freeN(strnest);
MEM_freeN(errnest);
}
@@ -2344,28 +2344,28 @@ static void rna_generate_struct(BlenderRNA *brna, StructRNA *srna, FILE *f)
fprintf(f, "/* %s */\n", srna->name);
- for(prop= srna->cont.properties.first; prop; prop= prop->next)
+ for (prop = srna->cont.properties.first; prop; prop = prop->next)
rna_generate_property(f, srna, NULL, prop);
- for(func= srna->functions.first; func; func= func->cont.next) {
- for(parm= func->cont.properties.first; parm; parm= parm->next)
+ for (func = srna->functions.first; func; func = func->cont.next) {
+ for (parm = func->cont.properties.first; parm; parm = parm->next)
rna_generate_property(f, srna, func->identifier, parm);
fprintf(f, "%s%s rna_%s_%s_func = {\n", "", "FunctionRNA", srna->identifier, func->identifier);
- if(func->cont.next) fprintf(f, "\t{(FunctionRNA*)&rna_%s_%s_func, ", srna->identifier, ((FunctionRNA*)func->cont.next)->identifier);
+ if (func->cont.next) fprintf(f, "\t{(FunctionRNA*)&rna_%s_%s_func, ", srna->identifier, ((FunctionRNA*)func->cont.next)->identifier);
else fprintf(f, "\t{NULL, ");
- if(func->cont.prev) fprintf(f, "(FunctionRNA*)&rna_%s_%s_func,\n", srna->identifier, ((FunctionRNA*)func->cont.prev)->identifier);
+ if (func->cont.prev) fprintf(f, "(FunctionRNA*)&rna_%s_%s_func,\n", srna->identifier, ((FunctionRNA*)func->cont.prev)->identifier);
else fprintf(f, "NULL,\n");
fprintf(f, "\tNULL,\n");
- parm= func->cont.properties.first;
- if(parm) fprintf(f, "\t{(PropertyRNA*)&rna_%s_%s_%s, ", srna->identifier, func->identifier, parm->identifier);
+ parm = func->cont.properties.first;
+ if (parm) fprintf(f, "\t{(PropertyRNA*)&rna_%s_%s_%s, ", srna->identifier, func->identifier, parm->identifier);
else fprintf(f, "\t{NULL, ");
- parm= func->cont.properties.last;
- if(parm) fprintf(f, "(PropertyRNA*)&rna_%s_%s_%s}},\n", srna->identifier, func->identifier, parm->identifier);
+ parm = func->cont.properties.last;
+ if (parm) fprintf(f, "(PropertyRNA*)&rna_%s_%s_%s}},\n", srna->identifier, func->identifier, parm->identifier);
else fprintf(f, "NULL}},\n");
fprintf(f, "\t");
@@ -2373,11 +2373,11 @@ static void rna_generate_struct(BlenderRNA *brna, StructRNA *srna, FILE *f)
fprintf(f, ", %d, ", func->flag);
rna_print_c_string(f, func->description); fprintf(f, ",\n");
- dfunc= rna_find_function_def(func);
- if(dfunc->gencall) fprintf(f, "\t%s,\n", dfunc->gencall);
+ dfunc = rna_find_function_def(func);
+ if (dfunc->gencall) fprintf(f, "\t%s,\n", dfunc->gencall);
else fprintf(f, "\tNULL,\n");
- if(func->c_ret) fprintf(f, "\t(PropertyRNA*)&rna_%s_%s_%s\n", srna->identifier, func->identifier, func->c_ret->identifier);
+ if (func->c_ret) fprintf(f, "\t(PropertyRNA*)&rna_%s_%s_%s\n", srna->identifier, func->identifier, func->c_ret->identifier);
else fprintf(f, "\tNULL\n");
fprintf(f, "};\n");
@@ -2386,19 +2386,19 @@ static void rna_generate_struct(BlenderRNA *brna, StructRNA *srna, FILE *f)
fprintf(f, "StructRNA RNA_%s = {\n", srna->identifier);
- if(srna->cont.next) fprintf(f, "\t{(ContainerRNA *)&RNA_%s, ", ((StructRNA*)srna->cont.next)->identifier);
+ if (srna->cont.next) fprintf(f, "\t{(ContainerRNA *)&RNA_%s, ", ((StructRNA*)srna->cont.next)->identifier);
else fprintf(f, "\t{NULL, ");
- if(srna->cont.prev) fprintf(f, "(ContainerRNA *)&RNA_%s,\n", ((StructRNA*)srna->cont.prev)->identifier);
+ if (srna->cont.prev) fprintf(f, "(ContainerRNA *)&RNA_%s,\n", ((StructRNA*)srna->cont.prev)->identifier);
else fprintf(f, "NULL,\n");
fprintf(f, "\tNULL,\n");
- prop= srna->cont.properties.first;
- if(prop) fprintf(f, "\t{(PropertyRNA*)&rna_%s_%s, ", srna->identifier, prop->identifier);
+ prop = srna->cont.properties.first;
+ if (prop) fprintf(f, "\t{(PropertyRNA*)&rna_%s_%s, ", srna->identifier, prop->identifier);
else fprintf(f, "\t{NULL, ");
- prop= srna->cont.properties.last;
- if(prop) fprintf(f, "(PropertyRNA*)&rna_%s_%s}},\n", srna->identifier, prop->identifier);
+ prop = srna->cont.properties.last;
+ if (prop) fprintf(f, "(PropertyRNA*)&rna_%s_%s}},\n", srna->identifier, prop->identifier);
else fprintf(f, "NULL}},\n");
fprintf(f, "\t");
rna_print_c_string(f, srna->identifier);
@@ -2409,26 +2409,26 @@ static void rna_generate_struct(BlenderRNA *brna, StructRNA *srna, FILE *f)
rna_print_c_string(f, srna->description);
fprintf(f, ",\n\t%d,\n", srna->icon);
- prop= srna->nameproperty;
- if(prop) {
- base= srna;
- while (base->base && base->base->nameproperty==prop)
- base= base->base;
+ prop = srna->nameproperty;
+ if (prop) {
+ base = srna;
+ while (base->base && base->base->nameproperty == prop)
+ base = base->base;
fprintf(f, "\t(PropertyRNA*)&rna_%s_%s, ", base->identifier, prop->identifier);
}
else fprintf(f, "\tNULL, ");
- prop= srna->iteratorproperty;
- base= srna;
- while (base->base && base->base->iteratorproperty==prop)
- base= base->base;
+ prop = srna->iteratorproperty;
+ base = srna;
+ while (base->base && base->base->iteratorproperty == prop)
+ base = base->base;
fprintf(f, "(PropertyRNA*)&rna_%s_rna_properties,\n", base->identifier);
- if(srna->base) fprintf(f, "\t&RNA_%s,\n", srna->base->identifier);
+ if (srna->base) fprintf(f, "\t&RNA_%s,\n", srna->base->identifier);
else fprintf(f, "\tNULL,\n");
- if(srna->nested) fprintf(f, "\t&RNA_%s,\n", srna->nested->identifier);
+ if (srna->nested) fprintf(f, "\t&RNA_%s,\n", srna->nested->identifier);
else fprintf(f, "\tNULL,\n");
fprintf(f, "\t%s,\n", rna_function_string(srna->refine));
@@ -2438,18 +2438,18 @@ static void rna_generate_struct(BlenderRNA *brna, StructRNA *srna, FILE *f)
fprintf(f, "\t%s,\n", rna_function_string(srna->instance));
fprintf(f, "\t%s,\n", rna_function_string(srna->idproperties));
- if(srna->reg && !srna->refine) {
+ if (srna->reg && !srna->refine) {
fprintf(stderr, "%s: %s has a register function, must also have refine function.\n",
__func__, srna->identifier);
- DefRNA.error= 1;
+ DefRNA.error = 1;
}
- func= srna->functions.first;
- if(func) fprintf(f, "\t{(FunctionRNA*)&rna_%s_%s_func, ", srna->identifier, func->identifier);
+ func = srna->functions.first;
+ if (func) fprintf(f, "\t{(FunctionRNA*)&rna_%s_%s_func, ", srna->identifier, func->identifier);
else fprintf(f, "\t{NULL, ");
- func= srna->functions.last;
- if(func) fprintf(f, "(FunctionRNA*)&rna_%s_%s_func}\n", srna->identifier, func->identifier);
+ func = srna->functions.last;
+ if (func) fprintf(f, "(FunctionRNA*)&rna_%s_%s_func}\n", srna->identifier, func->identifier);
else fprintf(f, "NULL}\n");
fprintf(f, "};\n");
@@ -2463,7 +2463,7 @@ typedef struct RNAProcessItem {
void (*define)(BlenderRNA *brna);
} RNAProcessItem;
-static RNAProcessItem PROCESS_ITEMS[]= {
+static RNAProcessItem PROCESS_ITEMS[] = {
{"rna_rna.c", NULL, RNA_def_rna},
{"rna_ID.c", NULL, RNA_def_ID},
{"rna_texture.c", "rna_texture_api.c", RNA_def_texture},
@@ -2559,38 +2559,38 @@ static void rna_generate(BlenderRNA *brna, FILE *f, const char *filename, const
rna_generate_prototypes(brna, f);
fprintf(f, "#include \"%s\"\n", filename);
- if(api_filename)
+ if (api_filename)
fprintf(f, "#include \"%s\"\n", api_filename);
fprintf(f, "\n");
fprintf(f, "/* Autogenerated Functions */\n\n");
- for(ds=DefRNA.structs.first; ds; ds=ds->cont.next) {
- if(!filename || ds->filename == filename) {
+ for (ds = DefRNA.structs.first; ds; ds = ds->cont.next) {
+ if (!filename || ds->filename == filename) {
rna_generate_property_prototypes(brna, ds->srna, f);
rna_generate_function_prototypes(brna, ds->srna, f);
}
}
- for(ds=DefRNA.structs.first; ds; ds=ds->cont.next)
- if(!filename || ds->filename == filename)
- for(dp=ds->cont.properties.first; dp; dp=dp->next)
+ for (ds = DefRNA.structs.first; ds; ds = ds->cont.next)
+ if (!filename || ds->filename == filename)
+ for (dp = ds->cont.properties.first; dp; dp = dp->next)
rna_def_property_funcs(f, ds->srna, dp);
- for(ds=DefRNA.structs.first; ds; ds=ds->cont.next) {
- if(!filename || ds->filename == filename) {
- for(dfunc=ds->functions.first; dfunc; dfunc= dfunc->cont.next)
+ for (ds = DefRNA.structs.first; ds; ds = ds->cont.next) {
+ if (!filename || ds->filename == filename) {
+ for (dfunc = ds->functions.first; dfunc; dfunc = dfunc->cont.next)
rna_def_function_funcs(f, ds, dfunc);
rna_generate_static_function_prototypes(brna, ds->srna, f);
}
}
- for(ds=DefRNA.structs.first; ds; ds=ds->cont.next)
- if(!filename || ds->filename == filename)
+ for (ds = DefRNA.structs.first; ds; ds = ds->cont.next)
+ if (!filename || ds->filename == filename)
rna_generate_struct(brna, ds->srna, f);
- if(strcmp(filename, "rna_ID.c") == 0) {
+ if (strcmp(filename, "rna_ID.c") == 0) {
/* this is ugly, but we cannot have c files compiled for both
* makesrna and blender with some build systems at the moment */
fprintf(f, "#include \"rna_define.c\"\n\n");
@@ -2626,18 +2626,18 @@ static void rna_generate_header(BlenderRNA *brna, FILE *f)
fprintf(f, " property##_end(&rna_macro_iter); \\\n");
fprintf(f, " }\n\n");
- for(ds=DefRNA.structs.first; ds; ds=ds->cont.next) {
- srna= ds->srna;
+ for (ds = DefRNA.structs.first; ds; ds = ds->cont.next) {
+ srna = ds->srna;
fprintf(f, "/**************** %s ****************/\n\n", srna->name);
- while(srna) {
+ while (srna) {
fprintf(f, "extern StructRNA RNA_%s;\n", srna->identifier);
- srna= srna->base;
+ srna = srna->base;
}
fprintf(f, "\n");
- for(dp=ds->cont.properties.first; dp; dp=dp->next)
+ for (dp = ds->cont.properties.first; dp; dp = dp->next)
rna_def_property_funcs_header(f, ds->srna, dp);
}
@@ -2781,25 +2781,25 @@ static void rna_generate_header_cpp(BlenderRNA *brna, FILE *f)
fprintf(f, "/**************** Declarations ****************/\n\n");
- for(ds=DefRNA.structs.first; ds; ds=ds->cont.next)
+ for (ds = DefRNA.structs.first; ds; ds = ds->cont.next)
fprintf(f, "class %s;\n", ds->srna->identifier);
fprintf(f, "\n");
- for(ds=DefRNA.structs.first; ds; ds=ds->cont.next) {
- srna= ds->srna;
+ for (ds = DefRNA.structs.first; ds; ds = ds->cont.next) {
+ srna = ds->srna;
fprintf(f, "/**************** %s ****************/\n\n", srna->name);
fprintf(f, "class %s : public %s {\n", srna->identifier, (srna->base)? srna->base->identifier: "Pointer");
fprintf(f, "public:\n");
fprintf(f, "\t%s(const PointerRNA& ptr) :\n\t\t%s(ptr)", srna->identifier, (srna->base)? srna->base->identifier: "Pointer");
- for(dp=ds->cont.properties.first; dp; dp=dp->next)
- if(!(dp->prop->flag & (PROP_IDPROPERTY|PROP_BUILTIN)))
- if(dp->prop->type == PROP_COLLECTION)
+ for (dp = ds->cont.properties.first; dp; dp = dp->next)
+ if (!(dp->prop->flag & (PROP_IDPROPERTY|PROP_BUILTIN)))
+ if (dp->prop->type == PROP_COLLECTION)
fprintf(f, ",\n\t\t%s(ptr)", dp->prop->identifier);
fprintf(f, "\n\t\t{}\n\n");
- for(dp=ds->cont.properties.first; dp; dp=dp->next)
+ for (dp = ds->cont.properties.first; dp; dp = dp->next)
rna_def_property_funcs_header_cpp(f, ds->srna, dp);
fprintf(f, "};\n\n");
}
@@ -2807,8 +2807,8 @@ static void rna_generate_header_cpp(BlenderRNA *brna, FILE *f)
fprintf(f, "/**************** Implementation ****************/\n");
- for(ds=DefRNA.structs.first; ds; ds=ds->cont.next) {
- for(dp=ds->cont.properties.first; dp; dp=dp->next)
+ for (ds = DefRNA.structs.first; ds; ds = ds->cont.next) {
+ for (dp = ds->cont.properties.first; dp; dp = dp->next)
rna_def_property_funcs_impl_cpp(f, ds->srna, dp);
fprintf(f, "\n");
@@ -2819,7 +2819,7 @@ static void rna_generate_header_cpp(BlenderRNA *brna, FILE *f)
static void make_bad_file(const char *file, int line)
{
- FILE *fp= fopen(file, "w");
+ FILE *fp = fopen(file, "w");
fprintf(fp, "#error \"Error! can't make correct RNA file from %s:%d, STUPID!\"\n", __FILE__, line);
fclose(fp);
}
@@ -2834,15 +2834,15 @@ static int rna_preprocess(const char *outfile)
const char *deps[3]; /* expand as needed */
/* define rna */
- brna= RNA_create();
+ brna = RNA_create();
- for(i=0; PROCESS_ITEMS[i].filename; i++) {
- if(PROCESS_ITEMS[i].define) {
+ for (i = 0; PROCESS_ITEMS[i].filename; i++) {
+ if (PROCESS_ITEMS[i].define) {
PROCESS_ITEMS[i].define(brna);
- for(ds=DefRNA.structs.first; ds; ds=ds->cont.next)
- if(!ds->filename)
- ds->filename= PROCESS_ITEMS[i].filename;
+ for (ds = DefRNA.structs.first; ds; ds = ds->cont.next)
+ if (!ds->filename)
+ ds->filename = PROCESS_ITEMS[i].filename;
}
}
@@ -2853,22 +2853,22 @@ static int rna_preprocess(const char *outfile)
strcpy(deffile, outfile);
strcat(deffile, "RNA_blender_cpp.h" TMP_EXT);
- status= (DefRNA.error != 0);
+ status = (DefRNA.error != 0);
- if(status) {
+ if (status) {
make_bad_file(deffile, __LINE__);
}
else {
file = fopen(deffile, "w");
- if(!file) {
+ if (!file) {
fprintf(stderr, "Unable to open file: %s\n", deffile);
status = 1;
}
else {
rna_generate_header_cpp(brna, file);
fclose(file);
- status= (DefRNA.error != 0);
+ status = (DefRNA.error != 0);
}
}
@@ -2877,33 +2877,33 @@ static int rna_preprocess(const char *outfile)
rna_sort(brna);
/* create rna_gen_*.c files */
- for(i=0; PROCESS_ITEMS[i].filename; i++) {
+ for (i = 0; PROCESS_ITEMS[i].filename; i++) {
strcpy(deffile, outfile);
strcat(deffile, PROCESS_ITEMS[i].filename);
deffile[strlen(deffile)-2] = '\0';
strcat(deffile, "_gen.c" TMP_EXT);
- if(status) {
+ if (status) {
make_bad_file(deffile, __LINE__);
}
else {
file = fopen(deffile, "w");
- if(!file) {
+ if (!file) {
fprintf(stderr, "Unable to open file: %s\n", deffile);
status = 1;
}
else {
rna_generate(brna, file, PROCESS_ITEMS[i].filename, PROCESS_ITEMS[i].api_filename);
fclose(file);
- status= (DefRNA.error != 0);
+ status = (DefRNA.error != 0);
}
}
/* avoid unneeded rebuilds */
- deps[0]= PROCESS_ITEMS[i].filename;
- deps[1]= PROCESS_ITEMS[i].api_filename;
- deps[2]= NULL;
+ deps[0] = PROCESS_ITEMS[i].filename;
+ deps[1] = PROCESS_ITEMS[i].api_filename;
+ deps[2] = NULL;
replace_if_different(deffile, deps);
}
@@ -2912,20 +2912,20 @@ static int rna_preprocess(const char *outfile)
strcpy(deffile, outfile);
strcat(deffile, "RNA_blender.h" TMP_EXT);
- if(status) {
+ if (status) {
make_bad_file(deffile, __LINE__);
}
else {
file = fopen(deffile, "w");
- if(!file) {
+ if (!file) {
fprintf(stderr, "Unable to open file: %s\n", deffile);
status = 1;
}
else {
rna_generate_header(brna, file);
fclose(file);
- status= (DefRNA.error != 0);
+ status = (DefRNA.error != 0);
}
}
@@ -2948,18 +2948,18 @@ int main(int argc, char **argv)
{
int totblock, return_status = 0;
- if(argc<2) {
+ if (argc<2) {
fprintf(stderr, "Usage: %s outdirectory/\n", argv[0]);
return_status = 1;
}
else {
fprintf(stderr, "Running makesrna, program versions %s\n", RNA_VERSION_DATE);
- makesrna_path= argv[0];
- return_status= rna_preprocess(argv[1]);
+ makesrna_path = argv[0];
+ return_status = rna_preprocess(argv[1]);
}
- totblock= MEM_get_memory_blocks_in_use();
- if(totblock!=0) {
+ totblock = MEM_get_memory_blocks_in_use();
+ if (totblock != 0) {
fprintf(stderr, "Error Totblock: %d\n",totblock);
MEM_set_error_callback(mem_error_cb);
MEM_printmemlist();