diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-03-01 18:37:05 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-03-01 18:37:05 +0000 |
commit | 145364a8af6a1fec06556221e66d4b724a62fc9a (patch) | |
tree | 53bd71a544008c518034f208d64c932dc2883f50 /src/sound/MidiEvent.h | |
download | rosegarden-145364a8af6a1fec06556221e66d4b724a62fc9a.tar.gz rosegarden-145364a8af6a1fec06556221e66d4b724a62fc9a.zip |
Added old abandoned KDE3 version of the RoseGarden MIDI tool
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/rosegarden@1097595 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/sound/MidiEvent.h')
-rw-r--r-- | src/sound/MidiEvent.h | 141 |
1 files changed, 141 insertions, 0 deletions
diff --git a/src/sound/MidiEvent.h b/src/sound/MidiEvent.h new file mode 100644 index 0000000..b2192b4 --- /dev/null +++ b/src/sound/MidiEvent.h @@ -0,0 +1,141 @@ +// -*- c-indentation-style:"stroustrup" c-basic-offset: 4 -*- +/* + Rosegarden + A sequencer and musical notation editor. + + This program is Copyright 2000-2008 + Guillaume Laurent <glaurent@telegraph-road.org>, + Chris Cannam <cannam@all-day-breakfast.com>, + Richard Bown <bownie@bownie.com> + + The moral right of the authors to claim authorship of this work + has been asserted. + + 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 2 of the + License, or (at your option) any later version. See the file + COPYING included with this distribution for more information. +*/ + + +#ifndef _ROSEGARDEN_MIDI_EVENT_H_ +#define _ROSEGARDEN_MIDI_EVENT_H_ + +#include "Midi.h" +#include "Event.h" + +// MidiEvent holds MIDI and Event data during MIDI file I/O. +// We don't use this class at all for playback or recording of MIDI - +// for that look at MappedEvent and MappedComposition. +// +// Rosegarden doesn't have any internal concept of MIDI events, only +// Events which are a superset of MIDI functionality. +// +// Check out Event in base/ for more information. +// +// +// + +namespace Rosegarden +{ +class MidiEvent +{ + +public: + MidiEvent(); + + // No data event + // + MidiEvent(timeT deltaTime, + MidiByte eventCode); + + // single data byte case + // + MidiEvent(timeT deltaTime, + MidiByte eventCode, + MidiByte data1); + + // double data byte + // + MidiEvent(timeT deltaTime, + MidiByte eventCode, + MidiByte data1, + MidiByte data2); + + // Meta event + // + MidiEvent(timeT deltaTime, + MidiByte eventCode, + MidiByte metaEventCode, + const std::string &metaMessage); + + // Sysex style constructor + // + MidiEvent(timeT deltaTime, + MidiByte eventCode, + const std::string &sysEx); + + + ~MidiEvent(); + + // View our event as text + // + void print(); + + + void setTime(const timeT &time) { m_deltaTime = time; } + void setDuration(const timeT& duration) {m_duration = duration;} + timeT addTime(const timeT &time); + + MidiByte getMessageType() const + { return ( m_eventCode & MIDI_MESSAGE_TYPE_MASK ); } + + MidiByte getChannelNumber() const + { return ( m_eventCode & MIDI_CHANNEL_NUM_MASK ); } + + timeT getTime() const { return m_deltaTime; } + timeT getDuration() const { return m_duration; } + + MidiByte getPitch() const { return m_data1; } + MidiByte getVelocity() const { return m_data2; } + MidiByte getData1() const { return m_data1; } + MidiByte getData2() const { return m_data2; } + MidiByte getEventCode() const { return m_eventCode; } + + bool isMeta() const { return(m_eventCode == MIDI_FILE_META_EVENT); } + + MidiByte getMetaEventCode() const { return m_metaEventCode; } + std::string getMetaMessage() const { return m_metaMessage; } + void setMetaMessage(const std::string &meta) { m_metaMessage = meta; } + + friend bool operator<(const MidiEvent &a, const MidiEvent &b); + +private: + + MidiEvent& operator=(const MidiEvent); + + timeT m_deltaTime; + timeT m_duration; + MidiByte m_eventCode; + MidiByte m_data1; // or Note + MidiByte m_data2; // or Velocity + + MidiByte m_metaEventCode; + std::string m_metaMessage; + +}; + +// Comparator for sorting +// +struct MidiEventCmp +{ + bool operator()(const MidiEvent &mE1, const MidiEvent &mE2) const + { return mE1.getTime() < mE2.getTime(); } + bool operator()(const MidiEvent *mE1, const MidiEvent *mE2) const + { return mE1->getTime() < mE2->getTime(); } +}; + +} + +#endif // _ROSEGARDEN_MIDI_EVENT_H_ |