computerscare-vcv-modules

computerscare modules for VCV Rack
Log | Files | Refs

commit 25ffc9ba3d86cca74236c909515fd6980a9ca77e
parent 7e948f3e6b3f87d5227a80a5e0ecb40bfc7a7245
Author: Adam M <[email protected]>
Date:   Thu, 11 Feb 2021 22:20:05 -0600

Light widget mode for blank for use with modularfungi lightsoff

Diffstat:
Msrc/ComputerscareBlank.cpp | 67+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------
1 file changed, 61 insertions(+), 6 deletions(-)

diff --git a/src/ComputerscareBlank.cpp b/src/ComputerscareBlank.cpp @@ -123,6 +123,7 @@ struct ComputerscareBlank : ComputerscareMenuParamModule { NEXT_FILE_BEHAVIOR, SLIDESHOW_ACTIVE, SLIDESHOW_TIME, + LIGHT_WIDGET_MODE, NUM_PARAMS }; enum InputIds { @@ -164,6 +165,7 @@ struct ComputerscareBlank : ComputerscareMenuParamModule { configParam(SLIDESHOW_ACTIVE, 0.f, 1.f, 0.f, "Slideshow Active"); configMenuParam(SLIDESHOW_TIME, 0.f, 1.f, 0.200948f, "Slideshow Time", 2, " s", 400.f, 3.f); + configParam(LIGHT_WIDGET_MODE, 0.f, 1.f, 0.f, "Keep image fully opaque when used with ModularFungi Lights Off"); paths.push_back("empty"); @@ -303,6 +305,9 @@ struct ComputerscareBlank : ComputerscareMenuParamModule { } } + bool getLightWidgetMode() { + return params[LIGHT_WIDGET_MODE].getValue(); + } void updateScrubFrame() { if (ready) { scrubFrame = mapBlankFrameOffset(zeroOffset, numFrames); @@ -783,7 +788,8 @@ struct KeyboardControlChildMenu : MenuItem { }; -struct PNGDisplay : TransparentWidget { +template <class TBase> +struct tPNGDisplay : TBase { ComputerscareBlank *blankModule; int imgWidth, imgHeight; @@ -794,7 +800,7 @@ struct PNGDisplay : TransparentWidget { int currentFrame = -1; AnimatedGifBuddy gifBuddy; - PNGDisplay() { + tPNGDisplay() { } @@ -824,7 +830,7 @@ struct PNGDisplay : TransparentWidget { void setOffsets() { } - void draw(const DrawArgs &args) override { + void draw(const rack::Widget::DrawArgs &args) override { if (blankModule && blankModule->loadedJSON) { std::string modulePath = blankModule->getPath(); if (path != modulePath) { @@ -900,10 +906,56 @@ struct PNGDisplay : TransparentWidget { currentFrame = blankModule->scrubFrame; } } - TransparentWidget::step(); + TBase::step(); + } +}; + +//this is so CustomBlank can optionally stay fully opaque when ModularFungi LightOff module is used +typedef tPNGDisplay<LightWidget> PNGDisplayLightWidget; +typedef tPNGDisplay<TransparentWidget> PNGDisplayTransparentWidget; + +struct PNGDisplay : Widget { + int counter = 0; + bool lightWidgetMode = false; + PNGDisplay(ComputerscareBlank *blankModule) { + module = blankModule; + + pngLight = new PNGDisplayLightWidget(); + pngLight->blankModule = blankModule; + + pngTransparent = new PNGDisplayTransparentWidget(); + pngTransparent->blankModule = blankModule; + + addChild(pngTransparent); + Widget(); + } + void resetZooms() { + pngLight->resetZooms(); + pngTransparent->resetZooms(); } + void step() override { + if (module) { + bool moduleLightWidgetMode = module->getLightWidgetMode(); + if (moduleLightWidgetMode != lightWidgetMode) { + lightWidgetMode = moduleLightWidgetMode; + if (lightWidgetMode) { + removeChild(pngTransparent); + addChild(pngLight); + } else { + removeChild(pngLight); + addChild(pngTransparent); + } + } + } + //pngLight->hide(); + Widget::step(); + } + PNGDisplayLightWidget *pngLight; + PNGDisplayTransparentWidget *pngTransparent; + ComputerscareBlank *module; }; + struct GiantFrameDisplay : TransparentWidget { ComputerscareBlank *module; SmallLetterDisplay *description; @@ -975,8 +1027,7 @@ struct ComputerscareBlankWidget : MenuParamModuleWidget { if (blankModule) { { - PNGDisplay *pngDisplay = new PNGDisplay(); - pngDisplay->blankModule = blankModule; + PNGDisplay *pngDisplay = new PNGDisplay(blankModule); pngDisplay->box.pos = Vec(0, 0); pngDisplay->box.size = Vec( blankModule->width , blankModule->height ); @@ -1078,6 +1129,10 @@ struct ComputerscareBlankWidget : MenuParamModuleWidget { MenuParam* slideshowSpeedParam = new MenuParam(blank->paramQuantities[ComputerscareBlank::SLIDESHOW_TIME], 2); menu->addChild(slideshowSpeedParam); + MenuParam* lightWidgetMode = new MenuParam(blank->paramQuantities[ComputerscareBlank::LIGHT_WIDGET_MODE], 0); + menu->addChild(lightWidgetMode); + + } void step() override { if (module) {