2007-05-30 21:56:52 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
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
|
|
|
*
|
2006-02-11 10:05:31 +00:00
|
|
|
* $URL$
|
|
|
|
* $Id$
|
2002-12-08 20:19:01 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SOUND_MPU401_H
|
|
|
|
#define SOUND_MPU401_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; }
|
|
|
|
|
2006-05-12 12:03:36 +00:00
|
|
|
void send(uint32 b);
|
2003-08-08 11:54:24 +00:00
|
|
|
|
2002-12-08 20:19:01 +00:00
|
|
|
// Regular messages
|
2006-05-12 12:03:36 +00:00
|
|
|
void noteOff(byte note);
|
|
|
|
void noteOn(byte note, byte velocity);
|
|
|
|
void programChange(byte program);
|
|
|
|
void pitchBend(int16 bend);
|
2002-12-08 20:19:01 +00:00
|
|
|
|
|
|
|
// Control Change messages
|
2006-05-12 12:03:36 +00:00
|
|
|
void controlChange(byte control, byte value);
|
|
|
|
void pitchBendFactor(byte value);
|
2002-12-08 20:19:01 +00:00
|
|
|
|
|
|
|
// SysEx messages
|
2006-05-12 12:03:36 +00:00
|
|
|
void sysEx_customInstrument(uint32 type, const byte *instr);
|
2004-11-04 21:34:17 +00:00
|
|
|
|
|
|
|
// Only to be called by the owner
|
2006-05-12 12:03:36 +00:00
|
|
|
void init(MidiDriver *owner, byte channel);
|
2004-11-04 21:34:17 +00:00
|
|
|
bool allocate();
|
2002-12-08 20:19:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MidiDriver_MPU401 : public MidiDriver {
|
|
|
|
private:
|
2006-05-12 12:03:36 +00:00
|
|
|
MidiChannel_MPU401 _midi_channels[16];
|
2006-06-24 09:34:49 +00:00
|
|
|
Common::TimerManager::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();
|
2006-06-24 09:34:49 +00:00
|
|
|
void setTimerCallback(void *timer_param, Common::TimerManager::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();
|
2006-05-12 12:03:36 +00:00
|
|
|
MidiChannel *getPercussionChannel() { return &_midi_channels[9]; }
|
2002-12-08 20:19:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|