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
83
84
85
|
/******************************************************
*
* zexy - implementation file
*
* copyleft (c) IOhannes m zmölnig
*
* 1999:forum::für::umläute:2004
*
* institute of electronic music and acoustics (iem)
*
******************************************************
*
* license: GNU General Public License v.2
*
******************************************************/
/* wrap floats between to limits */
#include "zexy.h"
static t_class *wrap_class;
typedef struct _wrap {
t_object x_obj;
t_float f_upper, f_lower;
} t_wrap;
void wrap_float(t_wrap *x, t_float f)
{
if (x->f_lower==x->f_upper)
outlet_float(x->x_obj.ob_outlet, x->f_lower);
else {
t_float modulo = fmod((f-x->f_lower),(x->f_upper-x->f_lower));
if (modulo<0)modulo+=(x->f_upper-x->f_lower);
outlet_float(x->x_obj.ob_outlet, x->f_lower+modulo);
}
}
void wrap_set(t_wrap *x, t_symbol *s, int argc, t_atom *argv){
t_float f1, f2;
switch (argc){
case 0:
f1=0.0;
f2=1.0;
break;
case 1:
f1=0.0;
f2 = atom_getfloat(argv);
break;
default:
f1 = atom_getfloat(argv);
f2 = atom_getfloat(argv+1);
}
x->f_lower=(f1<f2)?f1:f2;
x->f_upper=(f1>f2)?f1:f2;
}
void *wrap_new(t_symbol *s, int argc, t_atom*argv)
{
t_wrap *x = (t_wrap *)pd_new(wrap_class);
wrap_set(x, s, argc, argv);
outlet_new(&x->x_obj, &s_float);
inlet_new(&x->x_obj, &x->x_obj.ob_pd, gensym("float"), gensym("set"));
return (void *)x;
}
void wrap_setup(void) {
wrap_class = class_new(gensym("wrap"),
(t_newmethod)wrap_new,
0, sizeof(t_wrap),
CLASS_DEFAULT, A_GIMME, A_NULL);
class_addfloat (wrap_class, wrap_float);
class_addmethod(wrap_class, (t_method)wrap_set, gensym("set"), A_GIMME, 0);
class_sethelpsymbol(wrap_class, gensym("zexy/wrap"));
zexy_register("wrap");
}
void z_wrap_setup(void)
{
wrap_setup();
}
|