2016-09-14 21:42:19 +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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-09-14 21:39:27 +00:00
|
|
|
#ifndef CRYO_CRYO_H
|
|
|
|
#define CRYO_CRYO_H
|
2016-08-18 11:15:54 +00:00
|
|
|
|
|
|
|
#include "common/scummsys.h"
|
|
|
|
#include "common/config-manager.h"
|
|
|
|
#include "common/debug.h"
|
|
|
|
#include "common/debug-channels.h"
|
|
|
|
#include "common/error.h"
|
|
|
|
#include "common/random.h"
|
|
|
|
#include "engines/engine.h"
|
|
|
|
#include "gui/debugger.h"
|
|
|
|
#include "graphics/surface.h"
|
|
|
|
#include "graphics/screen.h"
|
2016-11-27 20:47:04 +00:00
|
|
|
|
2016-08-18 11:15:54 +00:00
|
|
|
#include "cryo/eden.h"
|
2016-11-27 20:47:04 +00:00
|
|
|
#include "cryo/video.h"
|
2017-01-24 22:52:57 +00:00
|
|
|
#include "cryo/debugger.h"
|
2016-08-18 11:15:54 +00:00
|
|
|
|
2018-05-01 10:48:05 +00:00
|
|
|
struct ADGameDescription;
|
|
|
|
|
2016-08-18 11:15:54 +00:00
|
|
|
namespace Cryo {
|
|
|
|
|
|
|
|
class Console;
|
|
|
|
|
|
|
|
// our engine debug channels
|
|
|
|
enum {
|
|
|
|
kCryoDebugExample = 1 << 0,
|
|
|
|
kCryoDebugExample2 = 1 << 1
|
|
|
|
// next new channel must be 1 << 2 (4)
|
|
|
|
// the current limitation is 32 debug channels (1 << 31 is the last one)
|
|
|
|
};
|
|
|
|
|
|
|
|
class CryoEngine : public Engine {
|
|
|
|
public:
|
|
|
|
CryoEngine(OSystem *syst, const ADGameDescription *gameDesc);
|
2020-02-09 11:05:28 +00:00
|
|
|
~CryoEngine() override;
|
2016-08-18 11:15:54 +00:00
|
|
|
|
2020-02-09 11:05:28 +00:00
|
|
|
Common::Error run() override;
|
2016-08-18 11:15:54 +00:00
|
|
|
|
|
|
|
// Detection related functions
|
|
|
|
const ADGameDescription *_gameDescription;
|
|
|
|
const char *getGameId() const;
|
|
|
|
Common::Platform getPlatform() const;
|
2016-10-09 06:44:22 +00:00
|
|
|
bool isDemo() const;
|
2016-08-18 11:15:54 +00:00
|
|
|
|
|
|
|
// We need random numbers
|
|
|
|
Common::RandomSource *_rnd;
|
|
|
|
|
|
|
|
Graphics::Surface _screen;
|
2016-11-09 21:40:08 +00:00
|
|
|
EdenGame *_game;
|
2016-11-27 20:47:04 +00:00
|
|
|
HnmPlayer *_video;
|
2016-08-18 11:15:54 +00:00
|
|
|
|
2017-01-01 22:14:02 +00:00
|
|
|
View *_screenView;
|
2016-12-04 22:26:44 +00:00
|
|
|
volatile int32 _timerTicks;
|
2016-11-29 06:33:39 +00:00
|
|
|
|
2017-01-24 22:52:57 +00:00
|
|
|
bool _showHotspots;
|
|
|
|
|
2017-01-01 22:14:02 +00:00
|
|
|
void pollEvents();
|
|
|
|
|
|
|
|
void hideMouse();
|
|
|
|
void showMouse();
|
|
|
|
void getMousePosition(int16 *x, int16 *y);
|
|
|
|
void setMousePosition(int16 x, int16 y);
|
|
|
|
bool isMouseButtonDown();
|
2016-08-18 11:15:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern CryoEngine *g_ed;
|
|
|
|
|
|
|
|
} // End of namespace Cryo
|
|
|
|
|
|
|
|
#endif
|