2002-04-21 17:46:42 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
|
|
|
* Copyright (C) 2001 Ludvig Strigeus
|
2004-01-06 12:45:34 +00:00
|
|
|
* Copyright (C) 2001-2004 The ScummVM project
|
2002-04-21 17:46:42 +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
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* $Header$
|
|
|
|
*
|
|
|
|
*/
|
2002-04-14 18:13:08 +00:00
|
|
|
|
2002-11-06 15:41:36 +00:00
|
|
|
#ifndef IMUSE_H
|
|
|
|
#define IMUSE_H
|
|
|
|
|
2003-08-01 12:21:04 +00:00
|
|
|
#include "common/scummsys.h"
|
2003-07-05 15:19:11 +00:00
|
|
|
#include "common/system.h"
|
2003-09-07 16:16:19 +00:00
|
|
|
#include "scumm/music.h"
|
2003-06-15 01:42:19 +00:00
|
|
|
|
2002-10-15 06:53:42 +00:00
|
|
|
class MidiDriver;
|
2002-11-06 15:41:36 +00:00
|
|
|
class OSystem;
|
2003-10-03 18:33:57 +00:00
|
|
|
class SoundMixer;
|
|
|
|
|
|
|
|
namespace Scumm {
|
|
|
|
|
|
|
|
class IMuseInternal;
|
2003-10-02 22:42:03 +00:00
|
|
|
class ScummEngine;
|
2002-12-11 01:25:15 +00:00
|
|
|
class Serializer;
|
2002-04-14 18:13:08 +00:00
|
|
|
|
2003-09-07 16:16:19 +00:00
|
|
|
class IMuse : public MusicEngine {
|
2002-12-21 21:09:36 +00:00
|
|
|
private:
|
|
|
|
OSystem *_system;
|
|
|
|
IMuseInternal *_target;
|
2003-09-07 17:14:56 +00:00
|
|
|
mutable OSystem::MutexRef _mutex;
|
2002-12-21 21:09:36 +00:00
|
|
|
|
2003-08-01 20:39:16 +00:00
|
|
|
IMuse(OSystem *system, IMuseInternal *target);
|
2003-09-07 17:14:56 +00:00
|
|
|
void in() const;
|
|
|
|
void out() const;
|
2002-12-21 21:09:36 +00:00
|
|
|
|
2002-04-14 18:13:08 +00:00
|
|
|
public:
|
2002-12-21 21:09:36 +00:00
|
|
|
~IMuse();
|
|
|
|
|
2002-04-14 18:13:08 +00:00
|
|
|
enum {
|
2003-10-05 15:36:52 +00:00
|
|
|
PROP_TEMPO_BASE,
|
|
|
|
PROP_NATIVE_MT32,
|
|
|
|
PROP_MULTI_MIDI,
|
|
|
|
PROP_OLD_ADLIB_INSTRUMENTS,
|
|
|
|
PROP_LIMIT_PLAYERS,
|
|
|
|
PROP_RECYCLE_PLAYERS,
|
|
|
|
PROP_DIRECT_PASSTHROUGH
|
2002-04-14 18:13:08 +00:00
|
|
|
};
|
|
|
|
|
2003-08-01 20:39:16 +00:00
|
|
|
void on_timer(MidiDriver *midi);
|
2002-12-21 21:09:36 +00:00
|
|
|
void pause(bool paused);
|
2003-10-02 22:42:03 +00:00
|
|
|
int save_or_load(Serializer *ser, ScummEngine *scumm);
|
2002-12-21 21:09:36 +00:00
|
|
|
int set_music_volume(uint vol);
|
2003-09-08 17:06:44 +00:00
|
|
|
void setMasterVolume(int vol);
|
2003-09-07 16:16:19 +00:00
|
|
|
void startSound(int sound);
|
|
|
|
void stopSound(int sound);
|
2003-09-07 19:28:45 +00:00
|
|
|
void stopAllSounds();
|
2003-09-07 17:14:56 +00:00
|
|
|
int getSoundStatus(int sound) const;
|
|
|
|
bool get_sound_active(int sound) const;
|
2003-10-03 00:59:27 +00:00
|
|
|
int getMusicTimer() const;
|
2003-08-06 18:20:15 +00:00
|
|
|
int32 doCommand (int a, int b, int c, int d, int e, int f, int g, int h);
|
|
|
|
int32 doCommand (int numargs, int args[]);
|
2002-12-21 21:09:36 +00:00
|
|
|
int clear_queue();
|
|
|
|
void setBase(byte **base);
|
|
|
|
uint32 property(int prop, uint32 value);
|
2003-09-28 00:03:24 +00:00
|
|
|
void terminate();
|
2002-04-14 18:13:08 +00:00
|
|
|
|
2002-10-21 07:31:51 +00:00
|
|
|
// Factory methods
|
2003-08-05 23:58:24 +00:00
|
|
|
static IMuse *create(OSystem *syst, SoundMixer *mixer, MidiDriver *midi);
|
2002-04-14 18:13:08 +00:00
|
|
|
};
|
2002-09-29 07:08:31 +00:00
|
|
|
|
2003-10-03 18:33:57 +00:00
|
|
|
} // End of namespace Scumm
|
|
|
|
|
2002-11-07 07:03:37 +00:00
|
|
|
#endif
|