/usr/share/faust/api/iOS/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 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 | /************************************************************************
************************************************************************
FAUST API Architecture File
Copyright (C) 2016 GRAME, Romain Michon, CCRMA - Stanford University
Copyright (C) 2014-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/gui/UI.h"
#include "faust/dsp/dsp.h"
#include "faust/gui/meta.h"
#include "faust/gui/jsonfaustui.h"
#include "faust/gui/JSONUI.h"
#include "faust/gui/MapUI.h"
#include <math.h>
#include <cmath>
//**************************************************************
// Intrinsic
//**************************************************************
<<includeIntrinsic>>
<<includeclass>>
//**************************************************************
// Polyphony
//**************************************************************
#include "faust/dsp/faust-poly-engine.h"
//**************************************************************
// IOS Coreaudio
//**************************************************************
#include "faust/audio/coreaudio-ios-dsp.h"
//**************************************************************
// Interface
//**************************************************************
#if IOS_MIDI_SUPPORT
#include "faust/midi/rt-midi.h"
#include "faust/midi/RtMidi.cpp"
#endif
#include "DspFaust.h"
std::list<GUI*> GUI::fGuiList;
ztimedmap GUI::gTimedZoneMap;
DspFaust::DspFaust(int sample_rate, int buffer_size){
fPolyEngine = new FaustPolyEngine(new iosaudio(sample_rate, buffer_size));
#if IOS_MIDI_SUPPORT
fMidiUI = new MidiUI(new rt_midi());
fPolyEngine->buildUserInterface(fMidiUI);
#endif
}
DspFaust::~DspFaust(){
delete fPolyEngine;
#if IOS_MIDI_SUPPORT
delete fMidiUI;
#endif
}
bool DspFaust::start(){
#if IOS_MIDI_SUPPORT
fMidiUI->run();
#endif
return fPolyEngine->start();
}
void DspFaust::stop(){
#if IOS_MIDI_SUPPORT
fMidiUI->stop();
#endif
fPolyEngine->stop();
}
bool DspFaust::isRunning(){
return fPolyEngine->isRunning();
}
long DspFaust::keyOn(int pitch, int velocity){
return (long) fPolyEngine->keyOn(pitch, velocity);
}
int DspFaust::keyOff(int pitch){
return fPolyEngine->keyOff(pitch);
}
long DspFaust::newVoice(){
return (long) fPolyEngine->newVoice();
}
int DspFaust::deleteVoice(long voice){
return fPolyEngine->deleteVoice(voice);
}
void DspFaust::allNotesOff(){
return fPolyEngine->allNotesOff();
}
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, long voice, float value){
fPolyEngine->setVoiceParamValue(address, voice, value);
}
void DspFaust::setVoiceParamValue(int id, long voice, float value){
fPolyEngine->setVoiceParamValue(id, voice, value);
}
float DspFaust::getVoiceParamValue(const char* address, long voice){
return fPolyEngine->getVoiceParamValue(address, voice);
}
float DspFaust::getVoiceParamValue(int id, long voice){
return fPolyEngine->getVoiceParamValue(id, voice);
}
const char* DspFaust::getParamAddress(int id){
return fPolyEngine->getParamAddress(id);
}
const char* DspFaust::getVoiceParamAddress(int id, 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();
}
|