aboutsummaryrefslogtreecommitdiff
path: root/clone/clone_connective.c
blob: 0799b77238e1ccb377190095888a022c1af36760 (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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
/* ------------------------- clone_connective --------------------------------- */
/*                                                                              */
/* clone :: abstraction cloner object                                           */
/*   here:: control inlets and outlets                                          */
/* Written by Olaf Matthes <olaf.matthes@gmx.de>                                */
/* Based on Pd's x_connective.c by Miller Puckette.                             */
/* Get source at http://www.akustische-kunst.org/puredata/clone/                */
/*                                                                              */
/* This program is free software; you can redistribute it and/or                */
/* 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, write to the Free Software                  */
/* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.  */
/*                                                                              */
/* Based on PureData by Miller Puckette and others.                             */
/*                                                                              */
/* ---------------------------------------------------------------------------- */

#include <stdio.h>

#include "m_imp.h"
#include "g_canvas.h"
#include "clone.h"

#if 1
#define clone_VERBOSE
#if 0
#define clone_DEBUG
#endif
#endif


/* ---------------------- out class --------------------------- */
/*           (after send_class from x_connective.c)             */

t_class *clone_out_class;

static void clone_out_bang(t_clone_out *x)
{
    if (x->x_sym->s_thing)
		pd_float(x->x_sym->s_thing, x->x_ab + 1);
}

static void clone_out_float(t_clone_out *x, t_float f)
{
    if (x->x_sym->s_thing)
	{
		t_atom list[2];
		SETFLOAT(list, x->x_ab + 1);
		SETFLOAT(list+1, f);
		pd_list(x->x_sym->s_thing, NULL, 2, list);
	}
}

static void clone_out_symbol(t_clone_out *x, t_symbol *s)
{
    if (x->x_sym->s_thing)
	{
		t_atom list[2];
		SETFLOAT(list, x->x_ab + 1);
		SETSYMBOL(list+1, s);
		pd_list(x->x_sym->s_thing, NULL, 2, list);
	}
}

static void clone_out_pointer(t_clone_out *x, t_gpointer *gp)
{
    if (x->x_sym->s_thing)
	{
		t_atom list[2];
		SETFLOAT(list, x->x_ab + 1);
		SETPOINTER(list+1, gp);
		pd_list(x->x_sym->s_thing, NULL, 2, list);
	}
}

static void clone_out_list(t_clone_out *x, t_symbol *s, int argc, t_atom *argv)
{
    if (x->x_sym->s_thing)
	{
		t_atom *list;
		int i;
		list = getbytes((argc + 1) * sizeof(t_atom));	/* allocate memory */;
		for(i = 0; i < argc; i++)  /* copy args, leave space for instance number */
		{
			list[i + 1] = argv[i];
		}
		SETFLOAT(list, x->x_ab + 1);
		pd_list(x->x_sym->s_thing, NULL, argc+1, list);
		freebytes(list, (argc + 1) * sizeof(t_atom));	/* free memory */;
	}
}

static void clone_out_anything(t_clone_out *x, t_symbol *s, int argc, t_atom *argv)
{
    if (x->x_sym->s_thing)
	{
		t_atom *list;
		int i;
		list = getbytes((argc + 2) * sizeof(t_atom));	/* allocate memory */;
		for(i = 0; i < argc; i++)  /* copy args, leave space for instance number */
		{
			list[i + 2] = argv[i];
		}
		SETFLOAT(list, x->x_ab + 1);
		SETSYMBOL(list+1, s);
		pd_list(x->x_sym->s_thing, NULL, argc+2, list);
		freebytes(list, (argc + 2) * sizeof(t_atom));	/* free memory */;
	}
}

void clone_out_set(t_clone_out *x, int i, t_symbol *s)
{
	x->x_sym = s;	/* set the receive name */
	x->x_ab = i;    /* the instance that called us */
}

static void *clone_out_new(t_symbol *s)
{
    t_clone_out *x = (t_clone_out *)pd_new(clone_out_class);
    return (x);
}

void clone_out_setup(void)
{
    clone_out_class = class_new(gensym("cloneout"), (t_newmethod)clone_out_new, 0,
    	sizeof(t_clone_out), 0, A_DEFSYM, 0);
    class_addbang(clone_out_class, clone_out_bang);
    class_addfloat(clone_out_class, clone_out_float);
    class_addsymbol(clone_out_class, clone_out_symbol);
    class_addpointer(clone_out_class, clone_out_pointer);
    class_addlist(clone_out_class, clone_out_list);
    class_addanything(clone_out_class, clone_out_anything);
}

/* -------------------- in class ------------------------------ */
/*        (after receive_class from x_connective.c)             */

t_class *clone_in_class;

typedef struct _clone_in
{
    t_object  x_obj;
} t_clone_in;

static void clone_in_bang(t_clone_in *x)
{
    outlet_bang(x->x_obj.ob_outlet);
}

static void clone_in_float(t_clone_in *x, t_float f)
{
    outlet_float(x->x_obj.ob_outlet, f);
}

static void clone_in_symbol(t_clone_in *x, t_symbol *s)
{
    outlet_symbol(x->x_obj.ob_outlet, s);
}

static void clone_in_pointer(t_clone_in *x, t_gpointer *gp)
{
    outlet_pointer(x->x_obj.ob_outlet, gp);
}

static void clone_in_list(t_clone_in *x, t_symbol *s, int argc, t_atom *argv)
{
    outlet_list(x->x_obj.ob_outlet, s, argc, argv);
}

static void clone_in_anything(t_clone_in *x,
			      t_symbol *s, int argc, t_atom *argv)
{
    outlet_anything(x->x_obj.ob_outlet, s, argc, argv);
}

static void *clone_in_new(t_symbol *s)
{
    t_clone_in *x = (t_clone_in *)pd_new(clone_in_class);
    outlet_new(&x->x_obj, 0);
    return (x);
}

void clone_in_setup(void)
{
    clone_in_class = class_new(gensym("clonein"), (t_newmethod)clone_in_new, 0,
			       sizeof(t_clone_in), CLASS_NOINLET, 0);
    class_addbang(clone_in_class, clone_in_bang);
    class_addfloat(clone_in_class, (t_method)clone_in_float);
    class_addsymbol(clone_in_class, clone_in_symbol);
    class_addpointer(clone_in_class, clone_in_pointer);
    class_addlist(clone_in_class, clone_in_list);
    class_addanything(clone_in_class, clone_in_anything);
}