2014-08-02 19:14:42 +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.
|
|
|
|
*
|
|
|
|
* 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 ACCESS_SOUND_H
|
|
|
|
#define ACCESS_SOUND_H
|
|
|
|
|
2014-08-02 21:09:28 +00:00
|
|
|
#include "common/scummsys.h"
|
2014-08-04 13:21:39 +00:00
|
|
|
#include "audio/mixer.h"
|
2014-08-28 02:13:43 +00:00
|
|
|
#include "access/files.h"
|
2014-08-02 21:09:28 +00:00
|
|
|
|
|
|
|
#define MAX_SOUNDS 20
|
|
|
|
|
2014-08-02 19:14:42 +00:00
|
|
|
namespace Access {
|
|
|
|
|
|
|
|
class AccessEngine;
|
|
|
|
|
2014-11-08 03:09:09 +00:00
|
|
|
struct SoundEntry {
|
|
|
|
Resource *_res;
|
|
|
|
int _priority;
|
|
|
|
|
|
|
|
SoundEntry() { _res = nullptr; _priority = 0; }
|
|
|
|
SoundEntry(Resource *res, int priority) { _res = res; _priority = priority; }
|
|
|
|
};
|
|
|
|
|
2014-08-02 19:14:42 +00:00
|
|
|
class SoundManager {
|
|
|
|
private:
|
|
|
|
AccessEngine *_vm;
|
2014-08-04 13:21:39 +00:00
|
|
|
Audio::Mixer *_mixer;
|
|
|
|
Audio::SoundHandle _soundHandle;
|
|
|
|
|
2014-08-29 00:24:25 +00:00
|
|
|
void clearSounds();
|
|
|
|
|
2014-08-31 00:50:25 +00:00
|
|
|
void playSound(Resource *res, int priority);
|
2014-11-02 13:42:16 +00:00
|
|
|
void stopSound();
|
|
|
|
|
2014-08-02 19:14:42 +00:00
|
|
|
public:
|
2014-11-08 03:09:09 +00:00
|
|
|
Common::Array<SoundEntry> _soundTable;
|
2014-08-28 02:13:43 +00:00
|
|
|
Resource *_music;
|
2014-11-02 11:00:50 +00:00
|
|
|
Resource *_tempMusic;
|
2014-08-07 02:43:40 +00:00
|
|
|
bool _musicRepeat;
|
2014-08-29 02:15:39 +00:00
|
|
|
bool _playingSound;
|
2014-10-19 18:49:20 +00:00
|
|
|
bool _isVoice;
|
2014-08-02 19:14:42 +00:00
|
|
|
public:
|
2014-08-04 13:21:39 +00:00
|
|
|
SoundManager(AccessEngine *vm, Audio::Mixer *mixer);
|
2014-08-02 21:09:28 +00:00
|
|
|
~SoundManager();
|
2014-08-02 19:14:42 +00:00
|
|
|
|
2014-08-04 13:21:39 +00:00
|
|
|
void queueSound(int idx, int fileNum, int subfile);
|
|
|
|
|
|
|
|
void playSound(int soundIndex);
|
2014-08-06 02:17:30 +00:00
|
|
|
|
2014-08-28 02:13:43 +00:00
|
|
|
Resource *loadSound(int fileNum, int subfile);
|
2014-08-08 00:31:42 +00:00
|
|
|
void loadSounds(Common::Array<RoomInfo::SoundIdent> &sounds);
|
2014-08-07 02:43:40 +00:00
|
|
|
|
|
|
|
void midiPlay();
|
|
|
|
|
2014-11-20 12:28:31 +00:00
|
|
|
bool checkMidiDone();
|
|
|
|
|
2014-08-06 02:17:30 +00:00
|
|
|
void midiRepeat();
|
2014-08-06 12:28:20 +00:00
|
|
|
|
|
|
|
void stopSong();
|
|
|
|
|
|
|
|
void freeSounds();
|
2014-08-07 02:43:40 +00:00
|
|
|
|
2014-08-30 21:17:19 +00:00
|
|
|
void newMusic(int musicId, int mode);
|
|
|
|
|
2014-08-07 02:43:40 +00:00
|
|
|
void freeMusic();
|
2014-08-02 19:14:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Access
|
|
|
|
|
|
|
|
#endif /* ACCESS_SOUND_H*/
|