scummvm/engines/pegasus/sound.h

109 lines
2.8 KiB
C
Raw Normal View History

2011-06-15 16:58:01 +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.
*
* Additional copyright for this file:
* Copyright (C) 1995-1997 Presto Studios, Inc.
2011-06-15 16:58: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
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#ifndef PEGASUS_SOUND_H
#define PEGASUS_SOUND_H
2011-06-15 16:58:01 +00:00
#include "audio/mixer.h"
#include "common/str.h"
#include "pegasus/timers.h"
2011-06-15 16:58:01 +00:00
namespace Audio {
2011-09-05 19:47:19 +00:00
class SeekableAudioStream;
2011-06-15 16:58:01 +00:00
}
namespace Pegasus {
2011-09-16 23:06:22 +00:00
class SoundFader;
2011-06-15 16:58:01 +00:00
2011-12-20 23:26:25 +00:00
// Things you might want to do with sound:
// - Start it
// - Stop it
// - Loop it
// - Pause it
// - Set the volume
// - Set the pitch (rate)
// - Pan the sound
// - Change these settings dynamically over time
2011-06-15 16:58:01 +00:00
class Sound {
2011-06-15 16:58:01 +00:00
public:
Sound();
~Sound();
2011-06-15 16:58:01 +00:00
// We only have one access point here because we should
// only be opening an AIFF file from a file name. We're
// not using the resource fork string resources.
void initFromAIFFFile(const Common::String &fileName);
2011-06-15 16:58:01 +00:00
2011-09-05 19:47:19 +00:00
// Unlike the original game, we're going to use a regular
// audio stream for sound spots. The original treated them
// as movies.
void initFromQuickTime(const Common::String &fileName);
void disposeSound();
bool isSoundLoaded() const;
void playSound();
void loopSound();
2011-09-05 19:47:19 +00:00
void playSoundSegment(uint32 start, uint32 end);
void stopSound();
void setVolume(const uint16 volume);
bool isPlaying();
2011-06-15 16:58:01 +00:00
2011-09-16 23:06:22 +00:00
void attachFader(SoundFader *fader);
2011-06-15 16:58:01 +00:00
protected:
2011-09-05 19:47:19 +00:00
Audio::SeekableAudioStream *_stream;
2011-06-15 16:58:01 +00:00
Audio::SoundHandle _handle;
byte _volume;
2011-09-16 23:06:22 +00:00
SoundFader *_fader;
2011-06-15 16:58:01 +00:00
};
// TODO: Make this class follow TimeBase better
// Right now it's just a loose wrapper to plug callbacks
// into sounds. Since this is only used for spot sounds,
// I'm not too worried about it right now as its usage
// is very limited.
// At the very least, the regular TimeBase functions for
// setting/getting should be neutered.
class SoundTimeBase : public Sound, public TimeBase {
public:
SoundTimeBase();
~SoundTimeBase() {}
void playSoundSegment(uint32 start, uint32 end);
protected:
void updateTime();
private:
bool _setToStart;
};
2011-06-15 16:58:01 +00:00
} // End of namespace Pegasus
#endif