Yet Another Synthesizer Engine
 
Loading...
Searching...
No Matches
buttons.hh
1//
2// YASE Buttons Module Header
3//
4// Copyright (C) 2022 Eric Klavins
5// This file is part of YASE
6//
7// YASE is free software: you can redistribute it and/or modify it under the
8// terms of the GNU General Public License as published by the Free Software
9// Foundation, either version 3 of the License, or (at your option) any later
10// version.
11//
12// YASE is distributed in the hope that it will be useful, but WITHOUT ANY
13// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
15// details.
16//
17// You should have received a copy of the GNU General Public License along
18// with YASE. If not, see <https://www.gnu.org/licenses/>.
19//
20
21#ifndef YASE_BUTTONS_H
22#define YASE_BUTTONS_H
23
24#include <vector>
25#include <string>
26#include "event_manager.hh"
27#include "RtMidi.h"
28#include "globals.hh"
29
30using std::vector;
31using std::string;
32
33namespace yase {
34
36 typedef struct {
37 bool on, blink;
38 double timer;
39 double period;
41
43 class Buttons : public EventManager, public Module {
44
45 public:
46
47 Buttons(string output_device_name);
48
49 void init();
50 void update();
51
52 Buttons &on(unsigned char id);
53 Buttons &on(unsigned char id, unsigned char color);
54 Buttons &off(unsigned char id);
55 Buttons &blink_on(int id, double period);
56 Buttons &blink_off(int id);
57
58 Buttons &momentary(int id, function<void(const Event &)> handler, int type=MIDI_KEYDOWN);
59 Buttons &mutex(vector<int> ids, vector<function<void(const Event &)>> handlers);
60 Buttons &toggle(int id, function<void(const Event &)> handler, bool init_on);
61
62 Buttons &send(std::vector<unsigned char> msg);
63
64 void set(int id, BUTTON_STATE state);
65 map<int,BUTTON_STATE> get_states();
66 void set_states(map<int,BUTTON_STATE> states);
67
68 void clear_leds();
69
70 private:
71
72 RtMidiOut * midi_output;
73 int port_id;
74 map<int,BUTTON_STATE> button_states;
75
76 };
77
78}
79
80#endif
A class for managing MIDI buttons.
Definition buttons.hh:43
void init()
Definition buttons.cc:54
void update()
Definition buttons.cc:60
Buttons & on(unsigned char id)
Definition buttons.cc:85
Buttons & toggle(int id, function< void(const Event &)> handler, bool init_on)
Definition buttons.cc:226
void set(int id, BUTTON_STATE state)
Definition buttons.cc:79
Buttons & off(unsigned char id)
Definition buttons.cc:108
Buttons & momentary(int id, function< void(const Event &)> handler, int type=MIDI_KEYDOWN)
Definition buttons.cc:142
Buttons & blink_off(int id)
Definition buttons.cc:125
Buttons & mutex(vector< int > ids, vector< function< void(const Event &)> > handlers)
Definition buttons.cc:193
Buttons & blink_on(int id, double period)
Definition buttons.cc:118
void clear_leds()
Turn off all the currently illuminated LEDs.
Definition buttons.cc:253
Contains MIDI event information.
Definition event.hh:32
A class that keeps track of event listeners.
Definition event_manager.hh:42
An abstract base class for modules.
Definition module.hh:39
#define MIDI_KEYDOWN
A key press.
Definition globals.hh:46
Definition additive_saw.cc:24
Possible states for a button managed by a Buttons object.
Definition buttons.hh:36