#include <mididrv.h>
Public Member Functions | |
virtual void | send (uint32 b)=0 |
virtual void | send (int8 source, uint32 b) |
void | send (byte status, byte firstOp, byte secondOp) |
void | send (int8 source, byte status, byte firstOp, byte secondOp) |
virtual void | sysEx (const byte *msg, uint16 length) |
virtual uint16 | sysExNoDelay (const byte *msg, uint16 length) |
virtual void | metaEvent (byte type, byte *data, uint16 length) |
virtual void | metaEvent (int8 source, byte type, byte *data, uint16 length) |
virtual void | stopAllNotes (bool stopSustainedNotes=false) |
virtual bool | isReady (int8 source=-1) |
Protected Member Functions | |
void | midiDumpInit () |
int | midiDumpVarLength (const uint32 &delta) |
void | midiDumpDelta () |
void | midiDumpDo (uint32 b) |
void | midiDumpSysEx (const byte *msg, uint16 length) |
void | midiDumpFinish () |
Protected Attributes | |
bool | _midiDumpEnable |
uint32 | _prevMillis |
Common::Array< byte > | _midiDumpCache |
TODO: Document this, give it a better name.
|
pure virtual |
Output a packed midi command to the midi stream. The 'lowest' byte (i.e. b & 0xFF) is the status code, then come (if used) the first and second opcode.
Implemented in Scumm::Player, MidiDriver_MT32GM, Kyra::MidiDriver_PCSpeaker, MidiDriver_Multisource, CGE::MusicPlayer, Audio::MidiPlayer, CGE2::MusicPlayer, Groovie::MusicPlayerMidi, Tinsel::MidiMusicPlayer, Sci::MidiPlayer, Dgds::MidiPlayer, Lure::MidiMusic, Illusions::MidiPlayer, AGOS::MidiDriver_Accolade_Cms, Queen::MidiMusic, Scumm::Player_HE, Scumm::IMuseDriver_Macintosh, Prince::MusicPlayer, Scumm::IMuseDriver_GMidi, Touche::MidiPlayer, Scumm::IMuseDriver_Amiga, Scumm::IMuseDriver_FMTowns, Agi::SoundGenMIDI, Toltecs::MusicPlayer, Queen::AdLibMidiDriver, Scumm::IMuseDriver_PCSpk, and MidiDriver_NULL.
|
inlinevirtual |
Send a MIDI command from a specific source. If the MIDI driver does not support multiple sources, the source parameter is ignored.
Reimplemented in MidiDriver_ADLIB_Multisource, MidiDriver_NULL_Multisource, MidiDriver_MT32GM, MidiDriver_Multisource, Groovie::MusicPlayerXMI, Audio::MidiDriver_Miles_Midi, MidiDriver_Casio, Lure::MidiMusic, Ultima::Nuvie::MidiDriver_M_MT32, Ultima::Nuvie::MidiDriver_M_AdLib, AGOS::MidiDriver_Accolade_AdLib, and AGOS::MidiDriver_Accolade_MT32.
void MidiDriver_BASE::send | ( | byte | status, |
byte | firstOp, | ||
byte | secondOp | ||
) |
Output a midi command to the midi stream. Convenience wrapper around the usual 'packed' send method.
Do NOT use this for sysEx transmission; instead, use the sysEx() method below.
void MidiDriver_BASE::send | ( | int8 | source, |
byte | status, | ||
byte | firstOp, | ||
byte | secondOp | ||
) |
Send a MIDI command from a specific source. If the MIDI driver does not support multiple sources, the source parameter is ignored.
|
inlinevirtual |
Transmit a SysEx to the MIDI device.
The given msg MUST NOT contain the usual SysEx frame, i.e. do NOT include the leading 0xF0 and the trailing 0xF7.
Furthermore, the maximal supported length of a SysEx is 268 bytes. Passing longer buffers can lead to undefined behavior (most likely, a crash).
Reimplemented in MidiDriver_ADLIB_Multisource, Scumm::Player, MidiDriver_MT32GM, Groovie::MusicPlayerMidi, and Scumm::IMuseDriver_GMidi.
|
inlinevirtual |
Transmit a SysEx to the MIDI device and return the necessary delay until the next SysEx event in milliseconds.
This can be used to implement an alternate delay method than the OSystem::delayMillis function used by most sysEx implementations. Note that not every driver needs a delay, or supports this method. In this case, 0 is returned and the driver itself will do a delay if necessary.
For information on the SysEx data requirements, see the sysEx method.
Reimplemented in Scumm::Player, MidiDriver_MT32GM, and Groovie::MusicPlayerMidi.
|
inlinevirtual |
Send a meta event from a specific source. If the MIDI driver does not support multiple sources, the source parameter is ignored.
Reimplemented in MidiDriver_ADLIB_Multisource, MidiDriver_MT32GM, Lure::MidiDriver_ADLIB_Lure, Groovie::MusicPlayerXMI, MidiDriver_Casio, Lure::MidiMusic, Ultima::Nuvie::MidiDriver_M_MT32, and Ultima::Nuvie::MidiDriver_M_AdLib.
|
virtual |
Stops all currently active notes. Specify stopSustainedNotes if the MIDI data makes use of the sustain controller to make sure sustained notes are also stopped.
Usually, the MIDI parser tracks active notes and terminates them when playback is stopped. This method should be used as a backup to silence the MIDI output in case the MIDI parser makes a mistake when tracking acive notes. It can also be used when quitting or pausing a game.
By default, this method sends an All Notes Off message and, if stopSustainedNotes is true, a Sustain off message on all MIDI channels. Driver implementations can override this if they want to implement this functionality in a different way.
Reimplemented in MidiDriver_ADLIB_Multisource, MidiDriver_MT32GM, Groovie::MusicPlayerXMI, Audio::MidiDriver_Miles_Midi, MidiDriver_Casio, and Ultima::Nuvie::MidiDriver_M_MT32.
|
inlinevirtual |
A driver implementation might need time to prepare playback of a track. Use this function to check if the driver is ready to receive MIDI events.
source | Check if the driver is ready to receive events from this specific source. Specify -1 to check readiness regardless of source. |
Reimplemented in MidiDriver_MT32GM, and Groovie::MusicPlayerXMI.
|
protected |
Initialize midi dumping mechanism, called only if enabled
|
protected |
Handles MIDI file variable length dumping
|
protected |
Handles MIDI file time delta dumping
|
protected |
Performs dumping of MIDI commands, called only if enabled
|
protected |
Performs dumping of MIDI SysEx commands, called only if enabled
|
protected |
Writes the captured MIDI events to disk, called only if enabled
|
protected |
Enables midi dumping to a 'dump.mid' file and to debug messages on screen It's set by '–dump-midi' command line parameter
|
protected |
Used for MIDI dumping delta calculation
|
protected |
Stores all MIDI events, will be written to disk after an engine quits