2008-11-14 21:32:20 +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.
|
2014-02-18 01:34:20 +00:00
|
|
|
*
|
2008-11-14 21:32:20 +00:00
|
|
|
* 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.
|
2014-02-18 01:34:20 +00:00
|
|
|
*
|
2008-11-14 21:32:20 +00:00
|
|
|
* 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 GROOVIE_H
|
|
|
|
#define GROOVIE_H
|
|
|
|
|
|
|
|
#include "groovie/debug.h"
|
2010-06-07 17:14:42 +00:00
|
|
|
#include "groovie/font.h"
|
|
|
|
|
|
|
|
#include "engines/engine.h"
|
|
|
|
#include "graphics/pixelformat.h"
|
2008-11-14 21:32:20 +00:00
|
|
|
|
2010-05-11 15:41:31 +00:00
|
|
|
namespace Common {
|
2011-04-25 19:29:26 +00:00
|
|
|
class MacResManager;
|
2010-05-11 15:41:31 +00:00
|
|
|
}
|
|
|
|
|
2009-11-24 22:10:14 +00:00
|
|
|
/**
|
|
|
|
* This is the namespace of the Groovie engine.
|
|
|
|
*
|
2009-11-27 06:46:07 +00:00
|
|
|
* Status of this engine: This engine supports both versions of the Groovie
|
2010-01-25 01:39:44 +00:00
|
|
|
* game engine. The 7th Guest uses the first revision of Groovie, and is
|
2009-11-27 06:46:07 +00:00
|
|
|
* now fully completable. All remaining Groovie games use V2 of the engine,
|
|
|
|
* which is under slow development.
|
2009-11-24 22:10:14 +00:00
|
|
|
*
|
2010-10-15 12:48:19 +00:00
|
|
|
* Games using this engine:
|
2009-11-27 06:46:07 +00:00
|
|
|
* - The 7th Guest (completable)
|
|
|
|
* - The 11th Hour
|
|
|
|
* - Clandestiny
|
|
|
|
* - Uncle Henry's Playhouse
|
|
|
|
* - Tender Loving Care
|
2009-11-24 22:10:14 +00:00
|
|
|
*/
|
2008-11-14 21:32:20 +00:00
|
|
|
namespace Groovie {
|
|
|
|
|
2010-06-07 17:14:42 +00:00
|
|
|
class GraphicsMan;
|
|
|
|
class GrvCursorMan;
|
2008-11-14 21:32:20 +00:00
|
|
|
class MusicPlayer;
|
2010-06-07 17:14:42 +00:00
|
|
|
class ResMan;
|
|
|
|
class Script;
|
|
|
|
class VideoPlayer;
|
2008-11-14 21:32:20 +00:00
|
|
|
|
2009-03-10 00:19:44 +00:00
|
|
|
enum DebugLevels {
|
2008-11-14 21:32:20 +00:00
|
|
|
kGroovieDebugAll = 1 << 0,
|
|
|
|
kGroovieDebugVideo = 1 << 1,
|
|
|
|
kGroovieDebugResource = 1 << 2,
|
|
|
|
kGroovieDebugScript = 1 << 3,
|
|
|
|
kGroovieDebugUnknown = 1 << 4,
|
|
|
|
kGroovieDebugHotspots = 1 << 5,
|
|
|
|
kGroovieDebugCursor = 1 << 6,
|
2008-11-16 19:20:30 +00:00
|
|
|
kGroovieDebugMIDI = 1 << 7,
|
2008-11-24 21:22:24 +00:00
|
|
|
kGroovieDebugScriptvars = 1 << 8,
|
2008-11-24 21:48:40 +00:00
|
|
|
kGroovieDebugCell = 1 << 9,
|
|
|
|
kGroovieDebugFast = 1 << 10
|
2008-11-14 21:32:20 +00:00
|
|
|
// the current limitation is 32 debug levels (1 << 31 is the last one)
|
|
|
|
};
|
|
|
|
|
2012-11-15 16:26:15 +00:00
|
|
|
/**
|
|
|
|
* This enum reflects the available movie speed settings:
|
2013-01-02 10:11:22 +00:00
|
|
|
* - Normal: play videos at a normal speed
|
|
|
|
* - Fast: play videos with audio at a fast speed. Videos without audio,
|
|
|
|
* like teeth animations, are played at their regular speed to avoid
|
|
|
|
* audio sync issues
|
2012-11-15 16:26:15 +00:00
|
|
|
*/
|
2011-04-07 14:06:17 +00:00
|
|
|
enum GameSpeed {
|
|
|
|
kGroovieSpeedNormal,
|
2013-01-02 10:11:22 +00:00
|
|
|
kGroovieSpeedFast
|
2011-04-07 14:06:17 +00:00
|
|
|
};
|
|
|
|
|
2009-11-23 23:53:25 +00:00
|
|
|
struct GroovieGameDescription;
|
2008-11-14 21:32:20 +00:00
|
|
|
|
|
|
|
class GroovieEngine : public Engine {
|
|
|
|
public:
|
2009-02-15 10:32:06 +00:00
|
|
|
GroovieEngine(OSystem *syst, const GroovieGameDescription *gd);
|
2008-11-14 21:32:20 +00:00
|
|
|
~GroovieEngine();
|
|
|
|
|
2010-07-01 18:47:27 +00:00
|
|
|
Common::Platform getPlatform() const;
|
|
|
|
|
2008-11-14 21:32:20 +00:00
|
|
|
protected:
|
2009-03-01 04:30:55 +00:00
|
|
|
|
|
|
|
// Engine APIs
|
2009-03-01 09:12:32 +00:00
|
|
|
Common::Error run();
|
2008-11-15 18:56:39 +00:00
|
|
|
|
2009-03-01 04:30:55 +00:00
|
|
|
virtual bool hasFeature(EngineFeature f) const;
|
2008-11-14 21:32:20 +00:00
|
|
|
|
2009-03-01 04:30:55 +00:00
|
|
|
virtual bool canLoadGameStateCurrently();
|
|
|
|
virtual Common::Error loadGameState(int slot);
|
|
|
|
virtual void syncSoundSettings();
|
2008-11-14 21:32:20 +00:00
|
|
|
|
2009-03-01 04:30:55 +00:00
|
|
|
virtual Debugger *getDebugger() { return _debugger; }
|
2008-11-14 21:32:20 +00:00
|
|
|
|
2009-03-01 04:30:55 +00:00
|
|
|
public:
|
2008-11-14 21:32:20 +00:00
|
|
|
void waitForInput();
|
|
|
|
|
2009-08-21 13:57:03 +00:00
|
|
|
Graphics::PixelFormat _pixelFormat;
|
|
|
|
bool _mode8bit;
|
2009-09-24 10:58:00 +00:00
|
|
|
Script *_script;
|
2008-11-14 21:32:20 +00:00
|
|
|
ResMan *_resMan;
|
2009-01-08 23:06:08 +00:00
|
|
|
GrvCursorMan *_grvCursorMan;
|
2008-11-14 21:32:20 +00:00
|
|
|
VideoPlayer *_videoPlayer;
|
|
|
|
MusicPlayer *_musicPlayer;
|
|
|
|
GraphicsMan *_graphicsMan;
|
2010-06-07 17:14:42 +00:00
|
|
|
const Graphics::Font *_font;
|
2008-11-14 21:32:20 +00:00
|
|
|
|
2010-05-11 15:41:31 +00:00
|
|
|
Common::MacResManager *_macResFork;
|
|
|
|
|
2011-04-07 14:06:17 +00:00
|
|
|
GameSpeed _modeSpeed;
|
|
|
|
|
2008-11-14 21:32:20 +00:00
|
|
|
private:
|
2009-02-15 10:32:06 +00:00
|
|
|
const GroovieGameDescription *_gameDescription;
|
2008-11-14 21:32:20 +00:00
|
|
|
Debugger *_debugger;
|
|
|
|
bool _waitingForInput;
|
2010-06-07 17:14:42 +00:00
|
|
|
T7GFont _sphinxFont;
|
2008-11-14 21:32:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Groovie
|
|
|
|
|
|
|
|
#endif // GROOVIE_H
|