aboutsummaryrefslogtreecommitdiff
path: root/mycobject.c
blob: 0020de568fb0f598010606b665b614d15e52314e (plain)
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
/* code for "mycobject" pd class.  This takes two messages: floating-point
numbers, and "rats", and just prints something out for each message. */

#include "m_pd.h"

    /* the data structure for each copy of "mycobject".  In this case we
    on;y need pd's obligatory header (of type t_object). */
typedef struct mycobject
{
  t_object x_ob;
} t_mycobject;

    /* this is called back when mycobject gets a "float" message (i.e., a
    number.) */
void mycobject_float(t_mycobject *x, t_floatarg f)
{
    post("mycobject: %f", f);
}

    /* this is called when mycobject gets the message, "rats". */
void mycobject_rats(t_mycobject *x)
{
    post("mycobject: rats");
}

    /* this is a pointer to the class for "mycobject", which is created in the
    "setup" routine below and used to create new ones in the "new" routine. */
t_class *mycobject_class;

    /* this is called when a new "mycobject" object is created. */
void *mycobject_new(void)
{
    t_mycobject *x = (t_mycobject *)pd_new(mycobject_class);
    post("mycobject_new");
    return (void *)x;
}

    /* this is called once at setup time, when this code is loaded into Pd. */
void mycobject_setup(void)
{
    post("mycobject_setup");
    mycobject_class = class_new(gensym("mycobject"), (t_newmethod)mycobject_new, 0,
    	sizeof(t_mycobject), 0, 0);
    class_addmethod(mycobject_class, (t_method)mycobject_rats, gensym("rats"), 0);
    class_addfloat(mycobject_class, mycobject_float);
}