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.
|
|
|
|
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* $URL$
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GROOVIE_H
|
|
|
|
#define GROOVIE_H
|
|
|
|
|
|
|
|
#include "engines/engine.h"
|
|
|
|
#include "graphics/surface.h"
|
|
|
|
|
|
|
|
#include "groovie/cursor.h"
|
|
|
|
#include "groovie/debug.h"
|
|
|
|
#include "groovie/graphics.h"
|
|
|
|
#include "groovie/player.h"
|
|
|
|
#include "groovie/resource.h"
|
|
|
|
#include "groovie/script.h"
|
|
|
|
|
2009-11-24 22:10:14 +00:00
|
|
|
/**
|
|
|
|
* This is the namespace of the Groovie engine.
|
|
|
|
*
|
|
|
|
* Status of this engine: ???
|
|
|
|
*
|
|
|
|
* Supported games:
|
|
|
|
* - ???
|
|
|
|
*/
|
2008-11-14 21:32:20 +00:00
|
|
|
namespace Groovie {
|
|
|
|
|
|
|
|
class MusicPlayer;
|
|
|
|
|
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)
|
|
|
|
};
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
protected:
|
2009-03-01 04:30:55 +00:00
|
|
|
|
|
|
|
// Engine APIs
|
2009-03-01 09:12:32 +00:00
|
|
|
Common::Error run();
|
2009-03-01 04:30:55 +00:00
|
|
|
virtual void errorString(const char *buf_input, char *buf_output, int buf_output_size);
|
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;
|
|
|
|
|
|
|
|
private:
|
2009-02-15 10:32:06 +00:00
|
|
|
const GroovieGameDescription *_gameDescription;
|
2008-11-14 21:32:20 +00:00
|
|
|
Debugger *_debugger;
|
|
|
|
bool _waitingForInput;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Groovie
|
|
|
|
|
|
|
|
#endif // GROOVIE_H
|