aboutsummaryrefslogtreecommitdiff
path: root/weightmap/src/weightmap.c
blob: 8bedb0796e31bf94a3be16377514a25f096a5d86 (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
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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
/* -*- Mode: C -*- */
/*=============================================================================*\
 * File: weightmap.c
 * Author: Bryan Jurish <moocow@ling.uni-potsdam.de>
 * Description: gui-less finer-grained probability-to-integer-map for PD
 *
 *   - inspired in part by Yves Degoyon's 'probalizer' object
 *
 * Copyright (c) 2002-2009 Bryan Jurish.
 *
 * For information on usage and redistribution, and for a DISCLAIMER OF ALL
 * WARRANTIES, see the file, "LICENSE.txt," in this distribution.
 *
 * 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.
 *
 * See file LICENSE for further informations on licensing terms.
 *
 * 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, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 *=============================================================================*/


#include <m_pd.h>
#include <math.h>

#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "mooPdUtils.h"

/*--------------------------------------------------------------------
 * DEBUG
 *--------------------------------------------------------------------*/
//#define WEIGHTMAP_DEBUG 1


/*=====================================================================
 * Constants
 *=====================================================================*/
#define DEFAULT_WEIGHT_VALUE 0
#define DEFAULT_WEIGHT_MAX 100

/*=====================================================================
 * Structures and Types
 *=====================================================================*/

static char *weightmap_banner =
"\n"
"weightmap: stochastic selection v" PACKAGE_VERSION " by Bryan Jurish\n"
"weightmap: compiled by " PACKAGE_BUILD_USER " on " PACKAGE_BUILD_DATE "";

static t_class *weightmap_class;

typedef struct _weightmap
{
  t_object x_obj;         /* black magic (probably inheritance-related) */
  t_float x_wmax;         /* maximum expected input weight              */
  t_int x_nvalues;        /* number of stored values                    */
  t_float *x_weights;     /* weight of each event (0..x_wmax)           */
  t_float x_wsum;         /* sum of all weights (internal use only)     */
  t_outlet *x_dumpoutlet; /* outlet for 'dump' messages                 */  
} t_weightmap;



/*--------------------------------------------------------------------
 * FLOAT : the guts : handle incoming weights
 *--------------------------------------------------------------------*/
void weightmap_float(t_weightmap *x, t_floatarg f) {
  int i;
  float wt;

  // scale weight from (0..x->x_wmax) to (0..x->x_wsum)
  wt = (f * x->x_wsum) / x->x_wmax;

#ifdef WEIGHTMAP_DEBUG
  post("weightmap_debug : float : rescale(%f : 0..%f) = %f : 0..%f", f, x->x_wmax, wt, x->x_wsum);
#endif

  // find match
  for (i = 0; i < x->x_nvalues; i++) {
    wt -= x->x_weights[i];
    if (wt < 0) {
      // end of search : outlet current index (counting from 1, for compatibility)
      outlet_float(x->x_obj.ob_outlet, i+1);
      return;
    }
  }
  // no matching value found: ouput 0
  outlet_float(x->x_obj.ob_outlet, 0);
}


/*--------------------------------------------------------------------
 * map : set selected values (no resize)
 *--------------------------------------------------------------------*/
void weightmap_map(t_weightmap *x, MOO_UNUSED t_symbol *s, int argc, t_atom *argv) {
  int i, idx;
  float wt;

#ifdef WEIGHTMAP_DEBUG
  post("weightmap_debug : map : argc=%d", argc);
#endif

  for (i = 0; i < argc; i += 2) {
    // get index
    idx = atom_getint(argv+i);
    if (idx <= 0 || idx > x->x_nvalues) {
      // sanity check: index-range
      pd_error(x,"weightmap : map : index out of range : %d", idx);
      continue;
    }
    idx--;

    // get weight-value
    wt = atom_getfloatarg(i+1, argc, argv);

    // adjust sum
    x->x_wsum += wt - x->x_weights[idx];

    // assign weight
    x->x_weights[idx] = wt;
  }
}

/*--------------------------------------------------------------------
 * zero : zero the weight-vector
 *--------------------------------------------------------------------*/
void weightmap_zero(t_weightmap *x) {
  int i;
  // zero all weights
  for (i = 0; i < x->x_nvalues; i++) {
    *(x->x_weights+i) = 0;
  }
  // reset sum
  x->x_wsum = 0;
}


/*--------------------------------------------------------------------
 * set : set the entire weight-vector in one go (with possible resize)
 *--------------------------------------------------------------------*/
void weightmap_set(t_weightmap *x, MOO_UNUSED t_symbol *s, int argc, t_atom *argv) {
  int i;
  
  if (x->x_nvalues != argc) {
    // set number of elements
    x->x_nvalues = argc;
    if ( x->x_nvalues < 1 ) x->x_nvalues = 1;
    
    // (re-)allocate weights
    if (x->x_weights) {
      freebytes(x->x_weights, x->x_nvalues*sizeof(t_float));
    }
    x->x_weights = (t_float *)getbytes(x->x_nvalues*sizeof(t_float));
    if (!x->x_weights) {
      pd_error(x,"weightmap : failed to allocate new weight vector");
      return;
    }
  }

  // zero sum
  x->x_wsum = 0;

  // assign new weight-vector
  for (i = 0; i < x->x_nvalues; i++) {
    if (i >= argc) {
      // sanity check: existence
      x->x_weights[i] = DEFAULT_WEIGHT_VALUE;
    }
    else {
      // normal case: set weight value
      x->x_weights[i] = atom_getfloat(argv);
    }
    x->x_wsum += x->x_weights[i];
    argv++;
  }
}

/*--------------------------------------------------------------------
 * resize : reset number of values & re-allocate
 *--------------------------------------------------------------------*/
void weightmap_resize(t_weightmap *x, t_floatarg f) {
  int i;
  t_int old_nvalues = x->x_nvalues;
  t_float *old_weights = x->x_weights;

#ifdef WEIGHTMAP_DEBUG
  post("weightmap_debug : resize : size=%d", (int)f);
#endif

  // reset number of elements
  x->x_nvalues = f;
  if ( x->x_nvalues < 1 ) x->x_nvalues = 1;

  // allocate new weight-vector
  x->x_weights = (t_float *)getbytes(x->x_nvalues*sizeof(t_float));
  if (!x->x_weights) {
    pd_error(x,"weightmap : resize : failed to allocate new weight vector");
    return;
  }

  // zero sum
  x->x_wsum = 0;

  // copy old values
  for (i = 0; i < x->x_nvalues; i++) {
    if (i >= old_nvalues) {
      x->x_weights[i] = DEFAULT_WEIGHT_VALUE;
    } else {
      x->x_weights[i] = old_weights[i];
      x->x_wsum += old_weights[i];
    }
  }

  // free old vector
  freebytes(old_weights, old_nvalues*sizeof(t_float));
}


/*--------------------------------------------------------------------
 * max : set maximum expected input-weight
 *--------------------------------------------------------------------*/
void weightmap_max(t_weightmap *x, t_floatarg f) {
#ifdef WEIGHTMAP_DEBUG
  post("weightmap_debug : max : max=%f", f);
#endif
  if (f > 0) {
    x->x_wmax = f;
  } else {
    pd_error(x,"weightmap : invalid maximum weight : %f", f);
  }
}


/*--------------------------------------------------------------------
 * dump : outputs weight-vector as a list
 *--------------------------------------------------------------------*/
void weightmap_dump(t_weightmap *x) {
  int i;
  float f;
  t_atom *dumpus;

#ifdef WEIGHTMAP_DEBUG
  post("weightmap_debug : dump : sum=%f, max=%f", x->x_wsum, x->x_wmax);
#endif

  // allocate dump-list
  dumpus = (t_atom *)getbytes(x->x_nvalues*sizeof(t_atom));
  if (!dumpus) {
    pd_error(x,"weightmap : failed to allocate dump list");
    return;
  }

  // populate dump-list
  for (i = 0; i < x->x_nvalues; i++) {
    f = x->x_weights[i];
    SETFLOAT(dumpus+i, f);
  }

  // output dump-list
  outlet_list(x->x_dumpoutlet,
	      &s_list,
	      x->x_nvalues,
	      dumpus);

}


/*--------------------------------------------------------------------
 * new SIZE
 *--------------------------------------------------------------------*/
static void *weightmap_new(t_floatarg f, t_floatarg max)
{
  t_weightmap *x;
  int i;

  x = (t_weightmap *)pd_new(weightmap_class);

  // create float (index) outlet
  outlet_new(&x->x_obj, &s_float);
  // create list (dump) outlet
  x->x_dumpoutlet = outlet_new(&x->x_obj, &s_list);

  // set number of elements
  x->x_nvalues = f;
  if ( x->x_nvalues < 1 ) x->x_nvalues = 1;

  // set maximum expected input probability
  x->x_wmax = max;
  if (!x->x_wmax) x->x_wmax = DEFAULT_WEIGHT_MAX;

  // allocate weight-vector
  x->x_weights = (t_float *)getbytes(x->x_nvalues*sizeof(t_float));
  if (!x->x_weights) {
    pd_error(x,"weightmap : failed to allocate weight vector");
    return NULL;
  }

  // initialize weights
  for (i = 0; i < x->x_nvalues; i++) {
    *(x->x_weights+i) = DEFAULT_WEIGHT_VALUE;
  }
  // initialize sum
  x->x_wsum = DEFAULT_WEIGHT_VALUE * x->x_nvalues;

#ifdef WEIGHTMAP_DEBUG
  post("weightmap_debug : create : nvalues=%d , wmax=%f", x->x_nvalues, x->x_wmax);
#endif

  return (void *)x;
}

/*--------------------------------------------------------------------
 * free
 *--------------------------------------------------------------------*/
static void weightmap_free(t_weightmap *x) {
#ifdef WEIGHTMAP_DEBUG
  post("weightmap_debug : free");
#endif
  if (x->x_weights) {
    freebytes(x->x_weights, x->x_nvalues*sizeof(t_float));
  }
}

/*--------------------------------------------------------------------
 * setup
 *--------------------------------------------------------------------*/
void weightmap_setup(void) {
  post(weightmap_banner);

  weightmap_class = class_new(gensym("weightmap"),          /* name */
			      (t_newmethod)weightmap_new,   /* newmethod */
			      (t_method)weightmap_free,     /* freemethod */
			      sizeof(t_weightmap),          /* size */
			      0,                            /* flags */
			      A_DEFFLOAT,                   /* ARGLIST: arg1 (size) */
			      A_DEFFLOAT,                   /* ARGLIST: arg2 (max) */
			      0);                           /* ARGLIST: END */

  class_addmethod(weightmap_class, (t_method)weightmap_float,  &s_float,         A_FLOAT, 0);
  class_addmethod(weightmap_class, (t_method)weightmap_map,    gensym("map"),    A_GIMME, 0);
  class_addmethod(weightmap_class, (t_method)weightmap_zero,   gensym("zero"),   0);
  class_addmethod(weightmap_class, (t_method)weightmap_set,    gensym("set"),    A_GIMME, 0);
  class_addmethod(weightmap_class, (t_method)weightmap_resize, gensym("resize"), A_DEFFLOAT, 0);
  class_addmethod(weightmap_class, (t_method)weightmap_max,    gensym("max"),    A_DEFFLOAT, 0);
  class_addmethod(weightmap_class, (t_method)weightmap_dump,   gensym("dump"),   0);

  class_sethelpsymbol(weightmap_class, gensym("weightmap-help.pd"));
}