2003-05-12 23:25:54 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
|
|
|
* Copyright (C) 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 MT32MUSIC_H
|
|
|
|
#define MT32MUSIC_H
|
|
|
|
|
2003-10-05 20:21:20 +00:00
|
|
|
#include "sky/music/musicbase.h"
|
|
|
|
|
|
|
|
class MidiDriver;
|
2003-05-12 23:25:54 +00:00
|
|
|
|
2004-01-03 01:58:58 +00:00
|
|
|
namespace Sky {
|
|
|
|
|
2003-05-12 23:25:54 +00:00
|
|
|
class SkyMT32Music : public SkyMusicBase {
|
|
|
|
public:
|
2003-07-01 01:27:50 +00:00
|
|
|
SkyMT32Music(MidiDriver *pMidiDrv, SkyDisk *pSkyDisk, OSystem *system);
|
2003-05-12 23:25:54 +00:00
|
|
|
~SkyMT32Music(void);
|
|
|
|
private:
|
|
|
|
static void passTimerFunc(void *param);
|
|
|
|
void timerCall(void);
|
|
|
|
bool processPatchSysEx(uint8 *sysExData);
|
2003-06-22 21:42:59 +00:00
|
|
|
virtual void setVolume(uint8 volume);
|
2003-05-12 23:25:54 +00:00
|
|
|
|
|
|
|
bool _ignoreNextPoll;
|
|
|
|
uint8 *_sysExSequence;
|
|
|
|
MidiDriver *_midiDrv;
|
|
|
|
uint8 _dummyMap[128];
|
|
|
|
|
|
|
|
virtual void setupPointers(void);
|
|
|
|
virtual void setupChannels(uint8 *channelData);
|
|
|
|
virtual void startDriver(void);
|
|
|
|
};
|
|
|
|
|
2004-01-03 01:58:58 +00:00
|
|
|
} // End of namespace Sky
|
|
|
|
|
2003-05-12 23:25:54 +00:00
|
|
|
#endif //MT32MUSIC_H
|