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
|
/*
* list2lists: split a list into several sublists given by their lengths
*
* (c) 1999-2011 IOhannes m zmölnig, forum::für::umläute, institute of electronic music and acoustics (iem)
*
* 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, see <http://www.gnu.org/licenses/>.
*/
#include "zexy.h"
#if 0
# define DEBUG
#endif
#ifdef DEBUG
# define DEBUGFUN(x) x
#else
# define DEBUGFUN(x)
#endif
static t_class *list2lists_class = NULL;
typedef struct _list2lists {
t_object x_obj;
t_outlet *x_outlet;
int x_n;
t_inlet *x_lengin;
int x_lcount;
t_int *x_length;
} t_list2lists;
static void list2lists_list2(
t_list2lists *x, t_symbol *UNUSED(s), int argc, t_atom *argv)
{
if (x->x_length != 0) {
freebytes(x->x_length, sizeof(t_atom) * x->x_lcount);
}
x->x_lcount = 0;
x->x_length = 0;
DEBUGFUN(post("list of length %d", argc));
if (argc > 0) {
int i;
x->x_lcount = argc;
x->x_length = (t_int *)getbytes((x->x_lcount) * sizeof(t_int));
for (i = 0; i < argc; i++) {
int index = atom_getint(argv + i);
if (index < 0) {
pd_error(x, "[list2lists]: clamped negative index=%d to 0!", index);
index = 0;
}
x->x_length[i] = index;
}
}
DEBUGFUN(post("list2: %d %x", x->x_lcount, x->x_length));
}
static void list2lists_output(t_list2lists *x, int argc, t_atom *argv)
{
t_outlet *out = x->x_obj.ob_outlet;
if (argc <= 0) {
outlet_bang(out);
} else {
outlet_list(out, gensym("list"), argc, argv);
}
}
static void list2lists_list(
t_list2lists *x, t_symbol *s, int argc, t_atom *argv)
{
int i;
if (x->x_lcount < 1) {
outlet_anything(x->x_obj.ob_outlet, s, argc, argv);
return;
}
for (i = 0; i < x->x_lcount; i++) {
int len = x->x_length[i];
if (len > argc) {
list2lists_output(x, argc, argv);
return;
}
list2lists_output(x, len, argv);
argv += len;
argc -= len;
}
}
static void list2lists_free(t_list2lists *x)
{
if (x->x_length) {
freebytes(x->x_length, x->x_lcount * sizeof(int));
x->x_length = 0;
x->x_lcount = 0;
}
inlet_free(x->x_lengin);
}
static void *list2lists_new(t_symbol *UNUSED(s), int argc, t_atom *argv)
{
t_list2lists *x = (t_list2lists *)pd_new(list2lists_class);
outlet_new(&x->x_obj, 0);
x->x_lengin =
inlet_new(&x->x_obj, &x->x_obj.ob_pd, gensym("list"), gensym("lst2"));
x->x_lcount = 0;
x->x_length = 0;
list2lists_list2(x, gensym("list"), argc, argv);
return (x);
}
static void list2lists_help(t_list2lists *UNUSED(x))
{
post("\n" HEARTSYMBOL
" list2lists\t\t:: split lists into multiple sublists based on matches");
}
ZEXY_SETUP void list2lists_setup(void)
{
list2lists_class = zexy_new("list2lists", list2lists_new, list2lists_free,
t_list2lists, CLASS_DEFAULT, "*");
class_addlist(list2lists_class, list2lists_list);
zexy_addmethod(list2lists_class, (t_method)list2lists_list2, "lst2", "*");
zexy_addmethod(list2lists_class, (t_method)list2lists_help, "help", "");
zexy_register("list2lists");
}
|