aboutsummaryrefslogtreecommitdiff
path: root/probalizer.c
blob: 03cd6e16d28df9f46ce6d835b6cadde4e88a7354 (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
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
/* ---------------------------------------------------------------------------- */
/* Copyright (c) 2002 Yves Degoyon.                                             */
/* For information on usage and redistribution, and for a DISCLAIMER OF ALL     */
/* WARRANTIES, see the file, "LICENSE.txt," in this distribution.               */
/*                                                                              */
/* probalizer : outputs integer values according to a drawn probability curve   */
/*                                                                              */
/* 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.  */
/*                                                                              */
/* Based on PureData by Miller Puckette and others.                             */
/*                                                                              */
/* Made while listening to :                                                    */
/*                                                                              */
/* "I am a product, I am a sample"                                              */
/* "I'm hopeless, aimless"                                                      */
/* Crass -- Feeding of the 5000                                                 */
/* ---------------------------------------------------------------------------- */


#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <math.h>
#include <ctype.h>
#include "m_pd.h"
#include "m_imp.h"
#include "g_canvas.h"

#include "probalizer.h"

#ifdef _WIN32
# include <io.h>
# define random rand
#endif

#ifndef _MSC_VER /* only MSVC doesn't have unistd.h */
#include <unistd.h>
#endif

#define DEFAULT_PROBALIZER_WIDTH 200
#define DEFAULT_PROBALIZER_HEIGHT 200
#define DEFAULT_PROBALIZER_NBVALUES 100
#define DEFAULT_PROBALIZER_NBOCCURRENCES 100
#define DEFAULT_PROB_VALUE 10

static char   *probalizer_version = "probalizer : outputs integer values according to a drawn probability curve , version 0.4 (ydegoyon@free.fr)";

t_widgetbehavior probalizer_widgetbehavior;
static t_class *probalizer_class;

static int guidebug=0;
static int pointsize = 5;

#define SYS_VGUI2(a,b) if (guidebug) \
                         post(a,b);\
                         sys_vgui(a,b)

#define SYS_VGUI3(a,b,c) if (guidebug) \
                         post(a,b,c);\
                         sys_vgui(a,b,c)

#define SYS_VGUI4(a,b,c,d) if (guidebug) \
                         post(a,b,c,d);\
                         sys_vgui(a,b,c,d)

#define SYS_VGUI5(a,b,c,d,e) if (guidebug) \
                         post(a,b,c,d,e);\
                         sys_vgui(a,b,c,d,e)

#define SYS_VGUI6(a,b,c,d,e,f) if (guidebug) \
                         post(a,b,c,d,e,f);\
                         sys_vgui(a,b,c,d,e,f)

#define SYS_VGUI7(a,b,c,d,e,f,g) if (guidebug) \
                         post(a,b,c,d,e,f,g);\
                         sys_vgui(a,b,c,d,e,f,g)

#define SYS_VGUI8(a,b,c,d,e,f,g,h) if (guidebug) \
                         post(a,b,c,d,e,f,g,h);\
                         sys_vgui(a,b,c,d,e,f,g,h)

#define SYS_VGUI9(a,b,c,d,e,f,g,h,i) if (guidebug) \
                         post(a,b,c,d,e,f,g,h,i);\
                         sys_vgui(a,b,c,d,e,f,g,h,i)

#define SYS_VGUI13(a,b,c,d,e,f,g,h,i,j,k,l,m) if (guidebug) \
                         post(a,b,c,d,e,f,g,h,i,j,k,l,m);\
                         sys_vgui(a,b,c,d,e,f,g,h,i,j,k,l,m)

/* drawing functions */
static void probalizer_draw_new(t_probalizer *x, t_glist *glist)
{
    t_canvas *canvas=glist_getcanvas(glist);
    t_int ei;

    SYS_VGUI7(".x%lx.c create rectangle %d %d %d %d -outline #000000 -fill #6790E2 -tags %xPROBALIZER\n",
              canvas, text_xpix(&x->x_obj, glist), text_ypix(&x->x_obj, glist),
              text_xpix(&x->x_obj, glist)+x->x_width, text_ypix(&x->x_obj, glist)+x->x_height,
              x);
    SYS_VGUI5(".x%lx.c create text %d %d -font -*-courier-bold--normal--10-* -text \"0\" -tags %xLTCAPTION\n",
              canvas, text_xpix(&x->x_obj, glist)-15, text_ypix(&x->x_obj, glist) + x->x_height, x );
    SYS_VGUI6(".x%lx.c create text %d %d -font -*-courier-bold--normal--10-* -text \"%d\" -tags %xLBCAPTION\n",
              canvas, text_xpix(&x->x_obj, glist)-15, text_ypix(&x->x_obj, glist), x->x_noccurrences, x );
    SYS_VGUI5(".x%lx.c create text %d %d -font -*-courier-bold--normal--10-* -text \"1\" -tags %xBLCAPTION\n",
              canvas, text_xpix(&x->x_obj, glist)+2, text_ypix(&x->x_obj, glist) + x->x_height + 10, x );
    SYS_VGUI6(".x%lx.c create text %d %d -font -*-courier-bold--normal--10-* -text \"%d\" -tags %xBRCAPTION\n",
              canvas, text_xpix(&x->x_obj, glist) + x->x_width-5, text_ypix(&x->x_obj, glist) + x->x_height + 10, x->x_nvalues, x );
    SYS_VGUI7(".x%lx.c create rectangle %d %d %d %d -outline #000000 -fill #000000 -tags %xIN\n",
              canvas, text_xpix(&x->x_obj, glist),
              text_ypix(&x->x_obj, glist) - 2,
              text_xpix(&x->x_obj, glist) + 5,
              text_ypix(&x->x_obj, glist) ,
              x);
    SYS_VGUI7(".x%lx.c create rectangle %d %d %d %d -outline #000000 -fill #000000 -tags %xOUT\n",
              canvas, text_xpix(&x->x_obj, glist),
              text_ypix(&x->x_obj, glist) + x->x_height,
              text_xpix(&x->x_obj, glist) + 5,
              text_ypix(&x->x_obj, glist) + x->x_height + 2,
              x);
    SYS_VGUI7(".x%lx.c create rectangle %d %d %d %d -outline #000000 -fill #000000 -tags %xOUT2\n",
              canvas, text_xpix(&x->x_obj, glist) + x->x_width -5,
              text_ypix(&x->x_obj, glist) + x->x_height,
              text_xpix(&x->x_obj, glist) + x->x_width,
              text_ypix(&x->x_obj, glist) + x->x_height + 2,
              x);
    for ( ei=0; ei<x->x_nvalues; ei++ )
    {
        SYS_VGUI8(".x%lx.c create rectangle %d %d %d %d -outline #000000 -fill #118373 -tags %xPROB%d\n",
                  canvas,
                  text_xpix(&x->x_obj, glist) + ei * x->x_width/x->x_nvalues,
                  text_ypix(&x->x_obj, glist) + x->x_height - ( *(x->x_probs+ei) * x->x_height / x->x_noccurrences ),
                  text_xpix(&x->x_obj, glist) + (ei+1) * x->x_width/x->x_nvalues,
                  text_ypix(&x->x_obj, glist) + x->x_height,
                  x, ei);
    }
    canvas_fixlinesfor( canvas, (t_text*)x );
}

static void probalizer_draw_update(t_probalizer *x)
{
    t_canvas *canvas=glist_getcanvas(x->x_glist);
    t_int ei;

    for ( ei=0; ei<x->x_nvalues; ei++ )
    {
        SYS_VGUI8(".x%lx.c coords %xPROB%d %d %d %d %d\n",
                  canvas, x, ei,
                  text_xpix(&x->x_obj, x->x_glist) + ei * x->x_width / x->x_nvalues,
                  text_ypix(&x->x_obj, x->x_glist) + x->x_height - ( *(x->x_probs+ei) * x->x_height / x->x_noccurrences ),
                  text_xpix(&x->x_obj, x->x_glist) + (ei+1) * x->x_width / x->x_nvalues,
                  text_ypix(&x->x_obj, x->x_glist) + x->x_height );
    }
    canvas_fixlinesfor( canvas, (t_text*)x );
}

static void probalizer_draw_move(t_probalizer *x, t_glist *glist)
{
    t_canvas *canvas=glist_getcanvas(glist);
    t_int ei;

    SYS_VGUI7(".x%lx.c coords %xPROBALIZER %d %d %d %d \n",
              canvas, x, text_xpix(&x->x_obj, glist), text_ypix(&x->x_obj, glist),
              text_xpix(&x->x_obj, glist)+x->x_width, text_ypix(&x->x_obj, glist)+x->x_height
             );
    SYS_VGUI7(".x%lx.c coords %xIN %d %d %d %d\n",
              canvas, x, text_xpix(&x->x_obj, glist),
              text_ypix(&x->x_obj, glist) - 2,
              text_xpix(&x->x_obj, glist) + 5,
              text_ypix(&x->x_obj, glist)
             );
    SYS_VGUI7(".x%lx.c coords %xOUT %d %d %d %d\n",
              canvas, x, text_xpix(&x->x_obj, glist),
              text_ypix(&x->x_obj, glist) + x->x_height,
              text_xpix(&x->x_obj, glist) + 5,
              text_ypix(&x->x_obj, glist) + x->x_height + 2
             );
    SYS_VGUI7(".x%lx.c coords %xOUT2 %d %d %d %d\n",
              canvas, x, text_xpix(&x->x_obj, glist) + x->x_width - 5,
              text_ypix(&x->x_obj, glist) + x->x_height,
              text_xpix(&x->x_obj, glist) + x->x_width,
              text_ypix(&x->x_obj, glist) + x->x_height + 2
             );
    SYS_VGUI5(".x%lx.c coords %xLTCAPTION %d %d\n",
              canvas, x, text_xpix(&x->x_obj, glist)-15,
              text_ypix(&x->x_obj, glist) + x->x_height
             );
    SYS_VGUI5(".x%lx.c coords %xLBCAPTION %d %d\n",
              canvas, x, text_xpix(&x->x_obj, glist)-15,
              text_ypix(&x->x_obj, glist)
             );
    SYS_VGUI5(".x%lx.c coords %xBLCAPTION %d %d\n",
              canvas, x,  text_xpix(&x->x_obj, glist)+2,
              text_ypix(&x->x_obj, glist) + x->x_height + 10
             );
    SYS_VGUI5(".x%lx.c coords %xBRCAPTION %d %d\n",
              canvas, x,  text_xpix(&x->x_obj, glist) + x->x_width - 5,
              text_ypix(&x->x_obj, glist) + x->x_height + 10
             );
    for ( ei=0; ei<x->x_nvalues; ei++ )
    {
        SYS_VGUI8(".x%lx.c coords %xPROB%d %d %d %d %d\n",
                  canvas, x, ei,
                  text_xpix(&x->x_obj, glist) + ei * x->x_width / x->x_nvalues,
                  text_ypix(&x->x_obj, glist) + x->x_height - ( *(x->x_probs+ei) * x->x_height / x->x_noccurrences ),
                  text_xpix(&x->x_obj, glist) + (ei+1) * x->x_width / x->x_nvalues,
                  text_ypix(&x->x_obj, glist) + x->x_height );
    }
    canvas_fixlinesfor( canvas, (t_text*)x );
}

static void probalizer_draw_erase(t_probalizer* x,t_glist* glist)
{
    t_canvas *canvas=glist_getcanvas(glist);
    int i, ei, gi;

    SYS_VGUI3(".x%lx.c delete %xPROBALIZER\n", canvas, x );
    SYS_VGUI3(".x%lx.c delete %xIN\n", canvas, x );
    SYS_VGUI3(".x%lx.c delete %xOUT\n", canvas, x );
    SYS_VGUI3(".x%lx.c delete %xOUT2\n", canvas, x );
    SYS_VGUI3(".x%lx.c delete %xLTCAPTION\n", canvas, x );
    SYS_VGUI3(".x%lx.c delete %xLBCAPTION\n", canvas, x );
    SYS_VGUI3(".x%lx.c delete %xBLCAPTION\n", canvas, x );
    SYS_VGUI3(".x%lx.c delete %xBRCAPTION\n", canvas, x );
    for ( ei=0; ei<x->x_nvalues; ei++ )
    {
        SYS_VGUI4(".x%lx.c delete %xPROB%d\n", canvas, x, ei );
    }
}

static void probalizer_draw_select(t_probalizer* x,t_glist* glist)
{
    t_canvas *canvas=glist_getcanvas(glist);

    if(x->x_selected)
    {
        /* sets the main item in blue */
        SYS_VGUI3(".x%lx.c itemconfigure %xPROBALIZER -outline #0000FF\n", glist_getcanvas(glist), x);

    }
    else
    {
        /* sets the main item in black */
        SYS_VGUI3(".x%lx.c itemconfigure %xPROBALIZER -outline #000000\n", glist_getcanvas(glist), x);
    }
}

/* ------------------------ probalizer widgetbehaviour----------------------------- */


static void probalizer_getrect(t_gobj *z, t_glist *owner,
                               int *xp1, int *yp1, int *xp2, int *yp2)
{
    t_probalizer* x = (t_probalizer*)z;

    *xp1 = text_xpix(&x->x_obj, owner);
    *yp1 = text_ypix(&x->x_obj, owner);
    *xp2 = text_xpix(&x->x_obj, owner)+x->x_width;
    *yp2 = text_ypix(&x->x_obj, owner)+x->x_height;
}

static void probalizer_save(t_gobj *z, t_binbuf *b)
{
    t_probalizer *x = (t_probalizer *)z;
    int ei,gi;

    binbuf_addv(b, "ssiisiiiii", gensym("#X"),gensym("obj"),
                (t_int)x->x_obj.te_xpix, (t_int)x->x_obj.te_ypix,
                atom_getsymbol(binbuf_getvec(x->x_obj.te_binbuf)),
                x->x_width, x->x_height,
                x->x_nvalues, x->x_noccurrences, x->x_save );
    if ( x->x_save )
    {
        for ( ei=0; ei<x->x_nvalues; ei++ )
        {
            // post( "probalizer : saving ( %d, %d )", ei, gi );
            binbuf_addv(b, "ii", ei, *(x->x_probs+ei) );
        }
    }
    binbuf_addv(b, ";");
}

static void probalizer_properties(t_gobj *z, t_glist *owner)
{
    char buf[800];
    t_probalizer *x=(t_probalizer *)z;

    sprintf(buf, "pdtk_probalizer_dialog %%s %d %d %d %d %d\n",
            x->x_width, x->x_height, x->x_nvalues, x->x_noccurrences, x->x_save );
    // post("probalizer_properties : %s", buf );
    gfxstub_new(&x->x_obj.ob_pd, x, buf);
}

static void probalizer_select(t_gobj *z, t_glist *glist, int selected)
{
    t_probalizer *x = (t_probalizer *)z;

    x->x_selected = selected;
    probalizer_draw_select( x, glist );
}

static void probalizer_vis(t_gobj *z, t_glist *glist, int vis)
{
    t_probalizer *x = (t_probalizer *)z;
    t_rtext *y;

    // post("probalizer_vis : %d", vis );
    if (vis)
    {
        probalizer_draw_new( x, glist );
    }
    else
    {
        probalizer_draw_erase( x, glist );
    }
}

/* handle parameters sent by the property dialog */
static void probalizer_dialog(t_probalizer *x, t_symbol *s, int argc, t_atom *argv)
{
    t_int onvalues, owidth, ei, gi, bi;
    t_canvas *canvas=glist_getcanvas(x->x_glist);

    if ( !x )
    {
        post( "probalizer : error :tried to set properties on an unexisting object" );
    }
    onvalues = x->x_nvalues;
    owidth = x->x_width;
    probalizer_draw_erase(x, x->x_glist);
    if ( argc < 5 )
    {
        post( "probalizer : error in the number of arguments ( %d )", argc );
        return;
    }
    if ( argv[0].a_type != A_FLOAT || argv[1].a_type != A_FLOAT ||
            argv[2].a_type != A_FLOAT || argv[3].a_type != A_FLOAT ||
            argv[4].a_type != A_FLOAT )
    {
        post( "probalizer : wrong arguments" );
        return;
    }

    x->x_width = argv[0].a_w.w_float;
    if ( x->x_width <= 0 ) x->x_width = 100;
    x->x_height = argv[1].a_w.w_float;
    if ( x->x_height <= 0 ) x->x_height = 100;
    x->x_nvalues = argv[2].a_w.w_float;
    if ( x->x_nvalues < 1 ) x->x_nvalues = 1;
    x->x_noccurrences = argv[3].a_w.w_float;
    if ( x->x_noccurrences < 1 ) x->x_noccurrences = 1;
    x->x_save = argv[4].a_w.w_float;

    // re-allocate arrays of values
    post( "probalizer : re-allocate values" );
    if ( onvalues != x->x_nvalues )
    {
        t_int mvalues = ( onvalues > x->x_nvalues ) ? x->x_nvalues : onvalues;
        t_int *newprobs, *newovalues;

        newprobs = (t_int*) getbytes( x->x_nvalues*sizeof(t_int) );
        newovalues = (t_int*) getbytes( x->x_nvalues*sizeof(t_int) );
        for ( ei=0; ei<x->x_nvalues; ei++ )
        {
            *(newprobs+ei)=DEFAULT_PROB_VALUE;
        }
        memset( newovalues, 0x0, x->x_nvalues*sizeof(t_int) );
        for ( ei=0; ei<mvalues; ei++ )
        {
            *(newprobs+ei ) = *(x->x_probs+ei);
        }
        if ( x->x_probs )
            freebytes( x->x_probs, onvalues*sizeof(t_int) );
        x->x_probs = newprobs;
        if ( x->x_ovalues )
            freebytes( x->x_ovalues, onvalues*sizeof(t_int) );
        x->x_ovalues = newovalues;
    }

    probalizer_draw_new(x, x->x_glist);
    canvas_fixlinesfor( canvas, (t_text*)x );
}

static void probalizer_delete(t_gobj *z, t_glist *glist)
{
    canvas_deletelinesfor(glist, (t_text *)z);
}

static void probalizer_displace(t_gobj *z, t_glist *glist, int dx, int dy)
{
    t_probalizer *x = (t_probalizer *)z;
    int xold = text_xpix(&x->x_obj, glist);
    int yold = text_ypix(&x->x_obj, glist);

    // post( "probalizer_displace dx=%d dy=%d", dx, dy );

    x->x_obj.te_xpix += dx;
    x->x_obj.te_ypix += dy;
    if(xold != x->x_obj.te_xpix || yold != x->x_obj.te_ypix)
    {
        probalizer_draw_move(x, x->x_glist);
    }
}

static int probalizer_click(t_gobj *z, struct _glist *glist,
                            int xpix, int ypix, int shift, int alt, int dbl, int doit)
{
    t_probalizer* x = (t_probalizer *)z;
    t_canvas *canvas=glist_getcanvas(glist);
    t_int nevent, npix;

    if ( doit)
    {
        int nevent;
        int newvalue;

        nevent = ((float)( xpix - text_xpix(&x->x_obj, glist) ))/((float)x->x_width/(float)x->x_nvalues);
        newvalue = ((float)(text_ypix(&x->x_obj, glist) + x->x_height - ypix))/( (float)x->x_height/(float)x->x_noccurrences);

        // post( "changed %d to %d", nevent, newvalue );

        // consistency check
        if ( nevent < 0 )
        {
            post( "probalizer : warning : negative event : %d", nevent );
            nevent = 0;
        }
        if ( nevent > x->x_nvalues - 1 )
        {
            post( "probalizer : warning : event bigger than number of values: %d", nevent );
            nevent =  x->x_nvalues - 1 ;
        }
        if ( newvalue < 0 )
        {
            post( "probalizer : warning : negative value : %d", newvalue );
            newvalue = 0;
        }
        if ( newvalue > x->x_noccurrences )
        {
            post( "probalizer : warning : value bigger than max occurrences : %d", newvalue );
            newvalue =  x->x_noccurrences ;
        }

        *( x->x_probs + nevent ) = newvalue;
        // reset all counters
        memset( x->x_ovalues, 0x0, x->x_nvalues*sizeof(t_int) );
        probalizer_draw_update( x );
    }
    return (1);
}

static t_probalizer *probalizer_new(t_symbol *s, int argc, t_atom *argv)
{
    int bi, i, ei;
    t_probalizer *x;
    t_pd *x2;

    // post( "probalizer_new : create : %s argc =%d", s->s_name, argc );

    x = (t_probalizer *)pd_new(probalizer_class);
    // create float output
    outlet_new(&x->x_obj, &s_float);
    // create bang output
    x->x_endoutlet = outlet_new(&x->x_obj, &s_bang);

    // new probalizer created from the gui
    if ( argc != 0 )
    {
        if ( argc < 5 )
        {
            post( "probalizer : error in the number of arguments ( %d )", argc );
            return NULL;
        }
        if ( argv[0].a_type != A_FLOAT || argv[1].a_type != A_FLOAT ||
                argv[2].a_type != A_FLOAT || argv[3].a_type != A_FLOAT ||
                argv[4].a_type != A_FLOAT )
        {
            post( "probalizer : wrong arguments" );
            return NULL;
        }

        x->x_width = argv[0].a_w.w_float;
        x->x_height = argv[1].a_w.w_float;
        x->x_nvalues = argv[2].a_w.w_float;
        if ( x->x_nvalues < 1 ) x->x_nvalues = 1;
        x->x_noccurrences = argv[3].a_w.w_float;
        if ( x->x_noccurrences < 1 ) x->x_noccurrences = 1;
        x->x_save = argv[4].a_w.w_float;
    }
    else
    {
        x->x_width = DEFAULT_PROBALIZER_WIDTH;
        x->x_height = DEFAULT_PROBALIZER_HEIGHT;
        x->x_nvalues = DEFAULT_PROBALIZER_NBVALUES;
        x->x_noccurrences = DEFAULT_PROBALIZER_NBOCCURRENCES;
        x->x_save = 1;
    }
    // common fields for new and restored probalizers
    x->x_probs = (t_int*) getbytes( x->x_nvalues*sizeof(t_int) );
    if ( !x->x_probs )
    {
        error( "probalizer : could not allocate buffer" );
        return NULL;
    }
    x->x_ovalues = (t_int*) getbytes( x->x_nvalues*sizeof(t_int) );
    if ( !x->x_ovalues )
    {
        error( "probalizer : could not allocate buffer" );
        return NULL;
    }
    for ( ei=0; ei<x->x_nvalues; ei++ )
    {
        *(x->x_probs+ei)=DEFAULT_PROB_VALUE;
    }
    memset( x->x_ovalues, 0x0, x->x_nvalues*sizeof(t_int) );
    x->x_selected = 0;
    x->x_glist = (t_glist *) canvas_getcurrent();

    // post( "probalizer : argc : %d", argc );
    if ( ( argc != 0 ) && ( x->x_save ) )
    {
        int ai = 5;
        int si = 0;

        while ( ai < argc - 1 )
        {
            *(x->x_probs + (int)argv[ai].a_w.w_float) = (int)argv[ai+1].a_w.w_float;
            ai += 2;
        }
    }
    // post( "probalizer_new width: %d height : %d", x->x_width, x->x_height );

    return (x);
}

/* zero counters */
static void probalizer_zero(t_probalizer *x)
{
    t_int ei;

    for ( ei=0; ei<x->x_nvalues; ei++ )
    {
        *(x->x_probs+ei)=0;
    }
    memset( x->x_ovalues, 0x0, x->x_nvalues*sizeof(t_int) );
    probalizer_draw_update( x );
}

/* the core of it, output an integer value out of the serial */
static void probalizer_bang(t_probalizer *x)
{
    t_int ei, ci;
    t_int *candidates;
    t_int nbcandidates = 0;
    t_int nevalues=0;

    // calculate number of eligible values
    for ( ei=0; ei<x->x_nvalues; ei++ )
    {
        nevalues += ( *(x->x_probs+ei) - *(x->x_ovalues+ei) );
    }

    if ( nevalues == 0 )
    {
        error( "probalizer : probabilities are null, sorry" );
        return;
    }

    candidates = ( t_int* ) getbytes( nevalues*sizeof( t_int ) );
    if ( !candidates )
    {
        error( "probalizer : could not allocate buffer for internal computation" );
        return;
    }

    // select eligible values
    for ( ei=0; ei<x->x_nvalues; ei++ )
    {
        if( *(x->x_ovalues+ei) < *(x->x_probs+ei) )
        {
            for ( ci=0; ci<*(x->x_probs+ei) - *(x->x_ovalues+ei); ci++)
            {
                *(candidates+nbcandidates) = ei;
                nbcandidates++;
            }
        }
    }

    // output one of the values
    {
        int chosen = random() % nbcandidates;
        int volue = *(candidates+chosen);

        outlet_float( x->x_obj.ob_outlet, volue+1 );
        *(x->x_ovalues+volue) = *(x->x_ovalues+volue) + 1;
        // for ( ei=0; ei<nbcandidates; ei++ )
        // {
        //     post( "probalizer : output : %d", *(x->x_ovalues+*(candidates+ei)) );
        // }

        // test end of the serial
        if (nbcandidates == 1 )
        {
            // post( "probalizer : end of the serial" );
            outlet_bang( x->x_endoutlet );
            memset( x->x_ovalues, 0x0, x->x_nvalues*sizeof(t_int) );
        }
    }

    if ( candidates )
    {
        freebytes( candidates,  nevalues*sizeof( t_int ) );
    }
}

/* increase a probability if possible */
static void probalizer_float(t_probalizer *x, t_float fvalue)
{
    if ( ( (fvalue-1 ) < 0 ) || ( (fvalue-1 ) >= x->x_nvalues ) )
    {
        post( "probalizer : wrong float value : %d", (int)fvalue );
        return;
    }
    if ( ( *(x->x_probs+(int)(fvalue-1))+1 ) <= x->x_noccurrences )
    {
        *(x->x_probs+(int)(fvalue-1))+=1;
        probalizer_draw_update( x );
    }
}

/* reset output */
static void probalizer_reset(t_probalizer *x)
{
    memset( x->x_ovalues, 0x0, x->x_nvalues*sizeof(t_int) );
}

/* equi probability */
static void probalizer_equi(t_probalizer *x)
{
    t_int ei;

    for ( ei=0; ei<x->x_nvalues; ei++ )
    {
        *(x->x_probs+ei)=1;
    }
    memset( x->x_ovalues, 0x0, x->x_nvalues*sizeof(t_int) );
    probalizer_draw_update( x );
}

static void probalizer_free(t_probalizer *x)
{
    t_int ei;

    if ( x->x_probs )
    {
        freebytes( x->x_probs, x->x_nvalues*sizeof(int) );
    }
    if ( x->x_ovalues )
    {
        freebytes( x->x_ovalues, x->x_nvalues*sizeof(int) );
    }
}

void probalizer_setup(void)
{
    logpost(NULL, 4, "%s",  probalizer_version );
    probalizer_class = class_new(gensym("probalizer"), (t_newmethod)probalizer_new,
                                 (t_method)probalizer_free, sizeof(t_probalizer), 0, A_GIMME, 0);
    class_addmethod(probalizer_class, (t_method)probalizer_dialog, gensym("dialog"), A_GIMME, 0);
    class_addmethod(probalizer_class, (t_method)probalizer_float, &s_float, A_FLOAT, 0);
    class_addmethod(probalizer_class, (t_method)probalizer_bang, &s_bang, 0);
    class_addmethod(probalizer_class, (t_method)probalizer_zero, gensym("zero"), 0);
    class_addmethod(probalizer_class, (t_method)probalizer_equi, gensym("equi"), 0);
    class_addmethod(probalizer_class, (t_method)probalizer_reset, gensym("reset"), 0);
    probalizer_widgetbehavior.w_getrectfn =    probalizer_getrect;
    probalizer_widgetbehavior.w_displacefn =   probalizer_displace;
    probalizer_widgetbehavior.w_selectfn =     probalizer_select;
    probalizer_widgetbehavior.w_activatefn =   NULL;
    probalizer_widgetbehavior.w_deletefn =     probalizer_delete;
    probalizer_widgetbehavior.w_visfn =        probalizer_vis;
    probalizer_widgetbehavior.w_clickfn =      probalizer_click;

#if PD_MINOR_VERSION >= 37
    class_setpropertiesfn(probalizer_class, probalizer_properties);
    class_setsavefn(probalizer_class, probalizer_save);
#else
    probalizer_widgetbehavior.w_propertiesfn = probalizer_properties;
    probalizer_widgetbehavior.w_savefn =       probalizer_save;
#endif

    class_setwidget(probalizer_class, &probalizer_widgetbehavior);


    sys_vgui("eval [read [open {%s/%s.tcl}]]\n",
             probalizer_class->c_externdir->s_name,
             probalizer_class->c_name->s_name);
}