summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-04-07 22:36:36 +0000
committerDavid Robillard <d@drobilla.net>2007-04-07 22:36:36 +0000
commit7d69e89f22304e37fa325ce4f39a374a02072a69 (patch)
treed4dafbab1b46612db44ab9f4a8dcbcb1e990d477
parent883f2e9f31914912f4c5e19bc9e463fe3663a638 (diff)
downloadingen-7d69e89f22304e37fa325ce4f39a374a02072a69.tar.gz
ingen-7d69e89f22304e37fa325ce4f39a374a02072a69.tar.bz2
ingen-7d69e89f22304e37fa325ce4f39a374a02072a69.zip
Removed duplicate midi.h and referred to Raul version.
git-svn-id: http://svn.drobilla.net/lad/ingen@414 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r--src/libs/engine/JackMidiDriver.cpp4
-rw-r--r--src/libs/engine/Makefile.am1
-rw-r--r--src/libs/engine/MidiControlNode.cpp2
-rw-r--r--src/libs/engine/MidiNoteNode.cpp2
-rw-r--r--src/libs/engine/MidiTriggerNode.cpp2
-rw-r--r--src/libs/engine/midi.h135
6 files changed, 5 insertions, 141 deletions
diff --git a/src/libs/engine/JackMidiDriver.cpp b/src/libs/engine/JackMidiDriver.cpp
index b7085dd3..e2f96ad7 100644
--- a/src/libs/engine/JackMidiDriver.cpp
+++ b/src/libs/engine/JackMidiDriver.cpp
@@ -19,10 +19,10 @@
#include <iostream>
#include <cstdlib>
#include <pthread.h>
+#include <raul/Maid.h>
+#include <raul/midi_events.h>
#include "types.h"
-#include "midi.h"
#include "ThreadManager.h"
-#include <raul/Maid.h>
#include "AudioDriver.h"
#include "MidiMessage.h"
#include "DuplexPort.h"
diff --git a/src/libs/engine/Makefile.am b/src/libs/engine/Makefile.am
index 11a9a23d..03c42c52 100644
--- a/src/libs/engine/Makefile.am
+++ b/src/libs/engine/Makefile.am
@@ -82,7 +82,6 @@ libingen_la_SOURCES = \
Driver.h \
AudioDriver.h \
MidiDriver.h \
- midi.h \
instantiations.cpp \
events/RegisterClientEvent.h \
events/RegisterClientEvent.cpp \
diff --git a/src/libs/engine/MidiControlNode.cpp b/src/libs/engine/MidiControlNode.cpp
index c5bbc13b..89a04c91 100644
--- a/src/libs/engine/MidiControlNode.cpp
+++ b/src/libs/engine/MidiControlNode.cpp
@@ -17,13 +17,13 @@
#include "MidiControlNode.h"
#include <math.h>
+#include <raul/midi_events.h>
#include "PostProcessor.h"
#include "MidiLearnEvent.h"
#include "InputPort.h"
#include "OutputPort.h"
#include "Plugin.h"
#include "util.h"
-#include "midi.h"
namespace Ingen {
diff --git a/src/libs/engine/MidiNoteNode.cpp b/src/libs/engine/MidiNoteNode.cpp
index fd274f62..f2b9e502 100644
--- a/src/libs/engine/MidiNoteNode.cpp
+++ b/src/libs/engine/MidiNoteNode.cpp
@@ -19,13 +19,13 @@
#include <cmath>
#include <iostream>
#include <raul/Array.h>
+#include <raul/midi_events.h>
#include "MidiMessage.h"
#include "InputPort.h"
#include "OutputPort.h"
#include "Plugin.h"
#include "AudioDriver.h"
#include "util.h"
-#include "midi.h"
using std::cerr; using std::cout; using std::endl;
diff --git a/src/libs/engine/MidiTriggerNode.cpp b/src/libs/engine/MidiTriggerNode.cpp
index f4993e58..d0beff60 100644
--- a/src/libs/engine/MidiTriggerNode.cpp
+++ b/src/libs/engine/MidiTriggerNode.cpp
@@ -17,11 +17,11 @@
#include "MidiTriggerNode.h"
#include <cmath>
+#include <raul/midi_events.h>
#include "InputPort.h"
#include "OutputPort.h"
#include "Plugin.h"
#include "util.h"
-#include "midi.h"
namespace Ingen {
diff --git a/src/libs/engine/midi.h b/src/libs/engine/midi.h
deleted file mode 100644
index b8fa4f83..00000000
--- a/src/libs/engine/midi.h
+++ /dev/null
@@ -1,135 +0,0 @@
-/* Definitions to ease working with raw MIDI.
- *
- * Stolen from Alsa's asounddef.h
- *
- * This library is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- *
- */
-
-#ifndef MIDI_H
-#define MIDI_H
-
-
-/**
- * \defgroup midi MIDI Definitions
- * MIDI command and controller number definitions.
- * \{
- */
-
-// Commands:
-
-#define MIDI_CMD_NOTE_OFF 0x80 /**< note off */
-#define MIDI_CMD_NOTE_ON 0x90 /**< note on */
-#define MIDI_CMD_NOTE_PRESSURE 0xA0 /**< key pressure */
-#define MIDI_CMD_CONTROL 0xB0 /**< control change */
-#define MIDI_CMD_PGM_CHANGE 0xC0 /**< program change */
-#define MIDI_CMD_CHANNEL_PRESSURE 0xD0 /**< channel pressure */
-#define MIDI_CMD_BENDER 0xE0 /**< pitch bender */
-
-#define MIDI_CMD_COMMON_SYSEX 0xF0 /**< sysex (system exclusive) begin */
-#define MIDI_CMD_COMMON_MTC_QUARTER 0xF1 /**< MTC quarter frame */
-#define MIDI_CMD_COMMON_SONG_POS 0xF2 /**< song position */
-#define MIDI_CMD_COMMON_SONG_SELECT 0xF3 /**< song select */
-#define MIDI_CMD_COMMON_TUNE_REQUEST 0xF6 /**< tune request */
-#define MIDI_CMD_COMMON_SYSEX_END 0xF7 /**< end of sysex */
-#define MIDI_CMD_COMMON_CLOCK 0xF8 /**< clock */
-#define MIDI_CMD_COMMON_START 0xFA /**< start */
-#define MIDI_CMD_COMMON_CONTINUE 0xFB /**< continue */
-#define MIDI_CMD_COMMON_STOP 0xFC /**< stop */
-#define MIDI_CMD_COMMON_SENSING 0xFE /**< active sensing */
-#define MIDI_CMD_COMMON_RESET 0xFF /**< reset */
-
-
-// Controllers:
-
-#define MIDI_CTL_MSB_BANK 0x00 /**< Bank selection */
-#define MIDI_CTL_MSB_MODWHEEL 0x01 /**< Modulation */
-#define MIDI_CTL_MSB_BREATH 0x02 /**< Breath */
-#define MIDI_CTL_MSB_FOOT 0x04 /**< Foot */
-#define MIDI_CTL_MSB_PORTAMENTO_TIME 0x05 /**< Portamento time */
-#define MIDI_CTL_MSB_DATA_ENTRY 0x06 /**< Data entry */
-#define MIDI_CTL_MSB_MAIN_VOLUME 0x07 /**< Main volume */
-#define MIDI_CTL_MSB_BALANCE 0x08 /**< Balance */
-#define MIDI_CTL_MSB_PAN 0x0A /**< Panpot */
-#define MIDI_CTL_MSB_EXPRESSION 0x0B /**< Expression */
-#define MIDI_CTL_MSB_EFFECT1 0x0C /**< Effect1 */
-#define MIDI_CTL_MSB_EFFECT2 0x0D /**< Effect2 */
-#define MIDI_CTL_MSB_GENERAL_PURPOSE1 0x10 /**< General purpose 1 */
-#define MIDI_CTL_MSB_GENERAL_PURPOSE2 0x11 /**< General purpose 2 */
-#define MIDI_CTL_MSB_GENERAL_PURPOSE3 0x12 /**< General purpose 3 */
-#define MIDI_CTL_MSB_GENERAL_PURPOSE4 0x13 /**< General purpose 4 */
-#define MIDI_CTL_LSB_BANK 0x20 /**< Bank selection */
-#define MIDI_CTL_LSB_MODWHEEL 0x21 /**< Modulation */
-#define MIDI_CTL_LSB_BREATH 0x22 /**< Breath */
-#define MIDI_CTL_LSB_FOOT 0x24 /**< Foot */
-#define MIDI_CTL_LSB_PORTAMENTO_TIME 0x25 /**< Portamento time */
-#define MIDI_CTL_LSB_DATA_ENTRY 0x26 /**< Data entry */
-#define MIDI_CTL_LSB_MAIN_VOLUME 0x27 /**< Main volume */
-#define MIDI_CTL_LSB_BALANCE 0x28 /**< Balance */
-#define MIDI_CTL_LSB_PAN 0x2A /**< Panpot */
-#define MIDI_CTL_LSB_EXPRESSION 0x2B /**< Expression */
-#define MIDI_CTL_LSB_EFFECT1 0x2C /**< Effect1 */
-#define MIDI_CTL_LSB_EFFECT2 0x2D /**< Effect2 */
-#define MIDI_CTL_LSB_GENERAL_PURPOSE1 0x30 /**< General purpose 1 */
-#define MIDI_CTL_LSB_GENERAL_PURPOSE2 0x31 /**< General purpose 2 */
-#define MIDI_CTL_LSB_GENERAL_PURPOSE3 0x32 /**< General purpose 3 */
-#define MIDI_CTL_LSB_GENERAL_PURPOSE4 0x33 /**< General purpose 4 */
-#define MIDI_CTL_SUSTAIN 0x40 /**< Sustain pedal */
-#define MIDI_CTL_PORTAMENTO 0x41 /**< Portamento */
-#define MIDI_CTL_SOSTENUTO 0x42 /**< Sostenuto */
-#define MIDI_CTL_SUSTENUTO 0x42 /**< Sostenuto (a typo in the older version) */
-#define MIDI_CTL_SOFT_PEDAL 0x43 /**< Soft pedal */
-#define MIDI_CTL_LEGATO_FOOTSWITCH 0x44 /**< Legato foot switch */
-#define MIDI_CTL_HOLD2 0x45 /**< Hold2 */
-#define MIDI_CTL_SC1_SOUND_VARIATION 0x46 /**< SC1 Sound Variation */
-#define MIDI_CTL_SC2_TIMBRE 0x47 /**< SC2 Timbre */
-#define MIDI_CTL_SC3_RELEASE_TIME 0x48 /**< SC3 Release Time */
-#define MIDI_CTL_SC4_ATTACK_TIME 0x49 /**< SC4 Attack Time */
-#define MIDI_CTL_SC5_BRIGHTNESS 0x4A /**< SC5 Brightness */
-#define MIDI_CTL_SC6 0x4B /**< SC6 */
-#define MIDI_CTL_SC7 0x4C /**< SC7 */
-#define MIDI_CTL_SC8 0x4D /**< SC8 */
-#define MIDI_CTL_SC9 0x4E /**< SC9 */
-#define MIDI_CTL_SC10 0x4F /**< SC10 */
-#define MIDI_CTL_GENERAL_PURPOSE5 0x50 /**< General purpose 5 */
-#define MIDI_CTL_GENERAL_PURPOSE6 0x51 /**< General purpose 6 */
-#define MIDI_CTL_GENERAL_PURPOSE7 0x52 /**< General purpose 7 */
-#define MIDI_CTL_GENERAL_PURPOSE8 0x53 /**< General purpose 8 */
-#define MIDI_CTL_PORTAMENTO_CONTROL 0x54 /**< Portamento control */
-#define MIDI_CTL_E1_REVERB_DEPTH 0x5B /**< E1 Reverb Depth */
-#define MIDI_CTL_E2_TREMOLO_DEPTH 0x5C /**< E2 Tremolo Depth */
-#define MIDI_CTL_E3_CHORUS_DEPTH 0x5D /**< E3 Chorus Depth */
-#define MIDI_CTL_E4_DETUNE_DEPTH 0x5E /**< E4 Detune Depth */
-#define MIDI_CTL_E5_PHASER_DEPTH 0x5F /**< E5 Phaser Depth */
-#define MIDI_CTL_DATA_INCREMENT 0x60 /**< Data Increment */
-#define MIDI_CTL_DATA_DECREMENT 0x61 /**< Data Decrement */
-#define MIDI_CTL_NONREG_PARM_NUM_LSB 0x62 /**< Non-registered parameter number */
-#define MIDI_CTL_NONREG_PARM_NUM_MSB 0x63 /**< Non-registered parameter number */
-#define MIDI_CTL_REGIST_PARM_NUM_LSB 0x64 /**< Registered parameter number */
-#define MIDI_CTL_REGIST_PARM_NUM_MSB 0x65 /**< Registered parameter number */
-#define MIDI_CTL_ALL_SOUNDS_OFF 0x78 /**< All sounds off */
-#define MIDI_CTL_RESET_CONTROLLERS 0x79 /**< Reset Controllers */
-#define MIDI_CTL_LOCAL_CONTROL_SWITCH 0x7A /**< Local control switch */
-#define MIDI_CTL_ALL_NOTES_OFF 0x7B /**< All notes off */
-#define MIDI_CTL_OMNI_OFF 0x7C /**< Omni off */
-#define MIDI_CTL_OMNI_ON 0x7D /**< Omni on */
-#define MIDI_CTL_MONO1 0x7E /**< Mono1 */
-#define MIDI_CTL_MONO2 0x7F /**< Mono2 */
-//@}
-
-
-/** \} */
-
-#endif /* MIDI_H */