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;
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
void playSound(Resource *res);
|
2014-08-02 19:14:42 +00:00
|
|
|
public:
|
2014-08-29 00:24:25 +00:00
|
|
|
Common::Array<Resource *> _soundTable;
|
|
|
|
Common::Array<int> _soundPriority;
|
2014-08-28 02:13:43 +00:00
|
|
|
Resource *_music;
|
2014-08-07 02:43:40 +00:00
|
|
|
bool _musicRepeat;
|
2014-08-29 02:15:39 +00:00
|
|
|
bool _playingSound;
|
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-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
|
|
|
|
|
|
|
void freeMusic();
|
2014-08-02 19:14:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Access
|
|
|
|
|
|
|
|
#endif /* ACCESS_SOUND_H*/
|