1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
/* For information on usage and redistribution, and for a DISCLAIMER OF ALL
* WARRANTIES, see the file, "LICENSE.txt," in this distribution.
iemlib2 written by Thomas Musil, Copyright (c) IEM KUG Graz Austria 2000 - 2006 */
#include "m_pd.h"
#include "iemlib.h"
/* ---------------- modulo-counter. ----------------- */
/* -------- counter increments if input a bang ------ */
/* -------- output is a modulo function. ------------ */
static t_class *modulo_counter_class;
typedef struct _modulo_counter
{
t_object x_obj;
int x_max;
int x_cur;
} t_modulo_counter;
static void modulo_counter_bang(t_modulo_counter *x)
{
outlet_float(x->x_obj.ob_outlet, x->x_cur++);
x->x_cur = x->x_cur % x->x_max;
}
static void modulo_counter_float(t_modulo_counter *x, t_floatarg max)
{
int i = (int)max;
if(i < 1)
i = 1;
if(x->x_cur >= i)
x->x_cur = i - 1;
x->x_max = i;
}
static void modulo_counter_ft1(t_modulo_counter *x, t_floatarg set_init)
{
int i = (int)set_init;
if(i < 0)
i = 0;
if(i >= x->x_max)
i = x->x_max - 1;
x->x_cur = i;
}
static void *modulo_counter_new(t_symbol *s, int ac, t_atom *av)
{
t_modulo_counter *x = (t_modulo_counter *)pd_new(modulo_counter_class);
int max = 1, cur = 0;
if((ac > 0) && IS_A_FLOAT(av, 0))
max = atom_getintarg(0, ac, av);
if((ac > 1) && IS_A_FLOAT(av, 1))
cur = atom_getintarg(1, ac, av);
if(max < 1)
x->x_max = 1;
else
x->x_max = max;
if(cur < 0)
cur = 0;
if(cur >= x->x_max)
cur = x->x_max - 1;
x->x_cur = cur;
outlet_new(&x->x_obj, &s_float);
inlet_new(&x->x_obj, &x->x_obj.ob_pd, &s_float, gensym("ft1"));
return (x);
}
void modulo_counter_setup(void)
{
modulo_counter_class = class_new(gensym("modulo_counter"),
(t_newmethod)modulo_counter_new, 0,
sizeof(t_modulo_counter), 0, A_GIMME, 0);
class_addbang(modulo_counter_class, (t_method)modulo_counter_bang);
class_addfloat(modulo_counter_class, (t_method)modulo_counter_float);
class_addmethod(modulo_counter_class, (t_method)modulo_counter_ft1, gensym("ft1"), A_FLOAT, 0);
// class_sethelpsymbol(modulo_counter_class, gensym("iemhelp/help-modulo_counter"));
}
|