2018-03-15 20:02:52 +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 PINK_PINK_H
|
|
|
|
#define PINK_PINK_H
|
|
|
|
|
|
|
|
#include "common/random.h"
|
|
|
|
#include "engines/engine.h"
|
|
|
|
#include "gui/EventRecorder.h"
|
|
|
|
#include "gui/debugger.h"
|
|
|
|
#include "file.h"
|
2018-03-17 15:36:18 +00:00
|
|
|
#include "utils.h"
|
2018-03-15 20:02:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is the namespace of the Pink engine.
|
|
|
|
*
|
|
|
|
* Status of this engine: In Development
|
|
|
|
*
|
2018-03-17 15:36:18 +00:00
|
|
|
* Internal name of original engine: OxCart Runtime
|
2018-03-15 20:02:52 +00:00
|
|
|
*
|
|
|
|
* Games using this engine:
|
|
|
|
* - The Pink Panther: Passport to Peril
|
|
|
|
* - The Pink Panther: Hokus Pokus Pink
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Pink {
|
|
|
|
|
|
|
|
class Console;
|
2018-03-17 15:36:18 +00:00
|
|
|
class Archive;
|
|
|
|
class Module;
|
2018-03-15 20:02:52 +00:00
|
|
|
|
|
|
|
enum {
|
|
|
|
kPinkDebugGeneral = 1 << 0,
|
2018-03-17 15:36:18 +00:00
|
|
|
kPinkDebugLoadingResources = 1 << 1,
|
|
|
|
kPinkDebugLoadingObjects = 1 << 2,
|
|
|
|
kPinkDebugGraphics = 1 << 3,
|
|
|
|
kPinkDebugSound = 1 << 4
|
2018-03-15 20:02:52 +00:00
|
|
|
};
|
|
|
|
|
2018-03-17 15:36:18 +00:00
|
|
|
enum {
|
|
|
|
LoadingSave = 1,
|
|
|
|
LoadingNotSave = 0
|
|
|
|
};
|
2018-03-15 20:02:52 +00:00
|
|
|
|
2018-03-17 15:36:18 +00:00
|
|
|
|
|
|
|
class PinkEngine : public Engine {
|
2018-03-15 20:02:52 +00:00
|
|
|
public:
|
|
|
|
PinkEngine(OSystem *system, const ADGameDescription *desc);
|
|
|
|
~PinkEngine();
|
|
|
|
|
|
|
|
virtual Common::Error run();
|
2018-03-17 15:36:18 +00:00
|
|
|
void load(Archive &archive);
|
|
|
|
|
|
|
|
void initModule();
|
|
|
|
void setNextExecutors(const Common::String &nextModule, const Common::String &nextPage);
|
|
|
|
|
|
|
|
OrbFile *getOrb() { return &_orb; }
|
|
|
|
BroFile *getBro() { return _bro; }
|
2018-03-15 20:02:52 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
Common::Error init();
|
2018-03-17 15:36:18 +00:00
|
|
|
void changeProxyToModule(int index);
|
2018-03-15 20:02:52 +00:00
|
|
|
|
|
|
|
Console *_console;
|
|
|
|
Common::RandomSource _rnd;
|
|
|
|
|
|
|
|
Common::String _nextModule;
|
|
|
|
Common::String _nextPage;
|
|
|
|
|
|
|
|
OrbFile _orb;
|
|
|
|
BroFile *_bro;
|
|
|
|
|
2018-03-17 15:36:18 +00:00
|
|
|
Module *_module;
|
|
|
|
ModulesArray _modules;
|
|
|
|
|
2018-03-15 20:02:52 +00:00
|
|
|
const ADGameDescription _desc;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Pink
|
|
|
|
|
|
|
|
#endif
|