2003-05-18 14:25:33 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
|
|
|
* Copyright (C) 2001-2003 The ScummVM project
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
|
|
|
|
* 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 General Public License for more details.
|
|
|
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* $Header$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef INCLUDED_MIDIPARSER
|
|
|
|
#define INCLUDED_MIDIPARSER
|
|
|
|
|
|
|
|
class MidiParser;
|
|
|
|
|
|
|
|
#include "common/scummsys.h"
|
|
|
|
|
|
|
|
class MidiDriver;
|
|
|
|
|
2003-05-19 18:48:18 +00:00
|
|
|
struct EventInfo {
|
|
|
|
byte * start; // Points to delta
|
|
|
|
uint32 delta;
|
|
|
|
byte event;
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
byte param1;
|
|
|
|
byte param2;
|
|
|
|
};
|
|
|
|
struct {
|
|
|
|
byte type; // Used for METAs
|
|
|
|
byte * data; // Used for SysEx and METAs
|
|
|
|
uint32 length; // Used for SysEx and METAs
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
byte channel() { return event & 0x0F; }
|
|
|
|
byte command() { return event >> 4; }
|
|
|
|
};
|
|
|
|
|
2003-05-18 14:25:33 +00:00
|
|
|
class MidiParser {
|
|
|
|
protected:
|
|
|
|
MidiDriver *_driver;
|
|
|
|
uint32 _timer_rate;
|
2003-05-19 18:48:18 +00:00
|
|
|
uint32 _ppqn; // Pulses (ticks) Per Quarter Note
|
|
|
|
uint32 _tempo; // Microseconds per quarter note
|
|
|
|
uint32 _psec_per_tick; // Microseconds per tick (_tempo / _ppqn)
|
|
|
|
bool _autoLoop; // For lightweight clients that don't monitor events
|
|
|
|
|
|
|
|
byte * _tracks[16];
|
|
|
|
byte _num_tracks;
|
|
|
|
byte _active_track;
|
|
|
|
|
|
|
|
byte * _play_pos;
|
|
|
|
uint32 _play_time;
|
|
|
|
uint32 _last_event_time;
|
|
|
|
uint32 _last_event_tick;
|
|
|
|
byte _running_status; // Cache of last MIDI command, used in compressed streams
|
|
|
|
EventInfo _next_event;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static uint32 readVLQ (byte * &data);
|
|
|
|
void resetTracking();
|
|
|
|
void allNotesOff();
|
|
|
|
virtual void parseNextEvent (EventInfo &info) = 0;
|
|
|
|
|
|
|
|
// Multi-byte read helpers
|
|
|
|
uint32 read4high (byte * &data) {
|
|
|
|
uint32 val = 0;
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < 4; ++i) val = (val << 8) | *data++;
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
uint16 read2low (byte * &data) {
|
|
|
|
uint16 val = 0;
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < 2; ++i) val |= (*data++) << (i * 8);
|
|
|
|
return val;
|
|
|
|
}
|
2003-05-18 14:25:33 +00:00
|
|
|
|
2003-05-19 05:00:13 +00:00
|
|
|
public:
|
|
|
|
enum {
|
2003-05-19 18:48:18 +00:00
|
|
|
mpMalformedPitchBends = 1,
|
|
|
|
mpAutoLoop = 2
|
2003-05-19 05:00:13 +00:00
|
|
|
};
|
|
|
|
|
2003-05-18 14:25:33 +00:00
|
|
|
public:
|
2003-05-19 18:48:18 +00:00
|
|
|
MidiParser();
|
2003-05-19 00:12:16 +00:00
|
|
|
virtual ~MidiParser() { }
|
|
|
|
|
2003-05-18 23:55:53 +00:00
|
|
|
virtual bool loadMusic (byte *data, uint32 size) = 0;
|
2003-05-18 14:25:33 +00:00
|
|
|
virtual void unloadMusic() = 0;
|
2003-05-19 18:48:18 +00:00
|
|
|
virtual void property (int prop, int value);
|
2003-05-18 14:25:33 +00:00
|
|
|
|
|
|
|
void setMidiDriver (MidiDriver *driver) { _driver = driver; }
|
|
|
|
void setTimerRate (uint32 rate) { _timer_rate = rate / 500; }
|
2003-05-19 18:48:18 +00:00
|
|
|
void onTimer();
|
2003-05-18 14:25:33 +00:00
|
|
|
|
2003-05-19 18:48:18 +00:00
|
|
|
void setTrack (byte track);
|
|
|
|
void jumpToTick (uint32 tick);
|
2003-05-18 14:25:33 +00:00
|
|
|
|
2003-05-18 23:55:53 +00:00
|
|
|
static MidiParser *createParser_SMF();
|
2003-05-18 14:25:33 +00:00
|
|
|
static MidiParser *createParser_XMIDI();
|
2003-05-19 05:00:13 +00:00
|
|
|
static void timerCallback (void *data) { ((MidiParser *) data)->onTimer(); }
|
2003-05-18 14:25:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|