2006-01-07 22:28:54 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
|
|
|
* Copyright (C) 2006 The ScummVM project
|
|
|
|
* Original ADL-Player source Copyright (C) 2004 by Dorian Gray
|
|
|
|
*
|
|
|
|
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
2006-02-11 10:11:37 +00:00
|
|
|
* $URL$
|
|
|
|
* $Id$
|
2006-01-07 22:28:54 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GOB_MUSIC_H
|
|
|
|
#define GOB_MUSIC_H
|
|
|
|
|
|
|
|
#include "sound/audiostream.h"
|
|
|
|
#include "sound/fmopl.h"
|
2006-05-11 19:43:30 +00:00
|
|
|
#include "common/mutex.h"
|
2006-01-07 22:28:54 +00:00
|
|
|
|
|
|
|
#include "gob/gob.h"
|
|
|
|
|
|
|
|
namespace Gob {
|
|
|
|
|
|
|
|
class GobEngine;
|
|
|
|
|
2006-04-29 22:33:31 +00:00
|
|
|
class Music : public Audio::AudioStream {
|
2006-01-07 22:28:54 +00:00
|
|
|
public:
|
|
|
|
Music(GobEngine *vm);
|
|
|
|
~Music();
|
|
|
|
|
2006-05-11 19:43:30 +00:00
|
|
|
void lock() { _mutex.lock(); }
|
|
|
|
void unlock() { _mutex.unlock(); }
|
2006-01-07 22:28:54 +00:00
|
|
|
bool playing() { return _playing; }
|
2006-05-13 08:39:12 +00:00
|
|
|
bool getRepeating(void) { return _repCount != 0; }
|
2006-05-11 19:43:30 +00:00
|
|
|
void setRepeating (int32 repCount) { _repCount = repCount; }
|
2006-01-07 22:28:54 +00:00
|
|
|
void startPlay(void);
|
2006-05-11 19:43:30 +00:00
|
|
|
void stopPlay(void) { _mutex.lock(); _playing = false; _mutex.unlock(); }
|
2006-01-08 20:03:20 +00:00
|
|
|
void playTrack(const char *trackname);
|
|
|
|
void playBgMusic(void);
|
2006-01-07 22:28:54 +00:00
|
|
|
bool loadMusic(const char *filename);
|
2006-05-11 19:43:30 +00:00
|
|
|
void loadFromMemory(byte *data);
|
2006-01-07 22:28:54 +00:00
|
|
|
void unloadMusic(void);
|
|
|
|
|
|
|
|
// AudioStream API
|
|
|
|
int readBuffer(int16 *buffer, const int numSamples) {
|
|
|
|
premixerCall(buffer, numSamples / 2);
|
|
|
|
return numSamples;
|
|
|
|
}
|
|
|
|
bool isStereo() const { return true; }
|
|
|
|
bool endOfData() const { return false; }
|
|
|
|
int getRate() const { return _rate; }
|
|
|
|
|
|
|
|
protected:
|
2006-01-08 20:03:20 +00:00
|
|
|
static const char *_tracks[][2];
|
|
|
|
static const char *_tracksToFiles[][2];
|
2006-01-07 22:28:54 +00:00
|
|
|
static const unsigned char _operators[];
|
|
|
|
static const unsigned char _volRegNums [];
|
|
|
|
FM_OPL *_opl;
|
|
|
|
byte *_data;
|
|
|
|
byte *_playPos;
|
|
|
|
uint32 _dataSize;
|
|
|
|
uint32 _rate;
|
|
|
|
short _freqs[25][12];
|
|
|
|
byte _notes[11];
|
|
|
|
byte _notCol[11];
|
|
|
|
byte _notLin[11];
|
|
|
|
bool _notOn[11];
|
|
|
|
byte _pollNotes[16];
|
|
|
|
uint32 _samplesTillPoll;
|
2006-05-11 19:43:30 +00:00
|
|
|
int32 _repCount;
|
2006-01-07 22:28:54 +00:00
|
|
|
bool _playing;
|
|
|
|
bool _first;
|
|
|
|
bool _ended;
|
2006-05-11 19:43:30 +00:00
|
|
|
Common::Mutex _mutex;
|
2006-01-07 22:28:54 +00:00
|
|
|
GobEngine *_vm;
|
|
|
|
|
|
|
|
void premixerCall(int16 *buf, uint len);
|
|
|
|
void writeOPL(byte reg, byte val);
|
|
|
|
void setFreqs(void);
|
|
|
|
void reset(void);
|
|
|
|
void setVoices();
|
|
|
|
void setVoice(byte voice, byte instr, bool set);
|
|
|
|
void setKey(byte voice, byte note, bool on, bool spec);
|
|
|
|
void setVolume(byte voice, byte volume);
|
|
|
|
void pollMusic(void);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Gob
|
|
|
|
|
|
|
|
#endif
|