2010-08-17 09:28: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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This code is based on original Hugo Trilogy source code
|
|
|
|
*
|
|
|
|
* Copyright (c) 1989-1995 David P. Gray
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HUGO_PARSER_H
|
|
|
|
#define HUGO_PARSER_H
|
2011-04-24 08:34:27 +00:00
|
|
|
|
|
|
|
namespace Common {
|
|
|
|
struct Event;
|
|
|
|
}
|
|
|
|
|
2010-08-17 09:28:20 +00:00
|
|
|
namespace Hugo {
|
|
|
|
|
|
|
|
enum seqTextParser {
|
2010-10-10 09:47:19 +00:00
|
|
|
kTBExit = 0, kTBMaze, kTBNoPoint, kTBNoun, kTBVerb,
|
|
|
|
kTBEh, kTBUnusual, kTBHave, kTBNoUse, kTBDontHave,
|
|
|
|
kTBNeed, kTBOk, kCmtAny1, kCmtAny2, kCmtAny3,
|
|
|
|
kCmtClose, kTBIntro, kTBOutro, kTBUnusual_1d, kCmtAny4,
|
|
|
|
kCmtAny5, kTBExit_1d, kTBEh_1d, kTBEh_2d, kTBNoUse_2d
|
2010-08-17 09:28:20 +00:00
|
|
|
};
|
|
|
|
|
2011-02-20 09:37:41 +00:00
|
|
|
/**
|
|
|
|
* The following determines how a verb is acted on, for an object
|
|
|
|
*/
|
|
|
|
struct cmd {
|
2012-06-13 09:28:25 +00:00
|
|
|
uint16 _verbIndex; // the verb
|
|
|
|
uint16 _reqIndex; // ptr to list of required objects
|
|
|
|
uint16 _textDataNoCarryIndex; // ptr to string if any of above not carried
|
|
|
|
byte _reqState; // required state for verb to be done
|
|
|
|
byte _newState; // new states if verb done
|
|
|
|
uint16 _textDataWrongIndex; // ptr to string if wrong state
|
|
|
|
uint16 _textDataDoneIndex; // ptr to string if verb done
|
|
|
|
uint16 _actIndex; // Ptr to action list if verb done
|
2011-02-20 09:37:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Following is structure of verbs and nouns for 'background' objects
|
|
|
|
* These are objects that appear in the various screens, but nothing
|
|
|
|
* interesting ever happens with them. Rather than just be dumb and say
|
|
|
|
* "don't understand" we produce an interesting msg to keep user sane.
|
|
|
|
*/
|
2012-06-13 18:58:01 +00:00
|
|
|
struct Background {
|
2012-06-13 09:28:25 +00:00
|
|
|
uint16 _verbIndex;
|
|
|
|
uint16 _nounIndex;
|
|
|
|
int _commentIndex; // Index of comment produced on match
|
|
|
|
bool _matchFl; // TRUE if noun must match when present
|
|
|
|
byte _roomState; // "State" of room. Comments might differ.
|
|
|
|
byte _bonusIndex; // Index of bonus score (0 = no bonus)
|
2011-02-20 09:37:41 +00:00
|
|
|
};
|
|
|
|
|
2012-06-13 18:58:01 +00:00
|
|
|
typedef Background *ObjectList;
|
2011-02-20 09:37:41 +00:00
|
|
|
|
2010-08-17 09:28:20 +00:00
|
|
|
class Parser {
|
|
|
|
public:
|
2010-10-21 17:09:57 +00:00
|
|
|
Parser(HugoEngine *vm);
|
2010-10-10 07:43:42 +00:00
|
|
|
virtual ~Parser();
|
2010-08-17 09:28:20 +00:00
|
|
|
|
2011-02-02 21:12:51 +00:00
|
|
|
bool isWordPresent(char **wordArr) const;
|
2011-06-19 22:59:48 +00:00
|
|
|
|
2011-02-18 21:24:32 +00:00
|
|
|
uint16 getCmdDefaultVerbIdx(const uint16 index) const;
|
2011-06-19 22:59:48 +00:00
|
|
|
|
2010-12-10 07:08:54 +00:00
|
|
|
void charHandler();
|
|
|
|
void command(const char *format, ...);
|
2011-02-15 18:30:15 +00:00
|
|
|
void freeParser();
|
2011-01-04 08:36:03 +00:00
|
|
|
void keyHandler(Common::Event event);
|
2011-02-18 07:11:55 +00:00
|
|
|
void loadArrayReqs(Common::SeekableReadStream &in);
|
2011-02-15 09:15:21 +00:00
|
|
|
void loadBackgroundObjects(Common::ReadStream &in);
|
|
|
|
void loadCatchallList(Common::ReadStream &in);
|
|
|
|
void loadCmdList(Common::ReadStream &in);
|
2011-01-04 08:36:03 +00:00
|
|
|
void switchTurbo();
|
2011-02-15 09:15:21 +00:00
|
|
|
const char *useBG(const char *name);
|
2010-12-10 07:08:54 +00:00
|
|
|
|
2010-10-10 07:43:42 +00:00
|
|
|
virtual void lineHandler() = 0;
|
2011-02-02 21:12:51 +00:00
|
|
|
virtual void showInventory() const = 0;
|
2012-06-13 18:58:01 +00:00
|
|
|
virtual void takeObject(Object *obj) = 0;
|
2010-08-17 09:28:20 +00:00
|
|
|
|
2010-09-28 19:49:53 +00:00
|
|
|
protected:
|
2010-10-21 17:09:57 +00:00
|
|
|
HugoEngine *_vm;
|
2010-08-17 09:28:20 +00:00
|
|
|
|
2011-02-03 18:25:38 +00:00
|
|
|
int16 _cmdLineIndex; // Index into line
|
|
|
|
uint32 _cmdLineTick; // For flashing cursor
|
|
|
|
char _cmdLineCursor;
|
2012-06-13 18:58:01 +00:00
|
|
|
Command _cmdLine; // Build command line
|
2011-02-15 09:15:21 +00:00
|
|
|
uint16 _backgroundObjectsSize;
|
|
|
|
uint16 _cmdListSize;
|
|
|
|
|
|
|
|
uint16 **_arrayReqs;
|
2012-06-13 18:58:01 +00:00
|
|
|
Background **_backgroundObjects;
|
|
|
|
Background *_catchallList;
|
2011-02-15 09:15:21 +00:00
|
|
|
cmd **_cmdList;
|
2011-02-03 18:25:38 +00:00
|
|
|
|
2011-02-12 08:13:35 +00:00
|
|
|
const char *findNoun() const;
|
|
|
|
const char *findVerb() const;
|
2012-06-13 18:58:01 +00:00
|
|
|
void readBG(Common::ReadStream &in, Background &curBG);
|
2011-02-18 07:11:55 +00:00
|
|
|
void readCmd(Common::ReadStream &in, cmd &curCmd);
|
2011-02-02 21:12:51 +00:00
|
|
|
void showDosInventory() const;
|
2010-12-20 17:25:58 +00:00
|
|
|
|
|
|
|
bool _checkDoubleF1Fl; // Flag used to display user help or instructions
|
2010-08-17 09:28:20 +00:00
|
|
|
uint16 _getIndex; // Index into ring buffer
|
2010-12-20 17:25:58 +00:00
|
|
|
uint16 _putIndex;
|
2010-12-10 07:08:54 +00:00
|
|
|
char _ringBuffer[32]; // Ring buffer
|
2011-01-23 00:05:52 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
static const int kBlinksPerSec = 2; // Cursor blinks per second
|
2010-10-10 07:43:42 +00:00
|
|
|
};
|
2010-08-17 09:28:20 +00:00
|
|
|
|
2010-10-10 07:43:42 +00:00
|
|
|
class Parser_v1d : public Parser {
|
|
|
|
public:
|
2010-10-21 17:09:57 +00:00
|
|
|
Parser_v1d(HugoEngine *vm);
|
2010-10-10 07:43:42 +00:00
|
|
|
~Parser_v1d();
|
|
|
|
|
2010-10-12 21:12:54 +00:00
|
|
|
virtual void lineHandler();
|
2011-02-02 21:12:51 +00:00
|
|
|
virtual void showInventory() const;
|
2012-06-13 18:58:01 +00:00
|
|
|
virtual void takeObject(Object *obj);
|
2010-10-10 07:43:42 +00:00
|
|
|
|
|
|
|
protected:
|
2012-06-13 18:58:01 +00:00
|
|
|
virtual void dropObject(Object *obj);
|
2010-12-20 17:25:58 +00:00
|
|
|
|
2011-02-12 08:13:35 +00:00
|
|
|
const char *findNextNoun(const char *noun) const;
|
2012-06-13 18:58:01 +00:00
|
|
|
bool isBackgroundWord_v1(const char *noun, const char *verb, ObjectList obj) const;
|
|
|
|
bool isCatchallVerb_v1(bool testNounFl, const char *noun, const char *verb, ObjectList obj) const;
|
|
|
|
bool isGenericVerb_v1(const char *word, Object *obj);
|
|
|
|
bool isNear_v1(const char *verb, const char *noun, Object *obj, char *comment) const;
|
|
|
|
bool isObjectVerb_v1(const char *word, Object *obj);
|
2010-08-17 09:28:20 +00:00
|
|
|
};
|
|
|
|
|
2010-10-10 07:43:42 +00:00
|
|
|
class Parser_v2d : public Parser_v1d {
|
|
|
|
public:
|
2010-10-21 17:09:57 +00:00
|
|
|
Parser_v2d(HugoEngine *vm);
|
2010-10-10 07:43:42 +00:00
|
|
|
~Parser_v2d();
|
|
|
|
|
|
|
|
void lineHandler();
|
|
|
|
};
|
2010-10-25 13:31:01 +00:00
|
|
|
|
2010-12-20 17:25:58 +00:00
|
|
|
class Parser_v3d : public Parser_v1d {
|
2010-10-12 21:12:54 +00:00
|
|
|
public:
|
2010-10-21 17:09:57 +00:00
|
|
|
Parser_v3d(HugoEngine *vm);
|
2010-10-12 21:12:54 +00:00
|
|
|
~Parser_v3d();
|
|
|
|
|
2010-12-10 07:08:54 +00:00
|
|
|
virtual void lineHandler();
|
|
|
|
protected:
|
2012-06-13 18:58:01 +00:00
|
|
|
void dropObject(Object *obj);
|
|
|
|
bool isBackgroundWord_v3(ObjectList obj) const;
|
|
|
|
bool isCatchallVerb_v3(ObjectList obj) const;
|
|
|
|
bool isGenericVerb_v3(Object *obj, char *comment);
|
|
|
|
bool isNear_v3(Object *obj, const char *verb, char *comment) const;
|
|
|
|
bool isObjectVerb_v3(Object *obj, char *comment);
|
|
|
|
void takeObject(Object *obj);
|
2010-12-10 07:08:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class Parser_v1w : public Parser_v3d {
|
|
|
|
public:
|
|
|
|
Parser_v1w(HugoEngine *vm);
|
|
|
|
~Parser_v1w();
|
|
|
|
|
2011-02-02 21:12:51 +00:00
|
|
|
virtual void showInventory() const;
|
2011-01-04 08:36:03 +00:00
|
|
|
|
2010-12-10 07:08:54 +00:00
|
|
|
void lineHandler();
|
2010-10-12 21:12:54 +00:00
|
|
|
};
|
|
|
|
|
2010-08-27 09:48:53 +00:00
|
|
|
} // End of namespace Hugo
|
|
|
|
|
2010-08-17 09:28:20 +00:00
|
|
|
#endif //HUGO_PARSER_H
|