2010-01-03 23:58:59 +02: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.
|
|
|
|
*
|
2010-01-14 12:24:12 +02:00
|
|
|
* MIT License:
|
|
|
|
*
|
|
|
|
* Copyright (c) 2009 Alexei Svitkine, Eugene Sandulenko
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person
|
|
|
|
* obtaining a copy of this software and associated documentation
|
|
|
|
* files (the "Software"), to deal in the Software without
|
|
|
|
* restriction, including without limitation the rights to use,
|
|
|
|
* copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following
|
|
|
|
* conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
|
|
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
|
|
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
|
|
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
|
|
* OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
2010-01-03 23:58:59 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef WAGE_H
|
|
|
|
#define WAGE_H
|
2015-12-16 20:59:33 +01:00
|
|
|
|
2010-01-03 23:58:59 +02:00
|
|
|
#include "engines/engine.h"
|
2010-01-07 23:52:31 +02:00
|
|
|
#include "common/debug.h"
|
2010-01-03 23:58:59 +02:00
|
|
|
#include "gui/debugger.h"
|
|
|
|
#include "common/endian.h"
|
2010-01-11 00:26:01 +02:00
|
|
|
#include "common/rect.h"
|
2010-01-11 22:46:24 +02:00
|
|
|
#include "common/macresman.h"
|
2011-05-30 04:02:48 +01:00
|
|
|
#include "common/random.h"
|
2010-01-03 23:58:59 +02:00
|
|
|
|
|
|
|
struct ADGameDescription;
|
|
|
|
|
|
|
|
namespace Wage {
|
2015-12-16 20:59:33 +01:00
|
|
|
|
2010-01-03 23:58:59 +02:00
|
|
|
class Console;
|
2010-01-18 00:13:37 +02:00
|
|
|
class Chr;
|
2015-12-25 12:49:47 +01:00
|
|
|
class Designed;
|
2015-12-26 13:12:30 +01:00
|
|
|
class Gui;
|
2015-12-25 12:49:47 +01:00
|
|
|
class Obj;
|
|
|
|
class Scene;
|
2016-01-09 01:13:25 +01:00
|
|
|
class Weapon;
|
2015-12-25 12:49:47 +01:00
|
|
|
class World;
|
2010-01-07 23:52:31 +02:00
|
|
|
|
|
|
|
using Common::String;
|
2015-12-16 20:59:33 +01:00
|
|
|
|
2015-12-23 23:05:56 +01:00
|
|
|
enum OperandType {
|
|
|
|
OBJ = 0,
|
|
|
|
CHR = 1,
|
|
|
|
SCENE = 2,
|
|
|
|
NUMBER = 3,
|
|
|
|
STRING = 4,
|
|
|
|
CLICK_INPUT = 5,
|
|
|
|
TEXT_INPUT = 6,
|
|
|
|
UNKNOWN = 100
|
|
|
|
};
|
|
|
|
|
2010-01-03 23:58:59 +02:00
|
|
|
// our engine debug levels
|
|
|
|
enum {
|
|
|
|
kWageDebugExample = 1 << 0,
|
|
|
|
kWageDebugExample2 = 1 << 1
|
|
|
|
// next new level must be 1 << 2 (4)
|
|
|
|
// the current limitation is 32 debug levels (1 << 31 is the last one)
|
|
|
|
};
|
|
|
|
|
2015-12-26 13:12:30 +01:00
|
|
|
enum {
|
2015-12-29 10:46:51 +01:00
|
|
|
kColorBlack = 0,
|
|
|
|
kColorGray = 1,
|
|
|
|
kColorWhite = 2,
|
|
|
|
kColorGreen = 3
|
2015-12-26 13:12:30 +01:00
|
|
|
};
|
|
|
|
|
2012-10-20 00:38:04 +02:00
|
|
|
Common::String readPascalString(Common::SeekableReadStream *in);
|
|
|
|
Common::Rect *readRect(Common::SeekableReadStream *in);
|
2016-01-03 20:23:39 +01:00
|
|
|
const char *getIndefiniteArticle(String &word);
|
2016-01-08 00:55:16 +01:00
|
|
|
const char *prependGenderSpecificPronoun(int gender);
|
|
|
|
const char *getGenderSpecificPronoun(int gender, bool capitalize);
|
|
|
|
|
2010-01-07 23:52:31 +02:00
|
|
|
|
2015-12-16 21:44:48 +01:00
|
|
|
typedef Common::Array<byte *> Patterns;
|
|
|
|
|
2010-01-03 23:58:59 +02:00
|
|
|
class WageEngine : public Engine {
|
|
|
|
public:
|
|
|
|
WageEngine(OSystem *syst, const ADGameDescription *gameDesc);
|
|
|
|
~WageEngine();
|
2015-12-16 20:59:33 +01:00
|
|
|
|
2010-01-03 23:58:59 +02:00
|
|
|
virtual bool hasFeature(EngineFeature f) const;
|
|
|
|
|
|
|
|
virtual Common::Error run();
|
2015-12-16 20:59:33 +01:00
|
|
|
|
2010-01-03 23:58:59 +02:00
|
|
|
bool canLoadGameStateCurrently();
|
|
|
|
bool canSaveGameStateCurrently();
|
|
|
|
|
2010-01-07 23:52:31 +02:00
|
|
|
const char *getGameFile() const;
|
2016-01-14 18:18:04 +01:00
|
|
|
void processTurn(Common::String *textInput, Designed *clickInput);
|
2010-01-07 23:52:31 +02:00
|
|
|
|
|
|
|
private:
|
2010-01-11 22:46:24 +02:00
|
|
|
bool loadWorld(Common::MacResManager *resMan);
|
2015-12-25 01:09:12 +01:00
|
|
|
void performInitialSetup();
|
|
|
|
void wearObjs(Chr *chr);
|
2016-01-02 00:55:45 +01:00
|
|
|
void processTurnInternal(Common::String *textInput, Designed *clickInput);
|
|
|
|
void regen();
|
|
|
|
void performCombatAction(Chr *npc, Chr *player);
|
2016-01-08 22:12:47 +01:00
|
|
|
int getValidMoveDirections(Chr *npc);
|
2016-01-09 01:13:25 +01:00
|
|
|
void performAttack(Chr *attacker, Chr *victim, Weapon *weapon);
|
|
|
|
void performMagic(Chr *attacker, Chr *victim, Obj *magicalObject);
|
|
|
|
void performMove(Chr *chr, int validMoves);
|
|
|
|
void performOffer(Chr *attacker, Chr *victim);
|
|
|
|
void performTake(Chr *npc, Obj *obj);
|
2010-01-07 23:52:31 +02:00
|
|
|
|
2010-01-18 00:13:37 +02:00
|
|
|
public:
|
2011-05-30 04:02:48 +01:00
|
|
|
Common::RandomSource *_rnd;
|
2010-01-03 23:58:59 +02:00
|
|
|
|
2015-12-26 13:12:30 +01:00
|
|
|
Gui *_gui;
|
2010-01-18 00:13:37 +02:00
|
|
|
World *_world;
|
|
|
|
|
|
|
|
Scene *_lastScene;
|
|
|
|
int _loopCount;
|
|
|
|
int _turn;
|
|
|
|
Chr *_monster;
|
2016-01-02 00:55:45 +01:00
|
|
|
Chr *_running;
|
2010-01-18 00:13:37 +02:00
|
|
|
Obj *_offer;
|
|
|
|
int _aim;
|
|
|
|
bool _temporarilyHidden;
|
2015-12-25 18:20:51 +01:00
|
|
|
bool _isGameOver;
|
2010-01-18 00:13:37 +02:00
|
|
|
|
2016-01-04 00:09:10 +01:00
|
|
|
Common::String _inputText;
|
|
|
|
|
2015-12-22 10:36:56 +01:00
|
|
|
void playSound(String soundName);
|
|
|
|
void setMenu(String soundName);
|
2015-12-30 18:22:46 +01:00
|
|
|
void appendText(String &str);
|
2015-12-25 18:20:51 +01:00
|
|
|
void gameOver();
|
2015-12-22 10:36:56 +01:00
|
|
|
Obj *getOffer();
|
2015-12-25 18:20:51 +01:00
|
|
|
Chr *getMonster();
|
2015-12-16 20:59:33 +01:00
|
|
|
void processEvents();
|
2015-12-25 18:20:51 +01:00
|
|
|
Scene *getSceneByName(String &location);
|
2015-12-25 12:49:47 +01:00
|
|
|
void onMove(Designed *what, Designed *from, Designed *to);
|
2015-12-25 18:20:51 +01:00
|
|
|
void encounter(Chr *player, Chr *chr);
|
|
|
|
void redrawScene();
|
2010-01-18 00:13:37 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
Console *_console;
|
|
|
|
|
2010-01-03 23:58:59 +02:00
|
|
|
const ADGameDescription *_gameDescription;
|
2010-01-07 23:52:31 +02:00
|
|
|
|
2010-01-11 22:46:24 +02:00
|
|
|
Common::MacResManager *_resManager;
|
2010-01-07 23:52:31 +02:00
|
|
|
|
2016-01-02 00:55:45 +01:00
|
|
|
bool _commandWasQuick;
|
|
|
|
|
2016-01-03 21:44:04 +01:00
|
|
|
bool _shouldQuit;
|
2010-01-03 23:58:59 +02:00
|
|
|
};
|
2015-12-16 20:59:33 +01:00
|
|
|
|
2010-01-03 23:58:59 +02:00
|
|
|
// Example console class
|
|
|
|
class Console : public GUI::Debugger {
|
|
|
|
public:
|
|
|
|
Console(WageEngine *vm) {}
|
|
|
|
virtual ~Console(void) {}
|
|
|
|
};
|
2015-12-16 20:59:33 +01:00
|
|
|
|
2010-01-03 23:58:59 +02:00
|
|
|
} // End of namespace Wage
|
2015-12-16 20:59:33 +01:00
|
|
|
|
2010-01-03 23:58:59 +02:00
|
|
|
#endif
|