Yet Another Synthesizer Engine
 
Loading...
Searching...
No Matches
midi_input.hh
1//
2// YASE Midi Input 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_MIDI_INPUT_H
22#define YASE_MIDI_INPUT_H
23
24#include <vector>
25#include <string>
26#include "module.hh"
27#include "RtMidi.h"
28
29namespace yase {
30
32
48 class MidiInput : public Module {
49
50 public:
51
52 MidiInput(string device_name);
53 void init();
54 void update();
55
58 inline int port() { return _port; }
59
60 private:
61
62 RtMidiIn * midi_input;
63 string device_name;
64 std::vector<unsigned char> message;
65 int _port;
66
67 };
68
69}
70
71#endif
A Midi Input manager.
Definition midi_input.hh:48
void init()
Definition midi_input.cc:61
int port()
Definition midi_input.hh:58
void update()
Definition midi_input.cc:63
An abstract base class for modules.
Definition module.hh:39
Definition additive_saw.cc:24