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
|
#include "m_pd.h"
#define MIN(a,b) (((a)<(b))?(a):(b))
#define MAX(a,b) (((a)>(b))?(a):(b))
static t_class *tab_upsample_class;
typedef struct _tab_upsample {
t_object x_obj;
t_symbol *x_arrayname_src;
t_symbol *x_arrayname_dst;
int factor, offset;
t_outlet *b_out;
} t_tab_upsample;
void *tab_upsample_new(t_symbol *s_src,t_symbol *s_dst, t_float factor)
{
t_tab_upsample *x = (t_tab_upsample *)pd_new(tab_upsample_class);
x->x_arrayname_src = s_src;
x->x_arrayname_dst = s_dst;
x->factor = factor;
x->offset = 0;
x->b_out = outlet_new(&x->x_obj, &s_bang);
return (void *)x;
}
void tab_upsample_compute(t_tab_upsample *x)
{
t_garray *a_src, *a_dst;
int npoints_src, npoints_dst;
t_word *vec_src, *vec_dst;
int nb_max, i, index_dst;
if (!(a_src = (t_garray *)pd_findbyclass(x->x_arrayname_src, garray_class)))
pd_error(x, "%s: no such array", x->x_arrayname_src->s_name);
else if (!garray_getfloatwords(a_src, &npoints_src, &vec_src))
pd_error(x, "%s: bad template for tab_upsample", x->x_arrayname_src->s_name);
else if (!(a_dst = (t_garray *)pd_findbyclass(x->x_arrayname_dst, garray_class)))
pd_error(x, "%s: no such array", x->x_arrayname_dst->s_name);
else if (!garray_getfloatwords(a_dst, &npoints_dst, &vec_dst))
pd_error(x, "%s: bad template for tab_upsample", x->x_arrayname_dst->s_name);
else
{
nb_max = MIN(npoints_src, 1+(npoints_dst - x->offset - 1)/x->factor);
// post("nb_max = %d",nb_max);
index_dst = x->offset;
for (i=0; i<nb_max;i++) {
vec_dst[index_dst].w_float = vec_src[i].w_float;
index_dst += x->factor;
}
garray_redraw(a_dst);
}
outlet_bang(x->b_out);
}
void tab_upsample_bang(t_tab_upsample *x)
{
x->offset = 0;
tab_upsample_compute(x) ;
}
void tab_upsample_float(t_tab_upsample *x, t_float offset)
{
x->offset = offset;
tab_upsample_compute(x) ;
}
void tab_upsample_src(t_tab_upsample *x, t_symbol *s_src) {
x->x_arrayname_src = s_src;
}
void tab_upsample_dst(t_tab_upsample *x, t_symbol *s_dst) {
x->x_arrayname_dst = s_dst;
}
void tab_upsample_factor(t_tab_upsample *x, t_float factor) {
x->factor = factor;
}
void tab_upsample_setup(void) {
tab_upsample_class = class_new(gensym("tab_upsample"), (t_newmethod)tab_upsample_new,
0, sizeof(t_tab_upsample), CLASS_DEFAULT, A_DEFSYM, A_DEFSYM, A_DEFFLOAT, 0);
class_addbang(tab_upsample_class, tab_upsample_bang);
class_addmethod(tab_upsample_class, (t_method)tab_upsample_src, gensym("src"), A_DEFSYM, 0);
class_addmethod(tab_upsample_class, (t_method)tab_upsample_dst, gensym("dst"), A_DEFSYM, 0);
class_addmethod(tab_upsample_class, (t_method)tab_upsample_factor, gensym("factor"), A_DEFFLOAT, 0);
class_addfloat(tab_upsample_class, (t_method)tab_upsample_float);
}
|