giuliomoro@230
|
1 /*
|
giuliomoro@230
|
2 * render.cpp
|
giuliomoro@230
|
3 *
|
giuliomoro@230
|
4 * Created on: Oct 24, 2014
|
giuliomoro@230
|
5 * Author: parallels
|
giuliomoro@230
|
6 */
|
giuliomoro@230
|
7
|
giuliomoro@301
|
8 #include <Bela.h>
|
giuliomoro@230
|
9 #include <cmath>
|
giuliomoro@230
|
10 #include <Utilities.h>
|
giuliomoro@230
|
11 #include <I2c_Codec.h>
|
giuliomoro@230
|
12 #include <PRU.h>
|
giuliomoro@230
|
13 #include <stdio.h>
|
giuliomoro@230
|
14 #include "z_libpd.h"
|
giuliomoro@338
|
15 #include "z_queued.h"
|
giuliomoro@230
|
16 #include <UdpServer.h>
|
giuliomoro@324
|
17 #include <Midi.h>
|
giuliomoro@324
|
18
|
giuliomoro@230
|
19
|
giuliomoro@230
|
20 // setup() is called once before the audio rendering starts.
|
giuliomoro@230
|
21 // Use it to perform any initialisation and allocation which is dependent
|
giuliomoro@230
|
22 // on the period size or sample rate.
|
giuliomoro@230
|
23 //
|
giuliomoro@230
|
24 // userData holds an opaque pointer to a data structure that was passed
|
giuliomoro@230
|
25 // in from the call to initAudio().
|
giuliomoro@230
|
26 //
|
giuliomoro@230
|
27 // Return true on success; returning false halts the program.
|
giuliomoro@337
|
28 unsigned int gLibPdBlockSize; //make sure this matches the one used to compile libpd
|
giuliomoro@230
|
29
|
giuliomoro@337
|
30 unsigned int gChannelsInUse = 10;
|
giuliomoro@230
|
31 int gBufLength;
|
giuliomoro@230
|
32
|
giuliomoro@230
|
33 float* gInBuf;
|
giuliomoro@230
|
34 float* gOutBuf;
|
giuliomoro@230
|
35
|
giuliomoro@230
|
36 void pdnoteon(int ch, int pitch, int vel) {
|
giuliomoro@230
|
37 printf("noteon: %d %d %d\n", ch, pitch, vel);
|
giuliomoro@230
|
38 }
|
giuliomoro@230
|
39
|
giuliomoro@301
|
40 void Bela_printHook(const char *recv){
|
giuliomoro@230
|
41 rt_printf("%s", recv);
|
giuliomoro@230
|
42 }
|
giuliomoro@230
|
43
|
giuliomoro@230
|
44 UdpServer udpServer;
|
giuliomoro@230
|
45
|
giuliomoro@230
|
46 void udpRead(){
|
giuliomoro@230
|
47 while(!gShouldStop){
|
giuliomoro@337
|
48 // check for modified sockets/file descriptors
|
giuliomoro@337
|
49 // (libpd would normally do this every block WITHIN the audio thread)
|
giuliomoro@337
|
50 // not sure if this is thread-safe at the moment
|
giuliomoro@230
|
51 libpd_sys_microsleep(0);
|
giuliomoro@230
|
52 usleep(1000);
|
giuliomoro@230
|
53 }
|
giuliomoro@230
|
54 }
|
giuliomoro@325
|
55 #define PARSE_MIDI
|
giuliomoro@337
|
56 AuxiliaryTask udpReadTask;
|
giuliomoro@324
|
57 Midi midi;
|
giuliomoro@337
|
58
|
giuliomoro@301
|
59 bool setup(BelaContext *context, void *userData)
|
giuliomoro@230
|
60 {
|
giuliomoro@324
|
61 midi.readFrom(0);
|
giuliomoro@324
|
62 midi.writeTo(0);
|
giuliomoro@325
|
63 #ifdef PARSE_MIDI
|
giuliomoro@324
|
64 midi.enableParser(true);
|
giuliomoro@325
|
65 #else
|
giuliomoro@325
|
66 midi.enableParser(false);
|
giuliomoro@325
|
67 #endif /* PARSE_MIDI */
|
giuliomoro@232
|
68 gChannelsInUse = min((int)(context->analogChannels+context->audioChannels), (int)gChannelsInUse);
|
giuliomoro@230
|
69 udpServer.bindToPort(1234);
|
giuliomoro@230
|
70
|
giuliomoro@337
|
71 gLibPdBlockSize = libpd_blocksize();
|
giuliomoro@337
|
72 // check that we are not running with a blocksize smaller than gLibPdBlockSize
|
giuliomoro@230
|
73 // it would still work, but the load would be executed unevenly between calls to render
|
giuliomoro@337
|
74 if(context->audioFrames < gLibPdBlockSize){
|
giuliomoro@337
|
75 fprintf(stderr, "Error: minimum block size must be %d\n", gLibPdBlockSize);
|
giuliomoro@230
|
76 return false;
|
giuliomoro@230
|
77 }
|
giuliomoro@230
|
78 // init pd
|
giuliomoro@338
|
79 libpd_set_queued_printhook(Bela_printHook); // set this before calling libpd_init
|
giuliomoro@338
|
80 libpd_set_queued_noteonhook(pdnoteon);
|
giuliomoro@338
|
81 libpd_queued_init();
|
giuliomoro@230
|
82 //TODO: analyse the ASCII of the patch file and find the in/outs to use
|
giuliomoro@230
|
83 libpd_init_audio(gChannelsInUse, gChannelsInUse, context->audioSampleRate);
|
giuliomoro@230
|
84
|
giuliomoro@230
|
85 libpd_start_message(1); // one entry in list
|
giuliomoro@230
|
86 libpd_add_float(1.0f);
|
giuliomoro@230
|
87 libpd_finish_message("pd", "dsp");
|
giuliomoro@230
|
88
|
giuliomoro@337
|
89 gBufLength = max((uint32_t)gLibPdBlockSize, context->audioFrames);
|
giuliomoro@230
|
90 unsigned int bufferSize = sizeof(float)*gChannelsInUse*gBufLength;
|
giuliomoro@230
|
91 gInBuf = (float*)malloc(bufferSize);
|
giuliomoro@230
|
92 gOutBuf = (float*)malloc(bufferSize);
|
giuliomoro@230
|
93 // no need to memset to zero
|
giuliomoro@230
|
94
|
giuliomoro@230
|
95 char file[] = "_main.pd";
|
giuliomoro@230
|
96 char folder[] = "./";
|
giuliomoro@230
|
97 // open patch [; pd open file folder(
|
giuliomoro@230
|
98 libpd_openfile(file, folder);
|
giuliomoro@230
|
99
|
giuliomoro@301
|
100 udpReadTask = Bela_createAuxiliaryTask(udpRead, 60, "udpReadTask");
|
giuliomoro@301
|
101 Bela_scheduleAuxiliaryTask(udpReadTask);
|
giuliomoro@230
|
102 return true;
|
giuliomoro@230
|
103 }
|
giuliomoro@230
|
104
|
giuliomoro@230
|
105 // render() is called regularly at the highest priority by the audio engine.
|
giuliomoro@230
|
106 // Input and output are given from the audio hardware and the other
|
giuliomoro@230
|
107 // ADCs and DACs (if available). If only audio is available, numMatrixFrames
|
giuliomoro@230
|
108 // will be 0.
|
giuliomoro@301
|
109 BelaContext *c;
|
giuliomoro@301
|
110 void render(BelaContext *context, void *userData)
|
giuliomoro@230
|
111 {
|
giuliomoro@324
|
112 int num;
|
giuliomoro@325
|
113 #ifdef PARSE_MIDI
|
giuliomoro@324
|
114 while((num = midi.getParser()->numAvailableMessages()) > 0){
|
giuliomoro@324
|
115 static MidiChannelMessage message;
|
giuliomoro@324
|
116 message = midi.getParser()->getNextChannelMessage();
|
giuliomoro@325
|
117 // message.prettyPrint(); // use this to print beautified message (channel, data bytes)
|
giuliomoro@324
|
118 switch(message.getType()){
|
giuliomoro@325
|
119 case kmmNoteOn:
|
giuliomoro@325
|
120 {
|
giuliomoro@324
|
121 int noteNumber = message.getDataByte(0);
|
giuliomoro@324
|
122 int velocity = message.getDataByte(1);
|
giuliomoro@324
|
123 int channel = message.getChannel();
|
giuliomoro@324
|
124 libpd_noteon(channel, noteNumber, velocity);
|
giuliomoro@325
|
125 break;
|
giuliomoro@324
|
126 }
|
giuliomoro@325
|
127 case kmmNoteOff:
|
giuliomoro@325
|
128 {
|
giuliomoro@325
|
129 /* PureData does not seem to handle noteoff messages as per the MIDI specs,
|
giuliomoro@325
|
130 * so that the noteoff velocity is ignored. Here we convert them to noteon
|
giuliomoro@325
|
131 * with a velocity of 0.
|
giuliomoro@325
|
132 */
|
giuliomoro@325
|
133 int noteNumber = message.getDataByte(0);
|
giuliomoro@325
|
134 // int velocity = message.getDataByte(1); // would be ignored by Pd
|
giuliomoro@325
|
135 int channel = message.getChannel();
|
giuliomoro@325
|
136 libpd_noteon(channel, noteNumber, 0);
|
giuliomoro@325
|
137 break;
|
giuliomoro@324
|
138 }
|
giuliomoro@325
|
139 case kmmControlChange:
|
giuliomoro@325
|
140 {
|
giuliomoro@325
|
141 int channel = message.getChannel();
|
giuliomoro@325
|
142 int controller = message.getDataByte(0);
|
giuliomoro@325
|
143 int value = message.getDataByte(1);
|
giuliomoro@325
|
144 libpd_controlchange(channel, controller, value);
|
giuliomoro@325
|
145 break;
|
giuliomoro@325
|
146 }
|
giuliomoro@325
|
147 case kmmProgramChange:
|
giuliomoro@325
|
148 {
|
giuliomoro@325
|
149 int channel = message.getChannel();
|
giuliomoro@325
|
150 int program = message.getDataByte(0);
|
giuliomoro@325
|
151 libpd_programchange(channel, program);
|
giuliomoro@325
|
152 break;
|
giuliomoro@325
|
153 }
|
giuliomoro@325
|
154 case kmmPolyphonicKeyPressure:
|
giuliomoro@325
|
155 {
|
giuliomoro@325
|
156 int channel = message.getChannel();
|
giuliomoro@325
|
157 int pitch = message.getDataByte(0);
|
giuliomoro@325
|
158 int value = message.getDataByte(1);
|
giuliomoro@325
|
159 libpd_polyaftertouch(channel, pitch, value);
|
giuliomoro@325
|
160 break;
|
giuliomoro@325
|
161 }
|
giuliomoro@325
|
162 case kmmChannelPressure:
|
giuliomoro@325
|
163 {
|
giuliomoro@325
|
164 int channel = message.getChannel();
|
giuliomoro@325
|
165 int value = message.getDataByte(0);
|
giuliomoro@325
|
166 libpd_aftertouch(channel, value);
|
giuliomoro@325
|
167 break;
|
giuliomoro@325
|
168 }
|
giuliomoro@325
|
169 case kmmPitchBend:
|
giuliomoro@325
|
170 {
|
giuliomoro@325
|
171 int channel = message.getChannel();
|
giuliomoro@325
|
172 int value = (message.getDataByte(1) << 7)| message.getDataByte(0);
|
giuliomoro@325
|
173 libpd_pitchbend(channel, value);
|
giuliomoro@325
|
174 break;
|
giuliomoro@325
|
175 }
|
giuliomoro@337
|
176 case kmmNone:
|
giuliomoro@337
|
177 case kmmAny:
|
giuliomoro@337
|
178 break;
|
giuliomoro@324
|
179 }
|
giuliomoro@324
|
180 }
|
giuliomoro@325
|
181 #else
|
giuliomoro@325
|
182 int input;
|
giuliomoro@325
|
183 while((input = midi.getInput()) >= 0){
|
giuliomoro@325
|
184 libpd_midibyte(0, input);
|
giuliomoro@325
|
185 rt_printf("input: %d\n", input);
|
giuliomoro@325
|
186 }
|
giuliomoro@325
|
187 #endif /* PARSE_MIDI */
|
giuliomoro@337
|
188 static unsigned int inW = 0;
|
giuliomoro@337
|
189 static unsigned int outR = 0;
|
giuliomoro@230
|
190 /*
|
giuliomoro@230
|
191 * NOTE: if you are only using audio (or only analogs) and you are using interleaved buffers
|
giuliomoro@337
|
192 * and the blocksize of Bela is the same as gLibPdBlockSize, then you probably
|
giuliomoro@230
|
193 * do not need the for loops before and after libpd_process_float, so you can save quite some
|
giuliomoro@230
|
194 * memory operations.
|
giuliomoro@230
|
195 */
|
giuliomoro@337
|
196 static unsigned int analogChannelsInUse = min(context->analogChannels, gChannelsInUse - context->audioChannels);
|
giuliomoro@232
|
197 // rt_printf("channelsInUse: %d, analogChannels in Use: %d\n", gChannelsInUse, analogChannelsInUse);
|
giuliomoro@232
|
198 for(unsigned int n = 0; n < context->audioFrames; ++n){ //pd buffers are interleaved
|
giuliomoro@232
|
199 for(unsigned int ch = 0; ch < context->audioChannels; ++ch){ //first two channels are audio
|
andrewm@308
|
200 gInBuf[inW++] = audioRead(context, n, ch);
|
giuliomoro@230
|
201 }
|
giuliomoro@232
|
202 // then analogs
|
giuliomoro@232
|
203 // this loop resamples by ZOH, as needed, using m
|
giuliomoro@232
|
204 if(context->analogChannels == 8 ){ //hold the value for two frames
|
giuliomoro@337
|
205 for(unsigned int analogCh = 0; analogCh < analogChannelsInUse; ++analogCh){
|
andrewm@308
|
206 gInBuf[inW++] = analogRead(context, n/2, analogCh); // n/2 wil be the same for n and n+1 when n is even
|
giuliomoro@232
|
207 }
|
giuliomoro@232
|
208 } else if(context->analogChannels == 4){ //write every frame
|
giuliomoro@337
|
209 for(unsigned int analogCh = 0; analogCh < analogChannelsInUse; ++analogCh){
|
andrewm@308
|
210 gInBuf[inW++] = analogRead(context, n, analogCh);
|
giuliomoro@232
|
211 }
|
giuliomoro@232
|
212 } else if(context->analogChannels == 2){ //drop every other frame
|
giuliomoro@337
|
213 for(unsigned int analogCh = 0; analogCh < analogChannelsInUse; ++analogCh){
|
andrewm@308
|
214 gInBuf[inW++] = analogRead(context, n*2, analogCh);
|
giuliomoro@232
|
215 }
|
giuliomoro@230
|
216 }
|
giuliomoro@230
|
217 if(inW == gBufLength * gChannelsInUse){
|
giuliomoro@230
|
218 inW = 0;
|
giuliomoro@230
|
219 }
|
giuliomoro@230
|
220 }
|
giuliomoro@232
|
221 // rt_printf("inW %d\n", inW);
|
giuliomoro@230
|
222 if(inW == 0){ //if the buffer is full, process it
|
giuliomoro@337
|
223 static int numberOfPdBlocksToProcess = gBufLength/gLibPdBlockSize;
|
giuliomoro@338
|
224 // TODO: see if we can rewrite libpd_process_float so that it takes a buffer
|
giuliomoro@338
|
225 // of interleaved channels of arbitrary length channels rather than a series of
|
giuliomoro@338
|
226 // stacked buffers of size gLibPdBlockSize as it currently does.
|
giuliomoro@230
|
227 libpd_process_float(numberOfPdBlocksToProcess, gInBuf, gOutBuf);
|
giuliomoro@232
|
228 outR = 0; // reset the read pointer. NOTE: hopefully this is needed only the first time
|
giuliomoro@230
|
229 }
|
giuliomoro@230
|
230
|
giuliomoro@230
|
231 for(unsigned int n = 0; n < context->audioFrames; n++){ //pd buffers are interleaved
|
giuliomoro@232
|
232 for(unsigned int ch = 0; ch < context->audioChannels; ++ch){
|
andrewm@308
|
233 audioWrite(context, n, ch, gOutBuf[outR++]);
|
giuliomoro@230
|
234 }
|
giuliomoro@232
|
235 //and analogs
|
giuliomoro@232
|
236 if(context->analogChannels == 8){
|
giuliomoro@232
|
237 for(unsigned int analogCh = 0; analogCh < analogChannelsInUse; ++analogCh){
|
giuliomoro@232
|
238 float analogOut = gOutBuf[outR++];
|
giuliomoro@232
|
239 if((n&1) == 0){//write every two frames
|
andrewm@308
|
240 analogWrite(context, n/2, analogCh, analogOut);
|
giuliomoro@232
|
241 } else {
|
giuliomoro@232
|
242 // discard this sample
|
giuliomoro@232
|
243 }
|
giuliomoro@232
|
244 }
|
giuliomoro@232
|
245 } else if(context->analogChannels == 4){ //write every frame
|
giuliomoro@337
|
246 for(unsigned int analogCh = 0; analogCh < analogChannelsInUse; ++analogCh){
|
giuliomoro@232
|
247 float analogOut = gOutBuf[outR++];
|
andrewm@308
|
248 analogWrite(context, n, analogCh, analogOut);
|
giuliomoro@232
|
249 }
|
giuliomoro@232
|
250 } else if(context->analogChannels == 2){ //write twice every frame
|
giuliomoro@232
|
251 for(unsigned int analogCh = 0; analogCh < analogChannelsInUse; ++analogCh){
|
giuliomoro@232
|
252 float analogOut = gOutBuf[outR++];
|
andrewm@308
|
253 analogWrite(context, 2*n, analogCh, analogOut);
|
andrewm@308
|
254 analogWrite(context, 2*n + 1, analogCh, analogOut);
|
giuliomoro@232
|
255 }
|
giuliomoro@230
|
256 }
|
giuliomoro@230
|
257 if(outR == gBufLength * gChannelsInUse){
|
giuliomoro@230
|
258 outR = 0;
|
giuliomoro@230
|
259 }
|
giuliomoro@230
|
260 }
|
giuliomoro@232
|
261 // rt_printf("outR %d, analogChannelsInUse %d, channelsInUse %d\n",
|
giuliomoro@232
|
262 // outR , analogChannelsInUse, gChannelsInUse);
|
giuliomoro@230
|
263 }
|
giuliomoro@232
|
264
|
giuliomoro@230
|
265 // cleanup() is called once at the end, after the audio has stopped.
|
giuliomoro@230
|
266 // Release any resources that were allocated in setup().
|
giuliomoro@230
|
267
|
giuliomoro@301
|
268 void cleanup(BelaContext *context, void *userData)
|
giuliomoro@230
|
269 {
|
giuliomoro@338
|
270 libpd_queued_release();
|
giuliomoro@230
|
271 free(gInBuf);
|
giuliomoro@230
|
272 free(gOutBuf);
|
giuliomoro@230
|
273 }
|