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
|
/* (C) Guenter Geiger <geiger@epy.co.at> */
#include <m_pd.h>
#ifdef NT
#pragma warning( disable : 4244 )
#pragma warning( disable : 4305 )
#endif
/* ------------------------ serialize ----------------------------- */
#define MAX_ELEMENTS 256
static t_class *serialize_class;
typedef struct _serialize
{
t_object x_obj;
t_atom x_abuf[MAX_ELEMENTS];
t_int x_count;
t_float x_elements;
} t_serialize;
void serialize_float(t_serialize *x,t_floatarg f)
{
SETFLOAT(&x->x_abuf[x->x_count],f);
x->x_count++;
if (x->x_count == x->x_elements) {
outlet_list(x->x_obj.ob_outlet,0,x->x_count,x->x_abuf);
x->x_count = 0;
}
}
static void *serialize_new(t_floatarg f)
{
t_serialize *x = (t_serialize *)pd_new(serialize_class);
outlet_new(&x->x_obj,&s_float);
x->x_elements = f;
x->x_count=0;
if ((f <= 0) || (f > MAX_ELEMENTS)) x->x_elements = 1;
floatinlet_new(&x->x_obj, &x->x_elements);
return (x);
}
void serialize_setup(void)
{
serialize_class = class_new(gensym("serialize"), (t_newmethod)serialize_new, 0,
sizeof(t_serialize),0, A_DEFFLOAT,0);
class_addfloat(serialize_class,serialize_float);
}
|