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 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
|
/*
* copy data from one array into another
* Copyright (c) 2005-2023 Edward Kelly and others
* Based on arraycopy from maxlib (Olaf Matthes) <olaf.matthes@gmx.de>
* Forinformaion on usage and distribution, and for a DICLAIMER OF ALL
* WARRANTIES, see the file "LICENSE.txt," in this distribution. */
#include "m_pd.h"
#include <stdlib.h>
static char *version = "copyarray v0.2.1, written by Olaf Matthes <olaf.matthes@gmx.de>, adapted by Edward Kelly <synchroma@gmail.com>";
typedef struct copyarray
{
t_object x_obj;
t_symbol *x_destarray;
t_symbol *x_sourcearray;
t_garray *x_destbuf;
t_garray *x_sourcebuf;
int x_start;
int x_end;
int x_pos;
short x_print;
} t_copyarray;
/* choose the destination array to copy to */
static void copyarray_setdestarray(t_copyarray *x, t_symbol *s)
{
t_garray *b;
if ((b = (t_garray *)pd_findbyclass(s, garray_class)))
{
// post("copyarray: destination array set to \"%s\"", s->s_name);
x->x_destbuf = b;
} else {
post("copyarray: no array \"%s\" (error %d)", s->s_name, b);
x->x_destbuf = 0;
}
}
static void copyarray_setdest(t_copyarray *x, t_symbol *s)
{
x->x_destarray = s;
copyarray_setdestarray(x, x->x_destarray);
}
/* choose the source array to copy from */
static void copyarray_setsourcearray(t_copyarray *x, t_symbol *s)
{
t_garray *b;
if ((b = (t_garray *)pd_findbyclass(s, garray_class)))
{
// post("copyarray: source array set to \"%s\"", s->s_name);
x->x_sourcebuf = b;
} else {
post("copyarray: no array \"%s\" (error %d)", s->s_name, b);
x->x_sourcebuf = 0;
}
}
/* this is the routine that actually does the copying */
/* get's called directly when we get a 'bang' */
static void copyarray_docopy(t_copyarray *x)
{
/* use new 64-bit compatible array API if available */
#if (defined PD_MAJOR_VERSION && defined PD_MINOR_VERSION) && (PD_MAJOR_VERSION > 0 || PD_MINOR_VERSION >= 41)
# define arraynumber_t t_word
# define array_getarray garray_getfloatwords
# define array_get(pointer, index) (pointer[index].w_float)
# define array_set(pointer, index, value) ((pointer[index].w_float)=value)
#else
# define arraynumber_t t_float
# define array_getarray garray_getfloatarray
# define array_get(pointer, index) (pointer[index])
# define array_set(pointer, index, value) ((pointer[index])=value)
#endif
t_garray *b; /* make local copy of array */
arraynumber_t *tab; /* the content itself */
int sourcesize, destsize;
int i;
t_garray *A;
arraynumber_t *vec;
if(!x->x_destarray)
{
post("copyarray: no destination array specified");
return;
}
if(!x->x_sourcearray)
{
post("copyarray: no source array specified");
return;
}
A = x->x_destbuf;
if ((b = (t_garray *)pd_findbyclass(x->x_sourcearray, garray_class)))
{
// post("copyarray: source array set to \"%s\"", x->x_sourcearray->s_name);
} else {
post("copyarray: no array \"%s\" (error %d)", x->x_sourcearray->s_name, b);
return;
}
// read from our array
if (!array_getarray(b, &sourcesize, &tab))
{
pd_error(x, "copyarray: couldn't read from source array '%s'!",
x->x_sourcearray->s_name);
return;
}
if (!(A = (t_garray *)pd_findbyclass(x->x_destarray, garray_class)))
pd_error(x, "copyarray: %s: no such array", x->x_destarray->s_name);
else if (!array_getarray(A, &destsize, &vec))
pd_error(x, "copyarray: %s: bad template ", x->x_destarray->s_name);
else
{
if(x->x_start > sourcesize)
{
pd_error(x, "copyarray: start point %i out of range for source '%s'",
(int)x->x_start, x->x_sourcearray->s_name);
return;
}
if(x->x_end - x->x_start > destsize)
{
post("x->x_end %d - x->x_start %d = %d",x->x_end, x->x_start,(int)(x->x_end - x->x_start));
pd_error(x, "copyarray: start point %i out of range for destination '%s'",
(int)x->x_start, x->x_destarray->s_name);
return;
}
if(x->x_end) // end point is specified
{
if(x->x_end > sourcesize)
{
logpost(x, 2, "copyarray: end point %i out of range for source '%s', using %i",
(int)x->x_end, x->x_sourcearray->s_name, sourcesize);
x->x_end = sourcesize;
}
if(x->x_end - x->x_start > destsize)
{
post("x->x_end %d - x->x_start %d = %d",x->x_end, x->x_start,(int)(x->x_end - x->x_start));
logpost(x, 2, "copyarray: end point %i out of range for destination '%s', using %i",
(int)x->x_end, x->x_destarray->s_name, destsize);
x->x_end = destsize;
}
}
else
x->x_end = (sourcesize < destsize ? sourcesize : destsize);
if(x->x_pos)
vec += x->x_pos;
for(i = x->x_start; i < x->x_end; i++)
{
array_set(vec, 0, array_get(tab, i));
vec++;
}
garray_redraw(A);
if(x->x_print)post("copyarray: copied %d values from array \"%s\" to array \"%s\"",
x->x_end-x->x_start, x->x_sourcearray->s_name, x->x_destarray->s_name);
}
}
static void copyarray_list(t_copyarray *x, t_symbol *s, int argc, t_atom *argv)
{
if(argc > 1) {
x->x_sourcearray = atom_getsymbolarg(0, argc, argv);
x->x_destarray = atom_getsymbolarg(1, argc, argv);
}
}
static void copyarray_source(t_copyarray *x, t_symbol *s)
{
x->x_sourcearray = s;
x->x_start = x->x_end = x->x_pos = 0;
copyarray_docopy(x);
}
static void copyarray_print(t_copyarray *x, t_floatarg f)
{
if(f)
x->x_print = 1;
else
x->x_print = 0;
}
static void copyarray_copy(t_copyarray *x, t_symbol *s, int argc, t_atom *argv)
{
if(argc == 1) // source array name supplied
{
x->x_sourcearray = atom_getsymbolarg(0, argc, argv);
x->x_start = x->x_end = x->x_pos = 0;
}
else if(argc == 2) // array name and start point supplied
{
x->x_sourcearray = atom_getsymbolarg(0, argc, argv);
x->x_start = atom_getfloatarg(1, argc, argv);
x->x_end = x->x_pos = 0;
}
else if(argc == 3) // arrayname and start & end point supplied
{
x->x_sourcearray = atom_getsymbolarg(0, argc, argv);
x->x_start = atom_getfloatarg(1, argc, argv);
if(argv[2].a_type == A_FLOAT) // real position
{
x->x_end = atom_getfloatarg(2, argc, argv);
}
else // offset given
{
t_symbol *offset = atom_getsymbolarg(2, argc, argv);
x->x_end = (int)atoi(offset->s_name) + x->x_start;
}
x->x_pos = 0;
}
else if(argc == 4) // as above & dest. array
{
x->x_sourcearray = atom_getsymbolarg(0, argc, argv);
x->x_start = atom_getfloatarg(1, argc, argv);
if(argv[2].a_type == A_FLOAT) // real position
{
x->x_end = atom_getfloatarg(2, argc, argv);
}
else // offset given
{
t_symbol *offset = atom_getsymbolarg(2, argc, argv);
x->x_end = (int)atoi(offset->s_name) + x->x_start;
}
x->x_destarray = atom_getsymbolarg(3, argc, argv);
copyarray_setdestarray(x, x->x_destarray);
x->x_pos = 0;
}
else if(argc == 5) // as above & dest. array & pos. in dest.
{
x->x_sourcearray = atom_getsymbolarg(0, argc, argv);
x->x_start = atom_getfloatarg(1, argc, argv);
if(argv[2].a_type == A_FLOAT) // real position
{
x->x_end = atom_getfloatarg(2, argc, argv);
}
else // offset given
{
t_symbol *offset = atom_getsymbolarg(2, argc, argv);
x->x_end = (int)atoi(offset->s_name) + x->x_start;
}
x->x_destarray = atom_getsymbolarg(3, argc, argv);
copyarray_setdestarray(x, x->x_destarray);
x->x_pos = atom_getfloatarg(4, argc, argv);
}
else post("copyarray: copy: wrong number of arguments");
copyarray_docopy(x);
}
static t_class *copyarray_class;
static void *copyarray_new(t_symbol *s, int argc, t_atom *argv)
{
t_copyarray *x = (t_copyarray *)pd_new(copyarray_class);
if (argc > 0) {
x->x_destarray = atom_getsymbolarg(0, argc, argv);
copyarray_setdestarray(x, x->x_destarray);
}
inlet_new(&x->x_obj, &x->x_obj.ob_pd, gensym("symbol"), gensym("dest"));
x->x_start = x->x_end = x->x_pos = x->x_print = 0;
return (x);
}
#ifndef MAXLIB
void copyarray_setup(void)
{
/* the object's class: */
copyarray_class = class_new(gensym("copyarray"), (t_newmethod)copyarray_new,
0, sizeof(t_copyarray), 0, A_GIMME, 0);
#else
void maxlib_copyarray_setup(void)
{
/* the object's class: */
copyarray_class = class_new(gensym("maxlib_copyarray"), (t_newmethod)copyarray_new,
0, sizeof(t_copyarray), 0, A_GIMME, 0);
class_addcreator((t_newmethod)copyarray_new, gensym("copyarray"), A_GIMME, 0);
#endif
class_addmethod(copyarray_class, (t_method)copyarray_copy, gensym("copy"), A_GIMME, 0);
class_addmethod(copyarray_class, (t_method)copyarray_print, gensym("print"), A_FLOAT, 0);
class_addmethod(copyarray_class, (t_method)copyarray_setdest, gensym("dest"), A_SYMBOL, 0);
class_addsymbol(copyarray_class, copyarray_source);
class_addbang(copyarray_class, copyarray_docopy);
// class_addlist(copyarray_class, copyarray_list);
#ifndef MAXLIB
logpost(NULL, 4, "%s", version);
#else
class_sethelpsymbol(copyarray_class, gensym("maxlib/copyarray\\xs-help.pd"));
#endif
}
|