2002-12-08 20:19:01 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
2005-01-01 16:09:25 +00:00
|
|
|
* Copyright (C) 2001-2005 The ScummVM project
|
2002-12-08 20:19:01 +00:00
|
|
|
*
|
|
|
|
* 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
|
2005-10-18 01:30:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2002-12-08 20:19:01 +00:00
|
|
|
*
|
|
|
|
* $Header$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SOUND_MPU401_H
|
|
|
|
#define SOUND_MPU401_H
|
|
|
|
|
2005-06-24 15:23:51 +00:00
|
|
|
#include "common/stdafx.h"
|
2005-06-24 16:16:46 +00:00
|
|
|
#include "sound/mididrv.h"
|
2002-12-08 20:19:01 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Common MPU401 implementation methods
|
|
|
|
//
|
|
|
|
////////////////////////////////////////
|
|
|
|
|
|
|
|
class MidiDriver_MPU401;
|
|
|
|
|
|
|
|
class MidiChannel_MPU401 : public MidiChannel {
|
|
|
|
|
|
|
|
private:
|
2004-11-04 21:34:17 +00:00
|
|
|
MidiDriver *_owner;
|
2002-12-08 20:19:01 +00:00
|
|
|
bool _allocated;
|
|
|
|
byte _channel;
|
|
|
|
|
|
|
|
public:
|
2002-12-18 07:13:42 +00:00
|
|
|
MidiDriver *device();
|
2002-12-18 07:48:35 +00:00
|
|
|
byte getNumber() { return _channel; }
|
2002-12-08 20:19:01 +00:00
|
|
|
void release() { _allocated = false; }
|
|
|
|
|
2003-08-08 11:54:24 +00:00
|
|
|
void send (uint32 b);
|
|
|
|
|
2002-12-08 20:19:01 +00:00
|
|
|
// Regular messages
|
|
|
|
void noteOff (byte note);
|
|
|
|
void noteOn (byte note, byte velocity);
|
|
|
|
void programChange (byte program);
|
|
|
|
void pitchBend (int16 bend);
|
|
|
|
|
|
|
|
// Control Change messages
|
|
|
|
void controlChange (byte control, byte value);
|
|
|
|
void pitchBendFactor (byte value);
|
|
|
|
|
|
|
|
// SysEx messages
|
|
|
|
void sysEx_customInstrument (uint32 type, byte *instr);
|
2004-11-04 21:34:17 +00:00
|
|
|
|
|
|
|
// Only to be called by the owner
|
|
|
|
void init (MidiDriver *owner, byte channel);
|
|
|
|
bool allocate();
|
2002-12-08 20:19:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MidiDriver_MPU401 : public MidiDriver {
|
|
|
|
private:
|
|
|
|
MidiChannel_MPU401 _midi_channels [16];
|
2005-05-10 23:17:38 +00:00
|
|
|
Common::Timer::TimerProc _timer_proc;
|
2003-09-25 22:32:05 +00:00
|
|
|
uint16 _channel_mask;
|
2002-12-08 20:19:01 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
MidiDriver_MPU401();
|
|
|
|
|
2003-06-11 05:54:46 +00:00
|
|
|
virtual void close();
|
2005-05-10 23:17:38 +00:00
|
|
|
void setTimerCallback(void *timer_param, Common::Timer::TimerProc timer_proc);
|
2003-06-11 05:54:46 +00:00
|
|
|
uint32 getBaseTempo(void) { return 10000; }
|
2003-09-25 22:32:05 +00:00
|
|
|
uint32 property(int prop, uint32 param);
|
2002-12-08 20:19:01 +00:00
|
|
|
|
2002-12-18 17:14:05 +00:00
|
|
|
MidiChannel *allocateChannel();
|
|
|
|
MidiChannel *getPercussionChannel() { return &_midi_channels [9]; }
|
2002-12-08 20:19:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|