2007-05-30 21:56: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.
|
2007-01-14 21:29:12 +00:00
|
|
|
*
|
|
|
|
* 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$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2007-02-19 22:34:00 +00:00
|
|
|
#include "parallaction/parallaction.h"
|
2007-05-13 14:38:05 +00:00
|
|
|
|
2007-01-14 21:29:12 +00:00
|
|
|
|
|
|
|
namespace Parallaction {
|
|
|
|
|
2008-08-02 03:19:45 +00:00
|
|
|
#define MAX_TOKENS 50
|
|
|
|
|
2008-08-02 02:24:36 +00:00
|
|
|
int _numTokens;
|
2008-08-02 03:19:45 +00:00
|
|
|
char _tokens[MAX_TOKENS][MAX_TOKEN_LEN];
|
2007-01-14 21:29:12 +00:00
|
|
|
|
2008-06-03 18:24:54 +00:00
|
|
|
Script::Script(Common::ReadStream *input, bool disposeSource) : _input(input), _disposeSource(disposeSource), _line(0) {}
|
2007-01-14 21:29:12 +00:00
|
|
|
|
2007-03-04 15:00:50 +00:00
|
|
|
Script::~Script() {
|
|
|
|
if (_disposeSource)
|
2007-04-03 22:03:21 +00:00
|
|
|
delete _input;
|
2007-01-14 21:29:12 +00:00
|
|
|
}
|
|
|
|
|
2007-02-20 09:17:28 +00:00
|
|
|
char *Script::readLine(char *buf, size_t bufSize) {
|
2007-02-19 22:34:00 +00:00
|
|
|
|
|
|
|
uint16 _si;
|
|
|
|
char v2 = 0;
|
|
|
|
for ( _si = 0; _si<bufSize; _si++) {
|
|
|
|
|
2007-04-03 22:03:21 +00:00
|
|
|
v2 = _input->readSByte();
|
|
|
|
|
2007-08-12 19:11:37 +00:00
|
|
|
if (v2 == 0xA || v2 == 0xD || _input->eos()) break;
|
2007-04-03 22:03:21 +00:00
|
|
|
if (!_input->eos() && _si < bufSize) buf[_si] = v2;
|
2007-02-19 22:34:00 +00:00
|
|
|
}
|
|
|
|
|
2007-10-14 21:32:43 +00:00
|
|
|
_line++;
|
|
|
|
|
2007-04-03 22:03:21 +00:00
|
|
|
if (_si == 0 && _input->eos())
|
2007-02-19 22:34:00 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
buf[_si] = 0xA;
|
|
|
|
buf[_si+1] = '\0';
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-10-14 21:32:43 +00:00
|
|
|
void Script::clearTokens() {
|
2007-02-19 14:11:56 +00:00
|
|
|
|
2008-08-02 03:19:45 +00:00
|
|
|
for (uint16 i = 0; i < MAX_TOKENS; i++)
|
2007-02-19 14:11:56 +00:00
|
|
|
_tokens[i][0] = '\0';
|
|
|
|
|
2008-08-02 02:24:36 +00:00
|
|
|
_numTokens = 0;
|
|
|
|
|
2007-02-19 14:11:56 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2007-10-14 21:32:43 +00:00
|
|
|
void Script::skip(const char* endToken) {
|
2007-08-24 20:14:51 +00:00
|
|
|
|
|
|
|
while (scumm_stricmp(_tokens[0], endToken)) {
|
2007-10-14 21:32:43 +00:00
|
|
|
readLineToken(true);
|
2007-08-24 20:14:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2007-02-20 09:52:07 +00:00
|
|
|
//
|
2007-07-08 12:39:39 +00:00
|
|
|
// Scans 's' until one of the stop-chars in 'brk' is found, building a token.
|
|
|
|
// If the routine encounters quotes, it will extract the contained text and
|
|
|
|
// make a proper token. When scanning inside quotes, 'brk' is ignored and
|
|
|
|
// only newlines are considered stop-chars.
|
|
|
|
//
|
|
|
|
// The routine returns the unparsed portion of the input string 's'.
|
|
|
|
//
|
2008-08-14 07:14:34 +00:00
|
|
|
char *Script::parseNextToken(char *s, char *tok, uint16 count, const char *brk, bool ignoreQuotes) {
|
2007-02-20 09:52:07 +00:00
|
|
|
|
2007-07-08 09:22:08 +00:00
|
|
|
enum STATES { NORMAL, QUOTED };
|
|
|
|
|
|
|
|
STATES state = NORMAL;
|
|
|
|
|
|
|
|
while (count > 0) {
|
|
|
|
|
|
|
|
switch (state) {
|
|
|
|
case NORMAL:
|
|
|
|
if (*s == '\0') {
|
|
|
|
*tok = '\0';
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strchr(brk, *s)) {
|
|
|
|
*tok = '\0';
|
|
|
|
return ++s;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*s == '"') {
|
2007-07-08 13:39:23 +00:00
|
|
|
if (ignoreQuotes) {
|
|
|
|
*tok++ = *s++;
|
|
|
|
count--;
|
|
|
|
} else {
|
|
|
|
state = QUOTED;
|
|
|
|
s++;
|
|
|
|
}
|
2007-07-08 09:22:08 +00:00
|
|
|
} else {
|
|
|
|
*tok++ = *s++;
|
|
|
|
count--;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case QUOTED:
|
|
|
|
if (*s == '\0') {
|
|
|
|
*tok = '\0';
|
|
|
|
return s;
|
|
|
|
}
|
2007-07-08 12:39:39 +00:00
|
|
|
if (*s == '"' || *s == '\n' || *s == '\t') {
|
2007-07-08 09:22:08 +00:00
|
|
|
*tok = '\0';
|
|
|
|
return ++s;
|
|
|
|
}
|
|
|
|
|
|
|
|
*tok++ = *s++;
|
|
|
|
count--;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-02-20 09:52:07 +00:00
|
|
|
}
|
|
|
|
|
2007-07-08 12:39:39 +00:00
|
|
|
*tok = '\0';
|
2007-12-16 16:03:04 +00:00
|
|
|
// TODO: if execution flows here, make *REALLY* sure everything has been parsed
|
|
|
|
// out of the input string. This is what is supposed to happen, but never ever
|
|
|
|
// allocated time to properly check.
|
2007-07-08 12:39:39 +00:00
|
|
|
|
|
|
|
return tok;
|
2007-07-08 09:22:08 +00:00
|
|
|
|
2007-02-20 09:52:07 +00:00
|
|
|
}
|
|
|
|
|
2007-10-14 21:32:43 +00:00
|
|
|
uint16 Script::fillTokens(char* line) {
|
2007-01-14 21:29:12 +00:00
|
|
|
|
2007-02-19 14:09:13 +00:00
|
|
|
uint16 i = 0;
|
2008-08-02 03:19:45 +00:00
|
|
|
while (strlen(line) > 0 && i < MAX_TOKENS) {
|
2008-02-03 17:06:45 +00:00
|
|
|
line = parseNextToken(line, _tokens[i], MAX_TOKEN_LEN, " \t\n");
|
2007-02-19 14:06:47 +00:00
|
|
|
line = Common::ltrim(line);
|
|
|
|
i++;
|
2007-01-14 21:29:12 +00:00
|
|
|
}
|
|
|
|
|
2008-08-02 02:24:36 +00:00
|
|
|
_numTokens = i;
|
|
|
|
|
2007-02-19 14:06:47 +00:00
|
|
|
return i;
|
2007-01-14 21:29:12 +00:00
|
|
|
}
|
|
|
|
|
2008-02-05 09:55:17 +00:00
|
|
|
bool isCommentLine(char *text) {
|
|
|
|
return text[0] == '#';
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isStartOfCommentBlock(char *text) {
|
|
|
|
return (text[0] == '[');
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isEndOfCommentBlock(char *text) {
|
|
|
|
return (text[0] == ']');
|
|
|
|
}
|
|
|
|
|
2007-10-14 21:32:43 +00:00
|
|
|
uint16 Script::readLineToken(bool errorOnEOF) {
|
2007-02-19 14:09:13 +00:00
|
|
|
|
2007-02-19 14:11:56 +00:00
|
|
|
clearTokens();
|
2007-02-19 14:09:13 +00:00
|
|
|
|
2008-08-19 14:07:48 +00:00
|
|
|
bool inBlockComment = false;
|
2008-02-05 09:55:17 +00:00
|
|
|
|
2007-02-19 14:09:13 +00:00
|
|
|
char buf[200];
|
|
|
|
char *line = NULL;
|
2008-08-19 14:07:48 +00:00
|
|
|
char *start;
|
2007-02-19 14:09:13 +00:00
|
|
|
do {
|
2007-10-14 21:32:43 +00:00
|
|
|
line = readLine(buf, 200);
|
2008-02-05 09:55:17 +00:00
|
|
|
|
2007-02-19 14:09:13 +00:00
|
|
|
if (line == NULL) {
|
2007-02-19 22:34:00 +00:00
|
|
|
if (errorOnEOF)
|
|
|
|
error("unexpected end of file while parsing");
|
|
|
|
else
|
|
|
|
return 0;
|
2007-02-19 14:09:13 +00:00
|
|
|
}
|
2008-08-19 14:07:48 +00:00
|
|
|
start = Common::ltrim(line);
|
2008-02-05 09:55:17 +00:00
|
|
|
|
2008-08-19 14:07:48 +00:00
|
|
|
if (isCommentLine(start)) {
|
|
|
|
// ignore this line
|
|
|
|
start[0] = '\0';
|
2008-02-05 09:55:17 +00:00
|
|
|
} else
|
2008-08-19 14:07:48 +00:00
|
|
|
if (isStartOfCommentBlock(start)) {
|
|
|
|
// mark this and the following lines as comment
|
2008-02-05 09:55:17 +00:00
|
|
|
inBlockComment = true;
|
|
|
|
} else
|
2008-08-19 14:07:48 +00:00
|
|
|
if (isEndOfCommentBlock(start)) {
|
|
|
|
// comment is finished, so stop ignoring
|
2008-02-05 09:55:17 +00:00
|
|
|
inBlockComment = false;
|
2008-08-19 14:07:48 +00:00
|
|
|
// the current line must be skipped, though,
|
|
|
|
// as it contains the end-of-comment marker
|
|
|
|
start[0] = '\0';
|
2008-02-05 09:55:17 +00:00
|
|
|
}
|
|
|
|
|
2008-08-19 14:07:48 +00:00
|
|
|
} while (inBlockComment || strlen(start) == 0);
|
2007-02-19 14:09:13 +00:00
|
|
|
|
2008-08-19 14:07:48 +00:00
|
|
|
return fillTokens(start);
|
2007-02-19 14:09:13 +00:00
|
|
|
}
|
2007-02-19 12:53:59 +00:00
|
|
|
|
2008-05-04 15:09:23 +00:00
|
|
|
|
|
|
|
void Parser::reset() {
|
|
|
|
_currentOpcodes = 0;
|
|
|
|
_currentStatements = 0;
|
2008-05-11 08:55:16 +00:00
|
|
|
|
|
|
|
_statements.clear();
|
|
|
|
_opcodes.clear();
|
2008-05-04 15:09:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Parser::pushTables(OpcodeSet *opcodes, Table *statements) {
|
|
|
|
_opcodes.push(_currentOpcodes);
|
|
|
|
_statements.push(_currentStatements);
|
|
|
|
|
|
|
|
_currentOpcodes = opcodes;
|
|
|
|
_currentStatements = statements;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Parser::popTables() {
|
|
|
|
assert(_opcodes.size() > 0);
|
|
|
|
|
|
|
|
_currentOpcodes = _opcodes.pop();
|
|
|
|
_currentStatements = _statements.pop();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Parser::parseStatement() {
|
|
|
|
assert(_currentOpcodes != 0);
|
|
|
|
|
|
|
|
_lookup = _currentStatements->lookup(_tokens[0]);
|
|
|
|
|
|
|
|
debugC(9, kDebugParser, "parseStatement: %s (lookup = %i)", _tokens[0], _lookup);
|
|
|
|
|
|
|
|
(*(*_currentOpcodes)[_lookup])();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-08-02 02:24:36 +00:00
|
|
|
#define BLOCK_BASE 100
|
|
|
|
|
|
|
|
class StatementDef {
|
|
|
|
protected:
|
|
|
|
Common::String makeLineFromTokens() {
|
|
|
|
Common::String space(" ");
|
|
|
|
Common::String newLine("\n");
|
|
|
|
Common::String text;
|
|
|
|
for (int i = 0; i < _numTokens; i++)
|
|
|
|
text += (Common::String(_tokens[i]) + space);
|
|
|
|
text.deleteLastChar();
|
|
|
|
text += newLine;
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
2008-08-02 02:43:05 +00:00
|
|
|
uint _score;
|
|
|
|
const char* _name;
|
2008-08-02 02:24:36 +00:00
|
|
|
|
|
|
|
|
2008-08-02 02:43:05 +00:00
|
|
|
StatementDef(uint score, const char *name) : _score(score), _name(name) { }
|
|
|
|
virtual ~StatementDef() { }
|
2008-08-02 02:24:36 +00:00
|
|
|
|
2008-08-02 02:43:05 +00:00
|
|
|
virtual Common::String makeLine(Script &script) = 0;
|
2008-08-02 02:24:36 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class SimpleStatementDef : public StatementDef {
|
|
|
|
|
|
|
|
public:
|
|
|
|
SimpleStatementDef(uint score, const char *name) : StatementDef(score, name) { }
|
|
|
|
|
|
|
|
Common::String makeLine(Script &script) {
|
|
|
|
return makeLineFromTokens();
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class BlockStatementDef : public StatementDef {
|
|
|
|
|
2008-08-02 02:43:05 +00:00
|
|
|
const char* _ending1;
|
|
|
|
const char* _ending2;
|
2008-08-02 02:24:36 +00:00
|
|
|
|
|
|
|
public:
|
2008-08-02 02:43:05 +00:00
|
|
|
BlockStatementDef(uint score, const char *name, const char *ending1, const char *ending2 = 0) : StatementDef(score, name), _ending1(ending1),
|
|
|
|
_ending2(ending2) { }
|
2008-08-02 02:24:36 +00:00
|
|
|
|
|
|
|
Common::String makeLine(Script &script) {
|
|
|
|
Common::String text = makeLineFromTokens();
|
|
|
|
bool end;
|
|
|
|
do {
|
|
|
|
script.readLineToken(true);
|
|
|
|
text += makeLineFromTokens();
|
2008-08-02 02:43:05 +00:00
|
|
|
end = !scumm_stricmp(_ending1, _tokens[0]) || (_ending2 && !scumm_stricmp(_ending2, _tokens[0]));
|
2008-08-02 02:24:36 +00:00
|
|
|
} while (!end);
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
class CommentStatementDef : public StatementDef {
|
|
|
|
|
|
|
|
Common::String parseComment(Script &script) {
|
|
|
|
Common::String result;
|
2008-08-02 03:19:45 +00:00
|
|
|
char buf[401];
|
2008-08-02 02:24:36 +00:00
|
|
|
|
|
|
|
do {
|
2008-08-02 03:19:45 +00:00
|
|
|
script.readLine(buf, 400);
|
2008-08-02 02:24:36 +00:00
|
|
|
buf[strlen(buf)-1] = '\0';
|
|
|
|
if (!scumm_stricmp(buf, "endtext"))
|
|
|
|
break;
|
|
|
|
result += Common::String(buf) + "\n";
|
|
|
|
} while (true);
|
|
|
|
result += "endtext\n";
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
CommentStatementDef(uint score, const char *name) : StatementDef(score, name) { }
|
|
|
|
|
|
|
|
Common::String makeLine(Script &script) {
|
|
|
|
Common::String text = makeLineFromTokens();
|
|
|
|
text += parseComment(script);
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
PreProcessor::PreProcessor() {
|
|
|
|
_defs.push_back(new SimpleStatementDef(1, "disk" ));
|
|
|
|
_defs.push_back(new SimpleStatementDef(2, "location" ));
|
|
|
|
_defs.push_back(new SimpleStatementDef(3, "localflags" ));
|
|
|
|
_defs.push_back(new SimpleStatementDef(4, "flags" ));
|
|
|
|
_defs.push_back(new SimpleStatementDef(5, "zeta" ));
|
|
|
|
_defs.push_back(new SimpleStatementDef(6, "music" ));
|
|
|
|
_defs.push_back(new SimpleStatementDef(7, "sound" ));
|
|
|
|
_defs.push_back(new SimpleStatementDef(8, "mask" ));
|
|
|
|
_defs.push_back(new SimpleStatementDef(9, "path" ));
|
|
|
|
_defs.push_back(new SimpleStatementDef(10, "character" ));
|
|
|
|
_defs.push_back(new CommentStatementDef(11, "comment" ));
|
|
|
|
_defs.push_back(new CommentStatementDef(12, "endcomment" ));
|
|
|
|
_defs.push_back(new BlockStatementDef(13, "ifchar", "endif" ));
|
|
|
|
_defs.push_back(new BlockStatementDef(BLOCK_BASE, "zone", "endanimation", "endzone" ));
|
|
|
|
_defs.push_back(new BlockStatementDef(BLOCK_BASE, "animation", "endanimation", "endzone" ));
|
|
|
|
_defs.push_back(new BlockStatementDef(1000, "commands", "endcommands" ));
|
|
|
|
_defs.push_back(new BlockStatementDef(1001, "acommands", "endcommands" ));
|
|
|
|
_defs.push_back(new BlockStatementDef(1002, "escape", "endcommands" ));
|
|
|
|
_defs.push_back(new SimpleStatementDef(2000, "endlocation"));
|
|
|
|
}
|
|
|
|
|
|
|
|
PreProcessor::~PreProcessor() {
|
|
|
|
DefList::iterator it = _defs.begin();
|
|
|
|
for (; it != _defs.end(); it++) {
|
|
|
|
delete *it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
StatementDef* PreProcessor::findDef(const char* name) {
|
|
|
|
DefList::iterator it = _defs.begin();
|
|
|
|
for (; it != _defs.end(); it++) {
|
2008-08-02 02:43:05 +00:00
|
|
|
if (!scumm_stricmp((*it)->_name, name)) {
|
2008-08-02 02:24:36 +00:00
|
|
|
return *it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uint PreProcessor::getDefScore(StatementDef* def) {
|
2008-08-02 02:43:05 +00:00
|
|
|
if (def->_score == BLOCK_BASE) {
|
2008-08-02 02:24:36 +00:00
|
|
|
_numZones++;
|
|
|
|
return (_numZones + BLOCK_BASE);
|
|
|
|
}
|
2008-08-02 02:43:05 +00:00
|
|
|
return def->_score;
|
2008-08-02 02:24:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PreProcessor::preprocessScript(Script &script, StatementList &list) {
|
|
|
|
_numZones = 0;
|
|
|
|
Common::String text;
|
|
|
|
do {
|
|
|
|
script.readLineToken(false);
|
|
|
|
if (_numTokens == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
StatementDef *def = findDef(_tokens[0]);
|
2008-08-19 14:07:48 +00:00
|
|
|
if (!def) {
|
|
|
|
error("PreProcessor::preprocessScript: unknown statement '%s' found\n", _tokens[0]);
|
|
|
|
}
|
2008-08-02 02:24:36 +00:00
|
|
|
|
|
|
|
text = def->makeLine(script);
|
|
|
|
int score = getDefScore(def);
|
2008-08-02 02:43:05 +00:00
|
|
|
list.push_back(StatementListNode(score, def->_name, text));
|
2008-08-02 02:24:36 +00:00
|
|
|
} while (true);
|
|
|
|
Common::sort(list.begin(), list.end());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void testPreprocessing(Parallaction *vm, const char *filename) {
|
|
|
|
Script *script = vm->_disk->loadLocation(filename);
|
|
|
|
StatementList list;
|
|
|
|
PreProcessor pp;
|
|
|
|
pp.preprocessScript(*script, list);
|
|
|
|
delete script;
|
|
|
|
Common::DumpFile dump;
|
|
|
|
dump.open(filename);
|
|
|
|
StatementList::iterator it = list.begin();
|
|
|
|
for ( ; it != list.end(); it++) {
|
|
|
|
dump.write((*it)._text.c_str(), (*it)._text.size());
|
|
|
|
}
|
|
|
|
dump.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-14 21:29:12 +00:00
|
|
|
} // namespace Parallaction
|