aboutsummaryrefslogtreecommitdiff
path: root/engines/gob
diff options
context:
space:
mode:
authorSven Hesse2007-11-18 23:35:09 +0000
committerSven Hesse2007-11-18 23:35:09 +0000
commitb1f6be7baa5c2d2c8c9441ea447db3145d9fc535 (patch)
treeefdbeb8a479c17b3e1bf02f3718b00462bd31dca /engines/gob
parent40a5f8028a861d64540ffe98a20395101b781a33 (diff)
downloadscummvm-rg350-b1f6be7baa5c2d2c8c9441ea447db3145d9fc535.tar.gz
scummvm-rg350-b1f6be7baa5c2d2c8c9441ea447db3145d9fc535.tar.bz2
scummvm-rg350-b1f6be7baa5c2d2c8c9441ea447db3145d9fc535.zip
Moved Gob's square wave generator to sound/softsynth/pcspk.h
svn-id: r29564
Diffstat (limited to 'engines/gob')
-rw-r--r--engines/gob/sound.cpp79
-rw-r--r--engines/gob/sound.h34
2 files changed, 9 insertions, 104 deletions
diff --git a/engines/gob/sound.cpp b/engines/gob/sound.cpp
index 1c2cf2d716..3e4898709c 100644
--- a/engines/gob/sound.cpp
+++ b/engines/gob/sound.cpp
@@ -93,73 +93,6 @@ void SoundDesc::loadADL(byte *data, uint32 dSize) {
_size = dSize;
}
-Snd::SquareWaveStream::SquareWaveStream() {
- _rate = 44100;
- _beepForever = false;
- _periodLength = 0;
- _periodSamples = 0;
- _remainingSamples = 0;
- _sampleValue = 0;
- _mixedSamples = 0;
-}
-
-void Snd::SquareWaveStream::playNote(int freq, int32 ms, uint rate) {
- _rate = rate;
- _periodLength = _rate / (2 * freq);
- _periodSamples = 0;
- _sampleValue = 6000;
- if (ms == -1) {
- _remainingSamples = 1;
- _beepForever = true;
- } else {
- _remainingSamples = (_rate * ms) / 1000;
- _beepForever = false;
- }
- _mixedSamples = 0;
-}
-
-void Snd::SquareWaveStream::stop(uint32 milis) {
- if (!_beepForever)
- return;
-
- if (milis)
- update(milis);
- else
- _remainingSamples = 0;
-}
-
-void Snd::SquareWaveStream::update(uint32 milis) {
- uint32 neededSamples;
-
- if (!_beepForever || !_remainingSamples)
- return;
-
- neededSamples = (_rate * milis) / 1000;
- _remainingSamples =
- neededSamples > _mixedSamples ? neededSamples - _mixedSamples : 0;
- _beepForever = false;
-}
-
-int Snd::SquareWaveStream::readBuffer(int16 *buffer, const int numSamples) {
- int i;
- for (i = 0; _remainingSamples && i < numSamples; i++) {
- buffer[i] = _sampleValue;
- if (_periodSamples++ > _periodLength) {
- _periodSamples = 0;
- _sampleValue = -_sampleValue;
- }
- if (!_beepForever)
- _remainingSamples--;
- _mixedSamples++;
- }
-
- // Clear the rest of the buffer
- if (i < numSamples)
- memset(buffer + i, 0, (numSamples - i) * sizeof(int16));
-
- return numSamples;
-}
-
Snd::Snd(GobEngine *vm) : _vm(vm) {
_playingSound = 0;
_curSoundDesc = 0;
@@ -188,10 +121,12 @@ Snd::Snd(GobEngine *vm) : _vm(vm) {
_compositionSampleCount = 0;
_compositionPos = -1;
+ _speakerStream = new Audio::PCSpeaker(_vm->_mixer->getOutputRate());
+
_vm->_mixer->playInputStream(Audio::Mixer::kSFXSoundType, &_handle,
this, -1, 255, 0, false, true);
_vm->_mixer->playInputStream(Audio::Mixer::kSFXSoundType, &_speakerHandle,
- &_speakerStream, -1, 255, 0, false, true);
+ _speakerStream, -1, 50, 0, false, true);
}
Snd::~Snd() {
@@ -199,22 +134,22 @@ Snd::~Snd() {
// First the speaker stream
_vm->_mixer->stopHandle(_speakerHandle);
+ delete _speakerStream;
// Next, this stream (class Snd is an AudioStream, too)
_vm->_mixer->stopHandle(_handle);
}
void Snd::speakerOn(int16 frequency, int32 length) {
- _speakerStream.playNote(frequency, length, _vm->_mixer->getOutputRate());
- _speakerStartTimeKey = _vm->_util->getTimeKey();
+ _speakerStream->play(Audio::PCSpeaker::kWaveFormSquare, frequency, length);
}
void Snd::speakerOff() {
- _speakerStream.stop(_vm->_util->getTimeKey() - _speakerStartTimeKey);
+ _speakerStream->stop();
}
void Snd::speakerOnUpdate(uint32 milis) {
- _speakerStream.update(milis);
+ _speakerStream->stop(milis);
}
void Snd::stopSound(int16 fadeLength, SoundDesc *sndDesc) {
diff --git a/engines/gob/sound.h b/engines/gob/sound.h
index 15909f5452..25927d4ccd 100644
--- a/engines/gob/sound.h
+++ b/engines/gob/sound.h
@@ -30,6 +30,7 @@
#include "common/frac.h"
#include "sound/audiostream.h"
#include "sound/mixer.h"
+#include "sound/softsynth/pcspk.h"
namespace Gob {
@@ -123,39 +124,8 @@ public:
int getRate() const { return _rate; }
protected:
- // TODO: This is a very primitive square wave generator. The only thing it
- // has in common with the PC speaker is that it sounds terrible.
- // Note: The SCUMM code has a PC speaker implementations; maybe it could be
- // refactored to be reusable by all engines. And DosBox also has code
- // for emulating the PC speaker.
- class SquareWaveStream : public Audio::AudioStream {
- private:
- uint _rate;
- bool _beepForever;
- uint32 _periodLength;
- uint32 _periodSamples;
- uint32 _remainingSamples;
- uint32 _mixedSamples;
- int16 _sampleValue;
-
- public:
- SquareWaveStream();
-
- void playNote(int freq, int32 ms, uint rate);
- void update(uint32 milis);
- void stop(uint32 milis);
-
- int readBuffer(int16 *buffer, const int numSamples);
-
- bool isStereo() const { return false; }
- bool endOfData() const { return false; }
- bool endOfStream() const { return false; }
- int getRate() const { return _rate; }
- };
-
- SquareWaveStream _speakerStream;
+ Audio::PCSpeaker *_speakerStream;
Audio::SoundHandle _speakerHandle;
- uint32 _speakerStartTimeKey;
Audio::SoundHandle *_activeHandle;
Audio::SoundHandle _compositionHandle;