-
Notifications
You must be signed in to change notification settings - Fork 0
/
pbank.c
1368 lines (1093 loc) · 35.1 KB
/
pbank.c
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
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* pbank - zack settel 1994 */
// ported to PD - Zack Settel 2004 using the ISPW sources
// note that the generated message receivers are of the format: "name-n" and not "n-name"(the way it was on the ISPW)
/* features class-independent data structure see pbank.h */
// Source code for this object derived from the original sources in the IRCAM Jimmies release (1994), with the authorization of IRCAM. This object is part of the nSLAM release, developed by La SAT. nSLAM is also available on the IRCAM Forum site (http://forum.ircam.fr), as an incentive to PD users to join and contribute to Forum IRCAM"
// multi row interpolation method provided by [email protected]
/*
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; 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.
*/
// Zack Maintenance: march 06
// fixed recallf method: index bounded now.
// fixed pbank_saveto: fixed bug when full path is specified.
#include "m_pd.h"
#include <stdio.h>
#include <string.h>
#include "pbank.h"
#include "common.h"
#define VERSION "pbank/pd v1.11 z.s. 2006"
#define NIL 0L
#define MAX_COLUMNS 2048
#define DEFAULT_COLUMNS 10
#define DEFAULT_ROWS 32
#define MAX_ROWS 256 - EDBUFF
#define PBANK_ID_STRING "theFucKinGPbanKIdeNtifacATioNStrinGGGG"
#define EDBUFF 1 /* edbuffer at rows + 1 */
#define DIRTFLAG 1 /* dirty flag kept at rows + 2 */
#define GETROW(X,R)(((X)->p_data[(R)]))
#define GET_EDBUFF(X)(((X)->p_data[((X)->p_rows)]))
#define CR 13
#define TAB 9
typedef struct pbank
{
t_object p_ob;
t_atom **p_data; /* param matrix : data[PATCH_COUNT] X *data+PARAMCOUNT */
t_symbol **p_receives; /* used for back door messaging */
t_symbol *p_name; /* pbank data/file name <optional> */
t_atom **p_dirty; /* points to extra cell in matrix used for dirty flag */
t_symbol *p_vol; /* default volume */
int p_curpatch;
int p_columns;
int p_rows;
t_canvas *x_canvas;
} t_pbank;
t_atom pbank_outlist[3]; /* used by list method for output */
void *pbank_new(t_symbol *s, int argc, t_atom *argv);
void pbank_bang(t_pbank *x);
void pbank_dispose(t_pbank *x);
void pbank_list(t_pbank *x, t_symbol *s, int argc, t_atom *argv);
void pbank_recall(t_pbank *x,t_float row);
void pbank_recallf(t_pbank *x,t_float row);
void pbank_dump(t_pbank *x, t_symbol *s, int argc, t_atom *argv);
void pbank_store(t_pbank *x,t_float row);
void pbank_set(t_pbank *x, t_symbol *s, int argc, t_atom *argv);
void pbank_put(t_pbank *x, t_symbol *s, int argc, t_atom *argv);
void pbank_interp(t_pbank *x, t_symbol *s, int argc, t_atom *argv);
void pbank_write(t_pbank *x, t_symbol *name);
void pbank_tobinbuf(t_pbank *x,void *b);
void pbank_read(t_pbank *x, t_symbol *fname);
void pbank_saveto(t_pbank *x,char *fn);
void pbank_db(t_pbank *x,t_float c,t_float r);
void pbank_setup(void);
int pbank_fromtext(t_pbank *x,void *b);
t_atom **pbank_getmem(t_symbol *name,int columns,int rows);
t_symbol *z_list, *z_float, *z_symbol, *z_receive; // *z_int,
#define EMPTYSTRING ""
/* class variables */
t_shared *pbank_banks = NIL; /* linked list of shared data-matrixs */
t_symbol *pbank_ID;
t_atom *pbank_clipboard; /* NOT IMPLEMENTED points to edbuff of "copied" pbank */
/* clipboard needed ???? */
/* ************************************************************ */
void pbank_db(t_pbank *x, t_float c_float, t_float r_float)
{
t_atom *a;
long c = (long) c_float;
long r = (long) r_float;
*x->p_dirty = (c) ? (t_atom *)1:NIL;
post("p_dirty at %lx",x->p_dirty);
post("plus %ld addr = %lx",r,x->p_data+r);
a = GETROW(x,r);
}
void pbank_bang(t_pbank *x)
{
t_shared *piss = NIL;
post(":DIRTY FLAS = %ld at %lx",*x->p_dirty,x->p_dirty);
return;
piss = pbank_banks; /* maintain list of instance memories */
while(piss)
{
post("->%s at %lx",piss->s_sym->s_name,piss);
post(" next->%lx",piss->s_next);
piss = piss->s_next;
}
}
/* write item to matrix at given column,row address */
/* message: column row thing1......thingN */
void pbank_set(t_pbank *x, t_symbol *s, int ac, t_atom *argv)
{
t_atom *shit;
int column,row;
if (ac < 3)
{
post("ac=%d",ac);
pd_error(x,"pbank_set: takes at least 3 arguments: column row item(s)");
return;
}
if ((argv)->a_type != A_FLOAT || (argv+1)->a_type != A_FLOAT)
{
pd_error(x,"pbank_set: first arguments must of type float (columnNo. or rowNo.)");
return;
}
if ((column = (int)(argv)->a_w.w_float) < 0) column = 0;
else if (column >= x->p_columns) column = x->p_columns-1;
if ((row = (int)(argv+1)->a_w.w_float) < 0) row = 0;
else if (row >= x->p_rows) row = x->p_rows-1;
shit = GETROW(x,row);
ac -=2; /* get data */
argv +=2;
while (ac-- && (column < x->p_columns))
{
if ((argv)->a_type != A_FLOAT && (argv)->a_type != A_SYMBOL && (argv)->a_type != A_FLOAT)
{
pd_error(x,"pbank_set: argument no %d must be afloat or symbol",ac+1);
return;
}
*(shit+column++) = *argv++;
}
*x->p_dirty = (t_atom *)1; /* set dirty flag */
}
/* same as set but writes to the edirt buffer: 'put' column thing1......thingN */
void pbank_put(t_pbank *x, t_symbol *s, int ac, t_atom *argv)
{
t_atom *shit;
int column;
if (ac < 2)
{
post("ac=%d",ac);
pd_error(x,"pbank_put: takes at least 2 arguments: column item(s)");
return;
}
if ((argv)->a_type != A_FLOAT)
{
pd_error(x,"pbank_put: first argument must a number (columnNo.)");
return;
}
if ((column = (int)(argv)->a_w.w_float) < 0) column = 0;
else if (column >= x->p_columns) column = x->p_columns-1;
shit = GET_EDBUFF(x);
ac --; /* get data */
argv ++;
while (ac-- && (column < x->p_columns))
{
if ((argv)->a_type != A_FLOAT && (argv)->a_type != A_SYMBOL && (argv)->a_type != A_FLOAT)
{
pd_error(x,"pbank_put: argument no %d must be a float or symbol",ac);
return;
}
*(shit+column++) = *argv++;
}
}
void pbank_recall(t_pbank *x, t_float row_float) /* dumps (outputs) and copies row to edbuffer */
{
int z,ac;
t_atom *av,*ebuff;
long row = (long) row_float;
float indexf = (float) row_float;
if (row < 0) row = 0L;
else if (row > x->p_rows-1) row = (long)x->p_rows-1;
if (indexf < 0) indexf = 0L;
else if (indexf > x->p_rows-1) indexf = (float)x->p_rows-1;
if (indexf - row)
{
pbank_recallf(x, (t_float) indexf);
return;
}
av = GETROW(x,row);
ebuff = GET_EDBUFF(x);
if (x->p_receives) /* back-door sending??? */
{
t_symbol *type;
ebuff += x->p_columns-1;
av += x->p_columns-1;
for (z=x->p_columns-1;z>-1;z--,ebuff--,av--)
{
*ebuff = *av;
if (x->p_receives[z]->s_thing)
{
ac=1;
if (ebuff->a_type == A_FLOAT) type = z_float;
// else if (ebuff->a_type == A_LONG) type = z_int;
else if (ebuff->a_type == A_SYMBOL) type = z_symbol;
else
{
pd_error(x,"pbank_list: 3rd element must be a float or sym.");
goto exit;
}
typedmess(x->p_receives[z]->s_thing, type,ac, ebuff);
}
}
}
else /* otherwise use outlet */
for (z=0;z<x->p_columns;z++,av++,ebuff++)
{
*ebuff = *av;
pbank_outlist->a_w.w_float = (float)z;
(pbank_outlist+1)->a_type = ebuff->a_type;
if (ebuff->a_type == A_SYMBOL)
{
(pbank_outlist+1)->a_w.w_symbol = z_symbol;
(pbank_outlist+2)->a_type = A_SYMBOL;
(pbank_outlist+2)->a_w = ebuff->a_w;
outlet_list(x->p_ob.ob_outlet,0L,3, pbank_outlist);
}
else
{
(pbank_outlist+1)->a_w = ebuff->a_w;
outlet_list(x->p_ob.ob_outlet,0L,2, pbank_outlist);
}
}
exit:
return;
}
void pbank_recallf(t_pbank *x, t_float row_float) /* interpol, dumps (outputs) and copies row to edbuffer */
{
int u, v, z, ac;
t_atom *av,*avplus1, *ebuff;
// no need to range check, since that's done by caller method
// float indexf = (float) row_float;
float interpfac;
u=(int)row_float;
interpfac = (float) (row_float - u);
av = GETROW(x,u);
av += x->p_columns-1;
avplus1 = GETROW(x,u+1);
avplus1 += x->p_columns-1;
ebuff = GET_EDBUFF(x);
ebuff += x->p_columns-1;
// for (v=x->p_columns-1;v>-1;v--,ebuff--)
// {
// SETFLOAT(ebuff, 0); //clear edit buffer
//}
ebuff = GET_EDBUFF(x);
ebuff += x->p_columns-1;
for (v=x->p_columns-1;v>-1;v--,ebuff--,av--,avplus1--)
{
if (ebuff->a_type == A_FLOAT && av->a_type == A_FLOAT && avplus1->a_type == A_FLOAT)
SETFLOAT(ebuff, (t_float)(av->a_w.w_float * (1 - interpfac) + avplus1->a_w.w_float * interpfac));
else if (ebuff->a_type == A_SYMBOL)
{
if (interpfac <.5) SETSYMBOL(ebuff, av->a_w.w_symbol);
else SETSYMBOL(ebuff, avplus1->a_w.w_symbol);
}
else pd_error(x,"pbank: bug found in recallf method");
}
#ifdef why_is_this_here_sheefa
if ((int)indexf!=indexf)
{
u++;
av = GETROW(x,u);
av += x->p_columns-1;
ebuff = GET_EDBUFF(x);
ebuff += x->p_columns-1;
for (v=x->p_columns-1;v>-1;v--,ebuff--,av--)
{
if (ebuff->a_type == A_FLOAT && av->a_type == A_FLOAT)
SETFLOAT(ebuff, ebuff->a_w.w_float + av->a_w.w_float * (indexf - u +1)); else if (ebuff->a_type == A_SYMBOL)
SETSYMBOL(ebuff, av->a_w.w_symbol);
else pd_error(x,"pbank: bug found in recallf method");
}
}
#endif
if (x->p_receives) /* back-door sending??? */
{
t_symbol *type;
ebuff = GET_EDBUFF(x);
ebuff += x->p_columns-1;
for (z=x->p_columns-1;z>-1;z--,ebuff--,av--)
{
if (x->p_receives[z]->s_thing)
{
ac=1;
if (ebuff->a_type == A_FLOAT) type = z_float;
// else if (ebuff->a_type == A_LONG) type = z_int;
else
if (ebuff->a_type == A_SYMBOL) type = z_symbol;
else
{
pd_error(x,"pbank_list: 3rd element must be a float or sym.");
goto exit;
}
typedmess(x->p_receives[z]->s_thing, type,ac, ebuff);
}
}
}
else /* otherwise use outlet */
{
ebuff = GET_EDBUFF(x);
for (z=0;z<x->p_columns;z++,ebuff++)
{
pbank_outlist->a_w.w_float = (float)z;
(pbank_outlist+1)->a_type = ebuff->a_type;
if (ebuff->a_type == A_SYMBOL)
{
(pbank_outlist+1)->a_w.w_symbol = z_symbol;
(pbank_outlist+2)->a_type = A_SYMBOL;
(pbank_outlist+2)->a_w = ebuff->a_w;
outlet_list(x->p_ob.ob_outlet,0L,3, pbank_outlist);
}
else
{
(pbank_outlist+1)->a_w = ebuff->a_w;
outlet_list(x->p_ob.ob_outlet,0L,2, pbank_outlist);
}
}
}
exit:
return;
}
void pbank_interp(t_pbank *x, t_symbol *s, int argc, t_atom *argv)
/* interpol, dumps (outputs) and copies row to edbuffer */
{
int u, v, z, ac;
t_atom *av,*ebuff;
ebuff = GET_EDBUFF(x);
ebuff += x->p_columns-1;
for (v=x->p_columns-1;v>-1;v--,ebuff--)
{
SETFLOAT(ebuff, 0); //clear edit buffer
}
for (u=argc-1;u>-1;u--)
{
av = GETROW(x,u);
av += x->p_columns-1;
ebuff = GET_EDBUFF(x);
ebuff += x->p_columns-1;
for (v=x->p_columns-1;v>-1;v--,ebuff--,av--)
{
if (ebuff->a_type == A_FLOAT && av->a_type == A_FLOAT)
SETFLOAT(ebuff, ebuff->a_w.w_float + av->a_w.w_float * atom_getfloatarg(u, argc, argv) ); //add value of each columns and row
else
SETSYMBOL(ebuff, gensym("null"));
}
}
if (x->p_receives) /* back-door sending??? */
{
t_symbol *type;
ebuff = GET_EDBUFF(x);
ebuff += x->p_columns-1;
for (z=x->p_columns-1;z>-1;z--,ebuff--,av--)
{
if (x->p_receives[z]->s_thing)
{
ac=1;
if (ebuff->a_type == A_FLOAT) type = z_float;
// else if (ebuff->a_type == A_LONG) type = z_int;
else
if (ebuff->a_type == A_SYMBOL) type = z_symbol;
else
{
pd_error(x,"pbank_list: 3rd element must be a float or sym.");
goto exit;
}
typedmess(x->p_receives[z]->s_thing, type,ac, ebuff);
}
}
}
else /* otherwise use outlet */
{
ebuff = GET_EDBUFF(x);
for (z=0;z<x->p_columns;z++,ebuff++)
{
pbank_outlist->a_w.w_float = (float)z;
(pbank_outlist+1)->a_type = ebuff->a_type;
if (ebuff->a_type == A_SYMBOL)
{
(pbank_outlist+1)->a_w.w_symbol = z_symbol;
(pbank_outlist+2)->a_type = A_SYMBOL;
(pbank_outlist+2)->a_w = ebuff->a_w;
outlet_list(x->p_ob.ob_outlet,0L,3, pbank_outlist);
}
else
{
(pbank_outlist+1)->a_w = ebuff->a_w;
outlet_list(x->p_ob.ob_outlet,0L,2, pbank_outlist);
}
}
}
exit:
return;
}
// 'dump' dumps edit buff, 'dump n' dumps memory n, 'dump n l' dumps row n as one single list
void pbank_dump(t_pbank *x, t_symbol *s, int argc, t_atom *argv) /* dumps (outputs) ediuffer or row */
{
int z,ac, row;
t_atom *ebuff;
if (argc==0)
{
ebuff = GET_EDBUFF(x);
if (x->p_receives) /* back-door sending??? */
{
t_symbol *type;
ebuff += x->p_columns-1;
for (z=x->p_columns-1;z>-1;z--,ebuff--)
{
if (x->p_receives[z]->s_thing)
{
ac=1;
if (ebuff->a_type == A_FLOAT) type = z_float;
// else if (ebuff->a_type == A_LONG) type = z_int;
else if (ebuff->a_type == A_SYMBOL) type = z_symbol;
else
{
pd_error(x,"pbank_list: 3rd element must be a float or sym.");
goto exit;
}
typedmess(x->p_receives[z]->s_thing, type,ac, ebuff);
}
}
}
else /* otherwise use outlet */
for (z=0;z<x->p_columns;z++,ebuff++)
{
pbank_outlist->a_w.w_float = (float)z;
(pbank_outlist+1)->a_type = ebuff->a_type;
if (ebuff->a_type == A_SYMBOL)
{
(pbank_outlist+1)->a_w.w_symbol = z_symbol;
(pbank_outlist+2)->a_type = A_SYMBOL;
(pbank_outlist+2)->a_w = ebuff->a_w;
outlet_list(x->p_ob.ob_outlet,0L,3, pbank_outlist);
}
else
{
(pbank_outlist+1)->a_w = ebuff->a_w;
outlet_list(x->p_ob.ob_outlet,0L,2, pbank_outlist);
}
}
}
else
{
if ((row = (int)(argv)->a_w.w_float) < 0) row = 0;
else if (row >= x->p_rows) row = x->p_rows-1;
ebuff = GETROW(x, row);
if (x->p_receives) /* back-door sending??? */
{
t_symbol *type;
ebuff += x->p_columns-1;
for (z=x->p_columns-1;z>-1;z--,ebuff--)
{
if (x->p_receives[z]->s_thing)
{
ac=1;
if (ebuff->a_type == A_FLOAT) type = z_float;
// else if (ebuff->a_type == A_LONG) type = z_int;
else if (ebuff->a_type == A_SYMBOL) type = z_symbol;
else
{
pd_error(x,"pbank_list: 3rd element must be a float or sym.");
goto exit;
}
typedmess(x->p_receives[z]->s_thing, type,ac, ebuff);
}
}
}
else /* otherwise use outlet */
{
if(argc>1) // dump as single list
outlet_list(x->p_ob.ob_outlet,0L,x->p_columns, ebuff);
else
{
for (z=0;z<x->p_columns;z++,ebuff++)
{
pbank_outlist->a_w.w_float = (float)z;
(pbank_outlist+1)->a_type = ebuff->a_type;
if (ebuff->a_type == A_SYMBOL)
{
(pbank_outlist+1)->a_w.w_symbol = z_symbol;
(pbank_outlist+2)->a_type = A_SYMBOL;
(pbank_outlist+2)->a_w = ebuff->a_w;
outlet_list(x->p_ob.ob_outlet,0L,3, pbank_outlist);
}
else
{
(pbank_outlist+1)->a_w = ebuff->a_w;
outlet_list(x->p_ob.ob_outlet,0L,2, pbank_outlist);
}
}
}
}
}
exit:
return;
}
void pbank_store(t_pbank *x, t_float row_float) /* copies edbuffer to row */
{
t_atom *av,*ebuff;
int z;
long row = (long) row_float;
if (row < 0) row = 0L;
else if (row >= x->p_rows) row = (long)x->p_rows-1;
av = GETROW(x,row);
ebuff = GET_EDBUFF(x);
for (z=0;z<x->p_columns;z++,av++,ebuff++)
{
*av = *ebuff;
}
*x->p_dirty = (t_atom *)1; /* set dirty flag */
}
/* eg 'list COLUMN ROW <optional> VALUE' - argc=2 is read, arg=3 is write */
void pbank_list(t_pbank *x, t_symbol *s, int argc, t_atom *argv)
{
t_atom *av;
int ac,column,row;
if ((argc != 2) && (argc != 3))
{
pd_error(x,"pbank_list: less than 2, or more than 3 elements in list");
goto exit;
}
if (((argv)->a_type != A_FLOAT) || ((argv+1)->a_type != A_FLOAT))
{
pd_error(x,"pbank_list: first two elements must be numbers");
goto exit;
}
if ((column = (int)(argv)->a_w.w_float) < 0) column = 0;
else if (column >= x->p_columns) column = x->p_columns-1;
if ((row = (int)(argv+1)->a_w.w_float) < -1) row = -1;
else if (row >= x->p_rows) row = x->p_rows-1;
if (row == -1)
{
av = GET_EDBUFF(x);
}
else
{
av = GETROW(x,row);
}
av += column;
ac = 1;
if (argc == 2) /* read */
{
if (x->p_receives)
{
if (x->p_receives[column]->s_thing)
{
t_symbol *type;
if (av->a_type == A_FLOAT) type = z_float;
// else if (av->a_type == A_LONG) type = z_int;
else if (av->a_type == A_SYMBOL) type = z_symbol;
else
{
pd_error(x,"pbank_list: 3rd element must be a float or sym.");
goto exit;
}
typedmess(x->p_receives[column]->s_thing, type,ac, av);
}
}
else
{
pbank_outlist->a_w.w_float = (t_float)column;
(pbank_outlist+1)->a_type = av->a_type;
if (av->a_type == A_SYMBOL)
{
(pbank_outlist+1)->a_w.w_symbol = z_symbol;
(pbank_outlist+2)->a_type = A_SYMBOL;
(pbank_outlist+2)->a_w = av->a_w;
outlet_list(x->p_ob.ob_outlet,0L,3, pbank_outlist);
}
else
{
(pbank_outlist+1)->a_w = av->a_w;
outlet_list(x->p_ob.ob_outlet,0L,2, pbank_outlist);
}
}
}
else /* write */
{
switch ((argv+2)->a_type)
{
case A_FLOAT:
SETFLOAT(av,(argv+2)->a_w.w_float);
break;
/* case A_LONG:
SETLONG(av,(argv+2)->a_w.w_long);
break;
*/
case A_SYMBOL:
SETSYMBOL(av,(argv+2)->a_w.w_symbol);
break;
default:
pd_error(x,"pbank_list: 3rd element must be a float or sym.");
goto exit;
}
*x->p_dirty = (t_atom *)1; /* set dirty flag */
}
exit:
return;
}
int pbank_fromtext(t_pbank *x,void *b)
{
t_atom *av;
int z,atype;
int columnpos = 0,columns = 0;
int rowpos = 0, rows = 0;
long items = 0;
int argc = binbuf_getnatom(b),count = 0;
t_atom *ap = binbuf_getvec(b);
/* get pbank symbol */
if (ap->a_type != A_SYMBOL || ap->a_w.w_symbol != gensym("pbank"))
{
pd_error(x,"pbank_fromtext: bad file format: item one must be the symbol 'pbank");
goto error;
}
for (z=0;z<2;z++)
{
ap++, count++;
// binbuf_getatom(b,&p1,&p2,&at); /* get columns and rows */
if (ap->a_type != A_FLOAT)
{
pd_error(x,"pbank_fromtext: bad file format: item two and three must be COLUMNcount and ROWcount");
goto error;
}
if (z==0) columns = (int)ap->a_w.w_float;
else rows = (int)ap->a_w.w_float;
}
if (columns < 1 || rows < 1)
{
pd_error(x,"pbank_fromtext: bad value(s) for item two and/or three (COLUMNcount and/or ROWcount)");
goto error;
}
if (columns != x->p_columns)
{
pd_error(x,"pbank_fromtext: bad file format: wrong no. of columns (%d) in file", columns);
goto error;
}
/* get comma */
ap++, count++;
if (ap->a_type != A_COMMA)
{
pd_error(x,"pbank_fromtext: bad file format: comma expected after third item");
goto error;
}
av = GETROW(x,rowpos);
// post("pbank_fromtext: columns %d rows %d",columns,rows);
while (count < argc)
{
if (rowpos > x->p_rows) // safety check- remove later
{
bug("pbank_fromtext: rowpos=%d x->p_rows=%d items=%d argc=%d",rowpos,x->p_rows,count,argc);
pd_error(x,"pbank_fromtext: rowpos greater than x->p_rows: aborting");
goto error;
}
ap++, count++; // get next atom
atype = ap->a_type;
if (atype == A_NULL)
{
if (count == argc) goto done;
else
{
pd_error(x,"pbank_fromtext: unexpected A_NULL type read at position %d: aborting", count);
goto error;
}
}
if (columnpos >= x->p_columns) goto skipit;
if (atype==A_FLOAT || atype==A_SYMBOL)
{
av[columnpos] = *ap; /* write atom to matrix */
items++;
}
else if (atype==A_COMMA) /* new line */
{
if (columnpos)
post("pbank_fromtext: warning: unexpected comma found in column %d row %d", columnpos,rowpos);
goto skipit;
}
else
{
// post("ATYPE = %d", atype);
post("pbank_fromtext: warning: strange token found in at column %d, row %d of file", columnpos,rowpos);
goto ignore;
}
skipit: /* ignore any data that lies outside of X's dimensions */
if (atype!=A_COMMA)
columnpos++;
if (columnpos == columns)
{
columnpos = 0;
rowpos++;
av = GETROW(x,rowpos);
}
ignore:;
}
done:
return(items);
error:
return(0);
}
void pbank_fromfile(t_pbank *x,char *name, int type, int silentFlag) // filename with or without path
{
void *b;
int errorf, itemcount;
char nilbuf[1];
nilbuf[0] = 0;
b = binbuf_new();
// errorf = binbuf_read(b, name, vol, type);
if (*name != '/' && *name != '~') // file name is not an absolute path
errorf = binbuf_read(b, name, canvas_getdir(x->x_canvas)->s_name, type);
else
errorf = binbuf_read(b, name, nilbuf, type);
if (errorf)
{
if (!silentFlag) post("warning: pbank_fromfile:%s not found",name); // not error, since filename may be used only as symbol for pbanks sharing memory
}
else
{
itemcount = pbank_fromtext(x,b);
post("pbank_fromfile: %d items read from file %s",itemcount, name);
*x->p_dirty = NIL;
}
binbuf_free(b);
}
#define TEXT 0
#define BINARY 1
void pbank_read(t_pbank *x, t_symbol *fname)
{
/* if (!open_dialog(name, &vol, &type, types, 1)) */
pbank_fromfile(x,fname->s_name,TEXT,0);
}
/* format for file <float type> <symbol *pname> <float p1 p2 p3 p4..p10> A_COMMA.... */
void pbank_tobinbuf(t_pbank *x,void *b)
{
t_atom at,*av;
t_symbol *s;
char shit[256];
int z,i;
sprintf(shit,"\n");
s = gensym("");
SETSYMBOL(&at,gensym("pbank")); /* write class name */
binbuf_add(b,1,&at);
SETFLOAT(&at,(t_float) x->p_columns); /* write column count */
binbuf_add(b,1,&at);
SETFLOAT(&at,(t_float) x->p_rows); /* write row count */
binbuf_add(b,1,&at);
SETCOMMA(&at); /* write comma */
binbuf_add(b,1,&at);
SETSYMBOL(&at,gensym(shit)); /* write CR */
binbuf_add(b,1,&at);
for (z=0;z<x->p_rows;z++) /* write params to binbuf */
{
av = GETROW(x,z);
for (i=0;i<x->p_columns;i++,av++)
{
/* if (av->a_type == A_FLOAT)
{
post("A_FLOAT"); postfloat(av->a_w.w_float);
}
// else if (av->a_type == A_LONG) post("A_LONG %ld", av->a_w.w_long);
else if (av->a_type == A_SYMBOL) post("A_SYMBOL %s", av->a_w.w_symbol->s_name);
*/
binbuf_add(b,1,av); /* write atom */
}
SETCOMMA(&at); /* rows seperated by comma */
binbuf_add(b,1,&at);
SETSYMBOL(&at,gensym(shit)); /* write CR */
binbuf_add(b,1,&at);
}
}
void pbank_write(t_pbank *x, t_symbol *name)
{
char fn[256];
sprintf(fn,"%s", name->s_name);
/* def volume shit here */
pbank_saveto(x,fn);
}
void pbank_saveto(t_pbank *x,char *fn)
{
int errorf = 0;
char nilbuf[1];
void *b = binbuf_new();
pbank_tobinbuf(x,b);
nilbuf[0]= 0; // nilbuf[1]= 0; bug fixed: zk-03/06
if (*fn != '/' && *fn != '~') // file name is not an absolute path
errorf = binbuf_write(b, fn, canvas_getdir(x->x_canvas)->s_name, TEXT); /* save as TEXT */
else
errorf = binbuf_write(b, fn, nilbuf, TEXT); /* save as TEXT */
binbuf_free(b);
if (errorf)
pd_error(x,"pbank_saveto: couldn't write %s", fn);
else
{
*x->p_dirty = NIL;
post("pbank_write:wrote file %s",fn);
}
}