scummvm/engines/access/sound.h

73 lines
1.8 KiB
C
Raw Normal View History

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
#include "common/scummsys.h"
#include "audio/mixer.h"
#include "access/files.h"
#define MAX_SOUNDS 20
2014-08-02 19:14:42 +00:00
namespace Access {
class AccessEngine;
class SoundManager {
private:
AccessEngine *_vm;
Audio::Mixer *_mixer;
Audio::SoundHandle _soundHandle;
void playSound(byte *data, uint32 size);
2014-08-02 19:14:42 +00:00
public:
Resource *_soundTable[MAX_SOUNDS];
int _soundPriority[MAX_SOUNDS];
Resource *_music;
2014-08-07 02:43:40 +00:00
bool _musicRepeat;
2014-08-02 19:14:42 +00:00
public:
SoundManager(AccessEngine *vm, Audio::Mixer *mixer);
~SoundManager();
2014-08-02 19:14:42 +00:00
void queueSound(int idx, int fileNum, int subfile);
void playSound(int soundIndex);
2014-08-06 02:17:30 +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*/