2002-04-21 17:46:42 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
|
|
|
* Copyright (C) 2001 Ludvig Strigeus
|
2003-03-06 21:46:56 +00:00
|
|
|
* Copyright (C) 2001-2003 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-04-29 11:48:33 +00:00
|
|
|
class IMuseInternal;
|
2002-10-15 06:53:42 +00:00
|
|
|
class MidiDriver;
|
2002-11-06 15:41:36 +00:00
|
|
|
class OSystem;
|
|
|
|
class Scumm;
|
2002-12-11 01:25:15 +00:00
|
|
|
class Serializer;
|
2002-11-06 15:41:36 +00:00
|
|
|
class SoundMixer;
|
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-05-17 03:06:16 +00:00
|
|
|
PROP_TEMPO_BASE = 1,
|
|
|
|
PROP_NATIVE_MT32 = 2,
|
2003-05-17 17:20:27 +00:00
|
|
|
PROP_MULTI_MIDI = 3,
|
2003-05-23 18:35:53 +00:00
|
|
|
PROP_OLD_ADLIB_INSTRUMENTS = 4,
|
|
|
|
PROP_LIMIT_PLAYERS = 5,
|
|
|
|
PROP_RECYCLE_PLAYERS = 6
|
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);
|
|
|
|
int save_or_load(Serializer *ser, Scumm *scumm);
|
|
|
|
int set_music_volume(uint vol);
|
|
|
|
int get_music_volume();
|
|
|
|
int set_master_volume(uint vol);
|
|
|
|
int get_master_volume();
|
2003-09-07 16:16:19 +00:00
|
|
|
void startSound(int sound);
|
|
|
|
void stopSound(int sound);
|
|
|
|
int stopAllSounds();
|
2003-09-07 17:14:56 +00:00
|
|
|
int getSoundStatus(int sound) const;
|
|
|
|
bool get_sound_active(int sound) const;
|
2003-08-16 09:34:19 +00:00
|
|
|
int getMusicTimer();
|
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);
|
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
|
|
|
|
2002-11-07 07:03:37 +00:00
|
|
|
#endif
|