annotate projects/basic_libpd/render.cpp @ 230:af211ee57867 mergingClockSync

Working basic_libpd
author Giulio Moro <giuliomoro@yahoo.it>
date Sat, 09 Apr 2016 08:19:09 +0100
parents
children 600355cf4ed5
rev   line source
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@230 8 #include <BeagleRT.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@230 15 #include <UdpServer.h>
giuliomoro@230 16
giuliomoro@230 17 // setup() is called once before the audio rendering starts.
giuliomoro@230 18 // Use it to perform any initialisation and allocation which is dependent
giuliomoro@230 19 // on the period size or sample rate.
giuliomoro@230 20 //
giuliomoro@230 21 // userData holds an opaque pointer to a data structure that was passed
giuliomoro@230 22 // in from the call to initAudio().
giuliomoro@230 23 //
giuliomoro@230 24 // Return true on success; returning false halts the program.
giuliomoro@230 25 #define DEFDACBLKSIZE 8u //make sure this matches the one used to compile libpd
giuliomoro@230 26
giuliomoro@230 27 const int gChannelsInUse = 6;
giuliomoro@230 28 int gBufLength;
giuliomoro@230 29
giuliomoro@230 30 float* gInBuf;
giuliomoro@230 31 float* gOutBuf;
giuliomoro@230 32
giuliomoro@230 33 void pdnoteon(int ch, int pitch, int vel) {
giuliomoro@230 34 printf("noteon: %d %d %d\n", ch, pitch, vel);
giuliomoro@230 35 }
giuliomoro@230 36
giuliomoro@230 37 void BeagleRT_printHook(const char *recv){
giuliomoro@230 38 rt_printf("%s", recv);
giuliomoro@230 39 }
giuliomoro@230 40
giuliomoro@230 41 UdpServer udpServer;
giuliomoro@230 42
giuliomoro@230 43 void udpRead(){
giuliomoro@230 44 char dest[100] = {0};
giuliomoro@230 45 while(!gShouldStop){
giuliomoro@230 46 libpd_sys_microsleep(0);
giuliomoro@230 47 usleep(1000);
giuliomoro@230 48 }
giuliomoro@230 49 }
giuliomoro@230 50
giuliomoro@230 51 AuxiliaryTask udpReadTask;
giuliomoro@230 52 bool setup(BeagleRTContext *context, void *userData)
giuliomoro@230 53 {
giuliomoro@230 54 udpServer.bindToPort(1234);
giuliomoro@230 55
giuliomoro@230 56 // check that we are not running with a blocksize smaller than DEFDACBLKSIZE
giuliomoro@230 57 // it would still work, but the load would be executed unevenly between calls to render
giuliomoro@230 58 if(context->audioFrames < DEFDACBLKSIZE){
giuliomoro@230 59 fprintf(stderr, "Error: minimum block size must be %d\n", DEFDACBLKSIZE);
giuliomoro@230 60 return false;
giuliomoro@230 61 }
giuliomoro@230 62
giuliomoro@230 63 // check that the sampling rate of the analogs is the same as audio if running with
giuliomoro@230 64 // more than 2 channels (that is with analog). If we fix the TODO in render, then
giuliomoro@230 65 // this test is not needed.
giuliomoro@230 66 if(context->analogFrames != context->audioFrames){
giuliomoro@230 67 fprintf(stderr, "Error: analog and audio sampling rates must be the same\n");
giuliomoro@230 68 return false;
giuliomoro@230 69 }
giuliomoro@230 70 //following lines borrowed from libpd/samples/c/pdtest/pdtest.c
giuliomoro@230 71 // init pd
giuliomoro@230 72 libpd_set_printhook(BeagleRT_printHook); // set this before calling libpd_init
giuliomoro@230 73 libpd_set_noteonhook(pdnoteon);
giuliomoro@230 74 libpd_init();
giuliomoro@230 75 //TODO: analyse the ASCII of the patch file and find the in/outs to use
giuliomoro@230 76 libpd_init_audio(gChannelsInUse, gChannelsInUse, context->audioSampleRate);
giuliomoro@230 77
giuliomoro@230 78 libpd_start_message(1); // one entry in list
giuliomoro@230 79 libpd_add_float(1.0f);
giuliomoro@230 80 libpd_finish_message("pd", "dsp");
giuliomoro@230 81
giuliomoro@230 82 gBufLength = max(DEFDACBLKSIZE, context->audioFrames);
giuliomoro@230 83 unsigned int bufferSize = sizeof(float)*gChannelsInUse*gBufLength;
giuliomoro@230 84 gInBuf = (float*)malloc(bufferSize);
giuliomoro@230 85 gOutBuf = (float*)malloc(bufferSize);
giuliomoro@230 86 // no need to memset to zero
giuliomoro@230 87
giuliomoro@230 88
giuliomoro@230 89 char file[] = "_main.pd";
giuliomoro@230 90 char folder[] = "./";
giuliomoro@230 91 // open patch [; pd open file folder(
giuliomoro@230 92 libpd_openfile(file, folder);
giuliomoro@230 93
giuliomoro@230 94 udpReadTask = BeagleRT_createAuxiliaryTask(udpRead, 60, "udpReadTask");
giuliomoro@230 95 BeagleRT_scheduleAuxiliaryTask(udpReadTask);
giuliomoro@230 96 return true;
giuliomoro@230 97 }
giuliomoro@230 98
giuliomoro@230 99 // render() is called regularly at the highest priority by the audio engine.
giuliomoro@230 100 // Input and output are given from the audio hardware and the other
giuliomoro@230 101 // ADCs and DACs (if available). If only audio is available, numMatrixFrames
giuliomoro@230 102 // will be 0.
giuliomoro@230 103 BeagleRTContext *c;
giuliomoro@230 104 void render(BeagleRTContext *context, void *userData)
giuliomoro@230 105 {
giuliomoro@230 106 static int inW = 0;
giuliomoro@230 107 static int outR = 0;
giuliomoro@230 108 /*
giuliomoro@230 109 * NOTE: if you are only using audio (or only analogs) and you are using interleaved buffers
giuliomoro@230 110 * and the blocksize of Bela is the same as DEFDACBLKSIZE, then you probably
giuliomoro@230 111 * do not need the for loops before and after libpd_process_float, so you can save quite some
giuliomoro@230 112 * memory operations.
giuliomoro@230 113 */
giuliomoro@230 114
giuliomoro@230 115 for(unsigned int n = 0; n < context->audioFrames; n++){ //pd buffers are interleaved
giuliomoro@230 116 for(unsigned int k = 0; k < context->audioChannels; k++){
giuliomoro@230 117 gInBuf[inW++] = audioReadFrame(context, n, k);
giuliomoro@230 118 }
giuliomoro@230 119 for(unsigned int k = 0; k < gChannelsInUse - context->audioChannels; k ++){ // add analogs
giuliomoro@230 120 gInBuf[inW++] = analogReadFrame(context, n, k);
giuliomoro@230 121 // TODO: Apply here sampling rate conversion from analogs to audio
giuliomoro@230 122 }
giuliomoro@230 123 if(inW == gBufLength * gChannelsInUse){
giuliomoro@230 124 inW = 0;
giuliomoro@230 125 }
giuliomoro@230 126 }
giuliomoro@230 127
giuliomoro@230 128 if(inW == 0){ //if the buffer is full, process it
giuliomoro@230 129 int numberOfPdBlocksToProcess = gBufLength/DEFDACBLKSIZE;
giuliomoro@230 130 libpd_process_float(numberOfPdBlocksToProcess, gInBuf, gOutBuf);
giuliomoro@230 131 outR = 0; // reset the read pointer. NOTE: hopefully this is not needed EXCEPT the first time
giuliomoro@230 132 }
giuliomoro@230 133
giuliomoro@230 134 for(unsigned int n = 0; n < context->audioFrames; n++){ //pd buffers are interleaved
giuliomoro@230 135 for(unsigned int k = 0; k < context->audioChannels; k++){
giuliomoro@230 136 audioWriteFrame(context, n, k, gOutBuf[outR++]);
giuliomoro@230 137 }
giuliomoro@230 138 //add analogs here, limit them to channelsInUse
giuliomoro@230 139 for(unsigned int k = 0; k < gChannelsInUse - context->audioChannels; k ++){ // add analogs
giuliomoro@230 140 analogWriteFrame(context, n, k, gOutBuf[outR++]);
giuliomoro@230 141 // TODO: Apply here sampling rate conversion from analogs to audio
giuliomoro@230 142 }
giuliomoro@230 143 if(outR == gBufLength * gChannelsInUse){
giuliomoro@230 144 outR = 0;
giuliomoro@230 145 }
giuliomoro@230 146 }
giuliomoro@230 147 }
giuliomoro@230 148 // cleanup() is called once at the end, after the audio has stopped.
giuliomoro@230 149 // Release any resources that were allocated in setup().
giuliomoro@230 150
giuliomoro@230 151 void cleanup(BeagleRTContext *context, void *userData)
giuliomoro@230 152 {
giuliomoro@230 153 free(gInBuf);
giuliomoro@230 154 free(gOutBuf);
giuliomoro@230 155 }