|
- /*
- * Vector Juice Plugin
- * Copyright (C) 2014 Andre Sklenar <andre.sklenar@gmail.com>, www.juicelab.cz
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or any later version.
- *
- * This program 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. See the
- * GNU General Public License for more details.
- *
- * For a full copy of the GNU General Public License see the doc/GPL.txt file.
- */
-
- #ifndef GROOVEJUICEUI_HPP_INCLUDED
- #define GROOVEJUICEUI_HPP_INCLUDED
-
- #include "DistrhoUI.hpp"
-
- #include "Geometry.hpp"
- #include "ImageAboutWindow.hpp"
- #include "ImageButton.hpp"
- #include "ImageKnob.hpp"
- #include "ImageSlider.hpp"
-
- #include "GrooveJuiceArtwork.hpp"
- #include "GrooveJuicePlugin.hpp"
-
- using DGL::Image;
- using DGL::ImageAboutWindow;
- using DGL::ImageButton;
- using DGL::ImageKnob;
- using DGL::ImageSlider;
- using DGL::Rectangle;
-
- START_NAMESPACE_DISTRHO
-
- // -----------------------------------------------------------------------
-
- class GrooveJuiceUI : public UI,
- public ImageButton::Callback,
- public ImageKnob::Callback,
- public ImageSlider::Callback
- {
- public:
- GrooveJuiceUI();
-
- protected:
- // -------------------------------------------------------------------
- // Information
-
- uint d_getWidth() const noexcept override
- {
- return GrooveJuiceArtwork::backgroundWidth;
- }
-
- uint d_getHeight() const noexcept override
- {
- return GrooveJuiceArtwork::backgroundHeight;
- }
-
- // -------------------------------------------------------------------
- // DSP Callbacks
-
- void d_parameterChanged(uint32_t index, float value) override;
- void d_programChanged(uint32_t index) override;
-
- // -------------------------------------------------------------------
- // Widget Callbacks
-
- void imageButtonClicked(ImageButton* button, int) override;
- void imageKnobDragStarted(ImageKnob* knob) override;
- void imageKnobDragFinished(ImageKnob* knob) override;
- void imageKnobValueChanged(ImageKnob* knob, float value) override;
- void imageSliderDragStarted(ImageSlider* slider) override;
- void imageSliderDragFinished(ImageSlider* slider) override;
- void imageSliderValueChanged(ImageSlider* slider, float value) override;
-
- void onDisplay() override;
- bool onMouse(const MouseEvent&) override;
- bool onMotion(const MotionEvent&) override;
-
- private:
- float paramX, paramY;
-
- Image fImgBackground;
- Image fImgRoundlet;
- Image fImgOrbit;
- Image fImgSubOrbit;
- ImageAboutWindow fAboutWindow;
-
- //knobs
- ScopedPointer<ImageKnob> fKnobOrbitSpeedX, fKnobOrbitSpeedY;
- ScopedPointer<ImageKnob> fKnobOrbitSizeX, fKnobOrbitSizeY;
- ScopedPointer<ImageKnob> fKnobSubOrbitSpeed, fKnobSubOrbitSize, fKnobSubOrbitSmooth;
-
- ScopedPointer<ImageKnob> fKnobsSynth[8];
- int page;
-
- struct square {
- float timer;
- float maxTimer;
- int x;
- int y;
- int size;
- } squares[8][8];
-
- //sliders
- ScopedPointer<ImageSlider> fSliderOrbitWaveX, fSliderOrbitWaveY;
- ScopedPointer<ImageSlider> fSliderOrbitPhaseX, fSliderOrbitPhaseY;
-
- ScopedPointer<ImageButton> fButtonAbout;
- ScopedPointer<ImageButton> fButtonRandomize;
- ScopedPointer<ImageButton> fButtonsPage[8];
-
- int tabOX;
- int tabOY;
- int tabW;
- int tabH;
- float tabPosX;
- float tabTargetPosX;
- int tabMarginX;
-
- float getRandom() {
- return static_cast <float> (rand()) / static_cast <float> (RAND_MAX);
- }
-
-
-
- // needed for XY canvas handling
- bool fDragging;
- bool fDragValid;
- int fLastX;
- int fLastY;
- Rectangle<int> fCanvasArea;
- float orbitX, orbitY, subOrbitX, subOrbitY;
- float synthData[8][8]; //as per gui, [param][page]
- float synthSound[8];
-
- bool isWithinSquare(float x, float y, float sX, float sY) {
- if (x>=sX && x<sX+0.125)
- if (y>=sY && y<sY+0.125)
- return true;
- return false;
- };
- };
-
- // -----------------------------------------------------------------------
-
- END_NAMESPACE_DISTRHO
-
- #endif // GROOVEJUICEUI_HPP_INCLUDED
|