aboutsummaryrefslogtreecommitdiff
path: root/include/guttersynth.h
blob: 88d874ab97cbf2e6b5bcf1bdcea8667ffc7b7314 (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
/* 
 * guttersynth.h
 * Part of libguttersynth
 * 
 * Copyright Tom Mudd 2019, Richard Knight 2021, 2022
 * 
 * Ported to C by Richard Knight
 * from https://github.com/tommmmudd/guttersynthesis by Tom Mudd
 * 
 */

#ifndef GUTTER_H
#define GUTTER_H

#ifdef __cplusplus
extern "C" {
#endif

#include <stdio.h>
#include <stdlib.h>

// support for either single or double precision
#ifndef FLT
    
#ifdef USE_FLOAT
#define FLT float
#else
#define FLT double
#endif
   
#endif
    
    
// internal/private dcblock state variables
typedef struct dcblock_session_ {
    FLT xm1;
    FLT ym1;
    FLT r;
} dcblock_session;

// internal/private state variables
typedef struct gutter_internal_ {
    void (*dealloc)(void*);
    int samplerate;
    FLT finalY;
    FLT duffX;
    FLT duffY;
    FLT dx;
    FLT dy;
    FLT t;
    FLT* prevX1;
    FLT* prevX2;
    FLT* prevY1;
    FLT* prevY2;
    FLT* V;
    FLT* K;
    FLT* norm;
    FLT* a0;
    FLT* a1;
    FLT* a2;
    FLT* b1;
    FLT* b2;
    FLT* y;
    dcblock_session dcblock;
} gutter_internal;

// state with public variables
typedef struct gutter_state_ {
    int bankCount;
    int filterCount;

    FLT gamma;
    FLT omega;
    FLT c;
    FLT dt;
    FLT singleGain;
    FLT* gains;
    FLT* filterFreqs;
    FLT* Q;
    int enableAudioInput;
    int filtersOn;
    int smoothing;
    int distortionMethod;
    gutter_internal gi;
} gutter_state;


// synthesise single sample with input
FLT gutter_process_input(gutter_state* s, FLT audioInput);

// synthesise single sample
FLT gutter_process(gutter_state* s);

// synthesise specified number of samples with input
void gutter_process_input_samples(gutter_state* s, FLT* audioInput, FLT* audioOutput, int nsamps);

// synthesise specified number of samples
void gutter_process_samples(gutter_state* s, FLT* audioOutput, int nsamps);

// reset state
void gutter_reset(gutter_state* s);

// clean up memory etc
void gutter_cleanup(gutter_state* s);

// calculate filter coefficients
void gutter_calccoeffs(gutter_state* s);

// initialise with custom memory allocator and deallocator
gutter_state* gutter_init_ca(int bankCount, int filterCount, int samplerate, 
    void* (*allocator)(size_t), void (*deallocator)(void*));

// initialise with standard malloc and free
gutter_state* gutter_init(int bankCount, int filterCount, int samplerate);

// randomise filters
void gutter_randomisefilters(gutter_state* s);

// set distortion method
int gutter_setdistortionmethod(gutter_state* s, int method);

// set frequency of a filter in a bank
int gutter_setfreq(gutter_state*, int bank, int filter, FLT value);

// set Q of a filter in a bank
int gutter_setq(gutter_state* s, int bank, int filter, FLT value);

// set gain of a filter in a bank
int gutter_setgain(gutter_state* s, int bank, int filter, FLT value);

// set Q of all filters
void gutter_setqall(gutter_state* s, FLT value);

#ifdef __cplusplus
}
#endif

#endif /* GUTTER_H */