/usr/share/faust/api/android/DspFaust.cpp is in faust-common 0.9.95~repack1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /************************************************************************
************************************************************************
FAUST Architecture File for Android
Copyright (C) 2016 GRAME, Romain Michon, CCRMA - Stanford University
Copyright (C) 2003-2016 GRAME, Centre National de Creation Musicale
---------------------------------------------------------------------
This is sample code. This file is provided as an example of minimal
FAUST architecture file. Redistribution and use in source and binary
forms, with or without modification, in part or in full are permitted.
In particular you can create a derived work of this FAUST architecture
and distribute that work under terms of your choice.
This sample code is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
************************************************************************
************************************************************************/
#include "faust/misc.h"
#include "faust/dsp/dsp.h"
#include "faust/gui/meta.h"
#include "faust/gui/UI.h"
#include <math.h>
#include <cmath>
//**************************************************************
// DSP class
//**************************************************************
<<includeIntrinsic>>
<<includeclass>>
//**************************************************************
// Audio engine
//**************************************************************
#include "faust/dsp/faust-poly-engine.h"
//**************************************************************
// Android Audio
//**************************************************************
#include "faust/audio/android-dsp.h"
//**************************************************************
// Native Faust API
//**************************************************************
#include <android/log.h>
#include "DspFaust.h"
std::list<GUI*> GUI::fGuiList;
ztimedmap GUI::gTimedZoneMap;
DspFaust::DspFaust(int sample_rate, int buffer_size){
fPolyEngine = new FaustPolyEngine(new androidaudio(sample_rate, buffer_size));
}
DspFaust::~DspFaust(){
delete fPolyEngine;
}
bool DspFaust::start(){
return fPolyEngine->start();
}
void DspFaust::stop(){
fPolyEngine->stop();
}
bool DspFaust::isRunning(){
return fPolyEngine->isRunning();
}
unsigned long DspFaust::keyOn(int pitch, int velocity){
return (long) fPolyEngine->keyOn(pitch, velocity);
}
int DspFaust::keyOff(int pitch){
return fPolyEngine->keyOff(pitch);
}
unsigned long DspFaust::newVoice(){
return (long) fPolyEngine->newVoice();
}
int DspFaust::deleteVoice(unsigned long voice){
return fPolyEngine->deleteVoice(voice);
}
void DspFaust::propagateMidi(int count, double time, int type, int channel, int data1, int data2){
fPolyEngine->propagateMidi(count, time, type, channel, data1, data2);
}
const char* DspFaust::getJSONUI(){
return fPolyEngine->getJSONUI();
}
const char* DspFaust::getJSONMeta(){
return fPolyEngine->getJSONMeta();
}
int DspFaust::getParamsCount(){
return fPolyEngine->getParamsCount();
}
void DspFaust::setParamValue(const char* address, float value){
fPolyEngine->setParamValue(address, value);
}
void DspFaust::setParamValue(int id, float value){
fPolyEngine->setParamValue(id, value);
}
float DspFaust::getParamValue(const char* address){
return fPolyEngine->getParamValue(address);
}
float DspFaust::getParamValue(int id){
return fPolyEngine->getParamValue(id);
}
void DspFaust::setVoiceParamValue(const char* address, unsigned long voice, float value){
fPolyEngine->setVoiceParamValue(address, voice, value);
}
void DspFaust::setVoiceParamValue(int id, unsigned long voice, float value){
fPolyEngine->setVoiceParamValue(id, voice, value);
}
float DspFaust::getVoiceParamValue(const char* address, unsigned long voice){
return fPolyEngine->getVoiceParamValue(address, voice);
}
float DspFaust::getVoiceParamValue(int id, unsigned long voice){
return fPolyEngine->getVoiceParamValue(id, voice);
}
const char* DspFaust::getParamAddress(int id){
return fPolyEngine->getParamAddress(id);
}
const char* DspFaust::getVoiceParamAddress(int id, unsigned long voice){
return fPolyEngine->getVoiceParamAddress(id, voice);
}
void DspFaust::propagateAcc(int acc, float v){
fPolyEngine->propagateAcc(acc, v);
}
void DspFaust::setAccConverter(int p, int acc, int curve, float amin, float amid, float amax){
fPolyEngine->setAccConverter(p, acc, curve, amin, amid, amax);
}
void DspFaust::propagateGyr(int acc, float v){
fPolyEngine->propagateGyr(acc, v);
}
void DspFaust::setGyrConverter(int p, int gyr, int curve, float amin, float amid, float amax){
fPolyEngine->setGyrConverter(p, gyr, curve, amin, amid, amax);
}
float DspFaust::getCPULoad(){
return fPolyEngine->getCPULoad();
}
int DspFaust::getScreenColor(){
return fPolyEngine->getScreenColor();
}
|