|
- #include <mutex>
- #include <chrono>
- #include <thread>
- #include <condition_variable>
-
- #include "plugin.hpp"
- #include <audio.hpp>
- #include <context.hpp>
-
-
- namespace rack {
- namespace core {
-
-
- template <int NUM_AUDIO_INPUTS, int NUM_AUDIO_OUTPUTS>
- struct AudioInterfacePort : audio::Port {
- Module* module;
-
- dsp::DoubleRingBuffer<dsp::Frame<NUM_AUDIO_INPUTS>, 32768> engineInputBuffer;
- dsp::DoubleRingBuffer<dsp::Frame<NUM_AUDIO_OUTPUTS>, 32768> engineOutputBuffer;
-
- dsp::SampleRateConverter<NUM_AUDIO_INPUTS> inputSrc;
- dsp::SampleRateConverter<NUM_AUDIO_OUTPUTS> outputSrc;
-
- // Port variable caches
- int deviceNumInputs = 0;
- int deviceNumOutputs = 0;
- float deviceSampleRate = 0.f;
- int requestedEngineFrames = 0;
-
- AudioInterfacePort(Module* module) {
- this->module = module;
- maxOutputs = NUM_AUDIO_INPUTS;
- maxInputs = NUM_AUDIO_OUTPUTS;
- inputSrc.setQuality(6);
- outputSrc.setQuality(6);
- }
-
- void setPrimary() {
- APP->engine->setPrimaryModule(module);
- }
-
- bool isPrimary() {
- return APP->engine->getPrimaryModule() == module;
- }
-
- void processInput(const float* input, int inputStride, int frames) override {
- // DEBUG("%p: new device block ____________________________", this);
- // Claim primary module if there is none
- if (!APP->engine->getPrimaryModule()) {
- setPrimary();
- }
- bool isPrimaryCached = isPrimary();
-
- // Set sample rate of engine if engine sample rate is "auto".
- if (isPrimaryCached) {
- APP->engine->setSuggestedSampleRate(deviceSampleRate);
- }
-
- float engineSampleRate = APP->engine->getSampleRate();
- float sampleRateRatio = engineSampleRate / deviceSampleRate;
-
- // DEBUG("%p: %d block, engineOutputBuffer still has %d", this, frames, (int) engineOutputBuffer.size());
-
- // Consider engine buffers "too full" if they contain a bit more than the audio device's number of frames, converted to engine sample rate.
- int maxEngineFrames = (int) std::ceil(frames * sampleRateRatio * 2.0) - 1;
- // If the engine output buffer is too full, clear it to keep latency low. No need to clear if primary because it's always cleared below.
- if (!isPrimaryCached && (int) engineOutputBuffer.size() > maxEngineFrames) {
- engineOutputBuffer.clear();
- // DEBUG("%p: clearing engine output", this);
- }
-
- if (deviceNumInputs > 0) {
- // Always clear engine output if primary
- if (isPrimaryCached) {
- engineOutputBuffer.clear();
- }
- // Set up sample rate converter
- outputSrc.setRates(deviceSampleRate, engineSampleRate);
- outputSrc.setChannels(deviceNumInputs);
- // Convert audio input -> engine output
- dsp::Frame<NUM_AUDIO_OUTPUTS> audioInputBuffer[frames];
- std::memset(audioInputBuffer, 0, sizeof(audioInputBuffer));
- for (int i = 0; i < frames; i++) {
- for (int j = 0; j < deviceNumInputs; j++) {
- float v = input[i * inputStride + j];
- audioInputBuffer[i].samples[j] = v;
- }
- }
- int audioInputFrames = frames;
- int outputFrames = engineOutputBuffer.capacity();
- outputSrc.process(audioInputBuffer, &audioInputFrames, engineOutputBuffer.endData(), &outputFrames);
- engineOutputBuffer.endIncr(outputFrames);
- // Request exactly as many frames as we have in the engine output buffer.
- requestedEngineFrames = engineOutputBuffer.size();
- }
- else {
- // Upper bound on number of frames so that `audioOutputFrames >= frames` when processOutput() is called.
- requestedEngineFrames = std::max((int) std::ceil(frames * sampleRateRatio) - (int) engineInputBuffer.size(), 0);
- }
- }
-
- void processBuffer(const float* input, int inputStride, float* output, int outputStride, int frames) override {
- // Step engine
- if (isPrimary() && requestedEngineFrames > 0) {
- // DEBUG("%p: %d block, stepping %d", this, frames, requestedEngineFrames);
- APP->engine->stepBlock(requestedEngineFrames);
- }
- }
-
- void processOutput(float* output, int outputStride, int frames) override {
- // bool isPrimaryCached = isPrimary();
- float engineSampleRate = APP->engine->getSampleRate();
- float sampleRateRatio = engineSampleRate / deviceSampleRate;
-
- if (deviceNumOutputs > 0) {
- // Set up sample rate converter
- inputSrc.setRates(engineSampleRate, deviceSampleRate);
- inputSrc.setChannels(deviceNumOutputs);
- // Convert engine input -> audio output
- dsp::Frame<NUM_AUDIO_OUTPUTS> audioOutputBuffer[frames];
- int inputFrames = engineInputBuffer.size();
- int audioOutputFrames = frames;
- inputSrc.process(engineInputBuffer.startData(), &inputFrames, audioOutputBuffer, &audioOutputFrames);
- engineInputBuffer.startIncr(inputFrames);
- // Copy the audio output buffer
- for (int i = 0; i < audioOutputFrames; i++) {
- for (int j = 0; j < deviceNumOutputs; j++) {
- float v = audioOutputBuffer[i].samples[j];
- v = clamp(v, -1.f, 1.f);
- output[i * outputStride + j] = v;
- }
- }
- // Fill the rest of the audio output buffer with zeros
- for (int i = audioOutputFrames; i < frames; i++) {
- for (int j = 0; j < deviceNumOutputs; j++) {
- output[i * outputStride + j] = 0.f;
- }
- }
- }
-
- // DEBUG("%p: %d block, engineInputBuffer left %d", this, frames, (int) engineInputBuffer.size());
-
- // If the engine input buffer is too full, clear it to keep latency low.
- int maxEngineFrames = (int) std::ceil(frames * sampleRateRatio * 2.0) - 1;
- if ((int) engineInputBuffer.size() > maxEngineFrames) {
- engineInputBuffer.clear();
- // DEBUG("%p: clearing engine input", this);
- }
-
- // DEBUG("%p %s:\tframes %d requestedEngineFrames %d\toutputBuffer %d engineInputBuffer %d\t", this, isPrimaryCached ? "primary" : "secondary", frames, requestedEngineFrames, engineOutputBuffer.size(), engineInputBuffer.size());
- }
-
- void onStartStream() override {
- deviceNumInputs = std::min(getNumInputs(), NUM_AUDIO_OUTPUTS);
- deviceNumOutputs = std::min(getNumOutputs(), NUM_AUDIO_INPUTS);
- deviceSampleRate = getSampleRate();
- engineInputBuffer.clear();
- engineOutputBuffer.clear();
- // DEBUG("onStartStream %d %d %f", deviceNumInputs, deviceNumOutputs, deviceSampleRate);
- }
-
- void onStopStream() override {
- deviceNumInputs = 0;
- deviceNumOutputs = 0;
- deviceSampleRate = 0.f;
- engineInputBuffer.clear();
- engineOutputBuffer.clear();
- // DEBUG("onStopStream");
- }
- };
-
-
- template <int NUM_AUDIO_INPUTS, int NUM_AUDIO_OUTPUTS>
- struct AudioInterface : Module {
- static constexpr int NUM_INPUT_LIGHTS = (NUM_AUDIO_INPUTS > 2) ? (NUM_AUDIO_INPUTS / 2) : 0;
- static constexpr int NUM_OUTPUT_LIGHTS = (NUM_AUDIO_OUTPUTS > 2) ? (NUM_AUDIO_OUTPUTS / 2) : 0;
-
- enum ParamIds {
- ENUMS(GAIN_PARAM, NUM_AUDIO_INPUTS == 2),
- NUM_PARAMS
- };
- enum InputIds {
- ENUMS(AUDIO_INPUTS, NUM_AUDIO_INPUTS),
- NUM_INPUTS
- };
- enum OutputIds {
- ENUMS(AUDIO_OUTPUTS, NUM_AUDIO_OUTPUTS),
- NUM_OUTPUTS
- };
- enum LightIds {
- ENUMS(INPUT_LIGHTS, NUM_INPUT_LIGHTS * 2),
- ENUMS(OUTPUT_LIGHTS, NUM_OUTPUT_LIGHTS * 2),
- ENUMS(VU_LIGHTS, (NUM_AUDIO_INPUTS == 2) ? (2 * 6) : 0),
- NUM_LIGHTS
- };
-
- AudioInterfacePort<NUM_AUDIO_INPUTS, NUM_AUDIO_OUTPUTS> port;
-
- dsp::RCFilter dcFilters[NUM_AUDIO_INPUTS];
- bool dcFilterEnabled = false;
-
- dsp::ClockDivider lightDivider;
- // For each pair of inputs/outputs
- float inputClipTimers[(NUM_AUDIO_INPUTS > 0) ? NUM_INPUT_LIGHTS : 0] = {};
- float outputClipTimers[(NUM_AUDIO_INPUTS > 0) ? NUM_OUTPUT_LIGHTS : 0] = {};
- dsp::VuMeter2 vuMeter[(NUM_AUDIO_INPUTS == 2) ? 2 : 0];
-
- AudioInterface() : port(this) {
- config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS);
- if (NUM_AUDIO_INPUTS == 2)
- configParam(GAIN_PARAM, 0.f, 2.f, 1.f, "Level", " dB", -10, 40);
- for (int i = 0; i < NUM_AUDIO_INPUTS; i++)
- configInput(AUDIO_INPUTS + i, string::f("To \"device output %d\"", i + 1));
- for (int i = 0; i < NUM_AUDIO_OUTPUTS; i++)
- configOutput(AUDIO_OUTPUTS + i, string::f("From \"device input %d\"", i + 1));
- for (int i = 0; i < NUM_INPUT_LIGHTS; i++)
- configLight(INPUT_LIGHTS + 2 * i, string::f("Device output %d/%d status", 2 * i + 1, 2 * i + 2));
- for (int i = 0; i < NUM_OUTPUT_LIGHTS; i++)
- configLight(OUTPUT_LIGHTS + 2 * i, string::f("Device input %d/%d status", 2 * i + 1, 2 * i + 2));
-
- lightDivider.setDivision(512);
-
- float sampleTime = APP->engine->getSampleTime();
- for (int i = 0; i < NUM_AUDIO_INPUTS; i++) {
- dcFilters[i].setCutoffFreq(10.f * sampleTime);
- }
-
- onReset();
- }
-
- ~AudioInterface() {
- // Close stream here before destructing AudioInterfacePort, so processBuffer() etc are not called on another thread while destructing.
- port.setDriverId(-1);
- }
-
- void onReset() override {
- port.setDriverId(-1);
-
- if (NUM_AUDIO_INPUTS == 2)
- dcFilterEnabled = true;
- else
- dcFilterEnabled = false;
- }
-
- void onSampleRateChange(const SampleRateChangeEvent& e) override {
- port.engineInputBuffer.clear();
- port.engineOutputBuffer.clear();
-
- for (int i = 0; i < NUM_AUDIO_INPUTS; i++) {
- dcFilters[i].setCutoffFreq(10.f * e.sampleTime);
- }
- }
-
- void process(const ProcessArgs& args) override {
- const float clipTime = 0.25f;
-
- // Push inputs to buffer
- if (port.deviceNumOutputs > 0) {
- dsp::Frame<NUM_AUDIO_INPUTS> inputFrame = {};
- for (int i = 0; i < port.deviceNumOutputs; i++) {
- // Get input
- float v = 0.f;
- if (inputs[AUDIO_INPUTS + i].isConnected())
- v = inputs[AUDIO_INPUTS + i].getVoltageSum() / 10.f;
- // Normalize right input to left on Audio-2
- else if (i == 1 && NUM_AUDIO_INPUTS == 2)
- v = inputFrame.samples[0];
-
- // Apply DC filter
- if (dcFilterEnabled) {
- dcFilters[i].process(v);
- v = dcFilters[i].highpass();
- }
-
- // Detect clipping
- if (NUM_AUDIO_INPUTS > 2) {
- if (std::fabs(v) >= 1.f)
- inputClipTimers[i / 2] = clipTime;
- }
- inputFrame.samples[i] = v;
- }
-
- // Audio-2: Apply gain from knob
- if (NUM_AUDIO_INPUTS == 2) {
- float gain = std::pow(params[GAIN_PARAM].getValue(), 2.f);
- for (int i = 0; i < NUM_AUDIO_INPUTS; i++) {
- inputFrame.samples[i] *= gain;
- }
- }
-
- if (!port.engineInputBuffer.full()) {
- port.engineInputBuffer.push(inputFrame);
- }
-
- // Audio-2: VU meter process
- if (NUM_AUDIO_INPUTS == 2) {
- for (int i = 0; i < NUM_AUDIO_INPUTS; i++) {
- vuMeter[i].process(args.sampleTime, inputFrame.samples[i]);
- }
- }
- }
- else {
- // Audio-2: Clear VU meter
- if (NUM_AUDIO_INPUTS == 2) {
- for (int i = 0; i < NUM_AUDIO_INPUTS; i++) {
- vuMeter[i].reset();
- }
- }
- }
-
- // Pull outputs from buffer
- if (!port.engineOutputBuffer.empty()) {
- dsp::Frame<NUM_AUDIO_OUTPUTS> outputFrame = port.engineOutputBuffer.shift();
- for (int i = 0; i < NUM_AUDIO_OUTPUTS; i++) {
- float v = outputFrame.samples[i];
- outputs[AUDIO_OUTPUTS + i].setVoltage(10.f * v);
-
- // Detect clipping
- if (NUM_AUDIO_OUTPUTS > 2) {
- if (std::fabs(v) >= 1.f)
- outputClipTimers[i / 2] = clipTime;
- }
- }
- }
- else {
- // Zero outputs
- for (int i = 0; i < NUM_AUDIO_OUTPUTS; i++) {
- outputs[AUDIO_OUTPUTS + i].setVoltage(0.f);
- }
- }
-
- // Lights
- if (lightDivider.process()) {
- float lightTime = args.sampleTime * lightDivider.getDivision();
- // Audio-2: VU meter
- if (NUM_AUDIO_INPUTS == 2) {
- for (int i = 0; i < NUM_AUDIO_INPUTS; i++) {
- lights[VU_LIGHTS + i * 6 + 0].setBrightness(vuMeter[i].getBrightness(0, 0));
- lights[VU_LIGHTS + i * 6 + 1].setBrightness(vuMeter[i].getBrightness(-3, 0));
- lights[VU_LIGHTS + i * 6 + 2].setBrightness(vuMeter[i].getBrightness(-6, -3));
- lights[VU_LIGHTS + i * 6 + 3].setBrightness(vuMeter[i].getBrightness(-12, -6));
- lights[VU_LIGHTS + i * 6 + 4].setBrightness(vuMeter[i].getBrightness(-24, -12));
- lights[VU_LIGHTS + i * 6 + 5].setBrightness(vuMeter[i].getBrightness(-36, -24));
- }
- }
- // Audio-8 and Audio-16: pair state lights
- else {
- // Turn on light if at least one port is enabled in the nearby pair.
- for (int i = 0; i < NUM_AUDIO_INPUTS / 2; i++) {
- bool active = port.deviceNumOutputs >= 2 * i + 1;
- bool clip = inputClipTimers[i] > 0.f;
- if (clip)
- inputClipTimers[i] -= lightTime;
- lights[INPUT_LIGHTS + i * 2 + 0].setBrightness(active && !clip);
- lights[INPUT_LIGHTS + i * 2 + 1].setBrightness(active && clip);
- }
- for (int i = 0; i < NUM_AUDIO_OUTPUTS / 2; i++) {
- bool active = port.deviceNumInputs >= 2 * i + 1;
- bool clip = outputClipTimers[i] > 0.f;
- if (clip)
- outputClipTimers[i] -= lightTime;
- lights[OUTPUT_LIGHTS + i * 2 + 0].setBrightness(active & !clip);
- lights[OUTPUT_LIGHTS + i * 2 + 1].setBrightness(active & clip);
- }
- }
- }
- }
-
- json_t* dataToJson() override {
- json_t* rootJ = json_object();
- json_object_set_new(rootJ, "audio", port.toJson());
-
- json_object_set_new(rootJ, "dcFilter", json_boolean(dcFilterEnabled));
-
- return rootJ;
- }
-
- void dataFromJson(json_t* rootJ) override {
- json_t* audioJ = json_object_get(rootJ, "audio");
- if (audioJ)
- port.fromJson(audioJ);
-
- json_t* dcFilterJ = json_object_get(rootJ, "dcFilter");
- if (dcFilterJ)
- dcFilterEnabled = json_boolean_value(dcFilterJ);
- }
-
- /** Must be called when the Engine mutex is unlocked.
- */
- void setPrimary() {
- APP->engine->setPrimaryModule(this);
- }
-
- bool isPrimary() {
- return APP->engine->getPrimaryModule() == this;
- }
- };
-
-
- template <int NUM_AUDIO_INPUTS, int NUM_AUDIO_OUTPUTS>
- struct AudioInterfaceWidget : ModuleWidget {
- typedef AudioInterface<NUM_AUDIO_INPUTS, NUM_AUDIO_OUTPUTS> TAudioInterface;
-
- AudioInterfaceWidget(TAudioInterface* module) {
- setModule(module);
-
- if (NUM_AUDIO_INPUTS == 8 && NUM_AUDIO_OUTPUTS == 8) {
- setPanel(Svg::load(asset::system("res/Core/AudioInterface.svg")));
-
- addChild(createWidget<ScrewSilver>(Vec(RACK_GRID_WIDTH, 0)));
- addChild(createWidget<ScrewSilver>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, 0)));
- addChild(createWidget<ScrewSilver>(Vec(RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
- addChild(createWidget<ScrewSilver>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
-
- addInput(createInput<PJ301MPort>(mm2px(Vec(3.7069211, 55.530807)), module, TAudioInterface::AUDIO_INPUTS + 0));
- addInput(createInput<PJ301MPort>(mm2px(Vec(15.307249, 55.530807)), module, TAudioInterface::AUDIO_INPUTS + 1));
- addInput(createInput<PJ301MPort>(mm2px(Vec(26.906193, 55.530807)), module, TAudioInterface::AUDIO_INPUTS + 2));
- addInput(createInput<PJ301MPort>(mm2px(Vec(38.506519, 55.530807)), module, TAudioInterface::AUDIO_INPUTS + 3));
- addInput(createInput<PJ301MPort>(mm2px(Vec(3.7069209, 70.144905)), module, TAudioInterface::AUDIO_INPUTS + 4));
- addInput(createInput<PJ301MPort>(mm2px(Vec(15.307249, 70.144905)), module, TAudioInterface::AUDIO_INPUTS + 5));
- addInput(createInput<PJ301MPort>(mm2px(Vec(26.906193, 70.144905)), module, TAudioInterface::AUDIO_INPUTS + 6));
- addInput(createInput<PJ301MPort>(mm2px(Vec(38.506519, 70.144905)), module, TAudioInterface::AUDIO_INPUTS + 7));
-
- addOutput(createOutput<PJ301MPort>(mm2px(Vec(3.7069209, 92.143906)), module, TAudioInterface::AUDIO_OUTPUTS + 0));
- addOutput(createOutput<PJ301MPort>(mm2px(Vec(15.307249, 92.143906)), module, TAudioInterface::AUDIO_OUTPUTS + 1));
- addOutput(createOutput<PJ301MPort>(mm2px(Vec(26.906193, 92.143906)), module, TAudioInterface::AUDIO_OUTPUTS + 2));
- addOutput(createOutput<PJ301MPort>(mm2px(Vec(38.506519, 92.143906)), module, TAudioInterface::AUDIO_OUTPUTS + 3));
- addOutput(createOutput<PJ301MPort>(mm2px(Vec(3.7069209, 108.1443)), module, TAudioInterface::AUDIO_OUTPUTS + 4));
- addOutput(createOutput<PJ301MPort>(mm2px(Vec(15.307249, 108.1443)), module, TAudioInterface::AUDIO_OUTPUTS + 5));
- addOutput(createOutput<PJ301MPort>(mm2px(Vec(26.906193, 108.1443)), module, TAudioInterface::AUDIO_OUTPUTS + 6));
- addOutput(createOutput<PJ301MPort>(mm2px(Vec(38.506523, 108.1443)), module, TAudioInterface::AUDIO_OUTPUTS + 7));
-
- addChild(createLight<SmallLight<GreenRedLight>>(mm2px(Vec(12.524985, 54.577202)), module, TAudioInterface::INPUT_LIGHTS + 0 * 2));
- addChild(createLight<SmallLight<GreenRedLight>>(mm2px(Vec(35.725647, 54.577202)), module, TAudioInterface::INPUT_LIGHTS + 1 * 2));
- addChild(createLight<SmallLight<GreenRedLight>>(mm2px(Vec(12.524985, 69.158226)), module, TAudioInterface::INPUT_LIGHTS + 2 * 2));
- addChild(createLight<SmallLight<GreenRedLight>>(mm2px(Vec(35.725647, 69.158226)), module, TAudioInterface::INPUT_LIGHTS + 3 * 2));
- addChild(createLight<SmallLight<GreenRedLight>>(mm2px(Vec(12.524985, 91.147583)), module, TAudioInterface::OUTPUT_LIGHTS + 0 * 2));
- addChild(createLight<SmallLight<GreenRedLight>>(mm2px(Vec(35.725647, 91.147583)), module, TAudioInterface::OUTPUT_LIGHTS + 1 * 2));
- addChild(createLight<SmallLight<GreenRedLight>>(mm2px(Vec(12.524985, 107.17003)), module, TAudioInterface::OUTPUT_LIGHTS + 2 * 2));
- addChild(createLight<SmallLight<GreenRedLight>>(mm2px(Vec(35.725647, 107.17003)), module, TAudioInterface::OUTPUT_LIGHTS + 3 * 2));
-
- AudioWidget* audioWidget = createWidget<AudioWidget>(mm2px(Vec(3.2122073, 14.837339)));
- audioWidget->box.size = mm2px(Vec(44, 28));
- audioWidget->setAudioPort(module ? &module->port : NULL);
- addChild(audioWidget);
- }
- else if (NUM_AUDIO_INPUTS == 16 && NUM_AUDIO_OUTPUTS == 16) {
- setPanel(Svg::load(asset::system("res/Core/AudioInterface16.svg")));
-
- addChild(createWidget<ScrewSilver>(Vec(RACK_GRID_WIDTH, 0)));
- addChild(createWidget<ScrewSilver>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, 0)));
- addChild(createWidget<ScrewSilver>(Vec(RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
- addChild(createWidget<ScrewSilver>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
-
- addInput(createInputCentered<PJ301MPort>(mm2px(Vec(7.661, 59.638)), module, TAudioInterface::AUDIO_INPUTS + 0));
- addInput(createInputCentered<PJ301MPort>(mm2px(Vec(19.26, 59.638)), module, TAudioInterface::AUDIO_INPUTS + 1));
- addInput(createInputCentered<PJ301MPort>(mm2px(Vec(30.86, 59.638)), module, TAudioInterface::AUDIO_INPUTS + 2));
- addInput(createInputCentered<PJ301MPort>(mm2px(Vec(42.461, 59.638)), module, TAudioInterface::AUDIO_INPUTS + 3));
- addInput(createInputCentered<PJ301MPort>(mm2px(Vec(54.06, 59.638)), module, TAudioInterface::AUDIO_INPUTS + 4));
- addInput(createInputCentered<PJ301MPort>(mm2px(Vec(65.661, 59.638)), module, TAudioInterface::AUDIO_INPUTS + 5));
- addInput(createInputCentered<PJ301MPort>(mm2px(Vec(77.26, 59.638)), module, TAudioInterface::AUDIO_INPUTS + 6));
- addInput(createInputCentered<PJ301MPort>(mm2px(Vec(88.86, 59.638)), module, TAudioInterface::AUDIO_INPUTS + 7));
- addInput(createInputCentered<PJ301MPort>(mm2px(Vec(7.661, 74.251)), module, TAudioInterface::AUDIO_INPUTS + 8));
- addInput(createInputCentered<PJ301MPort>(mm2px(Vec(19.26, 74.251)), module, TAudioInterface::AUDIO_INPUTS + 9));
- addInput(createInputCentered<PJ301MPort>(mm2px(Vec(30.86, 74.251)), module, TAudioInterface::AUDIO_INPUTS + 10));
- addInput(createInputCentered<PJ301MPort>(mm2px(Vec(42.461, 74.251)), module, TAudioInterface::AUDIO_INPUTS + 11));
- addInput(createInputCentered<PJ301MPort>(mm2px(Vec(54.06, 74.251)), module, TAudioInterface::AUDIO_INPUTS + 12));
- addInput(createInputCentered<PJ301MPort>(mm2px(Vec(65.661, 74.251)), module, TAudioInterface::AUDIO_INPUTS + 13));
- addInput(createInputCentered<PJ301MPort>(mm2px(Vec(77.26, 74.251)), module, TAudioInterface::AUDIO_INPUTS + 14));
- addInput(createInputCentered<PJ301MPort>(mm2px(Vec(88.86, 74.251)), module, TAudioInterface::AUDIO_INPUTS + 15));
-
- addOutput(createOutputCentered<PJ301MPort>(mm2px(Vec(7.661, 96.251)), module, TAudioInterface::AUDIO_OUTPUTS + 0));
- addOutput(createOutputCentered<PJ301MPort>(mm2px(Vec(19.26, 96.251)), module, TAudioInterface::AUDIO_OUTPUTS + 1));
- addOutput(createOutputCentered<PJ301MPort>(mm2px(Vec(30.86, 96.251)), module, TAudioInterface::AUDIO_OUTPUTS + 2));
- addOutput(createOutputCentered<PJ301MPort>(mm2px(Vec(42.461, 96.251)), module, TAudioInterface::AUDIO_OUTPUTS + 3));
- addOutput(createOutputCentered<PJ301MPort>(mm2px(Vec(54.06, 96.251)), module, TAudioInterface::AUDIO_OUTPUTS + 4));
- addOutput(createOutputCentered<PJ301MPort>(mm2px(Vec(65.661, 96.251)), module, TAudioInterface::AUDIO_OUTPUTS + 5));
- addOutput(createOutputCentered<PJ301MPort>(mm2px(Vec(77.26, 96.251)), module, TAudioInterface::AUDIO_OUTPUTS + 6));
- addOutput(createOutputCentered<PJ301MPort>(mm2px(Vec(88.86, 96.251)), module, TAudioInterface::AUDIO_OUTPUTS + 7));
- addOutput(createOutputCentered<PJ301MPort>(mm2px(Vec(7.661, 112.252)), module, TAudioInterface::AUDIO_OUTPUTS + 8));
- addOutput(createOutputCentered<PJ301MPort>(mm2px(Vec(19.26, 112.252)), module, TAudioInterface::AUDIO_OUTPUTS + 9));
- addOutput(createOutputCentered<PJ301MPort>(mm2px(Vec(30.86, 112.252)), module, TAudioInterface::AUDIO_OUTPUTS + 10));
- addOutput(createOutputCentered<PJ301MPort>(mm2px(Vec(42.461, 112.252)), module, TAudioInterface::AUDIO_OUTPUTS + 11));
- addOutput(createOutputCentered<PJ301MPort>(mm2px(Vec(54.06, 112.252)), module, TAudioInterface::AUDIO_OUTPUTS + 12));
- addOutput(createOutputCentered<PJ301MPort>(mm2px(Vec(65.661, 112.252)), module, TAudioInterface::AUDIO_OUTPUTS + 13));
- addOutput(createOutputCentered<PJ301MPort>(mm2px(Vec(77.26, 112.252)), module, TAudioInterface::AUDIO_OUTPUTS + 14));
- addOutput(createOutputCentered<PJ301MPort>(mm2px(Vec(88.86, 112.252)), module, TAudioInterface::AUDIO_OUTPUTS + 15));
-
- addChild(createLightCentered<SmallLight<GreenRedLight>>(mm2px(Vec(13.46, 55.667)), module, TAudioInterface::INPUT_LIGHTS + 0 * 2));
- addChild(createLightCentered<SmallLight<GreenRedLight>>(mm2px(Vec(36.661, 55.667)), module, TAudioInterface::INPUT_LIGHTS + 1 * 2));
- addChild(createLightCentered<SmallLight<GreenRedLight>>(mm2px(Vec(59.861, 55.667)), module, TAudioInterface::INPUT_LIGHTS + 2 * 2));
- addChild(createLightCentered<SmallLight<GreenRedLight>>(mm2px(Vec(83.061, 55.667)), module, TAudioInterface::INPUT_LIGHTS + 3 * 2));
- addChild(createLightCentered<SmallLight<GreenRedLight>>(mm2px(Vec(13.46, 70.248)), module, TAudioInterface::INPUT_LIGHTS + 4 * 2));
- addChild(createLightCentered<SmallLight<GreenRedLight>>(mm2px(Vec(36.661, 70.248)), module, TAudioInterface::INPUT_LIGHTS + 5 * 2));
- addChild(createLightCentered<SmallLight<GreenRedLight>>(mm2px(Vec(59.861, 70.248)), module, TAudioInterface::INPUT_LIGHTS + 6 * 2));
- addChild(createLightCentered<SmallLight<GreenRedLight>>(mm2px(Vec(83.061, 70.248)), module, TAudioInterface::INPUT_LIGHTS + 7 * 2));
- addChild(createLightCentered<SmallLight<GreenRedLight>>(mm2px(Vec(13.46, 92.238)), module, TAudioInterface::OUTPUT_LIGHTS + 0 * 2));
- addChild(createLightCentered<SmallLight<GreenRedLight>>(mm2px(Vec(36.661, 92.238)), module, TAudioInterface::OUTPUT_LIGHTS + 1 * 2));
- addChild(createLightCentered<SmallLight<GreenRedLight>>(mm2px(Vec(59.861, 92.238)), module, TAudioInterface::OUTPUT_LIGHTS + 2 * 2));
- addChild(createLightCentered<SmallLight<GreenRedLight>>(mm2px(Vec(83.061, 92.238)), module, TAudioInterface::OUTPUT_LIGHTS + 3 * 2));
- addChild(createLightCentered<SmallLight<GreenRedLight>>(mm2px(Vec(13.46, 108.259)), module, TAudioInterface::OUTPUT_LIGHTS + 4 * 2));
- addChild(createLightCentered<SmallLight<GreenRedLight>>(mm2px(Vec(36.661, 108.259)), module, TAudioInterface::OUTPUT_LIGHTS + 5 * 2));
- addChild(createLightCentered<SmallLight<GreenRedLight>>(mm2px(Vec(59.861, 108.259)), module, TAudioInterface::OUTPUT_LIGHTS + 6 * 2));
- addChild(createLightCentered<SmallLight<GreenRedLight>>(mm2px(Vec(83.061, 108.259)), module, TAudioInterface::OUTPUT_LIGHTS + 7 * 2));
-
- AudioWidget* audioWidget = createWidget<AudioWidget>(mm2px(Vec(2.57, 14.839)));
- audioWidget->box.size = mm2px(Vec(91.382, 28.0));
- audioWidget->setAudioPort(module ? &module->port : NULL);
- addChild(audioWidget);
- }
- else if (NUM_AUDIO_INPUTS == 2 && NUM_AUDIO_OUTPUTS == 2) {
- setPanel(Svg::load(asset::system("res/Core/AudioInterface2.svg")));
-
- addChild(createWidget<ScrewSilver>(Vec(RACK_GRID_WIDTH, 0)));
- addChild(createWidget<ScrewSilver>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, 0)));
- addChild(createWidget<ScrewSilver>(Vec(RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
- addChild(createWidget<ScrewSilver>(Vec(box.size.x - 2 * RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH)));
-
- addParam(createParamCentered<RoundBigBlackKnob>(mm2px(Vec(12.7, 74.019)), module, TAudioInterface::GAIN_PARAM));
-
- addInput(createInputCentered<PJ301MPort>(mm2px(Vec(6.697, 94.253)), module, TAudioInterface::AUDIO_INPUTS + 0));
- addInput(createInputCentered<PJ301MPort>(mm2px(Vec(18.703, 94.253)), module, TAudioInterface::AUDIO_INPUTS + 1));
-
- addOutput(createOutputCentered<PJ301MPort>(mm2px(Vec(6.699, 112.254)), module, TAudioInterface::AUDIO_OUTPUTS + 0));
- addOutput(createOutputCentered<PJ301MPort>(mm2px(Vec(18.7, 112.254)), module, TAudioInterface::AUDIO_OUTPUTS + 1));
-
- addChild(createLightCentered<MediumLight<RedLight>>(mm2px(Vec(6.7, 29.759)), module, TAudioInterface::VU_LIGHTS + 0 * 6 + 0));
- addChild(createLightCentered<MediumLight<RedLight>>(mm2px(Vec(18.7, 29.759)), module, TAudioInterface::VU_LIGHTS + 1 * 6 + 0));
- addChild(createLightCentered<MediumLight<YellowLight>>(mm2px(Vec(6.7, 34.753)), module, TAudioInterface::VU_LIGHTS + 0 * 6 + 1));
- addChild(createLightCentered<MediumLight<YellowLight>>(mm2px(Vec(18.7, 34.753)), module, TAudioInterface::VU_LIGHTS + 1 * 6 + 1));
- addChild(createLightCentered<MediumLight<GreenLight>>(mm2px(Vec(6.7, 39.749)), module, TAudioInterface::VU_LIGHTS + 0 * 6 + 2));
- addChild(createLightCentered<MediumLight<GreenLight>>(mm2px(Vec(18.7, 39.749)), module, TAudioInterface::VU_LIGHTS + 1 * 6 + 2));
- addChild(createLightCentered<MediumLight<GreenLight>>(mm2px(Vec(6.7, 44.744)), module, TAudioInterface::VU_LIGHTS + 0 * 6 + 3));
- addChild(createLightCentered<MediumLight<GreenLight>>(mm2px(Vec(18.7, 44.744)), module, TAudioInterface::VU_LIGHTS + 1 * 6 + 3));
- addChild(createLightCentered<MediumLight<GreenLight>>(mm2px(Vec(6.7, 49.744)), module, TAudioInterface::VU_LIGHTS + 0 * 6 + 4));
- addChild(createLightCentered<MediumLight<GreenLight>>(mm2px(Vec(18.7, 49.744)), module, TAudioInterface::VU_LIGHTS + 1 * 6 + 4));
- addChild(createLightCentered<MediumLight<GreenLight>>(mm2px(Vec(6.7, 54.745)), module, TAudioInterface::VU_LIGHTS + 0 * 6 + 5));
- addChild(createLightCentered<MediumLight<GreenLight>>(mm2px(Vec(18.7, 54.745)), module, TAudioInterface::VU_LIGHTS + 1 * 6 + 5));
-
- AudioDeviceWidget* audioWidget = createWidget<AudioDeviceWidget>(mm2px(Vec(2.135, 14.259)));
- audioWidget->box.size = mm2px(Vec(21.128, 6.725));
- audioWidget->setAudioPort(module ? &module->port : NULL);
- // Adjust deviceChoice position
- audioWidget->deviceChoice->textOffset = Vec(6, 14);
- addChild(audioWidget);
- }
- }
-
- void appendContextMenu(Menu* menu) override {
- TAudioInterface* module = dynamic_cast<TAudioInterface*>(this->module);
-
- menu->addChild(new MenuSeparator);
-
- menu->addChild(createCheckMenuItem("Primary audio module",
- [=]() {return module->isPrimary();},
- [=]() {module->setPrimary();}
- ));
-
- menu->addChild(createBoolPtrMenuItem("DC blocker", &module->dcFilterEnabled));
- }
- };
-
-
- Model* modelAudioInterface2 = createModel<AudioInterface<2, 2>, AudioInterfaceWidget<2, 2>>("AudioInterface2");
- // Legacy name for Audio-8
- Model* modelAudioInterface = createModel<AudioInterface<8, 8>, AudioInterfaceWidget<8, 8>>("AudioInterface");
- Model* modelAudioInterface16 = createModel<AudioInterface<16, 16>, AudioInterfaceWidget<16, 16>>("AudioInterface16");
-
-
- } // namespace core
- } // namespace rack
|