mirror of
https://github.com/vale981/openAV-Luppp
synced 2025-03-05 09:01:39 -05:00
123 lines
3.4 KiB
C++
123 lines
3.4 KiB
C++
/*
|
|
* Author: Harry van Haaren 2013
|
|
* harryhaaren@gmail.com
|
|
*
|
|
* 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.
|
|
*
|
|
* 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.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "event.hxx"
|
|
|
|
// defines the pretty names of each event type
|
|
const char* EventMasterVol::prettyName = "master:volume";
|
|
const char* EventMasterReturn::prettyName = "master:return";
|
|
const char* EventMasterInputVol::prettyName = "master:input_vol";
|
|
const char* EventMasterInputTo::prettyName = "master:input_to";
|
|
const char* EventMasterInputToActive::prettyName = "master:input_to_active";
|
|
|
|
const char* EventTrackPan::prettyName = "track:pan";
|
|
const char* EventTrackVol::prettyName = "track:volume";
|
|
const char* EventTrackSend::prettyName = "track:send";
|
|
const char* EventTrackSendActive::prettyName = "track:send_active";
|
|
const char* EventTrackJackSend::prettyName = "track:jack_send";
|
|
const char* EventTrackJackSendActivate::prettyName = "track:jack_send_activate";
|
|
const char* EventTrackRecordArm::prettyName = "track:record_arm";
|
|
|
|
const char* EventTimeBPM::prettyName = "tempo_bpm";
|
|
const char* EventTimeTempoTap::prettyName = "tempo_tap";
|
|
const char* EventMetronomeActive::prettyName = "metronome:active";
|
|
const char* EventMetronomeVolume::prettyName = "metronome:volume";
|
|
|
|
const char* EventGridEvent::prettyName = "grid:event";
|
|
const char* EventGridLaunchScene::prettyName = "grid:launch_scene";
|
|
|
|
EVENT_TYPE Event::getTypeFromName(const char* name)
|
|
{
|
|
for(int i = 0; i < EVENT_TYPE_FINAL; i++) {
|
|
const char* tmp = getPrettyName(i);
|
|
if ( tmp ) {
|
|
if ( strcmp( name, tmp ) == 0 ) {
|
|
return (EVENT_TYPE)i;
|
|
}
|
|
}
|
|
}
|
|
|
|
return EVENT_NULL;
|
|
}
|
|
|
|
const char* Event::getPrettyName( int type )
|
|
{
|
|
switch ( type ) {
|
|
case MASTER_VOL: {
|
|
return EventMasterVol::prettyName;
|
|
}
|
|
case MASTER_RETURN: {
|
|
return EventMasterReturn::prettyName;
|
|
}
|
|
case MASTER_INPUT_VOL: {
|
|
return EventMasterInputVol::prettyName;
|
|
}
|
|
case MASTER_INPUT_TO: {
|
|
return EventMasterInputTo::prettyName;
|
|
}
|
|
case MASTER_INPUT_TO_ACTIVE: {
|
|
return EventMasterInputToActive::prettyName;
|
|
}
|
|
|
|
case TRACK_PAN: {
|
|
return EventTrackPan::prettyName;
|
|
}
|
|
case TRACK_VOLUME: {
|
|
return EventTrackVol::prettyName;
|
|
}
|
|
case TRACK_SEND: {
|
|
return EventTrackSend::prettyName;
|
|
}
|
|
case TRACK_SEND_ACTIVE: {
|
|
return EventTrackSendActive::prettyName;
|
|
}
|
|
case TRACK_JACKSEND: {
|
|
return EventTrackJackSend::prettyName;
|
|
}
|
|
case TRACK_JACKSEND_ACTIVATE: {
|
|
return EventTrackJackSendActivate::prettyName;
|
|
}
|
|
case TRACK_RECORD_ARM: {
|
|
return EventTrackRecordArm::prettyName;
|
|
}
|
|
|
|
case TIME_BPM: {
|
|
return EventTimeBPM::prettyName;
|
|
}
|
|
case TIME_TEMPO_TAP: {
|
|
return EventTimeTempoTap::prettyName;
|
|
}
|
|
|
|
case GRID_EVENT: {
|
|
return EventGridEvent::prettyName;
|
|
}
|
|
case GRID_LAUNCH_SCENE: {
|
|
return EventGridLaunchScene::prettyName;
|
|
}
|
|
|
|
case METRONOME_ACTIVE: {
|
|
return EventMetronomeActive::prettyName;
|
|
}
|
|
case METRONOME_VOLUME: {
|
|
return EventMetronomeVolume::prettyName;
|
|
}
|
|
|
|
default:
|
|
return 0;
|
|
}
|
|
}
|