scummvm/engines/twine/sound.h

122 lines
3.4 KiB
C
Raw Normal View History

/* 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.
*
* 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 TWINE_SOUND_H
#define TWINE_SOUND_H
#include "audio/mixer.h"
#include "common/scummsys.h"
namespace TwinE {
/** Total number of samples allowed in the game */
2020-10-14 12:20:38 +00:00
#define NUM_SAMPLES 243
#define NUM_CHANNELS 32
class TwinEEngine;
class Sound {
private:
TwinEEngine *_engine;
/** Get the channel where the sample is playing */
int32 getSampleChannel(int32 index);
/** Samples playing at the same time */
Audio::SoundHandle samplesPlaying[NUM_CHANNELS];
/** Samples playing at a actors position */
2020-10-21 12:28:03 +00:00
int32 samplesPlayingActors[NUM_CHANNELS]{0};
2020-10-22 09:13:23 +00:00
bool playSample(int channelIdx, int index, uint8 *sampPtr, int32 sampSize, int32 loop, const char *name);
public:
Sound(TwinEEngine *engine);
bool isChannelPlaying(int32 channel);
/** Table with all loaded samples */
2020-10-21 12:28:03 +00:00
uint8 *samplesTable[NUM_SAMPLES]{nullptr};
/** Table with all loaded samples sizes */
2020-10-21 12:28:03 +00:00
uint32 samplesSizeTable[NUM_SAMPLES]{0};
/**
* Sample volume
* @param channel sample channel
* @param volume sample volume number
*/
void sampleVolume(int32 channel, int32 volume);
/**
* Play FLA movie samples
* @param index sample index under flasamp.hqr file
* @param frequency frequency used to play the sample
* @param repeat number of times to repeat the sample
* @param x unknown x variable
* @param y unknown y variable
*/
void playFlaSample(int32 index, int32 frequency, int32 repeat, int32 x, int32 y);
/** Update sample position in channel */
void setSamplePosition(int32 channelIdx, int32 x, int32 y, int32 z);
/**
* Play samples
* @param index sample index under flasamp.hqr file
* @param frequency frequency used to play the sample
* @param repeat number of times to repeat the sample
* @param x unknown x variable
* @param y unknown y variable
* @param z unknown z variable
*/
void playSample(int32 index, int32 frequency, int32 repeat, int32 x, int32 y, int32 z, int32 actorIdx);
/** Pause samples */
void pauseSamples();
/** Resume samples */
void resumeSamples();
/** Stop samples */
void stopSamples();
/** Get the channel where the actor sample is playing */
int32 getActorChannel(int32 index);
/** Stops a specific sample */
void stopSample(int32 index);
/** Find a free channel slot to use */
int32 getFreeSampleChannelIndex();
/** Remove a sample from the channel usage list */
void removeSampleChannel(int32 index);
/** Check if a sample is playing */
int32 isSamplePlaying(int32 index);
/** Play VOX sample */
void playVoxSample(int32 index);
};
} // namespace TwinE
2020-10-14 12:20:38 +00:00
#endif