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.
|
|
|
|
*
|
|
|
|
* $URL$
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
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
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
2010-08-17 09:28:20 +00:00
|
|
|
|
2010-12-10 07:08:54 +00:00
|
|
|
void charHandler();
|
|
|
|
void command(const char *format, ...);
|
2011-01-04 08:36:03 +00:00
|
|
|
void keyHandler(Common::Event event);
|
|
|
|
void switchTurbo();
|
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;
|
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;
|
|
|
|
command_t _cmdLine; // Build command line
|
|
|
|
|
2011-02-02 21:12:51 +00:00
|
|
|
char *findNoun() const;
|
|
|
|
char *findVerb() const;
|
|
|
|
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;
|
2010-10-10 07:43:42 +00:00
|
|
|
|
|
|
|
protected:
|
2010-12-20 17:25:58 +00:00
|
|
|
virtual void dropObject(object_t *obj);
|
|
|
|
virtual void takeObject(object_t *obj);
|
|
|
|
|
2011-02-02 21:12:51 +00:00
|
|
|
char *findNextNoun(char *noun) const;
|
2011-02-11 07:42:35 +00:00
|
|
|
bool isBackgroundWord_v1(char *noun, char *verb, objectList_t obj) const;
|
|
|
|
bool isCatchallVerb_v1(bool testNounFl, char *noun, char *verb, objectList_t obj) const;
|
|
|
|
bool isGenericVerb_v1(char *word, object_t *obj);
|
|
|
|
bool isNear_v1(char *verb, char *noun, object_t *obj, char *comment) const;
|
|
|
|
bool isObjectVerb_v1(char *word, object_t *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:
|
2010-12-20 17:25:58 +00:00
|
|
|
void dropObject(object_t *obj);
|
2011-02-11 07:42:35 +00:00
|
|
|
bool isBackgroundWord_v3(objectList_t obj) const;
|
|
|
|
bool isCatchallVerb_v3(objectList_t obj) const;
|
|
|
|
bool isGenericVerb_v3(object_t *obj, char *comment);
|
|
|
|
bool isNear_v3(object_t *obj, char *verb, char *comment) const;
|
|
|
|
bool isObjectVerb_v3(object_t *obj, char *comment);
|
2010-12-10 07:08:54 +00:00
|
|
|
void takeObject(object_t *obj);
|
|
|
|
};
|
|
|
|
|
|
|
|
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
|