From 8e30a4c08dfead6290cb79ada1c99044226e1b63 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Fri, 14 Oct 2022 12:13:52 -0400 Subject: [PATCH] Make the graphics nice --- res/a10u8r_module.svg | 299 ++++++++++++++++++++++++++++++++++++++++++ res/module.svg | 100 -------------- src/module.cpp | 21 +-- 3 files changed, 310 insertions(+), 110 deletions(-) create mode 100644 res/a10u8r_module.svg delete mode 100644 res/module.svg diff --git a/res/a10u8r_module.svg b/res/a10u8r_module.svg new file mode 100644 index 0000000..7e21d6e --- /dev/null +++ b/res/a10u8r_module.svg @@ -0,0 +1,299 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/module.svg b/res/module.svg deleted file mode 100644 index 68121cd..0000000 --- a/res/module.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - diff --git a/src/module.cpp b/src/module.cpp index 65942b7..50909fa 100644 --- a/src/module.cpp +++ b/src/module.cpp @@ -20,12 +20,13 @@ struct A10u8r_module : Module { A10u8r_module() { config(PARAMS_LEN, INPUTS_LEN, OUTPUTS_LEN, LIGHTS_LEN); - configParam(VALUE_PARAM, 0.f, 1.f, 0.f, ""); - configInput(INPUT_INPUT, ""); - configOutput(OUTPUT_OUTPUT, ""); + configParam(VALUE_PARAM, 0.f, 1.f, 1.f, "Multiplier"); + configInput(INPUT_INPUT, "Signal"); + configOutput(OUTPUT_OUTPUT, "Signal"); } void process(const ProcessArgs& args) override { + float value = params[VALUE_PARAM].getValue(); float input = inputs[INPUT_INPUT].getVoltage(); outputs[OUTPUT_OUTPUT].setVoltage(value * input); @@ -38,16 +39,16 @@ struct A10u8r_moduleWidget : ModuleWidget { setModule(module); setPanel(createPanel(asset::plugin(pluginInstance, "res/a10u8r_module.svg"))); + // Set the screw positions + addChild(createWidget(Vec(0, 0))); addChild(createWidget(Vec(RACK_GRID_WIDTH, 0))); - addChild(createWidget(Vec(box.size.x - 2 * RACK_GRID_WIDTH, 0))); + addChild(createWidget(Vec(0, RACK_GRID_HEIGHT - RACK_GRID_WIDTH))); addChild(createWidget(Vec(RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH))); - addChild(createWidget(Vec(box.size.x - 2 * RACK_GRID_WIDTH, RACK_GRID_HEIGHT - RACK_GRID_WIDTH))); - addParam(createParamCentered(mm2px(Vec(15.24, 64.25)), module, A10u8r_module::VALUE_PARAM)); - - addInput(createInputCentered(mm2px(Vec(15.24, 25.81)), module, A10u8r_module::INPUT_INPUT)); - - addOutput(createOutputCentered(mm2px(Vec(15.24, 110.491)), module, A10u8r_module::OUTPUT_OUTPUT)); + // Configure I/O + addParam(createParamCentered(mm2px(Vec(5.08, 64.25)), module, A10u8r_module::VALUE_PARAM)); + addInput(createInputCentered(mm2px(Vec(5.08, 31.102)), module, A10u8r_module::INPUT_INPUT)); + addOutput(createOutputCentered(mm2px(Vec(5.08, 110.491)), module, A10u8r_module::OUTPUT_OUTPUT)); } };