Encapsulates a MIDI message. More...
Classes | |
struct | VariableLengthValue |
Holds information about a variable-length value which was parsed from a stream of bytes. More... | |
Public Types | |
enum | SmpteTimecodeType { fps24 = 0 , fps25 = 1 , fps30drop = 2 , fps30 = 3 } |
SMPTE timecode types. More... | |
enum | MidiMachineControlCommand { mmc_stop = 1 , mmc_play = 2 , mmc_deferredplay = 3 , mmc_fastforward = 4 , mmc_rewind = 5 , mmc_recordStart = 6 , mmc_recordStop = 7 , mmc_pause = 9 } |
Types of MMC command. More... | |
Public Member Functions | |
MidiMessage (int byte1, int byte2, int byte3, double timeStamp=0) noexcept | |
Creates a 3-byte short midi message. | |
MidiMessage (int byte1, int byte2, double timeStamp=0) noexcept | |
Creates a 2-byte short midi message. | |
MidiMessage (int byte1, double timeStamp=0) noexcept | |
Creates a 1-byte short midi message. | |
template<typename... Data> | |
MidiMessage (int byte1, int byte2, int byte3, Data... otherBytes) | |
Creates a midi message from a list of bytes. | |
MidiMessage (const void *data, int numBytes, double timeStamp=0) | |
Creates a midi message from a block of data. | |
MidiMessage (const void *data, int maxBytesToUse, int &numBytesUsed, uint8 lastStatusByte, double timeStamp=0, bool sysexHasEmbeddedLength=true) | |
Reads the next midi message from some data. | |
MidiMessage () noexcept | |
Creates an empty sysex message. | |
MidiMessage (const MidiMessage &) | |
Creates a copy of another midi message. | |
MidiMessage (const MidiMessage &, double newTimeStamp) | |
Creates a copy of another midi message, with a different timestamp. | |
~MidiMessage () noexcept | |
Destructor. | |
MidiMessage & | operator= (const MidiMessage &other) |
Copies this message from another one. | |
MidiMessage (MidiMessage &&) noexcept | |
Move constructor. | |
MidiMessage & | operator= (MidiMessage &&) noexcept |
Move assignment operator. | |
const uint8 * | getRawData () const noexcept |
Returns a pointer to the raw midi data. | |
int | getRawDataSize () const noexcept |
Returns the number of bytes of data in the message. | |
String | getDescription () const |
Returns a human-readable description of the midi message as a string, for example "Note On C#3 Velocity 120 Channel 1". | |
double | getTimeStamp () const noexcept |
Returns the timestamp associated with this message. | |
void | setTimeStamp (double newTimestamp) noexcept |
Changes the message's associated timestamp. | |
void | addToTimeStamp (double delta) noexcept |
Adds a value to the message's timestamp. | |
MidiMessage | withTimeStamp (double newTimestamp) const |
Return a copy of this message with a new timestamp. | |
int | getChannel () const noexcept |
Returns the midi channel associated with the message. | |
bool | isForChannel (int channelNumber) const noexcept |
Returns true if the message applies to the given midi channel. | |
void | setChannel (int newChannelNumber) noexcept |
Changes the message's midi channel. | |
bool | isSysEx () const noexcept |
Returns true if this is a system-exclusive message. | |
const uint8 * | getSysExData () const noexcept |
Returns a pointer to the sysex data inside the message. | |
int | getSysExDataSize () const noexcept |
Returns the size of the sysex data. | |
Span< const std::byte > | getSysExDataSpan () const noexcept |
Returns a span that bounds the sysex body bytes contained in this message. | |
bool | isNoteOn (bool returnTrueForVelocity0=false) const noexcept |
Returns true if this message is a 'key-down' event. | |
bool | isNoteOff (bool returnTrueForNoteOnVelocity0=true) const noexcept |
Returns true if this message is a 'key-up' event. | |
bool | isNoteOnOrOff () const noexcept |
Returns true if this message is a 'key-down' or 'key-up' event. | |
int | getNoteNumber () const noexcept |
Returns the midi note number for note-on and note-off messages. | |
void | setNoteNumber (int newNoteNumber) noexcept |
Changes the midi note number of a note-on or note-off message. | |
uint8 | getVelocity () const noexcept |
Returns the velocity of a note-on or note-off message. | |
float | getFloatVelocity () const noexcept |
Returns the velocity of a note-on or note-off message. | |
void | setVelocity (float newVelocity) noexcept |
Changes the velocity of a note-on or note-off message. | |
void | multiplyVelocity (float scaleFactor) noexcept |
Multiplies the velocity of a note-on or note-off message by a given amount. | |
bool | isSustainPedalOn () const noexcept |
Returns true if this message is a 'sustain pedal down' controller message. | |
bool | isSustainPedalOff () const noexcept |
Returns true if this message is a 'sustain pedal up' controller message. | |
bool | isSostenutoPedalOn () const noexcept |
Returns true if this message is a 'sostenuto pedal down' controller message. | |
bool | isSostenutoPedalOff () const noexcept |
Returns true if this message is a 'sostenuto pedal up' controller message. | |
bool | isSoftPedalOn () const noexcept |
Returns true if this message is a 'soft pedal down' controller message. | |
bool | isSoftPedalOff () const noexcept |
Returns true if this message is a 'soft pedal up' controller message. | |
bool | isProgramChange () const noexcept |
Returns true if the message is a program (patch) change message. | |
int | getProgramChangeNumber () const noexcept |
Returns the new program number of a program change message. | |
bool | isPitchWheel () const noexcept |
Returns true if the message is a pitch-wheel move. | |
int | getPitchWheelValue () const noexcept |
Returns the pitch wheel position from a pitch-wheel move message. | |
bool | isAftertouch () const noexcept |
Returns true if the message is an aftertouch event. | |
int | getAfterTouchValue () const noexcept |
Returns the amount of aftertouch from an aftertouch messages. | |
bool | isChannelPressure () const noexcept |
Returns true if the message is a channel-pressure change event. | |
int | getChannelPressureValue () const noexcept |
Returns the pressure from a channel pressure change message. | |
bool | isController () const noexcept |
Returns true if this is a midi controller message. | |
int | getControllerNumber () const noexcept |
Returns the controller number of a controller message. | |
int | getControllerValue () const noexcept |
Returns the controller value from a controller message. | |
bool | isControllerOfType (int controllerType) const noexcept |
Returns true if this message is a controller message and if it has the specified controller type. | |
bool | isAllNotesOff () const noexcept |
Checks whether this message is an all-notes-off message. | |
bool | isAllSoundOff () const noexcept |
Checks whether this message is an all-sound-off message. | |
bool | isResetAllControllers () const noexcept |
Checks whether this message is a reset all controllers message. | |
bool | isMetaEvent () const noexcept |
Returns true if this event is a meta-event. | |
int | getMetaEventType () const noexcept |
Returns a meta-event's type number. | |
const uint8 * | getMetaEventData () const noexcept |
Returns a pointer to the data in a meta-event. | |
int | getMetaEventLength () const noexcept |
Returns the length of the data for a meta-event. | |
bool | isTrackMetaEvent () const noexcept |
Returns true if this is a 'track' meta-event. | |
bool | isEndOfTrackMetaEvent () const noexcept |
Returns true if this is an 'end-of-track' meta-event. | |
bool | isTrackNameEvent () const noexcept |
Returns true if this is an 'track name' meta-event. | |
bool | isTextMetaEvent () const noexcept |
Returns true if this is a 'text' meta-event. | |
String | getTextFromTextMetaEvent () const |
Returns the text from a text meta-event. | |
bool | isTempoMetaEvent () const noexcept |
Returns true if this is a 'tempo' meta-event. | |
double | getTempoMetaEventTickLength (short timeFormat) const noexcept |
Returns the tick length from a tempo meta-event. | |
double | getTempoSecondsPerQuarterNote () const noexcept |
Calculates the seconds-per-quarter-note from a tempo meta-event. | |
bool | isTimeSignatureMetaEvent () const noexcept |
Returns true if this is a 'time-signature' meta-event. | |
void | getTimeSignatureInfo (int &numerator, int &denominator) const noexcept |
Returns the time-signature values from a time-signature meta-event. | |
bool | isKeySignatureMetaEvent () const noexcept |
Returns true if this is a 'key-signature' meta-event. | |
int | getKeySignatureNumberOfSharpsOrFlats () const noexcept |
Returns the key from a key-signature meta-event. | |
bool | isKeySignatureMajorKey () const noexcept |
Returns true if this key-signature event is major, or false if it's minor. | |
bool | isMidiChannelMetaEvent () const noexcept |
Returns true if this is a 'channel' meta-event. | |
int | getMidiChannelMetaEventChannel () const noexcept |
Returns the channel number from a channel meta-event. | |
bool | isActiveSense () const noexcept |
Returns true if this is an active-sense message. | |
bool | isMidiStart () const noexcept |
Returns true if this is a midi start event. | |
bool | isMidiContinue () const noexcept |
Returns true if this is a midi continue event. | |
bool | isMidiStop () const noexcept |
Returns true if this is a midi stop event. | |
bool | isMidiClock () const noexcept |
Returns true if this is a midi clock event. | |
bool | isSongPositionPointer () const noexcept |
Returns true if this is a song-position-pointer message. | |
int | getSongPositionPointerMidiBeat () const noexcept |
Returns the midi beat-number of a song-position-pointer message. | |
bool | isQuarterFrame () const noexcept |
Returns true if this is a quarter-frame midi timecode message. | |
int | getQuarterFrameSequenceNumber () const noexcept |
Returns the sequence number of a quarter-frame midi timecode message. | |
int | getQuarterFrameValue () const noexcept |
Returns the value from a quarter-frame message. | |
bool | isFullFrame () const noexcept |
Returns true if this is a full-frame midi timecode message. | |
void | getFullFrameParameters (int &hours, int &minutes, int &seconds, int &frames, SmpteTimecodeType &timecodeType) const noexcept |
Extracts the timecode information from a full-frame midi timecode message. | |
bool | isMidiMachineControlMessage () const noexcept |
Checks whether this is an MMC message. | |
MidiMachineControlCommand | getMidiMachineControlCommand () const noexcept |
For an MMC message, this returns its type. | |
bool | isMidiMachineControlGoto (int &hours, int &minutes, int &seconds, int &frames) const noexcept |
Checks whether this is an MMC "goto" message. | |
Static Public Member Functions | |
static MidiMessage | noteOn (int channel, int noteNumber, float velocity) noexcept |
Creates a key-down message (using a floating-point velocity). | |
static MidiMessage | noteOn (int channel, int noteNumber, uint8 velocity) noexcept |
Creates a key-down message (using an integer velocity). | |
static MidiMessage | noteOff (int channel, int noteNumber, float velocity) noexcept |
Creates a key-up message. | |
static MidiMessage | noteOff (int channel, int noteNumber, uint8 velocity) noexcept |
Creates a key-up message. | |
static MidiMessage | noteOff (int channel, int noteNumber) noexcept |
Creates a key-up message. | |
static MidiMessage | programChange (int channel, int programNumber) noexcept |
Creates a program-change message. | |
static MidiMessage | pitchWheel (int channel, int position) noexcept |
Creates a pitch-wheel move message. | |
static MidiMessage | aftertouchChange (int channel, int noteNumber, int aftertouchAmount) noexcept |
Creates an aftertouch message. | |
static MidiMessage | channelPressureChange (int channel, int pressure) noexcept |
Creates a channel-pressure change event. | |
static MidiMessage | controllerEvent (int channel, int controllerType, int value) noexcept |
Creates a controller message. | |
static MidiMessage | allNotesOff (int channel) noexcept |
Creates an all-notes-off message. | |
static MidiMessage | allSoundOff (int channel) noexcept |
Creates an all-sound-off message. | |
static MidiMessage | allControllersOff (int channel) noexcept |
Creates an all-controllers-off message. | |
static MidiMessage | endOfTrack () noexcept |
Creates an end-of-track meta-event. | |
static MidiMessage | textMetaEvent (int type, StringRef text) |
Creates a text meta-event. | |
static MidiMessage | tempoMetaEvent (int microsecondsPerQuarterNote) noexcept |
Creates a tempo meta-event. | |
static MidiMessage | timeSignatureMetaEvent (int numerator, int denominator) |
Creates a time-signature meta-event. | |
static MidiMessage | keySignatureMetaEvent (int numberOfSharpsOrFlats, bool isMinorKey) |
Creates a key-signature meta-event. | |
static MidiMessage | midiChannelMetaEvent (int channel) noexcept |
Creates a midi channel meta-event. | |
static MidiMessage | midiStart () noexcept |
Creates a midi start event. | |
static MidiMessage | midiContinue () noexcept |
Creates a midi continue event. | |
static MidiMessage | midiStop () noexcept |
Creates a midi stop event. | |
static MidiMessage | midiClock () noexcept |
Creates a midi clock event. | |
static MidiMessage | songPositionPointer (int positionInMidiBeats) noexcept |
Creates a song-position-pointer message. | |
static MidiMessage | quarterFrame (int sequenceNumber, int value) noexcept |
Creates a quarter-frame MTC message. | |
static MidiMessage | fullFrame (int hours, int minutes, int seconds, int frames, SmpteTimecodeType timecodeType) |
Creates a full-frame MTC message. | |
static MidiMessage | midiMachineControlCommand (MidiMachineControlCommand command) |
Creates an MMC message. | |
static MidiMessage | midiMachineControlGoto (int hours, int minutes, int seconds, int frames) |
Creates an MMC "goto" message. | |
static MidiMessage | masterVolume (float volume) |
Creates a master-volume change message. | |
static MidiMessage | createSysExMessage (const void *sysexData, int dataSize) |
Creates a system-exclusive message. | |
static MidiMessage | createSysExMessage (Span< const std::byte > data) |
Creates a system-exclusive message. | |
static VariableLengthValue | readVariableLengthValue (const uint8 *data, int maxBytesToUse) noexcept |
Reads a midi variable-length integer, with protection against buffer overflow. | |
static int | getMessageLengthFromFirstByte (uint8 firstByte) noexcept |
Based on the first byte of a short midi message, this uses a lookup table to return the message length (either 1, 2, or 3 bytes). | |
static String | getMidiNoteName (int noteNumber, bool useSharps, bool includeOctaveNumber, int octaveNumForMiddleC) |
Returns the name of a midi note number. | |
static double | getMidiNoteInHertz (int noteNumber, double frequencyOfA=440.0) noexcept |
Returns the frequency of a midi note number. | |
static bool | isMidiNoteBlack (int noteNumber) noexcept |
Returns true if the given midi note number is a black key. | |
static const char * | getGMInstrumentName (int midiInstrumentNumber) |
Returns the standard name of a GM instrument, or nullptr if unknown for this index. | |
static const char * | getGMInstrumentBankName (int midiBankNumber) |
Returns the name of a bank of GM instruments, or nullptr if unknown for this bank number. | |
static const char * | getRhythmInstrumentName (int midiNoteNumber) |
Returns the standard name of a channel 10 percussion sound, or nullptr if unknown for this note number. | |
static const char * | getControllerName (int controllerNumber) |
Returns the name of a controller type number, or nullptr if unknown for this controller number. | |
static uint8 | floatValueToMidiByte (float valueBetween0and1) noexcept |
Converts a floating-point value between 0 and 1 to a MIDI 7-bit value between 0 and 127. | |
static uint16 | pitchbendToPitchwheelPos (float pitchbendInSemitones, float pitchbendRangeInSemitones) noexcept |
Converts a pitchbend value in semitones to a MIDI 14-bit pitchwheel position value. | |
Encapsulates a MIDI message.
SMPTE timecode types.
Used by the getFullFrameParameters() and fullFrame() methods.
Enumerator | |
---|---|
fps24 | |
fps25 | |
fps30drop | |
fps30 |
|
noexcept |
Creates a 3-byte short midi message.
byte1 | message byte 1 |
byte2 | message byte 2 |
byte3 | message byte 3 |
timeStamp | the time to give the midi message - this value doesn't use any particular units, so will be application-specific |
Referenced by aftertouchChange(), allControllersOff(), allNotesOff(), allSoundOff(), channelPressureChange(), controllerEvent(), createSysExMessage(), createSysExMessage(), endOfTrack(), fullFrame(), keySignatureMetaEvent(), masterVolume(), midiChannelMetaEvent(), midiClock(), midiContinue(), midiMachineControlCommand(), midiMachineControlGoto(), MidiMessage(), MidiMessage(), MidiMessage(), MidiMessage(), MidiMessage(), MidiMessage(), midiStart(), midiStop(), noteOff(), noteOff(), noteOff(), noteOn(), noteOn(), operator=(), operator=(), pitchWheel(), programChange(), quarterFrame(), songPositionPointer(), tempoMetaEvent(), textMetaEvent(), timeSignatureMetaEvent(), withTimeStamp(), and ~MidiMessage().
|
noexcept |
Creates a 2-byte short midi message.
byte1 | message byte 1 |
byte2 | message byte 2 |
timeStamp | the time to give the midi message - this value doesn't use any particular units, so will be application-specific |
References MidiMessage().
|
noexcept |
Creates a 1-byte short midi message.
byte1 | message byte 1 |
timeStamp | the time to give the midi message - this value doesn't use any particular units, so will be application-specific |
References MidiMessage().
MidiMessage::MidiMessage | ( | int | byte1, |
int | byte2, | ||
int | byte3, | ||
Data... | otherBytes ) |
Creates a midi message from a list of bytes.
References getMessageLengthFromFirstByte(), jassert, and MidiMessage().
MidiMessage::MidiMessage | ( | const void * | data, |
int | numBytes, | ||
double | timeStamp = 0 ) |
Creates a midi message from a block of data.
MidiMessage::MidiMessage | ( | const void * | data, |
int | maxBytesToUse, | ||
int & | numBytesUsed, | ||
uint8 | lastStatusByte, | ||
double | timeStamp = 0, | ||
bool | sysexHasEmbeddedLength = true ) |
Reads the next midi message from some data.
This will read as many bytes from a data stream as it needs to make a complete message, and will return the number of bytes it used. This lets you read a sequence of midi messages from a file or stream.
data | the data to read from |
maxBytesToUse | the maximum number of bytes it's allowed to read |
numBytesUsed | returns the number of bytes that were actually needed |
lastStatusByte | in a sequence of midi messages, the initial byte can be dropped from a message if it's the same as the first byte of the previous message, so this lets you supply the byte to use if the first byte of the message has in fact been dropped. |
timeStamp | the time to give the midi message - this value doesn't use any particular units, so will be application-specific |
sysexHasEmbeddedLength | when reading sysexes, this flag indicates whether to expect the data to begin with a variable-length field indicating its size |
|
noexcept |
Creates an empty sysex message.
Since the MidiMessage has to contain a valid message, this default constructor just initialises it with an empty sysex message.
MidiMessage::MidiMessage | ( | const MidiMessage & | ) |
Creates a copy of another midi message.
References MidiMessage().
MidiMessage::MidiMessage | ( | const MidiMessage & | , |
double | newTimeStamp ) |
Creates a copy of another midi message, with a different timestamp.
References MidiMessage().
|
noexcept |
Destructor.
References MidiMessage().
|
noexcept |
Move constructor.
References MidiMessage().
MidiMessage & MidiMessage::operator= | ( | const MidiMessage & | other | ) |
Copies this message from another one.
References MidiMessage().
|
noexcept |
Move assignment operator.
References MidiMessage().
|
noexcept |
Returns a pointer to the raw midi data.
References getRawData().
Referenced by getRawData().
|
noexcept |
Returns the number of bytes of data in the message.
String MidiMessage::getDescription | ( | ) | const |
Returns a human-readable description of the midi message as a string, for example "Note On C#3 Velocity 120 Channel 1".
|
noexcept |
Returns the timestamp associated with this message.
The exact meaning of this time and its units will vary, as messages are used in a variety of different contexts.
If you're getting the message from a midi file, this could be a time in seconds, or a number of ticks - see MidiFile::convertTimestampTicksToSeconds().
If the message is being used in a MidiBuffer, it might indicate the number of audio samples from the start of the buffer.
If the message was created by a MidiInput, see MidiInputCallback::handleIncomingMidiMessage() for details of the way that it initialises this value.
|
noexcept |
Changes the message's associated timestamp.
The units for the timestamp will be application-specific - see the notes for getTimeStamp().
|
noexcept |
Adds a value to the message's timestamp.
The units for the timestamp will be application-specific.
MidiMessage MidiMessage::withTimeStamp | ( | double | newTimestamp | ) | const |
Return a copy of this message with a new timestamp.
The units for the timestamp will be application-specific - see the notes for getTimeStamp().
References MidiMessage().
|
noexcept |
Returns the midi channel associated with the message.
|
noexcept |
Returns true if the message applies to the given midi channel.
channelNumber | the channel number to look for, in the range 1 to 16 |
References isForChannel().
Referenced by isForChannel().
|
noexcept |
Changes the message's midi channel.
This won't do anything for non-channel messages like sysexes.
newChannelNumber | the channel number to change it to, in the range 1 to 16 |
References setChannel().
Referenced by setChannel().
|
noexcept |
|
noexcept |
Returns a pointer to the sysex data inside the message.
If this event isn't a sysex event, it'll return 0.
References getSysExData().
Referenced by getSysExData(), and getSysExDataSpan().
|
noexcept |
Returns the size of the sysex data.
This value excludes the 0xf0 header byte and the 0xf7 at the end.
References getSysExDataSize().
Referenced by getSysExDataSize(), and getSysExDataSpan().
|
noexcept |
Returns a span that bounds the sysex body bytes contained in this message.
References getSysExData(), getSysExDataSize(), and getSysExDataSpan().
Referenced by getSysExDataSpan().
|
noexcept |
Returns true if this message is a 'key-down' event.
returnTrueForVelocity0 | if true, then if this event is a note-on with velocity 0, it will still be considered to be a note-on and the method will return true. If returnTrueForVelocity0 is false, then if this is a note-on event with velocity 0, it'll be regarded as a note-off, and the method will return false |
|
staticnoexcept |
Creates a key-down message (using a floating-point velocity).
channel | the midi channel, in the range 1 to 16 |
noteNumber | the key number, 0 to 127 |
velocity | in the range 0 to 1.0 |
References MidiMessage(), and noteOn().
|
staticnoexcept |
Creates a key-down message (using an integer velocity).
channel | the midi channel, in the range 1 to 16 |
noteNumber | the key number, 0 to 127 |
velocity | in the range 0 to 127 |
References MidiMessage(), and noteOn().
|
noexcept |
Returns true if this message is a 'key-up' event.
If returnTrueForNoteOnVelocity0 is true, then his will also return true for a note-on event with a velocity of 0.
References isNoteOff().
Referenced by isNoteOff().
|
staticnoexcept |
|
staticnoexcept |
Creates a key-up message.
channel | the midi channel, in the range 1 to 16 |
noteNumber | the key number, 0 to 127 |
velocity | in the range 0 to 127 |
References MidiMessage(), and noteOff().
|
staticnoexcept |
Creates a key-up message.
channel | the midi channel, in the range 1 to 16 |
noteNumber | the key number, 0 to 127 |
References MidiMessage(), and noteOff().
|
noexcept |
Returns true if this message is a 'key-down' or 'key-up' event.
References isNoteOnOrOff().
Referenced by isNoteOnOrOff().
|
noexcept |
Returns the midi note number for note-on and note-off messages.
If the message isn't a note-on or off, the value returned is undefined.
References getNoteNumber().
Referenced by getNoteNumber().
|
noexcept |
Changes the midi note number of a note-on or note-off message.
If the message isn't a note on or off, this will do nothing.
References setNoteNumber().
Referenced by setNoteNumber().
|
noexcept |
Returns the velocity of a note-on or note-off message.
The value returned will be in the range 0 to 127. If the message isn't a note-on or off event, it will return 0.
References getVelocity().
Referenced by getVelocity().
|
noexcept |
Returns the velocity of a note-on or note-off message.
The value returned will be in the range 0 to 1.0 If the message isn't a note-on or off event, it will return 0.
References getFloatVelocity().
Referenced by getFloatVelocity().
|
noexcept |
Changes the velocity of a note-on or note-off message.
If the message isn't a note on or off, this will do nothing.
newVelocity | the new velocity, in the range 0 to 1.0 |
References setVelocity().
Referenced by setVelocity().
|
noexcept |
Multiplies the velocity of a note-on or note-off message by a given amount.
If the message isn't a note on or off, this will do nothing.
scaleFactor | the value by which to multiply the velocity |
References multiplyVelocity().
Referenced by multiplyVelocity().
|
noexcept |
Returns true if this message is a 'sustain pedal down' controller message.
References isSustainPedalOn().
Referenced by isSustainPedalOn().
|
noexcept |
Returns true if this message is a 'sustain pedal up' controller message.
References isSustainPedalOff().
Referenced by isSustainPedalOff().
|
noexcept |
Returns true if this message is a 'sostenuto pedal down' controller message.
References isSostenutoPedalOn().
Referenced by isSostenutoPedalOn().
|
noexcept |
Returns true if this message is a 'sostenuto pedal up' controller message.
References isSostenutoPedalOff().
Referenced by isSostenutoPedalOff().
|
noexcept |
Returns true if this message is a 'soft pedal down' controller message.
References isSoftPedalOn().
Referenced by isSoftPedalOn().
|
noexcept |
Returns true if this message is a 'soft pedal up' controller message.
References isSoftPedalOff().
Referenced by isSoftPedalOff().
|
noexcept |
Returns true if the message is a program (patch) change message.
References isProgramChange().
Referenced by isProgramChange().
|
noexcept |
Returns the new program number of a program change message.
If the message isn't a program change, the value returned is undefined.
References getProgramChangeNumber().
Referenced by getProgramChangeNumber().
|
staticnoexcept |
Creates a program-change message.
channel | the midi channel, in the range 1 to 16 |
programNumber | the midi program number, 0 to 127 |
References MidiMessage(), and programChange().
Referenced by programChange().
|
noexcept |
Returns true if the message is a pitch-wheel move.
References isPitchWheel().
Referenced by isPitchWheel().
|
noexcept |
Returns the pitch wheel position from a pitch-wheel move message.
The value returned is a 14-bit number from 0 to 0x3fff, indicating the wheel position. If called for messages which aren't pitch wheel events, the number returned will be nonsense.
References getPitchWheelValue().
Referenced by getPitchWheelValue().
|
staticnoexcept |
Creates a pitch-wheel move message.
channel | the midi channel, in the range 1 to 16 |
position | the wheel position, in the range 0 to 16383 |
References MidiMessage(), and pitchWheel().
Referenced by pitchWheel().
|
noexcept |
Returns true if the message is an aftertouch event.
For aftertouch events, use the getNoteNumber() method to find out the key that it applies to, and getAfterTouchValue() to find out the amount. Use getChannel() to find out the channel.
References isAftertouch().
Referenced by isAftertouch().
|
noexcept |
Returns the amount of aftertouch from an aftertouch messages.
The value returned is in the range 0 to 127, and will be nonsense for messages other than aftertouch messages.
References getAfterTouchValue().
Referenced by getAfterTouchValue().
|
staticnoexcept |
Creates an aftertouch message.
channel | the midi channel, in the range 1 to 16 |
noteNumber | the key number, 0 to 127 |
aftertouchAmount | the amount of aftertouch, 0 to 127 |
References aftertouchChange(), and MidiMessage().
Referenced by aftertouchChange().
|
noexcept |
Returns true if the message is a channel-pressure change event.
This is like aftertouch, but common to the whole channel rather than a specific note. Use getChannelPressureValue() to find out the pressure, and getChannel() to find out the channel.
References isChannelPressure().
Referenced by isChannelPressure().
|
noexcept |
Returns the pressure from a channel pressure change message.
References getChannelPressureValue().
Referenced by getChannelPressureValue().
|
staticnoexcept |
Creates a channel-pressure change event.
channel | the midi channel: 1 to 16 |
pressure | the pressure, 0 to 127 |
References channelPressureChange(), and MidiMessage().
Referenced by channelPressureChange().
|
noexcept |
Returns true if this is a midi controller message.
References isController().
Referenced by isController().
|
noexcept |
Returns the controller number of a controller message.
The name of the controller can be looked up using the getControllerName() method. Note that the value returned is invalid for messages that aren't controller changes.
References getControllerNumber().
Referenced by getControllerNumber().
|
noexcept |
Returns the controller value from a controller message.
A value 0 to 127 is returned to indicate the new controller position. Note that the value returned is invalid for messages that aren't controller changes.
References getControllerValue().
Referenced by getControllerValue().
|
noexcept |
Returns true if this message is a controller message and if it has the specified controller type.
References isControllerOfType().
Referenced by isControllerOfType().
|
staticnoexcept |
Creates a controller message.
channel | the midi channel, in the range 1 to 16 |
controllerType | the type of controller |
value | the controller value |
References controllerEvent(), and MidiMessage().
Referenced by controllerEvent().
|
noexcept |
Checks whether this message is an all-notes-off message.
References isAllNotesOff().
Referenced by isAllNotesOff().
|
noexcept |
Checks whether this message is an all-sound-off message.
References isAllSoundOff().
Referenced by isAllSoundOff().
|
noexcept |
Checks whether this message is a reset all controllers message.
References isResetAllControllers().
Referenced by isResetAllControllers().
|
staticnoexcept |
Creates an all-notes-off message.
channel | the midi channel, in the range 1 to 16 |
References allNotesOff(), and MidiMessage().
Referenced by allNotesOff().
|
staticnoexcept |
Creates an all-sound-off message.
channel | the midi channel, in the range 1 to 16 |
References allSoundOff(), and MidiMessage().
Referenced by allSoundOff().
|
staticnoexcept |
Creates an all-controllers-off message.
channel | the midi channel, in the range 1 to 16 |
References allControllersOff(), and MidiMessage().
Referenced by allControllersOff().
|
noexcept |
Returns true if this event is a meta-event.
Meta-events are things like tempo changes, track names, etc.
References isMetaEvent().
Referenced by isMetaEvent().
|
noexcept |
Returns a meta-event's type number.
If the message isn't a meta-event, this will return -1.
References getMetaEventType().
Referenced by getMetaEventType().
|
noexcept |
Returns a pointer to the data in a meta-event.
References getMetaEventData().
Referenced by getMetaEventData().
|
noexcept |
Returns the length of the data for a meta-event.
References getMetaEventLength().
Referenced by getMetaEventLength().
|
noexcept |
Returns true if this is a 'track' meta-event.
References isTrackMetaEvent().
Referenced by isTrackMetaEvent().
|
noexcept |
Returns true if this is an 'end-of-track' meta-event.
References isEndOfTrackMetaEvent().
Referenced by isEndOfTrackMetaEvent().
|
staticnoexcept |
Creates an end-of-track meta-event.
References endOfTrack(), and MidiMessage().
Referenced by endOfTrack().
|
noexcept |
Returns true if this is an 'track name' meta-event.
You can use the getTextFromTextMetaEvent() method to get the track's name.
References isTrackNameEvent().
Referenced by isTrackNameEvent().
|
noexcept |
Returns true if this is a 'text' meta-event.
References isTextMetaEvent().
Referenced by isTextMetaEvent().
String MidiMessage::getTextFromTextMetaEvent | ( | ) | const |
Returns the text from a text meta-event.
References getTextFromTextMetaEvent().
Referenced by getTextFromTextMetaEvent().
|
static |
Creates a text meta-event.
References MidiMessage(), and textMetaEvent().
Referenced by textMetaEvent().
|
noexcept |
Returns true if this is a 'tempo' meta-event.
References isTempoMetaEvent().
Referenced by isTempoMetaEvent().
|
noexcept |
Returns the tick length from a tempo meta-event.
timeFormat | the 16-bit time format value from the midi file's header. |
References getTempoMetaEventTickLength().
Referenced by getTempoMetaEventTickLength().
|
noexcept |
Calculates the seconds-per-quarter-note from a tempo meta-event.
References getTempoSecondsPerQuarterNote().
Referenced by getTempoSecondsPerQuarterNote().
|
staticnoexcept |
Creates a tempo meta-event.
References MidiMessage(), and tempoMetaEvent().
Referenced by tempoMetaEvent().
|
noexcept |
Returns true if this is a 'time-signature' meta-event.
References isTimeSignatureMetaEvent().
Referenced by isTimeSignatureMetaEvent().
|
noexcept |
Returns the time-signature values from a time-signature meta-event.
References getTimeSignatureInfo().
Referenced by getTimeSignatureInfo().
|
static |
Creates a time-signature meta-event.
References MidiMessage(), and timeSignatureMetaEvent().
Referenced by timeSignatureMetaEvent().
|
noexcept |
Returns true if this is a 'key-signature' meta-event.
References isKeySignatureMetaEvent().
Referenced by isKeySignatureMetaEvent().
|
noexcept |
Returns the key from a key-signature meta-event.
This method must only be called if isKeySignatureMetaEvent() is true. A positive number here indicates the number of sharps in the key signature, and a negative number indicates a number of flats. So e.g. 3 = F# + C# + G#, -2 = Bb + Eb
References getKeySignatureNumberOfSharpsOrFlats().
Referenced by getKeySignatureNumberOfSharpsOrFlats().
|
noexcept |
Returns true if this key-signature event is major, or false if it's minor.
This method must only be called if isKeySignatureMetaEvent() is true.
References isKeySignatureMajorKey().
Referenced by isKeySignatureMajorKey().
|
static |
Creates a key-signature meta-event.
numberOfSharpsOrFlats | if positive, this indicates the number of sharps in the key; if negative, the number of flats |
isMinorKey | if true, the key is minor; if false, it is major |
References keySignatureMetaEvent(), and MidiMessage().
Referenced by keySignatureMetaEvent().
|
noexcept |
Returns true if this is a 'channel' meta-event.
A channel meta-event specifies the midi channel that should be used for subsequent meta-events.
References isMidiChannelMetaEvent().
Referenced by isMidiChannelMetaEvent().
|
noexcept |
Returns the channel number from a channel meta-event.
References getMidiChannelMetaEventChannel().
Referenced by getMidiChannelMetaEventChannel().
|
staticnoexcept |
Creates a midi channel meta-event.
channel | the midi channel, in the range 1 to 16 |
References midiChannelMetaEvent(), and MidiMessage().
Referenced by midiChannelMetaEvent().
|
noexcept |
Returns true if this is an active-sense message.
References isActiveSense().
Referenced by isActiveSense().
|
noexcept |
Returns true if this is a midi start event.
References isMidiStart().
Referenced by isMidiStart().
|
staticnoexcept |
|
noexcept |
Returns true if this is a midi continue event.
References isMidiContinue().
Referenced by isMidiContinue().
|
staticnoexcept |
Creates a midi continue event.
References midiContinue(), and MidiMessage().
Referenced by midiContinue().
|
noexcept |
Returns true if this is a midi stop event.
References isMidiStop().
Referenced by isMidiStop().
|
staticnoexcept |
|
noexcept |
Returns true if this is a midi clock event.
References isMidiClock().
Referenced by isMidiClock().
|
staticnoexcept |
|
noexcept |
Returns true if this is a song-position-pointer message.
References isSongPositionPointer().
Referenced by isSongPositionPointer().
|
noexcept |
Returns the midi beat-number of a song-position-pointer message.
References getSongPositionPointerMidiBeat().
Referenced by getSongPositionPointerMidiBeat().
|
staticnoexcept |
Creates a song-position-pointer message.
The position is a number of midi beats from the start of the song, where 1 midi beat is 6 midi clocks, and there are 24 midi clocks in a quarter-note. So there are 4 midi beats in a quarter-note.
References MidiMessage(), and songPositionPointer().
Referenced by songPositionPointer().
|
noexcept |
Returns true if this is a quarter-frame midi timecode message.
References isQuarterFrame().
Referenced by isQuarterFrame().
|
noexcept |
Returns the sequence number of a quarter-frame midi timecode message.
This will be a value between 0 and 7.
References getQuarterFrameSequenceNumber().
Referenced by getQuarterFrameSequenceNumber().
|
noexcept |
Returns the value from a quarter-frame message.
This will be the lower nybble of the message's data-byte, a value between 0 and 15
References getQuarterFrameValue().
Referenced by getQuarterFrameValue().
|
staticnoexcept |
Creates a quarter-frame MTC message.
sequenceNumber | a value 0 to 7 for the upper nybble of the message's data byte |
value | a value 0 to 15 for the lower nybble of the message's data byte |
References MidiMessage(), and quarterFrame().
Referenced by quarterFrame().
|
noexcept |
Returns true if this is a full-frame midi timecode message.
|
noexcept |
Extracts the timecode information from a full-frame midi timecode message.
You should only call this on messages where you've used isFullFrame() to check that they're the right kind.
References getFullFrameParameters().
Referenced by getFullFrameParameters().
|
static |
Creates a full-frame MTC message.
References fullFrame(), and MidiMessage().
Referenced by fullFrame().
|
noexcept |
Checks whether this is an MMC message.
If it is, you can use the getMidiMachineControlCommand() to find out its type.
|
noexcept |
For an MMC message, this returns its type.
Make sure it's actually an MMC message with isMidiMachineControlMessage() before calling this method.
References getMidiMachineControlCommand().
Referenced by getMidiMachineControlCommand().
|
static |
Creates an MMC message.
References command, midiMachineControlCommand(), and MidiMessage().
Referenced by midiMachineControlCommand().
|
noexcept |
Checks whether this is an MMC "goto" message.
If it is, the parameters passed-in are set to the time that the message contains.
References isMidiMachineControlGoto().
Referenced by isMidiMachineControlGoto().
|
static |
Creates an MMC "goto" message.
This messages tells the device to go to a specific frame.
References midiMachineControlGoto(), and MidiMessage().
Referenced by midiMachineControlGoto().
|
static |
Creates a master-volume change message.
volume | the volume, 0 to 1.0 |
References masterVolume(), and MidiMessage().
Referenced by masterVolume().
|
static |
Creates a system-exclusive message.
The data passed in is wrapped with header and tail bytes of 0xf0 and 0xf7.
References createSysExMessage(), and MidiMessage().
Referenced by createSysExMessage(), and createSysExMessage().
|
static |
Creates a system-exclusive message.
The data passed in is wrapped with header and tail bytes of 0xf0 and 0xf7.
References createSysExMessage(), and MidiMessage().
|
staticnoexcept |
Reads a midi variable-length integer, with protection against buffer overflow.
data | the data to read the number from |
maxBytesToUse | the number of bytes in the region following data |
value
and bytesUsed
fields will be set to 0 and isValid()
will return false
|
staticnoexcept |
Based on the first byte of a short midi message, this uses a lookup table to return the message length (either 1, 2, or 3 bytes).
The value passed in must be 0x80 or higher.
Referenced by MidiMessage(), and MidiDataConcatenator::pushMidiData().
|
static |
Returns the name of a midi note number.
E.g "C", "D#", etc.
noteNumber | the midi note number, 0 to 127 |
useSharps | if true, sharpened notes are used, e.g. "C#", otherwise they'll be flattened, e.g. "Db" |
includeOctaveNumber | if true, the octave number will be appended to the string, e.g. "C#4" |
octaveNumForMiddleC | if an octave number is being appended, this indicates the number that will be used for middle C's octave |
|
staticnoexcept |
Returns the frequency of a midi note number.
The frequencyOfA parameter is an optional frequency for 'A', normally 440-444Hz for concert pitch.
|
staticnoexcept |
Returns true if the given midi note number is a black key.
References isMidiNoteBlack().
Referenced by isMidiNoteBlack().
|
static |
Returns the standard name of a GM instrument, or nullptr if unknown for this index.
midiInstrumentNumber | the program number 0 to 127 |
References getGMInstrumentName().
Referenced by getGMInstrumentName().
|
static |
Returns the name of a bank of GM instruments, or nullptr if unknown for this bank number.
midiBankNumber | the bank, 0 to 15 |
References getGMInstrumentBankName().
Referenced by getGMInstrumentBankName().
|
static |
Returns the standard name of a channel 10 percussion sound, or nullptr if unknown for this note number.
midiNoteNumber | the key number, 35 to 81 |
References getRhythmInstrumentName().
Referenced by getRhythmInstrumentName().
|
static |
Returns the name of a controller type number, or nullptr if unknown for this controller number.
References getControllerName().
Referenced by getControllerName().
|
staticnoexcept |
Converts a floating-point value between 0 and 1 to a MIDI 7-bit value between 0 and 127.
References floatValueToMidiByte().
Referenced by floatValueToMidiByte().
|
staticnoexcept |
Converts a pitchbend value in semitones to a MIDI 14-bit pitchwheel position value.
References pitchbendToPitchwheelPos().
Referenced by pitchbendToPitchwheelPos().