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
|
/* Copyright (c) 1997-1999 Miller Puckette source modified by dieb13.
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
* WARRANTIES, see the file, "LICENSE.txt," in this distribution. */
/* catch13~ ... = original objects with set-message for changing - bad hack - but works somehow*/
#include "m_pd.h"
#include "d_global13.h"
#define DEFSENDVS 64 /* LATER get send to get this from canvas */
/* ----------------------------- receive13~ ----------------------------- */
void *sigreceive13_new(t_symbol *s)
{
t_sigreceive13 *x = (t_sigreceive13 *)pd_new(sigreceive13_class);
if (!*s->s_name) s = gensym("receive13~");
x->x_n = DEFSENDVS; /* LATER find our vector size correctly */
x->x_sym = s;
x->x_wherefrom = 0;
outlet_new(&x->x_obj, &s_signal);
return (x);
}
t_int *sigreceive13_perform(t_int *w)
{
t_sigreceive13 *x = (t_sigreceive13 *)(w[1]);
t_float *out = (t_float *)(w[2]);
int n = (int)(w[3]);
t_float *in = x->x_wherefrom;
if (in)
{
while (n--)
*out++ = *in++;
}
else
{
while (n--)
*out++ = 0;
}
return (w+4);
}
/* tb: vectorized */
t_int *sigreceive13_perf8(t_int *w)
{
t_sigreceive13 *x = (t_sigreceive13 *)(w[1]);
t_float *out = (t_float *)(w[2]);
int n = (int)(w[3]);
t_float *in = x->x_wherefrom;
if (in)
{
for (; n; n -= 8, in += 8, out += 8)
{
out[0] = in[0]; out[1] = in[1]; out[2] = in[2]; out[3] = in[3];
out[4] = in[4]; out[5] = in[5]; out[6] = in[6]; out[7] = in[7];
}
}
else
{
for (; n; n -= 8, in += 8, out += 8)
{
out[0] = 0; out[1] = 0; out[2] = 0; out[3] = 0;
out[4] = 0; out[5] = 0; out[6] = 0; out[7] = 0;
}
}
return (w+4);
}
void sigreceive13_set(t_sigreceive13 *x, t_symbol *s)
{
t_sigsend13 *sender = (t_sigsend13 *)pd_findbyclass((x->x_sym = s),
sigsend13_class);
if (sender)
{
if (sender->x_n == x->x_n)
x->x_wherefrom = sender->x_vec;
else
{
pd_error(x, "receive13~ %s: vector size mismatch", x->x_sym->s_name);
x->x_wherefrom = 0;
}
}
else
{
pd_error(x, "receive13~ %s: no matching send", x->x_sym->s_name);
x->x_wherefrom = 0;
}
}
void sigreceive13_dsp(t_sigreceive13 *x, t_signal **sp)
{
if (sp[0]->s_n != x->x_n)
{
pd_error(x, "receive13~ %s: vector size mismatch", x->x_sym->s_name);
}
else
{
sigreceive13_set(x, x->x_sym);
if(sp[0]->s_n&7)
dsp_add(sigreceive13_perform, 3,
x, sp[0]->s_vec, sp[0]->s_n);
else
dsp_add(sigreceive13_perf8, 3,
x, sp[0]->s_vec, sp[0]->s_n);
}
}
void sigreceive13_setup(void)
{
sigreceive13_class = class_new(gensym("receive13~"),
(t_newmethod)sigreceive13_new, 0,
sizeof(t_sigreceive13),0, A_DEFSYM, 0);
class_addcreator((t_newmethod)sigreceive13_new, gensym("r13~"), A_DEFSYM, 0);
class_addmethod(sigreceive13_class, (t_method)sigreceive13_set, gensym("set"),
A_SYMBOL, 0);
class_addmethod(sigreceive13_class, (t_method)sigreceive13_dsp, gensym("dsp"),
0);
}
void receive13_tilde_setup()
{
sigreceive13_setup();
}
|