Yet Another Synthesizer Engine
 
Loading...
Searching...
No Matches
event_manager.hh
1//
2// YASE Event Manager 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_EVENTMANAGER_H
22#define YASE_EVENTMANAGER_H
23
24#include <functional>
25#include <algorithm>
26#include <map>
27#include "module.hh"
28#include "event.hh"
29
30using std::vector;
31using std::tuple;
32using std::map;
33using std::function;
34
35namespace yase {
36
38
43
44 public:
45
47 void process_events(vector<Module *> &modules);
48 void respond_to(const Event &event);
49 EventManager &listen(int event_type, function<void(const Event &)> handler);
50 EventManager &listen(int event_type, int port, function<void(const Event &)> handler);
51
52 protected:
53
54 map<int,vector<function<void(const Event&)>>> listeners;
55
56 };
57
58}
59
60#endif
Contains MIDI event information.
Definition event.hh:32
A class that keeps track of event listeners.
Definition event_manager.hh:42
void respond_to(const Event &event)
Definition event_manager.cc:69
void process_events(vector< Module * > &modules)
Definition event_manager.cc:53
EventManager()
Make a new event manager.
Definition event_manager.cc:26
Definition additive_saw.cc:24