]> git.sesse.net Git - nageru/blob - nageru/midi_mapping_dialog.h
Fix a comment typo.
[nageru] / nageru / midi_mapping_dialog.h
1 #ifndef _MIDI_MAPPING_DIALOG_H
2 #define _MIDI_MAPPING_DIALOG_H
3
4 #include <stdbool.h>
5 #include <QDialog>
6 #include <QString>
7 #include <map>
8 #include <memory>
9 #include <string>
10 #include <utility>
11 #include <vector>
12
13 #include "midi_mapper.h"
14
15 class QEvent;
16 class QObject;
17
18 namespace Ui {
19 class MIDIMappingDialog;
20 }  // namespace Ui
21
22 class MIDIMappingProto;
23 class QComboBox;
24 class QSpinBox;
25 class QTreeWidgetItem;
26
27 class MIDIMappingDialog : public QDialog, public ControllerReceiver
28 {
29         Q_OBJECT
30
31 public:
32         MIDIMappingDialog(MIDIMapper *mapper);
33         ~MIDIMappingDialog();
34
35         bool eventFilter(QObject *obj, QEvent *event) override;
36
37         // For use in midi_mapping_dialog.cpp only.
38         struct Control {
39                 std::string label;
40                 int field_number;  // In MIDIMappingBusProto.
41                 int bank_field_number;  // In MIDIMappingProto.
42         };
43
44         // ControllerReceiver interface. We only implement the raw events.
45         // All values are [0.0, 1.0].
46         void set_locut(float value) override {}
47         void set_limiter_threshold(float value) override {}
48         void set_makeup_gain(float value) override {}
49
50         void set_stereo_width(unsigned bus_idx, float value) override {}
51         void set_treble(unsigned bus_idx, float value) override {}
52         void set_mid(unsigned bus_idx, float value) override {}
53         void set_bass(unsigned bus_idx, float value) override {}
54         void set_gain(unsigned bus_idx, float value) override {}
55         void set_compressor_threshold(unsigned bus_idx, float value) override {}
56         void set_fader(unsigned bus_idx, float value) override {}
57
58         void toggle_mute(unsigned bus_idx) override {}
59         void toggle_locut(unsigned bus_idx) override {}
60         void toggle_auto_gain_staging(unsigned bus_idx) override {}
61         void toggle_compressor(unsigned bus_idx) override {}
62         void clear_peak(unsigned bus_idx) override {}
63         void toggle_limiter() override {}
64         void toggle_auto_makeup_gain() override {}
65
66         void clear_all_highlights() override {}
67
68         void highlight_locut(bool highlight) override {}
69         void highlight_limiter_threshold(bool highlight) override {}
70         void highlight_makeup_gain(bool highlight) override {}
71
72         void highlight_stereo_width(unsigned bus_idx, bool highlight) override {}
73         void highlight_treble(unsigned bus_idx, bool highlight) override {}
74         void highlight_mid(unsigned bus_idx, bool highlight) override {}
75         void highlight_bass(unsigned bus_idx, bool highlight) override {}
76         void highlight_gain(unsigned bus_idx, bool highlight) override {}
77         void highlight_compressor_threshold(unsigned bus_idx, bool highlight) override {}
78         void highlight_fader(unsigned bus_idx, bool highlight) override {}
79
80         void highlight_mute(unsigned bus_idx, bool highlight) override {}
81         void highlight_toggle_locut(unsigned bus_idx, bool highlight) override {}
82         void highlight_toggle_auto_gain_staging(unsigned bus_idx, bool highlight) override {}
83         void highlight_toggle_compressor(unsigned bus_idx, bool highlight) override {}
84         void highlight_clear_peak(unsigned bus_idx, bool highlight) override {}
85         void highlight_toggle_limiter(bool highlight) override {}
86         void highlight_toggle_auto_makeup_gain(bool highlight) override {}
87
88         void switch_video_channel(int channel_number) override {}
89         void apply_transition(int transition_number) override {}
90         void prev_audio_view() override {}
91         void next_audio_view() override {}
92         void begin_new_segment() override {}
93         void exit() override {}
94
95         // Raw events; used for the editor dialog only.
96         void controller_changed(unsigned controller) override;
97         void note_on(unsigned note) override;
98
99 public slots:
100         void guess_clicked(bool limit_to_group);
101         void ok_clicked();
102         void cancel_clicked();
103         void save_clicked();
104         void load_clicked();
105
106 private:
107         static constexpr unsigned num_buses = 8;
108
109         // Each spinner belongs to exactly one group, corresponding to the
110         // subheadings in the UI. This is so that we can extrapolate data
111         // across only single groups if need be.
112         enum class SpinnerGroup {
113                 ALL_GROUPS = -1,
114                 PER_BUS_CONTROLLERS,
115                 PER_BUS_BUTTONS,
116                 PER_BUS_LIGHTS,
117                 GLOBAL_CONTROLLERS,
118                 GLOBAL_BUTTONS,
119                 GLOBAL_LIGHTS
120         };
121
122         void add_bank_selector(QTreeWidgetItem *item, const MIDIMappingProto &mapping_proto, int bank_field_number);
123         
124         enum class ControlType { CONTROLLER, BUTTON, LIGHT };
125         void add_controls(const std::string &heading, ControlType control_type,
126                           SpinnerGroup spinner_group,
127                           const MIDIMappingProto &mapping_proto, const std::vector<Control> &controls);
128         void fill_controls_from_mapping(const MIDIMappingProto &mapping_proto);
129
130         // Tries to find a source bus and an offset to it that would give
131         // a consistent offset for the rest of the mappings in this bus.
132         // Returns -1 for the bus if no consistent offset can be found.
133         std::pair<int, int> guess_offset(unsigned bus_idx, SpinnerGroup spinner_group);
134         bool bus_is_empty(unsigned bus_idx, SpinnerGroup spinner_group);
135
136         void update_guess_button_state();
137         struct FocusInfo {
138                 int bus_idx;  // -1 for none.
139                 SpinnerGroup spinner_group;
140                 int field_number;
141         };
142         FocusInfo find_focus() const;
143
144         std::unique_ptr<MIDIMappingProto> construct_mapping_proto_from_ui();
145
146         Ui::MIDIMappingDialog *ui;
147         MIDIMapper *mapper;
148         ControllerReceiver *old_receiver;
149         FocusInfo last_focus{-1, SpinnerGroup::ALL_GROUPS, -1};
150
151         // All controllers actually laid out on the grid (we need to store them
152         // so that we can move values back and forth between the controls and
153         // the protobuf on save/load).
154         struct InstantiatedSpinner {
155                 QSpinBox *spinner;
156                 unsigned bus_idx;
157                 SpinnerGroup spinner_group;
158                 int field_number;  // In MIDIMappingBusProto.
159         };
160         struct InstantiatedComboBox {
161                 QComboBox *combo_box;
162                 int field_number;  // In MIDIMappingProto.
163         };
164         std::vector<InstantiatedSpinner> controller_spinners;
165         std::vector<InstantiatedSpinner> button_spinners;
166         std::vector<InstantiatedSpinner> light_spinners;
167         std::vector<InstantiatedComboBox> bank_combo_boxes;
168
169         // Keyed on bus index, then field number.
170         struct SpinnerAndGroup {
171                 QSpinBox *spinner;
172                 SpinnerGroup group;
173         };
174         std::map<unsigned, std::map<unsigned, SpinnerAndGroup>> spinners;
175 };
176
177 #endif  // !defined(_MIDI_MAPPING_DIALOG_H)