2007-05-30 21:56:52 +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.
|
2003-09-24 06:56:30 +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
|
2005-10-18 01:30:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2003-09-24 06:56:30 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2007-02-19 17:48:19 +00:00
|
|
|
#ifndef SCUMM_PLAYER_V2A_H
|
|
|
|
#define SCUMM_PLAYER_V2A_H
|
2003-09-24 06:56:30 +00:00
|
|
|
|
|
|
|
#include "common/scummsys.h"
|
|
|
|
#include "scumm/music.h"
|
|
|
|
#include "scumm/player_mod.h"
|
|
|
|
|
2005-05-10 23:48:48 +00:00
|
|
|
class Mixer;
|
2003-10-03 18:33:57 +00:00
|
|
|
|
|
|
|
namespace Scumm {
|
|
|
|
|
2003-10-02 22:42:03 +00:00
|
|
|
class ScummEngine;
|
2003-09-24 06:56:30 +00:00
|
|
|
class V2A_Sound;
|
|
|
|
|
2003-10-03 23:34:06 +00:00
|
|
|
/**
|
2003-10-05 17:32:38 +00:00
|
|
|
* Scumm V2 Amiga sound/music driver.
|
2003-10-03 23:34:06 +00:00
|
|
|
*/
|
2003-09-24 06:56:30 +00:00
|
|
|
class Player_V2A : public MusicEngine {
|
|
|
|
public:
|
2006-10-21 12:44:10 +00:00
|
|
|
Player_V2A(ScummEngine *scumm, Audio::Mixer *mixer);
|
2003-09-24 06:56:30 +00:00
|
|
|
virtual ~Player_V2A();
|
|
|
|
|
2004-11-28 21:24:02 +00:00
|
|
|
virtual void setMusicVolume(int vol);
|
2003-10-03 13:44:12 +00:00
|
|
|
virtual void startSound(int sound);
|
|
|
|
virtual void stopSound(int sound);
|
2003-09-24 06:56:30 +00:00
|
|
|
virtual void stopAllSounds();
|
2009-11-26 00:31:19 +00:00
|
|
|
virtual int getMusicTimer();
|
2003-10-03 13:44:12 +00:00
|
|
|
virtual int getSoundStatus(int sound) const;
|
2003-09-24 06:56:30 +00:00
|
|
|
|
|
|
|
private:
|
2003-10-03 23:34:06 +00:00
|
|
|
enum {
|
|
|
|
V2A_MAXSLOTS = 8
|
|
|
|
};
|
2003-09-24 06:56:30 +00:00
|
|
|
|
2003-11-08 21:59:32 +00:00
|
|
|
struct soundSlot {
|
2003-09-24 06:56:30 +00:00
|
|
|
int id;
|
|
|
|
V2A_Sound *sound;
|
2003-10-03 23:34:06 +00:00
|
|
|
};
|
2003-09-24 06:56:30 +00:00
|
|
|
|
2004-01-08 20:37:26 +00:00
|
|
|
ScummEngine *_vm;
|
2003-10-03 23:34:06 +00:00
|
|
|
Player_MOD *_mod;
|
|
|
|
soundSlot _slot[V2A_MAXSLOTS];
|
|
|
|
|
|
|
|
int getSoundSlot (int id = 0) const;
|
2003-09-24 06:56:30 +00:00
|
|
|
static void update_proc(void *param);
|
|
|
|
void updateSound();
|
|
|
|
};
|
|
|
|
|
2003-10-03 18:33:57 +00:00
|
|
|
} // End of namespace Scumm
|
|
|
|
|
2003-09-24 06:56:30 +00:00
|
|
|
#endif
|