Moving AppendableAudioStream into SCUMM engine, as it is only used there
svn-id: r16494
This commit is contained in:
parent
bc44b5ec15
commit
32f0dbdcb2
7 changed files with 181 additions and 170 deletions
|
@ -28,6 +28,7 @@
|
||||||
#include "scumm/imuse_digi/dimuse_sndmgr.h"
|
#include "scumm/imuse_digi/dimuse_sndmgr.h"
|
||||||
#include "scumm/music.h"
|
#include "scumm/music.h"
|
||||||
#include "scumm/saveload.h"
|
#include "scumm/saveload.h"
|
||||||
|
#include "scumm/sound.h"
|
||||||
|
|
||||||
#include "sound/mixer.h"
|
#include "sound/mixer.h"
|
||||||
#include "sound/audiostream.h"
|
#include "sound/audiostream.h"
|
||||||
|
|
|
@ -23,8 +23,7 @@
|
||||||
#define SMUSH_MIXER_H
|
#define SMUSH_MIXER_H
|
||||||
|
|
||||||
#include "stdafx.h"
|
#include "stdafx.h"
|
||||||
#include "sound/audiostream.h"
|
#include "scumm/sound.h"
|
||||||
#include "sound/mixer.h"
|
|
||||||
|
|
||||||
namespace Scumm {
|
namespace Scumm {
|
||||||
|
|
||||||
|
|
|
@ -26,8 +26,7 @@
|
||||||
#include "scumm/smush/chunk.h"
|
#include "scumm/smush/chunk.h"
|
||||||
#include "scumm/smush/codec37.h"
|
#include "scumm/smush/codec37.h"
|
||||||
#include "scumm/smush/codec47.h"
|
#include "scumm/smush/codec47.h"
|
||||||
#include "sound/audiostream.h"
|
#include "scumm/sound.h"
|
||||||
#include "sound/mixer.h"
|
|
||||||
|
|
||||||
namespace Scumm {
|
namespace Scumm {
|
||||||
|
|
||||||
|
|
146
scumm/sound.cpp
146
scumm/sound.cpp
|
@ -2237,4 +2237,150 @@ int ScummEngine::readSoundResourceSmallHeader(int type, int idx) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#pragma mark -
|
||||||
|
#pragma mark --- Appendable audio stream ---
|
||||||
|
#pragma mark -
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Wrapped memory stream.
|
||||||
|
*/
|
||||||
|
template<bool stereo, bool is16Bit, bool isUnsigned, bool isLE>
|
||||||
|
class AppendableMemoryStream : public AppendableAudioStream {
|
||||||
|
protected:
|
||||||
|
OSystem::MutexRef _mutex;
|
||||||
|
|
||||||
|
byte *_bufferStart;
|
||||||
|
byte *_bufferEnd;
|
||||||
|
byte *_pos;
|
||||||
|
byte *_end;
|
||||||
|
bool _finalized;
|
||||||
|
const int _rate;
|
||||||
|
|
||||||
|
inline bool eosIntern() const { return _end == _pos; };
|
||||||
|
public:
|
||||||
|
AppendableMemoryStream(int rate, uint bufferSize);
|
||||||
|
~AppendableMemoryStream();
|
||||||
|
int readBuffer(int16 *buffer, const int numSamples);
|
||||||
|
|
||||||
|
bool isStereo() const { return stereo; }
|
||||||
|
bool endOfStream() const { return _finalized && eosIntern(); }
|
||||||
|
bool endOfData() const { return eosIntern(); }
|
||||||
|
|
||||||
|
int getRate() const { return _rate; }
|
||||||
|
|
||||||
|
void append(const byte *data, uint32 len);
|
||||||
|
void finish() { _finalized = true; }
|
||||||
|
};
|
||||||
|
|
||||||
|
template<bool stereo, bool is16Bit, bool isUnsigned, bool isLE>
|
||||||
|
AppendableMemoryStream<stereo, is16Bit, isUnsigned, isLE>::AppendableMemoryStream(int rate, uint bufferSize)
|
||||||
|
: _finalized(false), _rate(rate) {
|
||||||
|
|
||||||
|
// Verify the buffer size is sane
|
||||||
|
if (is16Bit && stereo)
|
||||||
|
assert((bufferSize & 3) == 0);
|
||||||
|
else if (is16Bit || stereo)
|
||||||
|
assert((bufferSize & 1) == 0);
|
||||||
|
|
||||||
|
_bufferStart = (byte *)malloc(bufferSize);
|
||||||
|
_pos = _end = _bufferStart;
|
||||||
|
_bufferEnd = _bufferStart + bufferSize;
|
||||||
|
|
||||||
|
_mutex = g_system->createMutex();
|
||||||
|
}
|
||||||
|
|
||||||
|
template<bool stereo, bool is16Bit, bool isUnsigned, bool isLE>
|
||||||
|
AppendableMemoryStream<stereo, is16Bit, isUnsigned, isLE>::~AppendableMemoryStream() {
|
||||||
|
free(_bufferStart);
|
||||||
|
g_system->deleteMutex(_mutex);
|
||||||
|
}
|
||||||
|
|
||||||
|
template<bool stereo, bool is16Bit, bool isUnsigned, bool isLE>
|
||||||
|
int AppendableMemoryStream<stereo, is16Bit, isUnsigned, isLE>::readBuffer(int16 *buffer, const int numSamples) {
|
||||||
|
Common::StackLock lock(_mutex);
|
||||||
|
|
||||||
|
int samples = 0;
|
||||||
|
while (samples < numSamples && !eosIntern()) {
|
||||||
|
// Wrap around?
|
||||||
|
if (_pos >= _bufferEnd)
|
||||||
|
_pos = _pos - (_bufferEnd - _bufferStart);
|
||||||
|
|
||||||
|
const byte *endMarker = (_pos > _end) ? _bufferEnd : _end;
|
||||||
|
const int len = MIN(numSamples, samples + (int)(endMarker - _pos) / (is16Bit ? 2 : 1));
|
||||||
|
while (samples < len) {
|
||||||
|
*buffer++ = READ_ENDIAN_SAMPLE(is16Bit, isUnsigned, _pos, isLE);
|
||||||
|
_pos += (is16Bit ? 2 : 1);
|
||||||
|
samples++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return samples;
|
||||||
|
}
|
||||||
|
|
||||||
|
template<bool stereo, bool is16Bit, bool isUnsigned, bool isLE>
|
||||||
|
void AppendableMemoryStream<stereo, is16Bit, isUnsigned, isLE>::append(const byte *data, uint32 len) {
|
||||||
|
Common::StackLock lock(_mutex);
|
||||||
|
|
||||||
|
// Verify the buffer size is sane
|
||||||
|
if (is16Bit && stereo)
|
||||||
|
assert((len & 3) == 0);
|
||||||
|
else if (is16Bit || stereo)
|
||||||
|
assert((len & 1) == 0);
|
||||||
|
|
||||||
|
// Verify that the stream has not yet been finalized (by a call to finish())
|
||||||
|
assert(!_finalized);
|
||||||
|
|
||||||
|
if (_end + len > _bufferEnd) {
|
||||||
|
// Wrap-around case
|
||||||
|
uint32 size_to_end_of_buffer = _bufferEnd - _end;
|
||||||
|
len -= size_to_end_of_buffer;
|
||||||
|
if ((_end < _pos) || (_bufferStart + len >= _pos)) {
|
||||||
|
debug(2, "AppendableMemoryStream: buffer overflow (A)");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
memcpy(_end, data, size_to_end_of_buffer);
|
||||||
|
memcpy(_bufferStart, data + size_to_end_of_buffer, len);
|
||||||
|
_end = _bufferStart + len;
|
||||||
|
} else {
|
||||||
|
if ((_end < _pos) && (_end + len >= _pos)) {
|
||||||
|
debug(2, "AppendableMemoryStream: buffer overflow (B)");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
memcpy(_end, data, len);
|
||||||
|
_end += len;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#define MAKE_WRAPPED(STEREO, UNSIGNED) \
|
||||||
|
if (is16Bit) { \
|
||||||
|
if (isLE) \
|
||||||
|
return new AppendableMemoryStream<STEREO, true, UNSIGNED, true>(rate, len); \
|
||||||
|
else \
|
||||||
|
return new AppendableMemoryStream<STEREO, true, UNSIGNED, false>(rate, len); \
|
||||||
|
} else \
|
||||||
|
return new AppendableMemoryStream<STEREO, false, UNSIGNED, false>(rate, len)
|
||||||
|
|
||||||
|
AppendableAudioStream *makeAppendableAudioStream(int rate, byte _flags, uint32 len) {
|
||||||
|
const bool isStereo = (_flags & SoundMixer::FLAG_STEREO) != 0;
|
||||||
|
const bool is16Bit = (_flags & SoundMixer::FLAG_16BITS) != 0;
|
||||||
|
const bool isUnsigned = (_flags & SoundMixer::FLAG_UNSIGNED) != 0;
|
||||||
|
const bool isLE = (_flags & SoundMixer::FLAG_LITTLE_ENDIAN) != 0;
|
||||||
|
|
||||||
|
if (isStereo) {
|
||||||
|
if (isUnsigned) {
|
||||||
|
MAKE_WRAPPED(true, true);
|
||||||
|
} else {
|
||||||
|
MAKE_WRAPPED(true, false);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (isUnsigned) {
|
||||||
|
MAKE_WRAPPED(false, true);
|
||||||
|
} else {
|
||||||
|
MAKE_WRAPPED(false, false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
} // End of namespace Scumm
|
} // End of namespace Scumm
|
||||||
|
|
|
@ -22,6 +22,7 @@
|
||||||
#define SOUND_H
|
#define SOUND_H
|
||||||
|
|
||||||
#include "common/scummsys.h"
|
#include "common/scummsys.h"
|
||||||
|
#include "sound/audiostream.h"
|
||||||
#include "sound/mixer.h"
|
#include "sound/mixer.h"
|
||||||
|
|
||||||
class File;
|
class File;
|
||||||
|
@ -129,6 +130,19 @@ protected:
|
||||||
bool isSoundInQueue(int sound) const;
|
bool isSoundInQueue(int sound) const;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An audio stream to which additional data can be appended on-the-fly.
|
||||||
|
* Used by SMUSH and iMuseDigital.
|
||||||
|
*/
|
||||||
|
class AppendableAudioStream : public AudioStream {
|
||||||
|
public:
|
||||||
|
virtual void append(const byte *data, uint32 len) = 0;
|
||||||
|
virtual void finish() = 0;
|
||||||
|
};
|
||||||
|
|
||||||
|
AppendableAudioStream *makeAppendableAudioStream(int rate, byte _flags, uint32 len);
|
||||||
|
|
||||||
|
|
||||||
} // End of namespace Scumm
|
} // End of namespace Scumm
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -28,18 +28,6 @@
|
||||||
#include "sound/vorbis.h"
|
#include "sound/vorbis.h"
|
||||||
#include "sound/flac.h"
|
#include "sound/flac.h"
|
||||||
|
|
||||||
// This used to be an inline template function, but
|
|
||||||
// buggy template function handling in MSVC6 forced
|
|
||||||
// us to go with the macro approach. So far this is
|
|
||||||
// the only template function that MSVC6 seemed to
|
|
||||||
// compile incorrectly. Knock on wood.
|
|
||||||
#define READSAMPLE(is16Bit, isUnsigned, ptr) \
|
|
||||||
((is16Bit ? READ_BE_UINT16(ptr) : (*ptr << 8)) ^ (isUnsigned ? 0x8000 : 0))
|
|
||||||
|
|
||||||
#define READ_ENDIAN_SAMPLE(is16Bit, isUnsigned, ptr, isLE) \
|
|
||||||
((is16Bit ? (isLE ? READ_LE_UINT16(ptr) : READ_BE_UINT16(ptr)) : (*ptr << 8)) ^ (isUnsigned ? 0x8000 : 0))
|
|
||||||
|
|
||||||
|
|
||||||
struct StreamFileFormat {
|
struct StreamFileFormat {
|
||||||
/** Decodername */
|
/** Decodername */
|
||||||
const char* decoderName;
|
const char* decoderName;
|
||||||
|
@ -176,123 +164,7 @@ int LinearMemoryStream<stereo, is16Bit, isUnsigned, isLE>::readBuffer(int16 *buf
|
||||||
|
|
||||||
|
|
||||||
#pragma mark -
|
#pragma mark -
|
||||||
#pragma mark --- AppendableMemoryStream ---
|
#pragma mark --- Input stream factory ---
|
||||||
#pragma mark -
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Wrapped memory stream.
|
|
||||||
*/
|
|
||||||
template<bool stereo, bool is16Bit, bool isUnsigned, bool isLE>
|
|
||||||
class AppendableMemoryStream : public AppendableAudioStream {
|
|
||||||
protected:
|
|
||||||
OSystem::MutexRef _mutex;
|
|
||||||
|
|
||||||
byte *_bufferStart;
|
|
||||||
byte *_bufferEnd;
|
|
||||||
byte *_pos;
|
|
||||||
byte *_end;
|
|
||||||
bool _finalized;
|
|
||||||
const int _rate;
|
|
||||||
|
|
||||||
inline bool eosIntern() const { return _end == _pos; };
|
|
||||||
public:
|
|
||||||
AppendableMemoryStream(int rate, uint bufferSize);
|
|
||||||
~AppendableMemoryStream();
|
|
||||||
int readBuffer(int16 *buffer, const int numSamples);
|
|
||||||
|
|
||||||
bool isStereo() const { return stereo; }
|
|
||||||
bool endOfStream() const { return _finalized && eosIntern(); }
|
|
||||||
bool endOfData() const { return eosIntern(); }
|
|
||||||
|
|
||||||
int getRate() const { return _rate; }
|
|
||||||
|
|
||||||
void append(const byte *data, uint32 len);
|
|
||||||
void finish() { _finalized = true; }
|
|
||||||
};
|
|
||||||
|
|
||||||
template<bool stereo, bool is16Bit, bool isUnsigned, bool isLE>
|
|
||||||
AppendableMemoryStream<stereo, is16Bit, isUnsigned, isLE>::AppendableMemoryStream(int rate, uint bufferSize)
|
|
||||||
: _finalized(false), _rate(rate) {
|
|
||||||
|
|
||||||
// Verify the buffer size is sane
|
|
||||||
if (is16Bit && stereo)
|
|
||||||
assert((bufferSize & 3) == 0);
|
|
||||||
else if (is16Bit || stereo)
|
|
||||||
assert((bufferSize & 1) == 0);
|
|
||||||
|
|
||||||
_bufferStart = (byte *)malloc(bufferSize);
|
|
||||||
_pos = _end = _bufferStart;
|
|
||||||
_bufferEnd = _bufferStart + bufferSize;
|
|
||||||
|
|
||||||
_mutex = g_system->createMutex();
|
|
||||||
}
|
|
||||||
|
|
||||||
template<bool stereo, bool is16Bit, bool isUnsigned, bool isLE>
|
|
||||||
AppendableMemoryStream<stereo, is16Bit, isUnsigned, isLE>::~AppendableMemoryStream() {
|
|
||||||
free(_bufferStart);
|
|
||||||
g_system->deleteMutex(_mutex);
|
|
||||||
}
|
|
||||||
|
|
||||||
template<bool stereo, bool is16Bit, bool isUnsigned, bool isLE>
|
|
||||||
int AppendableMemoryStream<stereo, is16Bit, isUnsigned, isLE>::readBuffer(int16 *buffer, const int numSamples) {
|
|
||||||
Common::StackLock lock(_mutex);
|
|
||||||
|
|
||||||
int samples = 0;
|
|
||||||
while (samples < numSamples && !eosIntern()) {
|
|
||||||
// Wrap around?
|
|
||||||
if (_pos >= _bufferEnd)
|
|
||||||
_pos = _pos - (_bufferEnd - _bufferStart);
|
|
||||||
|
|
||||||
const byte *endMarker = (_pos > _end) ? _bufferEnd : _end;
|
|
||||||
const int len = MIN(numSamples, samples + (int)(endMarker - _pos) / (is16Bit ? 2 : 1));
|
|
||||||
while (samples < len) {
|
|
||||||
*buffer++ = READ_ENDIAN_SAMPLE(is16Bit, isUnsigned, _pos, isLE);
|
|
||||||
_pos += (is16Bit ? 2 : 1);
|
|
||||||
samples++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return samples;
|
|
||||||
}
|
|
||||||
|
|
||||||
template<bool stereo, bool is16Bit, bool isUnsigned, bool isLE>
|
|
||||||
void AppendableMemoryStream<stereo, is16Bit, isUnsigned, isLE>::append(const byte *data, uint32 len) {
|
|
||||||
Common::StackLock lock(_mutex);
|
|
||||||
|
|
||||||
// Verify the buffer size is sane
|
|
||||||
if (is16Bit && stereo)
|
|
||||||
assert((len & 3) == 0);
|
|
||||||
else if (is16Bit || stereo)
|
|
||||||
assert((len & 1) == 0);
|
|
||||||
|
|
||||||
// Verify that the stream has not yet been finalized (by a call to finish())
|
|
||||||
assert(!_finalized);
|
|
||||||
|
|
||||||
if (_end + len > _bufferEnd) {
|
|
||||||
// Wrap-around case
|
|
||||||
uint32 size_to_end_of_buffer = _bufferEnd - _end;
|
|
||||||
len -= size_to_end_of_buffer;
|
|
||||||
if ((_end < _pos) || (_bufferStart + len >= _pos)) {
|
|
||||||
debug(2, "AppendableMemoryStream: buffer overflow (A)");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
memcpy(_end, data, size_to_end_of_buffer);
|
|
||||||
memcpy(_bufferStart, data + size_to_end_of_buffer, len);
|
|
||||||
_end = _bufferStart + len;
|
|
||||||
} else {
|
|
||||||
if ((_end < _pos) && (_end + len >= _pos)) {
|
|
||||||
debug(2, "AppendableMemoryStream: buffer overflow (B)");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
memcpy(_end, data, len);
|
|
||||||
_end += len;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#pragma mark -
|
|
||||||
#pragma mark --- Input stream factories ---
|
|
||||||
#pragma mark -
|
#pragma mark -
|
||||||
|
|
||||||
/* In the following, we use preprocessor / macro tricks to simplify the code
|
/* In the following, we use preprocessor / macro tricks to simplify the code
|
||||||
|
@ -334,33 +206,3 @@ AudioStream *makeLinearInputStream(int rate, byte _flags, const byte *ptr, uint3
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#define MAKE_WRAPPED(STEREO, UNSIGNED) \
|
|
||||||
if (is16Bit) { \
|
|
||||||
if (isLE) \
|
|
||||||
return new AppendableMemoryStream<STEREO, true, UNSIGNED, true>(rate, len); \
|
|
||||||
else \
|
|
||||||
return new AppendableMemoryStream<STEREO, true, UNSIGNED, false>(rate, len); \
|
|
||||||
} else \
|
|
||||||
return new AppendableMemoryStream<STEREO, false, UNSIGNED, false>(rate, len)
|
|
||||||
|
|
||||||
AppendableAudioStream *makeAppendableAudioStream(int rate, byte _flags, uint32 len) {
|
|
||||||
const bool isStereo = (_flags & SoundMixer::FLAG_STEREO) != 0;
|
|
||||||
const bool is16Bit = (_flags & SoundMixer::FLAG_16BITS) != 0;
|
|
||||||
const bool isUnsigned = (_flags & SoundMixer::FLAG_UNSIGNED) != 0;
|
|
||||||
const bool isLE = (_flags & SoundMixer::FLAG_LITTLE_ENDIAN) != 0;
|
|
||||||
|
|
||||||
if (isStereo) {
|
|
||||||
if (isUnsigned) {
|
|
||||||
MAKE_WRAPPED(true, true);
|
|
||||||
} else {
|
|
||||||
MAKE_WRAPPED(true, false);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if (isUnsigned) {
|
|
||||||
MAKE_WRAPPED(false, true);
|
|
||||||
} else {
|
|
||||||
MAKE_WRAPPED(false, false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -81,12 +81,10 @@ public:
|
||||||
static AudioStream* openStreamFile(const char *filename);
|
static AudioStream* openStreamFile(const char *filename);
|
||||||
};
|
};
|
||||||
|
|
||||||
class AppendableAudioStream : public AudioStream {
|
/**
|
||||||
public:
|
* A simple AudioStream which represents a 'silent' stream,
|
||||||
virtual void append(const byte *data, uint32 len) = 0;
|
* containing the specified number of zero samples.
|
||||||
virtual void finish() = 0;
|
*/
|
||||||
};
|
|
||||||
|
|
||||||
class ZeroInputStream : public AudioStream {
|
class ZeroInputStream : public AudioStream {
|
||||||
private:
|
private:
|
||||||
int _len;
|
int _len;
|
||||||
|
@ -105,6 +103,18 @@ public:
|
||||||
};
|
};
|
||||||
|
|
||||||
AudioStream *makeLinearInputStream(int rate, byte _flags, const byte *ptr, uint32 len, uint loopOffset, uint loopLen);
|
AudioStream *makeLinearInputStream(int rate, byte _flags, const byte *ptr, uint32 len, uint loopOffset, uint loopLen);
|
||||||
AppendableAudioStream *makeAppendableAudioStream(int rate, byte _flags, uint32 len);
|
|
||||||
|
|
||||||
|
// This used to be an inline template function, but
|
||||||
|
// buggy template function handling in MSVC6 forced
|
||||||
|
// us to go with the macro approach. So far this is
|
||||||
|
// the only template function that MSVC6 seemed to
|
||||||
|
// compile incorrectly. Knock on wood.
|
||||||
|
#define READSAMPLE(is16Bit, isUnsigned, ptr) \
|
||||||
|
((is16Bit ? READ_BE_UINT16(ptr) : (*ptr << 8)) ^ (isUnsigned ? 0x8000 : 0))
|
||||||
|
|
||||||
|
#define READ_ENDIAN_SAMPLE(is16Bit, isUnsigned, ptr, isLE) \
|
||||||
|
((is16Bit ? (isLE ? READ_LE_UINT16(ptr) : READ_BE_UINT16(ptr)) : (*ptr << 8)) ^ (isUnsigned ? 0x8000 : 0))
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue