aboutsummaryrefslogtreecommitdiff
path: root/src/mtx_index.c
blob: a9eda02bd8bf071560efc6b1f5f474fd27b9dab2 (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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
/*
 *  iemmatrix
 *
 *  objects for manipulating simple matrices
 *  mostly refering to matlab/octave matrix functions
 *
 * Copyright (c) 2005, Franz Zotter
 * IEM, Graz, Austria
 *
 * For information on usage and redistribution, and for a DISCLAIMER OF ALL
 * WARRANTIES, see the file, "LICENSE.txt," in this distribution.
 *
 */


#include "iemmatrix.h"

static t_class *mtx_index_class;

typedef struct _MTXindex_ MTXindex;
struct _MTXindex_
{
   t_object x_obj;
   int index_size;
   int index_rows;
   int index_columns;
   t_float fill_value;
   int max_index;
   int *index_in;

   t_outlet *list_outlet;

   t_atom *list_out;
   t_atom *list_in;
};

static void deleteMTXIndex (MTXindex *mtx_index_obj) 
{
   if (mtx_index_obj->index_in)
      freebytes (mtx_index_obj->index_in, sizeof(int)*(mtx_index_obj->index_size+2));
   if (mtx_index_obj->list_out)
      freebytes (mtx_index_obj->list_out, sizeof(t_atom)*(mtx_index_obj->index_size+2));
}

static void *newMTXIndex (t_symbol *s, int argc, t_atom *argv)
{
   MTXindex *mtx_index_obj = (MTXindex *) pd_new (mtx_index_class);
   t_atom fill_atom;

   SETFLOAT(&fill_atom,0);
   switch ((argc>1)?1:argc) {
      case 1:
	 fill_atom = *argv;
   }
   if (atom_getsymbol(&fill_atom) == gensym("nan"))
#ifdef __WIN32__
      mtx_index_obj->fill_value = 0.0f;
#else
      mtx_index_obj->fill_value = 0.0f/0.0f;
#endif
   else 
      mtx_index_obj->fill_value = atom_getfloat(&fill_atom);
   
   mtx_index_obj->list_outlet = outlet_new (&mtx_index_obj->x_obj, gensym("matrix"));
   inlet_new(&mtx_index_obj->x_obj, &mtx_index_obj->x_obj.ob_pd, gensym("matrix"),gensym(""));

   error("[mtx_index]: this object is likely to change! not really for use yet");

   return ((void *) mtx_index_obj);
} 

static void mTXIndexBang (MTXindex *mtx_index_obj)
{
   if (mtx_index_obj->list_out) 
      outlet_anything(mtx_index_obj->list_outlet, gensym("matrix"), 
	    mtx_index_obj->index_size+2, mtx_index_obj->list_out);
}
/*
   static void copyList (int size, t_atom *x, t_atom *y)
   {
   while(size--)
 *y++=*x++;
 }
 */

static int copyAtomToIntegerArrayMax (int n, t_atom *x, int *y)
{
   int max = atom_getint(x);
   for (;n--;x++,y++) {
      *y = atom_getint (x);
      max = (*y > max)?*y:max;
   }
   return max;
}

static void setAtomListConstFloat (int n, t_atom *x, t_float f)
{
   for (;n--;x++)
      SETFLOAT(x,f);
}

static void writeIndexedValuesIntoList (int n, int *index, t_atom *x, t_atom *y)
{
   for (;n--;index++,y++)
      if (*index)
	 *y = x[*index-1];
}

static void mTXIndexRightMatrix (MTXindex *mtx_index_obj, t_symbol *s, 
      int argc, t_atom *argv)
{
   int rows = atom_getint (argv++);
   int columns = atom_getint (argv++);
   int size = rows * columns;
   int list_size = argc - 2;
   t_atom *list_in = argv;
   t_atom *list_out = mtx_index_obj->list_out;
   int *index_in = mtx_index_obj->index_in;
   int max;

   // size check
   if (!size) {
      post("mtx_index: invalid dimensions");
      return;
   }
   else if (list_size<size) {
      post("mtx_index: sparse matrix not yet supported: use \"mtx_check\"");
      return;
   }
   
   if (size != mtx_index_obj->index_size) {
      if (!index_in)
	 index_in = (int *) getbytes (sizeof (int) * (size + 2));
      else
	 index_in = (int *) resizebytes (index_in,
	       sizeof (int) * (mtx_index_obj->index_size+2),
	       sizeof (int) * (size + 2));
      if (!list_out)
	 list_out = (t_atom *) getbytes (sizeof (t_atom) * (size + 2));
      else
	 list_out = (t_atom *) resizebytes (list_out,
	       sizeof (t_atom) * (mtx_index_obj->index_size+2),
	       sizeof (t_atom) * (size + 2));
   }

   mtx_index_obj->index_size = size;
   mtx_index_obj->index_columns = columns;
   mtx_index_obj->index_rows = rows;
   mtx_index_obj->list_out = list_out;
   mtx_index_obj->index_in = index_in;

   max = copyAtomToIntegerArrayMax (size, list_in, index_in);
   mtx_index_obj->max_index = max;

}

static void mTXIndexMatrix (MTXindex *mtx_index_obj, t_symbol *s, 
      int argc, t_atom *argv)
{
   int rows = atom_getint (argv++);
   int columns = atom_getint (argv++);
   int size = rows * columns;
   int list_size = argc - 2;
   t_atom *list_in = argv;
   t_atom *list_out = mtx_index_obj->list_out;
   int index_rows = mtx_index_obj->index_rows;
   int index_columns = mtx_index_obj->index_columns;
   int *index = mtx_index_obj->index_in;

   // size check
   if (!size) {
      post("mtx_index: invalid dimensions");
      return;
   }
   else if (list_size<size) {
      post("mtx_index: sparse matrix not yet supported: use \"mtx_check\"");
      return;
   }
   
   if (size < mtx_index_obj->max_index) {
      post("mtx_index: index exceeds matrix dimensions");
      return;
   }
   if ((!index)||(mtx_index_obj->index_size == 0)) {
      post("mtx_index: index with what? no right matrix defined");
      return;
   }
   // main part
   list_out += 2;
   setAtomListConstFloat (mtx_index_obj->index_size, list_out, mtx_index_obj->fill_value);
   writeIndexedValuesIntoList (mtx_index_obj->index_size, index,list_in,list_out);
   list_out = mtx_index_obj->list_out;
   SETSYMBOL(list_out, gensym("matrix"));
   SETFLOAT(list_out, index_rows);
   SETFLOAT(&list_out[1], index_columns);
   outlet_anything(mtx_index_obj->list_outlet, gensym("matrix"), 
	 mtx_index_obj->index_size+2, list_out);
}

void mtx_index_setup (void)
{
   mtx_index_class = class_new 
      (gensym("mtx_index"),
       (t_newmethod) newMTXIndex,
       (t_method) deleteMTXIndex,
       sizeof (MTXindex),
       CLASS_DEFAULT, A_GIMME, 0);
   class_addbang (mtx_index_class, (t_method) mTXIndexBang);
   class_addmethod (mtx_index_class, (t_method) mTXIndexMatrix, gensym("matrix"), A_GIMME,0);
   class_addmethod (mtx_index_class, (t_method) mTXIndexRightMatrix, gensym(""), A_GIMME,0);
   class_sethelpsymbol (mtx_index_class, gensym("iemmatrix/mtx_index"));
}

void iemtx_index_setup(void){
  mtx_index_setup();
}