Loopp/src/controller/binding.hxx

62 lines
1.5 KiB
C++
Raw Permalink Normal View History

2013-12-08 22:44:43 +01:00
/*
* Author: Harry van Haaren 2013
* harryhaaren@gmail.com
*
2013-12-08 22:44:43 +01:00
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
2013-12-08 22:44:43 +01:00
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
2013-12-08 22:44:43 +01:00
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2013-10-18 16:56:20 +02:00
2019-06-09 10:41:19 +02:00
#ifndef LOOPP_BINDING_H
#define LOOPP_BINDING_H
2013-10-18 16:56:20 +02:00
#include <map>
2019-06-09 10:41:19 +02:00
/// a LooppAction represents the Event type, as from Event.hxx
typedef int LooppAction;
2013-10-18 16:56:20 +02:00
class Binding
{
public:
2018-04-09 09:08:27 +02:00
Binding() : status(0), data(0), action(0), active(1),
track(-2),scene(-1),send(-1)
{
ID = privateID++;
}
int ID;
unsigned char status;
unsigned char data;
/// the action this binding relates to: this is an integer based on the
/// event.hxx enumeration of event types
2019-06-09 10:41:19 +02:00
LooppAction action;
/// arguments to the event: track number, scene number etc
int active;
int track;
int scene;
int send;
/// maps from Gridlogic::State to MIDI output value from binding
std::map<int,int> clipStateMap;
private:
/// static int counter to allow deleting this specific instance
static int privateID;
2013-10-18 16:56:20 +02:00
};
#endif