scummvm/engines/tony/tony.h

234 lines
5.3 KiB
C
Raw Normal View History

2012-04-25 02:49:49 +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 TONY_H
#define TONY_H
#include "common/scummsys.h"
#include "common/system.h"
#include "common/array.h"
#include "common/coroutines.h"
2012-04-25 02:49:49 +00:00
#include "common/error.h"
#include "common/random.h"
2012-04-25 02:49:49 +00:00
#include "common/util.h"
#include "engines/engine.h"
#include "tony/mpal/mpal.h"
#include "tony/mpal/memory.h"
#include "tony/debugger.h"
#include "tony/gfxengine.h"
#include "tony/loc.h"
2012-04-29 01:01:40 +00:00
#include "tony/utils.h"
#include "tony/window.h"
#include "tony/globals.h"
2012-04-25 02:49:49 +00:00
/**
* This is the namespace of the Tony engine.
*
* Status of this engine: In Development
*
* Games using this engine:
* - Tony Tough
*/
namespace Tony {
using namespace MPAL;
class Globals;
2012-04-25 02:49:49 +00:00
enum {
kTonyDebugAnimations = 1 << 0,
kTonyDebugActions = 1 << 1,
kTonyDebugSound = 1 << 2,
kTonyDebugMusic = 1 << 3,
kTonyDebugMPAL = 1 << 4
2012-04-25 02:49:49 +00:00
};
#define DEBUG_BASIC 1
#define DEBUG_INTERMEDIATE 2
#define DEBUG_DETAILED 3
struct TonyGameDescription;
2012-05-21 21:53:13 +00:00
#define MAX_SFX_CHANNELS 32
struct VoiceHeader {
int _offset;
int _code;
int _parts;
};
#define VOICE_HEADER_SIZE 12
2012-04-25 02:49:49 +00:00
class TonyEngine : public Engine {
private:
Common::ErrorCode init();
void initMusic();
void closeMusic();
bool openVoiceDatabase();
void closeVoiceDatabase();
void initCustomFunctionMap();
static void playProcess(CORO_PARAM, const void *param);
2012-04-25 02:49:49 +00:00
protected:
// Engine APIs
virtual Common::Error run();
virtual bool hasFeature(EngineFeature f) const;
public:
LPCUSTOMFUNCTION _funcList[300];
Common::String _funcListStrings[300];
Common::RandomSource _randomSource;
2012-04-29 01:01:40 +00:00
RMResUpdate _resUpdate;
uint32 _hEndOfFrame;
Common::File _vdbFP;
Common::Array<VoiceHeader> _voices;
2012-05-21 21:53:13 +00:00
FPSOUND _theSound;
Common::List<FPSFX *> _activeSfx;
Globals _globals;
Debugger *_debugger;
enum DATADIR {
DD_BASE = 1,
DD_SAVE,
DD_SHOTS,
DD_MUSIC,
DD_LAYER,
DD_UTILSFX,
DD_VOICES,
DD_BASE2
};
FPSTREAM *_stream[6];
FPSFX *_sfx[MAX_SFX_CHANNELS];
FPSFX *_utilSfx[MAX_SFX_CHANNELS];
// RMFont *_fonts[2];
bool _bPaused;
bool _bDrawLocation;
int _startTime;
uint16 *_curThumbnail;
int _initialLoadSlotNumber;
int _loadSlotNumber;
// Bounding box list manager
RMGameBoxes _theBoxes;
RMWindow _window;
RMGfxEngine _theEngine;
bool _bQuitNow;
bool _bTimeFreezed;
int _nTimeFreezed;
2012-04-25 02:49:49 +00:00
public:
TonyEngine(OSystem *syst, const TonyGameDescription *gameDesc);
virtual ~TonyEngine();
const TonyGameDescription *_gameDescription;
uint32 getFeatures() const;
Common::Language getLanguage() const;
uint16 getVersion() const;
bool getIsDemo() const;
bool isCompressed() const;
RMGfxEngine *getEngine() {
2012-05-21 21:53:13 +00:00
return &_theEngine;
}
void GUIError(const Common::String &msg);
virtual bool canLoadGameStateCurrently();
virtual bool canSaveGameStateCurrently();
2012-05-17 12:20:04 +00:00
Common::Error loadGameState(int slot);
Common::Error saveGameState(int slot, const Common::String &desc);
// Warn when are being controlled by the GDI
void GDIControl(bool bCon);
void play();
void close();
void abortGame();
void getDataDirectory(DATADIR dir, char *path);
void switchFullscreen(bool bFull);
void optionScreen(void);
void showLocation(void) {
_bDrawLocation = true;
2012-05-21 21:53:13 +00:00
}
void hideLocation(void) {
_bDrawLocation = false;
2012-05-21 21:53:13 +00:00
}
// Reads the time
uint32 getTime(void);
void freezeTime(void);
void unfreezeTime(void);
// Music
// ******
void playMusic(int nChannel, const char *fn, int nFX, bool bLoop, int nSync);
void stopMusic(int nChannel);
void playSFX(int nSfx, int nFX = 0);
void stopSFX(int nSfx);
void playUtilSFX(int nSfx, int nFX = 0);
void stopUtilSFX(int nSfx);
FPSFX *createSFX(Common::SeekableReadStream *stream);
void preloadSFX(int nSfx, const char *fn);
void unloadAllSFX(void);
2012-05-21 21:53:13 +00:00
void preloadUtilSFX(int nSfx, const char *fn);
void unloadAllUtilSFX(void);
// Stop all the audio
void pauseSound(bool bPause);
void setMusicVolume(int nChannel, int volume);
int getMusicVolume(int nChannel);
// Handle saving
void autoSave(CORO_PARAM);
void saveState(int n, const char *name);
void loadState(CORO_PARAM, int n);
static Common::String getSaveStateFileName(int n);
// Get a thumbnail
void grabThumbnail(void);
uint16 *getThumbnail(void) {
return _curThumbnail;
2012-05-21 21:53:13 +00:00
}
void quitGame(void) {
_bQuitNow = true;
2012-05-21 21:53:13 +00:00
}
void openInitLoadMenu(CORO_PARAM);
void openInitOptions(CORO_PARAM);
2012-04-25 02:49:49 +00:00
};
// Global reference to the TonyEngine object
extern TonyEngine *_vm;
#define GLOBALS _vm->_globals
2012-04-25 02:49:49 +00:00
} // End of namespace Tony
#endif /* TONY_H */