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"
|
2012-04-29 01:23:02 +00:00
|
|
|
#include "common/array.h"
|
2012-04-25 02:49:49 +00:00
|
|
|
#include "common/error.h"
|
2012-04-25 23:43:55 +00:00
|
|
|
#include "common/random.h"
|
2012-04-25 02:49:49 +00:00
|
|
|
#include "common/util.h"
|
|
|
|
#include "engines/engine.h"
|
|
|
|
|
2012-04-26 15:32:46 +00:00
|
|
|
#include "tony/mpal/mpal.h"
|
2012-04-29 13:19:30 +00:00
|
|
|
#include "tony/mpal/memory.h"
|
2012-04-29 23:27:12 +00:00
|
|
|
#include "tony/gfxEngine.h"
|
2012-04-29 13:19:30 +00:00
|
|
|
#include "tony/loc.h"
|
2012-04-29 01:01:40 +00:00
|
|
|
#include "tony/utils.h"
|
2012-04-30 13:16:19 +00:00
|
|
|
#include "tony/window.h"
|
2012-04-25 23:43:55 +00:00
|
|
|
|
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 {
|
|
|
|
|
2012-04-25 23:43:55 +00:00
|
|
|
using namespace MPAL;
|
|
|
|
|
2012-04-25 02:49:49 +00:00
|
|
|
enum {
|
|
|
|
kTonyDebugAnimations = 1 << 0,
|
|
|
|
kTonyDebugActions = 1 << 1,
|
|
|
|
kTonyDebugSound = 1 << 2,
|
|
|
|
kTonyDebugMusic = 2 << 3
|
|
|
|
};
|
|
|
|
|
|
|
|
#define DEBUG_BASIC 1
|
|
|
|
#define DEBUG_INTERMEDIATE 2
|
|
|
|
#define DEBUG_DETAILED 3
|
|
|
|
|
|
|
|
struct TonyGameDescription;
|
|
|
|
|
2012-04-29 01:23:02 +00:00
|
|
|
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 {
|
2012-04-25 23:43:55 +00:00
|
|
|
private:
|
|
|
|
Common::ErrorCode Init();
|
2012-04-30 13:16:19 +00:00
|
|
|
|
2012-04-29 01:23:02 +00:00
|
|
|
void InitMusic();
|
|
|
|
void CloseMusic();
|
|
|
|
bool OpenVoiceDatabase();
|
|
|
|
void CloseVoiceDatabase();
|
2012-04-25 02:49:49 +00:00
|
|
|
protected:
|
|
|
|
// Engine APIs
|
|
|
|
virtual Common::Error run();
|
|
|
|
virtual bool hasFeature(EngineFeature f) const;
|
2012-04-25 23:43:55 +00:00
|
|
|
public:
|
|
|
|
LPCUSTOMFUNCTION FuncList[300];
|
|
|
|
Common::RandomSource _randomSource;
|
2012-04-29 13:19:30 +00:00
|
|
|
MPAL::MemoryManager _memoryManager;
|
2012-04-29 01:01:40 +00:00
|
|
|
RMResUpdate _resUpdate;
|
2012-04-30 13:16:19 +00:00
|
|
|
HANDLE m_hEndOfFrame;
|
2012-04-29 01:23:02 +00:00
|
|
|
Common::File _vdbFP;
|
|
|
|
Common::Array<VoiceHeader> _voices;
|
2012-04-30 13:16:19 +00:00
|
|
|
FPSOUND _theSound;
|
2012-04-29 13:19:30 +00:00
|
|
|
// Bounding box list manager
|
|
|
|
RMGameBoxes _theBoxes;
|
2012-04-29 23:27:12 +00:00
|
|
|
RMGfxEngine _theEngine;
|
2012-04-30 13:16:19 +00:00
|
|
|
RMWindow m_wnd;
|
|
|
|
bool m_bPaused;
|
|
|
|
bool m_bDrawLocation;
|
|
|
|
int m_startTime;
|
|
|
|
uint16 *m_curThumbnail;
|
|
|
|
|
|
|
|
bool m_bQuitNow;
|
|
|
|
bool m_bTimeFreezed;
|
|
|
|
int m_nTimeFreezed;
|
|
|
|
|
|
|
|
enum DATADIR {
|
|
|
|
DD_BASE = 1,
|
|
|
|
DD_SAVE,
|
|
|
|
DD_SHOTS,
|
|
|
|
DD_MUSIC,
|
|
|
|
DD_LAYER,
|
|
|
|
DD_UTILSFX,
|
|
|
|
DD_VOICES,
|
|
|
|
DD_BASE2
|
|
|
|
};
|
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;
|
2012-04-30 13:16:19 +00:00
|
|
|
bool getIsDemo() const;
|
|
|
|
RMGfxEngine *GetEngine() { return &_theEngine; }
|
2012-04-25 23:43:55 +00:00
|
|
|
void GUIError(const Common::String &msg);
|
2012-04-30 13:16:19 +00:00
|
|
|
|
2012-05-01 13:44:02 +00:00
|
|
|
// Avverte che siamo guidati dal GDI
|
|
|
|
void GDIControl(bool bCon);
|
|
|
|
|
|
|
|
// Loop che gestisce i messaggi quando siamo in pausa
|
|
|
|
void PauseLoop(void);
|
|
|
|
|
|
|
|
// Carica un modulo e le sue funzioni custom
|
|
|
|
void InitCustomDll(LPCUSTOMFUNCTION *FuncList);
|
|
|
|
|
2012-04-30 13:16:19 +00:00
|
|
|
void Play();
|
|
|
|
void Close();
|
|
|
|
void Abort();
|
|
|
|
|
|
|
|
void GetDataDirectory(DATADIR dir, char *path);
|
|
|
|
|
|
|
|
void SwitchFullscreen(bool bFull);
|
|
|
|
void OptionScreen(void);
|
|
|
|
|
|
|
|
void ShowLocation(void) { m_bDrawLocation = true; }
|
|
|
|
void HideLocation(void) { m_bDrawLocation = false; }
|
|
|
|
|
|
|
|
// Mette o leva la pausa
|
|
|
|
void Pause(bool bPause);
|
|
|
|
bool IsPaused() { return m_bPaused; }
|
|
|
|
|
|
|
|
// Reads the time
|
|
|
|
uint32 GetTime(void);
|
|
|
|
void FreezeTime(void);
|
|
|
|
void UnfreezeTime(void);
|
|
|
|
|
|
|
|
// Music
|
|
|
|
// ******
|
2012-05-03 12:49:30 +00:00
|
|
|
void PlayMusic(int nChannel, const char *fn, int nFX, bool bLoop, int nSync);
|
2012-04-30 13:16:19 +00:00
|
|
|
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(byte *buf);
|
|
|
|
|
|
|
|
void PreloadSFX(int nSfx, char *fn);
|
|
|
|
void UnloadAllSFX(void);
|
|
|
|
|
|
|
|
void PreloadUtilSFX(int nSfx, char *fn);
|
|
|
|
void UnloadAllUtilSFX(void);
|
|
|
|
|
|
|
|
// Ferma tutta la parte audio
|
|
|
|
void PauseSound(bool bPause);
|
|
|
|
|
|
|
|
void SetMusicVolume(int nChannel, int volume);
|
|
|
|
int GetMusicVolume(int nChannel);
|
|
|
|
|
|
|
|
// Salvataggio
|
|
|
|
void AutoSave(void);
|
2012-05-03 12:49:30 +00:00
|
|
|
void SaveState(int n, const char *name);
|
2012-04-30 13:16:19 +00:00
|
|
|
void LoadState(int n);
|
|
|
|
void GetSaveStateFileName(int n, char* buf);
|
|
|
|
|
|
|
|
// Prende il thumbnail
|
|
|
|
void GrabThumbnail(void);
|
|
|
|
uint16 *GetThumbnail(void) { return m_curThumbnail; }
|
|
|
|
|
|
|
|
void Quit(void) { m_bQuitNow = true; }
|
|
|
|
|
|
|
|
void OpenInitLoadMenu(void);
|
|
|
|
void OpenInitOptions(void);
|
2012-04-25 02:49:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Global reference to the TonyEngine object
|
|
|
|
extern TonyEngine *_vm;
|
|
|
|
|
|
|
|
} // End of namespace Tony
|
|
|
|
|
|
|
|
#endif /* TONY_H */
|