aboutsummaryrefslogtreecommitdiff
path: root/src/opcodes.cpp
blob: a480b4e2ca836b52e0e5fd1d437652b4dc48bf4f (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
#include <plugin.h>
#include <stdlib.h>
#include <time.h>
#include <cassert>
#include <math.h>  


// incorporates samplebummer

// inputs: kamp, kdensity, krepeattrig, kbufread, kbufmode(0,1,2) [ibufsize]
struct bitchrandom : csnd::Plugin<1, 6> {
    static constexpr char const *otypes = "a";
    static constexpr char const *itypes = "kkkkkj";
    MYFLT* buffer;
    int bufferSize;
    int writePos;
    MYFLT last;
    
    int init() {
        bufferSize = (inargs[3] > 0 && inargs[3] < 441000) ? inargs[5] : 4096;
        srand(time(NULL));
        buffer = (MYFLT*) csound->malloc(sizeof(MYFLT) * bufferSize);
        writePos = 0;
        csound->plugin_deinit(this);
        return OK;
    }
         
    int deinit() {
        csound->free(buffer);
        return OK;
    }
    
    int aperf() {
        MYFLT aout;
        MYFLT doPlay;
        int boffs;
        

        for (int i = 0; i < nsmps; i++) {
            aout = 0;
            
            doPlay = inargs[1] * ((MYFLT)rand() / RAND_MAX);
            
            if (doPlay > 0.5) {
                aout = ((MYFLT)rand() / RAND_MAX) * inargs[0];
            }
            
            
            buffer[writePos] = aout;
            if (writePos + 1 < bufferSize) {
                writePos++;
            } else {
                writePos = 0;
            }
            if (inargs[3] <= 0) {
                boffs = 0;
            } else if (inargs[3] >= 1) {
                boffs = bufferSize-1;
            } else {
                boffs = inargs[3] * bufferSize;
            }
          
            
           
            if (inargs[4] == FL(1)) {
                aout -= buffer[boffs];
            } else if (inargs[4] == FL(2)) {
                aout += buffer[boffs];
            }

            if (inargs[2] >= 1) { 
                aout = last;
            } else {
                last = aout;
            }
            outargs(0)[i] = aout;
        }
        return OK;
    }
};

struct bitchglitch : csnd::Plugin<1, 3> {
    static constexpr char const *otypes = "a";
    static constexpr char const *itypes = "akk";
    MYFLT* buffer;
    int buffer_size;
    int read_position;
    int write_position;
    int max_read_size;

    int init() {
        MYFLT max_seconds = 0.2;
        buffer_size = (int) (max_seconds * csound->sr());
        buffer = (MYFLT*) csound->malloc(sizeof(MYFLT) * buffer_size);
        read_position = 0;
        write_position = 0;
        max_read_size = buffer_size;
        return OK;
    }

    int aperf() {
        bool writing = *(inargs(1)) <= 0;
        
        if (!writing) {
            MYFLT relative_max_size = *(inargs(2));
            if (relative_max_size > 1) {
                relative_max_size = 1;
            }
            max_read_size = (int) (relative_max_size * buffer_size);
            if (max_read_size < 4) {
                max_read_size = 4;
            }
        }
        
        for (int i = 0; i < nsmps; i++) {
            if (writing) {
                outargs(0)[i] = inargs(0)[i];
                if (write_position >= buffer_size) {
                    write_position = 0;
                }
                buffer[write_position] = inargs(0)[i];
                write_position++;
            } else {
                if (read_position >= max_read_size) {
                    read_position = 0;
                }
                
                outargs(0)[i] = buffer[read_position];
                read_position++;
            }
        }
        return OK;
    }
};

// aout bitchwreck ain ibuffersize ktrig
struct bitchwreck : csnd::Plugin<1, 3> {
    static constexpr char const *otypes = "a";
    static constexpr char const *itypes = "aik";
    csnd::AuxMem<MYFLT> buffer1;
    csnd::AuxMem<MYFLT> buffer2;
    int changed;
    int read_position;
    int write_position;
    int buffer_read;
    int buffer_write;
    
    int init() {
        buffer1.allocate(csound, csound->sr() * inargs[1]);
        buffer2.allocate(csound, csound->sr() * inargs[1]);
        buffer_read = 0;
        buffer_write = 1;
        changed = 1;
        write_position = 0;
        read_position = 0;
        reset();
        return OK;
    }
    
    void reset() {
        read_position = buffer1.len() - 1;
    }
    
    int aperf() {
        int i = 0;
        if (UNLIKELY(inargs[2] >= 1)) {
            if (changed) {
                reset();
                changed = 0;
            }
            while (i < nsmps) {
                if (buffer_read == 0) {
                    outargs(0)[i] = buffer1[read_position];
                } else {
                    outargs(0)[i] = buffer2[read_position];
                }
                if (read_position == 0) {
                    reset();
                } else {
                    read_position--;
                }
                i++;
            }        
        } else {
            changed = 1;
            while (i < nsmps) {
                if (buffer_write == 0) {
                    buffer1[write_position] = inargs(0)[i];
                } else {
                    buffer2[write_position] = inargs(0)[i];
                }
                
                if (write_position < buffer1.len()) {
                    write_position++;
                } else {
                    write_position = 0;
                    buffer_write = 1 - buffer_write;
                    buffer_read = 1 - buffer_read;
                }
                outargs(0)[i] = inargs(0)[i];
                i++;
            }
        }
        return OK;
    }
};



struct bitchpan : csnd::Plugin<2, 2> {
    static constexpr char const *otypes = "aa";
    static constexpr char const *itypes = "aP";
    int position;
    int panned;

    int init() {
        position = 0;
        panned = 0;
        return OK;
    }

    int aperf() {
        
        for (int i = 0; i < nsmps; i++) {
            
            if (panned >= inargs[1]) {
                panned = 0;
                position = 1 - position;
            } else {
                panned ++;
            }
                 
            if (position == 0) {
                outargs(0)[i] = inargs(0)[i];
                outargs(1)[i] = 0;
            } else {
                outargs(0)[i] = 0;
                outargs(1)[i] = inargs(0)[i];
            }
        }
        return OK;
    }
};




// TODO make it actually do something interesting
struct bitchbuffer1 : csnd::Plugin<1, 4> {
    static constexpr char const *otypes = "a";
    static constexpr char const *itypes = "aikk";

    MYFLT* bufferz;
    
    csnd::AuxMem<MYFLT> buffer1;
    int read_position;
    int write_position;
    int buffer_size;
     

    int init() {
        read_position = 0;
        write_position = 0;
        buffer_size = (int) inargs[1];

        
        if (buffer_size < 128) {
            //csound->message("Buffer minimum is 128"); // wtf?? causes fuck out.
            buffer_size = 128;
        }
        buffer1.allocate(csound, inargs[1]);
        bufferz = (MYFLT*) csound->malloc(sizeof (MYFLT) * buffer_size);
        
        return OK;
    }

    int aperf() {
        for (int i = 0; i < nsmps; i++) {
            if (UNLIKELY(write_position >= buffer_size)) {
                write_position = 0;
            }

            bufferz[write_position] = inargs(0)[i];
            write_position++;

            if (UNLIKELY(read_position >= buffer_size)) {
                read_position = 0;
            }

            if (UNLIKELY(read_position <= 0)) {
                read_position = buffer_size - 1;	
            }

            
        }
        return OK;
    }
};


struct bitchaverage : csnd::Plugin<1, 3> {
	static constexpr char const *otypes = "a";
	static constexpr char const *itypes = "aPj";
	MYFLT* buffer;
	MYFLT lastval;
	int write_position;
	int buffer_size;

	int init() {
		write_position = 0;
		//buffer_size = 150; //(int) csound->get_csound()->GetKsmps();
        buffer_size = (inargs[2] == FL(-1)) ? (int) ksmps() : inargs[2];
		lastval = -1;
		buffer = (MYFLT*) csound->malloc(sizeof(MYFLT) * buffer_size);
		return OK;
	}
	
    MYFLT get_buffersize() {
        MYFLT buffer_ratio = inargs[1];
        if (buffer_ratio > 1) {
            buffer_ratio = 1;
        } else if (buffer_ratio <= 0) {
            buffer_ratio = 0.0001;
        }
        return buffer_size * buffer_ratio;
    }
    
	MYFLT get_average() {
		MYFLT total;
        
        int len = get_buffersize();
		for (int i = 0; i < len; i++) {
			total += buffer[i];
		}
		return total / len;
	}

    int aperf() { 
        int len = get_buffersize();
        int i;
		for (i = 0; i < nsmps; i++) {
            if (UNLIKELY(write_position >= len)) {
                write_position = 0;
            }
			buffer[write_position] = inargs(0)[i];
            
			write_position ++;
            
		}

		MYFLT average = get_average();
		if (lastval == -1) {
			for (i = 0; i < nsmps; i++) {
				outargs(0)[i] = average;
			}
		} else {
			MYFLT increment;
			if (average > lastval) {
				increment = (average - lastval)/nsmps;
			} else {
				increment = (lastval - average)/nsmps;
			}
			
			for (i = 0; i < nsmps; i++) {
				outargs(0)[i] = lastval+(increment*(i+1));
			}
		}
		
		lastval = average;
		return OK;
	}

};


struct bitchpeaker : csnd::Plugin<1, 4> {
    static constexpr char const *otypes = "a";
    static constexpr char const *itypes = "aPJjj";
    MYFLT* buffer;
    MYFLT* out_buffer;
    MYFLT* consider_buffer;
    int* positions_buffer;
    int* ends_buffer;
    int buffer_size;
    int read_position;
    int write_position;
    int consider_range;
    bool reading;
    
    int init() {
        buffer_size = (inargs[4] == FL(-1)) ? (int) ksmps() : inargs[2];
        if (buffer_size < 128) {
            //csound->message("Buffer minimum is 128");
            buffer_size = 128;
        }
        buffer = (MYFLT*) csound->malloc(sizeof(MYFLT) * buffer_size);
        out_buffer = (MYFLT*) csound->malloc(sizeof(MYFLT) * buffer_size);
        positions_buffer = (int*) csound->malloc(sizeof(int) * buffer_size);
        ends_buffer = (int*) csound->malloc(sizeof(int) * buffer_size);
        reading = false;
        read_position = 0;
        write_position = 0;
        int buffer_decimation = (int) ((inargs[3] == -1) ? 64 : inargs[3]);
        consider_range = (int) buffer_size / buffer_decimation;
        consider_buffer = (MYFLT*) csound->malloc(sizeof(MYFLT) * consider_range);
        return OK;
    }
        
    MYFLT get_considerationratio() {
        MYFLT ratio = inargs[2];
        if (ratio == FL(-1)) {
            ratio = 0.3;
        } else if (ratio > 1) {
            ratio = 1;
        } else if (ratio <= 0) {
            ratio = 0.0001;
        }
        return ratio;
    }
    
    MYFLT get_buffersize() {
        MYFLT buffer_ratio = inargs[1];
        if (buffer_ratio > 1) {
            buffer_ratio = 1;
        } else if (buffer_ratio <= 0) {
            buffer_ratio = 0.0001;
        }
        return buffer_size * buffer_ratio;
    }
    
    void shiftInConsidered(MYFLT newVal) {
        for (int i = 0; i < consider_range - 1; i++) {
            consider_buffer[i] = consider_buffer[i+1];
        }
        consider_buffer[consider_range - 1] = newVal;
    }
    
    
    
    bool eligible() {
        MYFLT crphalf = get_considerationratio() * 0.5;
        MYFLT cplow = consider_buffer[0] * (1 - crphalf);
        MYFLT cphigh = consider_buffer[0] * (1 + crphalf);
        for (int i = 1; i < consider_range; i++) {
            if (consider_buffer[i] < cplow || consider_buffer[i] > cphigh) {
                return false;
            }
        }
        return true;
    }
    
  
    int inPositions(int targetIndex) {
        int len = get_buffersize();
        for (int i = 0; i < len; i++) {
            if (positions_buffer[i] == targetIndex) {
                return i;
            }
        }
        return -1;
    }
     
    
    void completePositions() {
        MYFLT crphalf = get_considerationratio() * 0.5;
        MYFLT cplow;
        MYFLT cphigh;
        int currentIndex = -1;
        int len = get_buffersize();
        for (int i = 0; i < len; i++) {
            if (currentIndex == -1) {
                if (inPositions(i) != -1) {
                    currentIndex = i;

                    cplow = buffer[positions_buffer[currentIndex]] * (1 - crphalf);
                    cphigh = buffer[positions_buffer[currentIndex]] * (1 + crphalf);
                }
            }
             
            if (currentIndex != -1) {
                
                
                if (buffer[i] < cplow || consider_buffer[i] > cphigh) {
                    ends_buffer[currentIndex] = buffer[i];
                    currentIndex = -1;
                }
            }
        }
    }
    
    void sculpt() {
        int len = get_buffersize();
        MYFLT total = 0;
        int i;
        for (i = 0; i < len; i++) {
            total += buffer[i];
        }
        MYFLT mean = total / len;
        
        int consider_index = 0;
        
        int items = 0;
        
        for (i = 0; i < len; i++) {
            shiftInConsidered(buffer[i]);
            if (eligible()) {
                positions_buffer[items] = i;
                items ++;
            } 
        }
        
        completePositions();
        
        bool inSection = false;
        int currentStartIndex;
        int lpos;
        int currentSteps;
        MYFLT stepDiv;
        MYFLT headroom = 0.1;
        for (i = 0; i < len; i++) {
            if (items > 0) {
                
                if (inSection) {
                    
                    // roundings...
                    
                    out_buffer[i] = buffer[i] + (sin(PI*(lpos*stepDiv)) * headroom);
                    // ( sine(pi*DISTANCE)  *headroom
                    
                    lpos++;
                    if (i >= ends_buffer[currentStartIndex]) {
                        inSection = false;
                    }
                } else {
                    int test = inPositions(i);
                    if (test != -1) {
                        currentStartIndex = test;
                        inSection = true;
                        lpos = 0;
                        currentSteps = ends_buffer[currentStartIndex] - test;
                        stepDiv = (MYFLT) FL(1)/currentSteps;
                    } else {
                        out_buffer[i] = buffer[i];
                    }
                }
                    
            } else {
                out_buffer[i] = buffer[i];
            }
        }
        
    }
    
    int aperf() { // some kind of windowed delay thing.
        int len = get_buffersize();
        for (int i = 0; i < nsmps; i++) {
            if (UNLIKELY(write_position >= len)) {
                sculpt();
                write_position = 0;
            }
            
            
            if (UNLIKELY(read_position >= len)) {
                read_position = 0;
            }
            
            buffer[write_position] = inargs(0)[i];
            outargs(0)[i] = out_buffer[read_position];
              
            write_position ++;
            read_position ++;
        }
        return OK;
    }
};

#include <modload.h>

void csnd::on_load(csnd::Csound *csound) {

    csnd::plugin<bitchrandom>(csound, "bitchrandom", csnd::thread::ia);
    csnd::plugin<bitchglitch>(csound, "bitchglitch", csnd::thread::ia);
    csnd::plugin<bitchwreck>(csound, "bitchwreck", csnd::thread::ia);
    csnd::plugin<bitchpan>(csound, "bitchpan", csnd::thread::ia);
    csnd::plugin<bitchbuffer1>(csound, "bitchbuffer1", csnd::thread::ia);  
    csnd::plugin<bitchpeaker>(csound, "bitchpeaker", csnd::thread::ia);
	csnd::plugin<bitchaverage>(csound, "bitchaverage", csnd::thread::ia);
   

}