aboutsummaryrefslogtreecommitdiff
path: root/src/tof.h
diff options
context:
space:
mode:
authorThomas O Fredericks <mrtof@users.sourceforge.net>2009-10-09 15:08:30 +0000
committerThomas O Fredericks <mrtof@users.sourceforge.net>2009-10-09 15:08:30 +0000
commit3fcf217797b7c91f1371968d7de4124c9999f646 (patch)
tree33a82f33c07e85ae8d4823056da95e4e1281e2c7 /src/tof.h
parentd88938d7edb7387badf3a5500767dcf78c56fb7d (diff)
Added new no_save and wait_for_bang to param
svn path=/trunk/externals/tof/; revision=12569
Diffstat (limited to 'src/tof.h')
-rw-r--r--src/tof.h43
1 files changed, 33 insertions, 10 deletions
diff --git a/src/tof.h b/src/tof.h
index 3698b52..ae4e1ac 100644
--- a/src/tof.h
+++ b/src/tof.h
@@ -197,22 +197,42 @@ static int tof_next_tagged_argument(char tag, int ac, t_atom *av, int* ac_a, t_a
return (*ac_a);
}
-static void tof_find_tagged_argument(char tag,t_symbol *name, int ac, t_atom *av, int *ac_r,t_atom** av_r) {
+
+
+static int tof_find_tag(char tag, t_symbol* name, int ac, t_atom* av) {
+ int i;
+ for (i=0; i<ac;i++) {
+ if ( IS_A_SYMBOL(av,i) && name == atom_getsymbol(av+i) ) {
+ return 1;
+ }
+ }
+ return 0;
+}
+
+
+
+
+// Returns 1 if the tag was found
+// Fills the given int* and t_atom** with the arguments of the tag
+static int tof_find_tagged_argument(char tag,t_symbol *name, int ac, t_atom *av, int *ac_r,t_atom** av_r) {
int i;
+ int match = 0;
int j = 0;
for (i=0;i<ac;i++) {
- //if ( IS_A_SYMBOL(av,i)) post("analyzing %s",atom_getsymbol(av+i)->s_name);
- if ( IS_A_SYMBOL(av,i) && name == atom_getsymbol(av+i) && (i+1)<ac ) {
- //post("matches");
- i=i+1;
- for (j=i;j<ac;j++) {
- if ( IS_A_SYMBOL(av,j) && (atom_getsymbol(av+j))->s_name[0] == tag ) {
- //j = j-1;
- break;
+ if ( IS_A_SYMBOL(av,i) && name == atom_getsymbol(av+i) ) {
+ // FOUND MATCH
+ match = 1;
+ if ( (i+1)<ac ) { // IS THERE SPACE FOR AT LEAST ONE ARGUMENT?
+ i=i+1;
+ for (j=i;j<ac;j++) { //FIND ITS END
+ if ( IS_A_SYMBOL(av,j) && (atom_getsymbol(av+j))->s_name[0] == tag ) {
+ //j = j-1;
+ break;
+ }
}
+ break;
}
- break;
}
}
j = j-i;
@@ -226,6 +246,9 @@ static void tof_find_tagged_argument(char tag,t_symbol *name, int ac, t_atom *av
*ac_r = 0;
*av_r = NULL;
}
+
+ return match;
+
}