aboutsummaryrefslogtreecommitdiffstats
path: root/BowelyzerAnalyzer.sc
blob: 39728bde22ceec87cc41ba0906674d4bef007b02 (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
BowelyzerAnalyzer{

  var <synths;
  var <analyzerGroup;
  var <monitoringGroup;

  *new{
    arg config;
    ^super.new.init(config);
  }

  init{
    arg config;
    synths = Dictionary.new(config.at(\inputs).size);
    this.setupGroups;
    this.addSynthsFromConfig(config);
    Routine{
      1.wait;
      this.startSynthsFromConfig(config);
    }.play;
  }

  // setup a synth group for the analyzers
  setupGroups{
    analyzerGroup = Group.new;
    monitoringGroup = Group.after(analyzerGroup);
    NodeWatcher.register(analyzerGroup);
    NodeWatcher.register(monitoringGroup);
  }

  // add synths for the defined channels
  addSynthsFromConfig{
    arg config;
    config.at(\inputs).keysValuesDo({|name, inputChannel|
      ("Adding SynthDef \""++name++"\" on input "++inputChannel).postln;
      this.addSynthWithName(name);
    });
  }

  addSynthWithName{
    arg name;
    SynthDef(name, {
      arg inputChannel,
      sendReplyFreq,
      amplitudeAttackTime,
      amplitudeReleaseTime,
      hfHainsworth,
      hfFoote,
      hfThreshold,
      hfWaitTime,
      pitchInitFreq,
      pitchMinFreq,
      pitchMaxFreq,
      pitchExecFreq,
      pitchMaxBinsPerOctave,
      pitchMedian,
      pitchAmpThreshold,
      pitchPeakThreshold,
      pitchDownSample
      ;
      var amplitude, input, detect, pitch, hasPitch;
      //TODO: Add volume for SoundIn
      input = SoundIn.ar(bus: inputChannel);
      amplitude = Amplitude.kr(
        in: input,
        attackTime: amplitudeAttackTime,
        releaseTime: amplitudeReleaseTime
      );
      detect = A2K.kr(
        PV_HainsworthFoote.ar(
          FFT(LocalBuf(2048), input),
          proph: hfHainsworth,
          propf: hfFoote,
          threshold: hfThreshold,
          waittime: hfWaitTime
        )
      );
      # pitch, hasPitch = Pitch.kr(
        in: input,
        initFreq: pitchInitFreq,
        minFreq: pitchMinFreq,
        maxFreq: pitchMaxFreq,
        execFreq: pitchExecFreq,
        maxBinsPerOctave: pitchMaxBinsPerOctave,
        median: pitchMedian,
        ampThreshold: pitchAmpThreshold,
        peakThreshold: pitchPeakThreshold,
        downSample: pitchDownSample
      );
      // SendReply for OSCHub
      SendReply.kr(
        Impulse.kr(sendReplyFreq),
        "/"++name,
        [amplitude, pitch, hasPitch, detect]
      );
      // SendReply for LevelIndicator
      SendReply.kr(
        Impulse.kr(10),
        "/levels/"++name,
        [
          Amplitude.kr(input),
          K2A.ar(
            Peak.ar(
              input,
              Delay1.kr(Impulse.kr(10))
            ).lag(0, 3)
          )
        ]
      );
    }).add;
  }

  startSynthsFromConfig{
    arg config;
    config.at(\controls).keysValuesDo({|name, controls|
      postln("Starting synth \""++name++"\".");
      this.startSynthWithNameAndControls(name, controls, config.at(\inputs).at(name));
    });
  }

  // add and start the Synth with name, controls and input channel
  startSynthWithNameAndControls{
    arg name, controls, input;
    // if the input is set to active, start right away, else pause
    if(controls.at(\active),{
      synths.add(name -> Synth.new(
        name,
        [
          inputChannel: input,
          sendReplyFreq: controls.at(\sendReplyFreq),
          amplitudeAttackTime: controls.at(\amplitudeAttackTime),
          amplitudeReleaseTime: controls.at(\amplitudeReleaseTime),
          hfHainsworth: controls.at(\hfhainsworth),
          hfFoote: controls.at(\hfFoote),
          hfThreshold: controls.at(\hfThreshold),
          hfWaitTime: controls.at(\hfWaitTime),
          pitchInitFreq: controls.at(\pitchInitFreq),
          pitchMinFreq: controls.at(\pitchMinFreq),
          pitchMaxFreq: controls.at(\pitchMaxFreq),
          pitchExecFreq: controls.at(\pitchExecFreq),
          pitchMaxBinsPerOctave: controls.at(\pitchMaxBinsPerOctave),
          pitchMedian: controls.at(\pitchMedian),
          pitchAmpThreshold: controls.at(\pitchAmpThreshold),
          pitchPeakThreshold: controls.at(\pitchPeakThreshold),
          pitchDownSample: controls.at(\pitchDownSample)
        ],
        analyzerGroup
        ).register;
      );
    },{
      synths.add(name -> Synth.newPaused(
        name,
        [
          inputChannel: input,
          sendReplyFreq: controls.at(\sendReplyFreq),
          amplitudeAttackTime: controls.at(\amplitudeAttackTime),
          amplitudeReleaseTime: controls.at(\amplitudeReleaseTime),
          hfHainsworth: controls.at(\hfhainsworth),
          hfFoote: controls.at(\hfFoote),
          hfThreshold: controls.at(\hfThreshold),
          hfWaitTime: controls.at(\hfWaitTime),
          pitchInitFreq: controls.at(\pitchInitFreq),
          pitchMinFreq: controls.at(\pitchMinFreq),
          pitchMaxFreq: controls.at(\pitchMaxFreq),
          pitchExecFreq: controls.at(\pitchExecFreq),
          pitchMaxBinsPerOctave: controls.at(\pitchMaxBinsPerOctave),
          pitchMedian: controls.at(\pitchMedian),
          pitchAmpThreshold: controls.at(\pitchAmpThreshold),
          pitchPeakThreshold: controls.at(\pitchPeakThreshold),
          pitchDownSample: controls.at(\pitchDownSample)
        ],
        analyzerGroup
        ).register;
      );
    });
  }

  // set a synth control by provoding its name, its control name and control value
  setSynthControl{
    arg name, controlName, controlValue;
    synths.at(name).set(controlName, controlValue);
  }

  // start a synth by name
  startAnalysisSynth{
    arg name;
    synths.at(name).run(true);
  }

  // stop a synth by name
  stopAnalysisSynth{
    arg name;
    synths.at(name).run(false);
  }

  // free a synth by name
  freeAnalysisSynth{
    arg name;
    synths.at(name).free;
  }

  startAllAnalysisSynths{
    analyzerGroup.run(true);
  }

  stopAllAnalysisSynths{
    analyzerGroup.run(false);
  }
}