-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMidiMessage.cs
75 lines (71 loc) · 1.86 KB
/
MidiMessage.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
* MidiMessage.cs
*
* Copyright (c) 2015,2016, maxton. All rights reserved.
*
* 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 3 of the License, or (at your option) any later version.
*
* This library 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, see <http://www.gnu.org/licenses/>.
*/
using System;
using System.IO;
using System.Text;
using MidiCS.Events;
namespace MidiCS
{
public interface IMidiMessage
{
/// <summary>
/// Number of ticks between this and the last event.
/// </summary>
uint DeltaTime { get; }
/// <summary>
/// The type of this event.
/// </summary>
EventType Type { get; }
/// <summary>
/// A human-readable representation of the message.
/// </summary>
string PrettyString { get; }
}
public enum EventType : byte
{
NoteOff = 0x80,
NoteOn = 0x90,
NotePresure = 0xA0,
Controller = 0xB0,
ProgramChange = 0xC0,
ChannelPressure = 0xD0,
PitchBend = 0xE0,
MetaEvent = 0xFF,
Sysex = 0xF0,
SysexRaw = 0xF7
}
public enum MetaEventType : byte
{
SequenceNumber = 0x00,
TextEvent = 0x01,
CopyrightNotice = 0x02,
TrackName = 0x03,
InstrumentName = 0x04,
Lyric = 0x05,
Marker = 0x06,
CuePoint = 0x07,
ChannelPrefix = 0x20,
EndOfTrack = 0x2F,
TempoEvent = 0x51,
SmtpeOffset = 0x54,
TimeSignature = 0x58,
KeySignature = 0x59,
SequencerSpecific = 0x7F
}
}