aboutsummaryrefslogtreecommitdiff
path: root/src/step~.c
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2015-08-28 17:55:26 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2015-08-28 17:55:26 +0000
commit739a8290a8b05645a2d055aed8e5eb76ba2e24e6 (patch)
tree13713efb9e01a6f2912ce4fe0a12af4869a7593b /src/step~.c
parent863ac0a263247d43d48c06ed942ddd470f811507 (diff)
one-true indentation
svn path=/trunk/externals/zexy/; revision=17537
Diffstat (limited to 'src/step~.c')
-rw-r--r--src/step~.c44
1 files changed, 23 insertions, 21 deletions
diff --git a/src/step~.c b/src/step~.c
index 4558819..d55d1c5 100644
--- a/src/step~.c
+++ b/src/step~.c
@@ -1,4 +1,4 @@
-/*
+/*
* step~: unity step function
*
* (c) 1999-2011 IOhannes m zmölnig, forum::für::umläute, institute of electronic music and acoustics (iem)
@@ -7,18 +7,18 @@
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
+ *
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*
- step~ : will make a unity step at a desired point in the signal-vector; the second input specifies a
+ step~ : will make a unity step at a desired point in the signal-vector; the second input specifies a
length: after the so-specified time has elapsed, the step will toggle back to the previous
value;
the length can be passed as an argument when creating the object
@@ -31,12 +31,11 @@
#include "zexy.h"
-/* ------------------------ step~ ----------------------------- */
+/* ------------------------ step~ ----------------------------- */
static t_class *step_class;
-typedef struct _step
-{
+typedef struct _step {
t_object x_obj;
int position;
int length;
@@ -54,10 +53,10 @@ static void step_bang(t_step *x)
static void step_float(t_step *x, t_float where)
{
- x->wait4stop = x->length +
- (x->wait4start =
- (x->position = (where>0)*where)
- );
+ x->wait4stop = x->length +
+ (x->wait4start =
+ (x->position = (where>0)*where)
+ );
}
static void step_setlength(t_step *x, t_float arg)
@@ -77,15 +76,17 @@ static t_int *step_perform(t_int *w)
int wait4start = x->wait4start, wait4stop = x->wait4stop;
- while (n--)
- {
- wait4stop--;
- if (!wait4start--) toggle ^= 1;
- else if (!wait4stop) toggle ^= 1;
-
- *out++ = toggle;
+ while (n--) {
+ wait4stop--;
+ if (!wait4start--) {
+ toggle ^= 1;
+ } else if (!wait4stop) {
+ toggle ^= 1;
}
+ *out++ = toggle;
+ }
+
x->wait4start = wait4start;
x->wait4stop = wait4stop;
@@ -127,15 +128,16 @@ static void *step_new(t_floatarg farg)
return (x);
}
-
+
void step_tilde_setup(void)
{
step_class = class_new(gensym("step~"), (t_newmethod)step_new, 0,
sizeof(t_step), 0, A_DEFFLOAT, 0);
class_addfloat(step_class, step_float);
- class_addbang(step_class, step_bang);
- class_addmethod(step_class, (t_method)step_setlength, gensym("ft1"), A_FLOAT, 0);
+ class_addbang(step_class, step_bang);
+ class_addmethod(step_class, (t_method)step_setlength, gensym("ft1"),
+ A_FLOAT, 0);
class_addmethod(step_class, (t_method)step_dsp, gensym("dsp"), 0);
class_addmethod(step_class, (t_method)step_helper, gensym("help"), 0);