mirror of
https://github.com/RGBCube/serenity
synced 2026-01-12 22:21:00 +00:00
The only major functional change is that the Track now needs to know whether it's active or not, in order to listen to the keyboard (or not). There are some bugs exposed/created by this, mainly: * KeysWidget sometimes shows phantom notes. Those do not actually exist as far as debugging has revealed and do not play in the synth. * The keyboard can lock up Piano when rapidly pressing keys. This appears to be a HashMap bug; I invested significant time in bugfixing but got nowhere.
62 lines
1.7 KiB
C++
62 lines
1.7 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
* Copyright (c) 2019-2020, William McPherson <willmcpherson2@gmail.com>
|
|
* Copyright (c) 2021, JJ Roberts-White <computerfido@gmail.com>
|
|
* Copyright (c) 2022, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "Music.h"
|
|
#include <LibDSP/Keyboard.h>
|
|
#include <LibGUI/Widget.h>
|
|
|
|
class AudioPlayerLoop;
|
|
class TrackManager;
|
|
class WaveWidget;
|
|
class RollWidget;
|
|
class SamplerWidget;
|
|
class KeysWidget;
|
|
class KnobsWidget;
|
|
class PlayerWidget;
|
|
|
|
class MainWidget final : public GUI::Widget {
|
|
C_OBJECT(MainWidget)
|
|
public:
|
|
virtual ~MainWidget() override = default;
|
|
|
|
void add_track_actions(GUI::Menu&);
|
|
|
|
void set_octave_and_ensure_note_change(LibDSP::Keyboard::Direction);
|
|
void set_octave_and_ensure_note_change(int);
|
|
|
|
private:
|
|
explicit MainWidget(TrackManager&, AudioPlayerLoop&);
|
|
|
|
virtual void keydown_event(GUI::KeyEvent&) override;
|
|
virtual void keyup_event(GUI::KeyEvent&) override;
|
|
virtual void custom_event(Core::CustomEvent&) override;
|
|
|
|
void note_key_action(int key_code, LibDSP::Keyboard::Switch);
|
|
void special_key_action(int key_code);
|
|
|
|
void turn_off_pressed_keys();
|
|
void turn_on_pressed_keys();
|
|
|
|
TrackManager& m_track_manager;
|
|
AudioPlayerLoop& m_audio_loop;
|
|
|
|
RefPtr<WaveWidget> m_wave_widget;
|
|
RefPtr<RollWidget> m_roll_widget;
|
|
RefPtr<SamplerWidget> m_sampler_widget;
|
|
RefPtr<GUI::TabWidget> m_tab_widget;
|
|
RefPtr<GUI::Widget> m_keys_and_knobs_container;
|
|
RefPtr<KeysWidget> m_keys_widget;
|
|
RefPtr<KnobsWidget> m_knobs_widget;
|
|
RefPtr<PlayerWidget> m_player_widget;
|
|
|
|
// Not the piano keys, but the computer keyboard keys!
|
|
bool m_keys_pressed[key_code_count] { false };
|
|
};
|