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

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

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

  init{
    arg config;
    synths = Dictionary.new(config.at("names").size);
    this.setupGroups;
    this.addAnalysisSynthsFromConfig(config);
    Routine{
      2.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
  addAnalysisSynthsFromConfig{
    arg config;
    config.at("names").size.do({|i|
      var name = config.at("names")[i];
      ("Adding SynthDef '"++name++"' on input "++(i+config.at("channelOffset")[i])).postln;
      SynthDef(name, {
        arg 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: i+config.at("channelOffset")[i]);
        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.kr(
          Impulse.kr(sendReplyFreq),
          '/'++config.at("names")[i].asSymbol,
          [amplitude, pitch, hasPitch, detect]
        );
      }).add;
    });
  }

  startSynthsFromConfig{
    arg config;
    config.at("names").do({|name, i|
      var controls = config.at("controls").at(name);
      postln("Synths: "++name++" at "++i);
      synths.add(name -> Synth(
        name,
        [
          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
        );
      );
    });
  }

  setSynthControl{
    arg name, control;
    synths.at(name).set(control[0], control[1]);
  }

  startAnalysisSynth{
    arg name;
    synths.at(name).run(true);
  }

  stopAnalysisSynth{
    arg name;
    synths.at(name).run(false);
  }

  startAllAnalysisSynths{
    analyzerGroup.run(true);
  }

  stopAllAnalysisSynths{
    analyzerGroup.run(false);
  }
}