Deluge Firmware 1.3.0
Build date: 2025.09.14
Loading...
Searching...
No Matches
attack.h
1/*
2 * Copyright (c) 2014-2023 Synthstrom Audible Limited
3 *
4 * This file is part of The Synthstrom Audible Deluge Firmware.
5 *
6 * The Synthstrom Audible Deluge Firmware is free software: you can redistribute it and/or modify it under the
7 * terms of the GNU General Public License as published by the Free Software Foundation,
8 * either version 3 of the License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
11 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12 * See the GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License along with this program.
15 * If not, see <https://www.gnu.org/licenses/>.
16 */
17#pragma once
18#include "gui/menu_item/integer.h"
19#include "gui/ui/sound_editor.h"
20#include "model/drum/drum.h"
21#include "model/instrument/kit.h"
22#include "model/song/song.h"
23#include "processing/engines/audio_engine.h"
24#include "processing/sound/sound_drum.h"
25#include "utils.h"
26
27namespace deluge::gui::menu_item::sidechain {
28class Attack final : public Integer {
29public:
30 Attack(l10n::String newName, l10n::String newTitle, bool isReverbSidechain = false)
31 : Integer(newName, newTitle), is_reverb_sidechain_{isReverbSidechain} {}
32
33 void readCurrentValue() override {
34 const auto sidechain = getSidechain(is_reverb_sidechain_);
35 this->setValue(getLookupIndexFromValue(sidechain->attack >> 2, attackRateTable, 50));
36 }
37 bool usesAffectEntire() override { return true; }
38 void writeCurrentValue() override {
39 int32_t current_value = attackRateTable[this->getValue()] << 2;
40
41 // If affect-entire button held, do whole kit
42 if (!is_reverb_sidechain_ && currentUIMode == UI_MODE_HOLDING_AFFECT_ENTIRE_IN_SOUND_EDITOR
43 && soundEditor.editingKitRow()) {
44
45 Kit* kit = getCurrentKit();
46
47 for (Drum* thisDrum = kit->firstDrum; thisDrum != nullptr; thisDrum = thisDrum->next) {
48 if (thisDrum->type == DrumType::SOUND) {
49 auto* soundDrum = static_cast<SoundDrum*>(thisDrum);
50
51 soundDrum->sidechain.attack = current_value;
52 }
53 }
54 }
55 // Or, the normal case of just one sound
56 else {
57 const auto sidechain = getSidechain(is_reverb_sidechain_);
58 sidechain->attack = current_value;
59 }
60
61 AudioEngine::mustUpdateReverbParamsBeforeNextRender = true;
62 }
63 [[nodiscard]] int32_t getMaxValue() const override { return 50; }
64
65 bool isRelevant(ModControllableAudio* modControllable, int32_t whichThing) override {
66 return !is_reverb_sidechain_ || AudioEngine::reverbSidechainVolume >= 0;
67 }
68
69 void getColumnLabel(StringBuf& label) override {
70 label.append(deluge::l10n::get(l10n::String::STRING_FOR_ATTACK_SHORT));
71 }
72
73private:
74 bool is_reverb_sidechain_;
75};
76} // namespace deluge::gui::menu_item::sidechain
Definition drum.h:44
Definition kit.h:34
Definition mod_controllable_audio.h:47
Definition sound_drum.h:28
Definition d_stringbuf.h:16
Definition integer.h:24
void readCurrentValue() override
Like readValueAgain, but does not redraw.
Definition attack.h:33
bool isRelevant(ModControllableAudio *modControllable, int32_t whichThing) override
Check if this MenuItem should show up in a containing deluge::gui::menu_item::Submenu.
Definition attack.h:65
bool usesAffectEntire() override
Claim support for Kit AFFECT_ENTIRE editing.
Definition attack.h:37