computerscare-vcv-modules

computerscare modules for VCV Rack
Log | Files | Refs

commit aa248f9b595b12400af3188ce5bb5d881dfb2909
parent 10bbb3b3026268888baee2c45f3bbdd446e0e562
Author: Adam M <[email protected]>
Date:   Sun, 31 Mar 2019 14:41:01 -0500

Update configParam to new API

Diffstat:
Msrc/ComputerscareDebug.cpp | 12++++++------
Msrc/ComputerscareIso.cpp | 6+++---
Msrc/ComputerscareKnolyPobs.cpp | 6+++---
Msrc/ComputerscareOhPeas.cpp | 15++++++---------
4 files changed, 18 insertions(+), 21 deletions(-)

diff --git a/src/ComputerscareDebug.cpp b/src/ComputerscareDebug.cpp @@ -63,12 +63,12 @@ struct ComputerscareDebug : Module { ComputerscareDebug() { config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS); - params[MANUAL_TRIGGER].config(0.0f, 1.0f, 0.0f, "Manual Trigger"); - params[MANUAL_CLEAR_TRIGGER].config(0.0f, 1.0f, 0.0f, "Clear"); - params[SWITCH_VIEW].config(0.0f, 2.0f, 0.0f, "Input Mode"); - params[WHICH_CLOCK].config(0.0f, 2.0f, 0.0f, "Clock Mode"); - params[CLOCK_CHANNEL_FOCUS].config(0.f,15.f,0.f,"Clock Channel Selector"); - params[INPUT_CHANNEL_FOCUS].config(0.f,15.f,0.f,"Input Channel Selector"); + configParam(MANUAL_TRIGGER, 0.0f, 1.0f, 0.0f, "Manual Trigger"); + configParam(MANUAL_CLEAR_TRIGGER, 0.0f, 1.0f, 0.0f, "Clear"); + configParam(SWITCH_VIEW, 0.0f, 2.0f, 0.0f, "Input Mode"); + configParam(WHICH_CLOCK, 0.0f, 2.0f, 0.0f, "Clock Mode"); + configParam(CLOCK_CHANNEL_FOCUS, 0.f,15.f,0.f,"Clock Channel Selector"); + configParam(INPUT_CHANNEL_FOCUS, 0.f,15.f,0.f,"Input Channel Selector"); outputs[POLY_OUTPUT].setChannels(16); //params[MANUAL_TRIGGER].randomizable=false; diff --git a/src/ComputerscareIso.cpp b/src/ComputerscareIso.cpp @@ -34,10 +34,10 @@ struct ComputerscareIso : Module { config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS); for (int i = 0; i < numKnobs; i++) { - params[KNOB + i].config(0.0f, 10.0f, 0.0f); - params[KNOB+i].config(0.f, 10.f, 0.f, "Channel "+std::to_string(i+1) + " Voltage", " Volts"); + configParam(KNOB + i, 0.0f, 10.0f, 0.0f); + configParam(KNOB+i, 0.f, 10.f, 0.f, "Channel "+std::to_string(i+1) + " Voltage", " Volts"); } - params[TOGGLES].config(0.0f, 1.0f, 0.0f); + configParam(TOGGLES, 0.0f, 1.0f, 0.0f); outputs[POLY_OUTPUT].setChannels(16); } void process(const ProcessArgs &args) override { diff --git a/src/ComputerscareKnolyPobs.cpp b/src/ComputerscareKnolyPobs.cpp @@ -34,10 +34,10 @@ struct ComputerscareKnolyPobs : Module { config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS); for (int i = 0; i < numKnobs; i++) { - params[KNOB + i].config(0.0f, 10.0f, 0.0f); - params[KNOB+i].config(0.f, 10.f, 0.f, "Channel "+std::to_string(i+1) + " Voltage", " Volts"); + configParam(KNOB + i, 0.0f, 10.0f, 0.0f); + configParam(KNOB+i, 0.f, 10.f, 0.f, "Channel "+std::to_string(i+1) + " Voltage", " Volts"); } - params[TOGGLES].config(0.0f, 1.0f, 0.0f); + configParam(TOGGLES, 0.0f, 1.0f, 0.0f); outputs[POLY_OUTPUT].setChannels(16); } void process(const ProcessArgs &args) override { diff --git a/src/ComputerscareOhPeas.cpp b/src/ComputerscareOhPeas.cpp @@ -148,15 +148,15 @@ struct ComputerscareOhPeas : Module ComputerscareOhPeas() { config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS); - params[GLOBAL_TRANSPOSE].config(-1.f, 1.f, 0.0f, "Global Transpose"); - params[NUM_DIVISIONS].config(1.f, 24.f, 12.0f, "Number of Divisions"); + configParam(GLOBAL_TRANSPOSE, -1.f, 1.f, 0.0f, "Global Transpose"); + configParam(NUM_DIVISIONS, 1.f, 24.f, 12.0f, "Number of Divisions"); for(int i = 0; i < numChannels; i++) { std::string chi = "Ch. " + std::to_string(i + 1); - params[ SCALE_TRIM + i].config(-1.f, 1.f, 0.0f, chi + " Scale CV Amount"); - params[ SCALE_VAL + i].config(-5.f, 5.f, 0.0f, chi + " Scale Value"); - params[ OFFSET_TRIM + i].config(-1.f, 1.f, 0.0f, chi + " Offset CV Amount"); - params[ OFFSET_VAL + i].config(-5.f, 5.f, 0.0f, chi + " Offset Value"); + configParam( SCALE_TRIM + i, -1.f, 1.f, 0.0f, chi + " Scale CV Amount"); + configParam( SCALE_VAL + i, -5.f, 5.f, 0.0f, chi + " Scale Value"); + configParam( OFFSET_TRIM + i, -1.f, 1.f, 0.0f, chi + " Offset CV Amount"); + configParam( OFFSET_VAL + i, -5.f, 5.f, 0.0f, chi + " Offset Value"); } /* @@ -209,10 +209,7 @@ struct ComputerscareOhPeas : Module void setQuant() { - //std::string value = "23";//this->textField->text; - printf("delta %s\n", this->currentFormula.c_str()); this->quant = Quantizer(this->currentFormula.c_str(), this->numDivisions, this->globalTranspose); - printf("echo \n"); } // For more advanced Module features, read Rack's engine.hpp header file // - toJson, fromJson: serialization of internal data