mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 21:31:53 +00:00
Separated the parser code
svn-id: r47480
This commit is contained in:
parent
4fcc82e7a6
commit
df149e1509
@ -30,7 +30,6 @@
|
||||
#include "sci/debug.h"
|
||||
#include "sci/event.h"
|
||||
#include "sci/resource.h"
|
||||
#include "sci/vocabulary.h"
|
||||
#include "sci/engine/savegame.h"
|
||||
#include "sci/engine/state.h"
|
||||
#include "sci/engine/gc.h"
|
||||
@ -42,10 +41,11 @@
|
||||
#include "sci/sound/music.h"
|
||||
#endif
|
||||
#include "sci/sound/drivers/mididriver.h"
|
||||
#include "sci/vocabulary.h"
|
||||
#include "sci/graphics/gui.h"
|
||||
#include "sci/graphics/cursor.h"
|
||||
|
||||
#include "sci/parser/vocabulary.h"
|
||||
|
||||
#include "graphics/video/avi_decoder.h"
|
||||
#include "sci/video/seq_decoder.h"
|
||||
#ifdef ENABLE_SCI32
|
||||
|
@ -31,7 +31,6 @@
|
||||
#include "common/rect.h"
|
||||
|
||||
#include "sci/sci.h" // for USE_OLD_MUSIC_FUNCTIONS
|
||||
#include "sci/vocabulary.h"
|
||||
#include "sci/engine/vm_types.h" // for reg_t
|
||||
#include "sci/engine/vm.h"
|
||||
|
||||
|
210
engines/sci/engine/kparse.cpp
Normal file
210
engines/sci/engine/kparse.cpp
Normal file
@ -0,0 +1,210 @@
|
||||
/* 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$
|
||||
*
|
||||
*/
|
||||
|
||||
/* String and parser handling */
|
||||
|
||||
#include "sci/resource.h"
|
||||
#include "sci/engine/state.h"
|
||||
#include "sci/engine/message.h"
|
||||
#include "sci/engine/kernel.h"
|
||||
|
||||
namespace Sci {
|
||||
|
||||
/*************************************************************/
|
||||
/* Parser */
|
||||
/**********/
|
||||
|
||||
|
||||
reg_t kSaid(EngineState *s, int argc, reg_t *argv) {
|
||||
reg_t heap_said_block = argv[0];
|
||||
byte *said_block;
|
||||
int new_lastmatch;
|
||||
#ifdef DEBUG_PARSER
|
||||
const int debug_parser = 1;
|
||||
#else
|
||||
const int debug_parser = 0;
|
||||
#endif
|
||||
|
||||
if (!heap_said_block.segment)
|
||||
return NULL_REG;
|
||||
|
||||
said_block = (byte *)s->_segMan->derefBulkPtr(heap_said_block, 0);
|
||||
|
||||
if (!said_block) {
|
||||
warning("Said on non-string, pointer %04x:%04x", PRINT_REG(heap_said_block));
|
||||
return NULL_REG;
|
||||
}
|
||||
|
||||
#ifdef DEBUG_PARSER
|
||||
debugC(2, kDebugLevelParser, "Said block:", 0);
|
||||
s->_voc->decipherSaidBlock(said_block);
|
||||
#endif
|
||||
|
||||
if (s->parser_event.isNull() || (GET_SEL32V(s->_segMan, s->parser_event, claimed))) {
|
||||
return NULL_REG;
|
||||
}
|
||||
|
||||
new_lastmatch = said(s, said_block, debug_parser);
|
||||
if (new_lastmatch != SAID_NO_MATCH) { /* Build and possibly display a parse tree */
|
||||
|
||||
#ifdef DEBUG_PARSER
|
||||
printf("kSaid: Match.\n");
|
||||
#endif
|
||||
|
||||
s->r_acc = make_reg(0, 1);
|
||||
|
||||
if (new_lastmatch != SAID_PARTIAL_MATCH)
|
||||
PUT_SEL32V(s->_segMan, s->parser_event, claimed, 1);
|
||||
|
||||
} else {
|
||||
return NULL_REG;
|
||||
}
|
||||
return s->r_acc;
|
||||
}
|
||||
|
||||
|
||||
reg_t kSetSynonyms(EngineState *s, int argc, reg_t *argv) {
|
||||
SegManager *segMan = s->_segMan;
|
||||
reg_t object = argv[0];
|
||||
List *list;
|
||||
Node *node;
|
||||
int script;
|
||||
int numSynonyms = 0;
|
||||
|
||||
s->_voc->clearSynonyms();
|
||||
|
||||
list = s->_segMan->lookupList(GET_SEL32(segMan, object, elements));
|
||||
node = s->_segMan->lookupNode(list->first);
|
||||
|
||||
while (node) {
|
||||
reg_t objpos = node->value;
|
||||
int seg;
|
||||
|
||||
script = GET_SEL32V(segMan, objpos, number);
|
||||
seg = s->_segMan->getScriptSegment(script);
|
||||
|
||||
if (seg > 0)
|
||||
numSynonyms = s->_segMan->getScript(seg)->getSynonymsNr();
|
||||
|
||||
if (numSynonyms) {
|
||||
byte *synonyms = s->_segMan->getScript(seg)->getSynonyms();
|
||||
|
||||
if (synonyms) {
|
||||
debugC(2, kDebugLevelParser, "Setting %d synonyms for script.%d\n",
|
||||
numSynonyms, script);
|
||||
|
||||
if (numSynonyms > 16384) {
|
||||
error("Segtable corruption: script.%03d has %d synonyms",
|
||||
script, numSynonyms);
|
||||
/* We used to reset the corrupted value here. I really don't think it's appropriate.
|
||||
* Lars */
|
||||
} else
|
||||
for (int i = 0; i < numSynonyms; i++) {
|
||||
synonym_t tmp;
|
||||
tmp.replaceant = (int16)READ_LE_UINT16(synonyms + i * 4);
|
||||
tmp.replacement = (int16)READ_LE_UINT16(synonyms + i * 4 + 2);
|
||||
s->_voc->addSynonym(tmp);
|
||||
}
|
||||
} else
|
||||
warning("Synonyms of script.%03d were requested, but script is not available", script);
|
||||
|
||||
}
|
||||
|
||||
node = s->_segMan->lookupNode(node->succ);
|
||||
}
|
||||
|
||||
debugC(2, kDebugLevelParser, "A total of %d synonyms are active now.\n", numSynonyms);
|
||||
|
||||
return s->r_acc;
|
||||
}
|
||||
|
||||
|
||||
|
||||
reg_t kParse(EngineState *s, int argc, reg_t *argv) {
|
||||
SegManager *segMan = s->_segMan;
|
||||
reg_t stringpos = argv[0];
|
||||
Common::String string = s->_segMan->getString(stringpos);
|
||||
char *error;
|
||||
ResultWordList words;
|
||||
reg_t event = argv[1];
|
||||
Vocabulary *voc = s->_voc;
|
||||
|
||||
s->parser_event = event;
|
||||
|
||||
bool res = voc->tokenizeString(words, string.c_str(), &error);
|
||||
s->parserIsValid = false; /* not valid */
|
||||
|
||||
if (res && !words.empty()) {
|
||||
s->_voc->synonymizeTokens(words);
|
||||
|
||||
s->r_acc = make_reg(0, 1);
|
||||
|
||||
#ifdef DEBUG_PARSER
|
||||
debugC(2, kDebugLevelParser, "Parsed to the following blocks:\n", 0);
|
||||
|
||||
for (ResultWordList::const_iterator i = words.begin(); i != words.end(); ++i)
|
||||
debugC(2, kDebugLevelParser, " Type[%04x] Group[%04x]\n", i->_class, i->_group);
|
||||
#endif
|
||||
|
||||
int syntax_fail = voc->parseGNF(words);
|
||||
|
||||
if (syntax_fail) {
|
||||
s->r_acc = make_reg(0, 1);
|
||||
PUT_SEL32V(segMan, event, claimed, 1);
|
||||
|
||||
invoke_selector(INV_SEL(s->_gameObj, syntaxFail, kStopOnInvalidSelector), 2, s->parser_base, stringpos);
|
||||
/* Issue warning */
|
||||
|
||||
debugC(2, kDebugLevelParser, "Tree building failed\n");
|
||||
|
||||
} else {
|
||||
s->parserIsValid = true;
|
||||
PUT_SEL32V(segMan, event, claimed, 0);
|
||||
|
||||
#ifdef DEBUG_PARSER
|
||||
s->_voc->dumpParseTree();
|
||||
#endif
|
||||
}
|
||||
|
||||
} else {
|
||||
|
||||
s->r_acc = make_reg(0, 0);
|
||||
PUT_SEL32V(segMan, event, claimed, 1);
|
||||
if (error) {
|
||||
s->_segMan->strcpy(s->parser_base, error);
|
||||
debugC(2, kDebugLevelParser, "Word unknown: %s\n", error);
|
||||
/* Issue warning: */
|
||||
|
||||
invoke_selector(INV_SEL(s->_gameObj, wordFail, kStopOnInvalidSelector), 2, s->parser_base, stringpos);
|
||||
free(error);
|
||||
return make_reg(0, 1); /* Tell them that it didn't work */
|
||||
}
|
||||
}
|
||||
|
||||
return s->r_acc;
|
||||
}
|
||||
|
||||
|
||||
} // End of namespace Sci
|
@ -66,182 +66,6 @@ Common::String kernel_lookup_text(EngineState *s, reg_t address, int index) {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*************************************************************/
|
||||
/* Parser */
|
||||
/**********/
|
||||
|
||||
|
||||
reg_t kSaid(EngineState *s, int argc, reg_t *argv) {
|
||||
reg_t heap_said_block = argv[0];
|
||||
byte *said_block;
|
||||
int new_lastmatch;
|
||||
#ifdef DEBUG_PARSER
|
||||
const int debug_parser = 1;
|
||||
#else
|
||||
const int debug_parser = 0;
|
||||
#endif
|
||||
|
||||
if (!heap_said_block.segment)
|
||||
return NULL_REG;
|
||||
|
||||
said_block = (byte *)s->_segMan->derefBulkPtr(heap_said_block, 0);
|
||||
|
||||
if (!said_block) {
|
||||
warning("Said on non-string, pointer %04x:%04x", PRINT_REG(heap_said_block));
|
||||
return NULL_REG;
|
||||
}
|
||||
|
||||
#ifdef DEBUG_PARSER
|
||||
debugC(2, kDebugLevelParser, "Said block:", 0);
|
||||
s->_voc->decipherSaidBlock(said_block);
|
||||
#endif
|
||||
|
||||
if (s->parser_event.isNull() || (GET_SEL32V(s->_segMan, s->parser_event, claimed))) {
|
||||
return NULL_REG;
|
||||
}
|
||||
|
||||
new_lastmatch = said(s, said_block, debug_parser);
|
||||
if (new_lastmatch != SAID_NO_MATCH) { /* Build and possibly display a parse tree */
|
||||
|
||||
#ifdef DEBUG_PARSER
|
||||
printf("kSaid: Match.\n");
|
||||
#endif
|
||||
|
||||
s->r_acc = make_reg(0, 1);
|
||||
|
||||
if (new_lastmatch != SAID_PARTIAL_MATCH)
|
||||
PUT_SEL32V(s->_segMan, s->parser_event, claimed, 1);
|
||||
|
||||
} else {
|
||||
return NULL_REG;
|
||||
}
|
||||
return s->r_acc;
|
||||
}
|
||||
|
||||
|
||||
reg_t kSetSynonyms(EngineState *s, int argc, reg_t *argv) {
|
||||
SegManager *segMan = s->_segMan;
|
||||
reg_t object = argv[0];
|
||||
List *list;
|
||||
Node *node;
|
||||
int script;
|
||||
int numSynonyms = 0;
|
||||
|
||||
s->_voc->clearSynonyms();
|
||||
|
||||
list = s->_segMan->lookupList(GET_SEL32(segMan, object, elements));
|
||||
node = s->_segMan->lookupNode(list->first);
|
||||
|
||||
while (node) {
|
||||
reg_t objpos = node->value;
|
||||
int seg;
|
||||
|
||||
script = GET_SEL32V(segMan, objpos, number);
|
||||
seg = s->_segMan->getScriptSegment(script);
|
||||
|
||||
if (seg > 0)
|
||||
numSynonyms = s->_segMan->getScript(seg)->getSynonymsNr();
|
||||
|
||||
if (numSynonyms) {
|
||||
byte *synonyms = s->_segMan->getScript(seg)->getSynonyms();
|
||||
|
||||
if (synonyms) {
|
||||
debugC(2, kDebugLevelParser, "Setting %d synonyms for script.%d\n",
|
||||
numSynonyms, script);
|
||||
|
||||
if (numSynonyms > 16384) {
|
||||
error("Segtable corruption: script.%03d has %d synonyms",
|
||||
script, numSynonyms);
|
||||
/* We used to reset the corrupted value here. I really don't think it's appropriate.
|
||||
* Lars */
|
||||
} else
|
||||
for (int i = 0; i < numSynonyms; i++) {
|
||||
synonym_t tmp;
|
||||
tmp.replaceant = (int16)READ_LE_UINT16(synonyms + i * 4);
|
||||
tmp.replacement = (int16)READ_LE_UINT16(synonyms + i * 4 + 2);
|
||||
s->_voc->addSynonym(tmp);
|
||||
}
|
||||
} else
|
||||
warning("Synonyms of script.%03d were requested, but script is not available", script);
|
||||
|
||||
}
|
||||
|
||||
node = s->_segMan->lookupNode(node->succ);
|
||||
}
|
||||
|
||||
debugC(2, kDebugLevelParser, "A total of %d synonyms are active now.\n", numSynonyms);
|
||||
|
||||
return s->r_acc;
|
||||
}
|
||||
|
||||
|
||||
|
||||
reg_t kParse(EngineState *s, int argc, reg_t *argv) {
|
||||
SegManager *segMan = s->_segMan;
|
||||
reg_t stringpos = argv[0];
|
||||
Common::String string = s->_segMan->getString(stringpos);
|
||||
char *error;
|
||||
ResultWordList words;
|
||||
reg_t event = argv[1];
|
||||
Vocabulary *voc = s->_voc;
|
||||
|
||||
s->parser_event = event;
|
||||
|
||||
bool res = voc->tokenizeString(words, string.c_str(), &error);
|
||||
s->parserIsValid = false; /* not valid */
|
||||
|
||||
if (res && !words.empty()) {
|
||||
s->_voc->synonymizeTokens(words);
|
||||
|
||||
s->r_acc = make_reg(0, 1);
|
||||
|
||||
#ifdef DEBUG_PARSER
|
||||
debugC(2, kDebugLevelParser, "Parsed to the following blocks:\n", 0);
|
||||
|
||||
for (ResultWordList::const_iterator i = words.begin(); i != words.end(); ++i)
|
||||
debugC(2, kDebugLevelParser, " Type[%04x] Group[%04x]\n", i->_class, i->_group);
|
||||
#endif
|
||||
|
||||
int syntax_fail = voc->parseGNF(words);
|
||||
|
||||
if (syntax_fail) {
|
||||
s->r_acc = make_reg(0, 1);
|
||||
PUT_SEL32V(segMan, event, claimed, 1);
|
||||
|
||||
invoke_selector(INV_SEL(s->_gameObj, syntaxFail, kStopOnInvalidSelector), 2, s->parser_base, stringpos);
|
||||
/* Issue warning */
|
||||
|
||||
debugC(2, kDebugLevelParser, "Tree building failed\n");
|
||||
|
||||
} else {
|
||||
s->parserIsValid = true;
|
||||
PUT_SEL32V(segMan, event, claimed, 0);
|
||||
|
||||
#ifdef DEBUG_PARSER
|
||||
s->_voc->dumpParseTree();
|
||||
#endif
|
||||
}
|
||||
|
||||
} else {
|
||||
|
||||
s->r_acc = make_reg(0, 0);
|
||||
PUT_SEL32V(segMan, event, claimed, 1);
|
||||
if (error) {
|
||||
s->_segMan->strcpy(s->parser_base, error);
|
||||
debugC(2, kDebugLevelParser, "Word unknown: %s\n", error);
|
||||
/* Issue warning: */
|
||||
|
||||
invoke_selector(INV_SEL(s->_gameObj, wordFail, kStopOnInvalidSelector), 2, s->parser_base, stringpos);
|
||||
free(error);
|
||||
return make_reg(0, 1); /* Tell them that it dind't work */
|
||||
}
|
||||
}
|
||||
|
||||
return s->r_acc;
|
||||
}
|
||||
|
||||
|
||||
reg_t kStrEnd(EngineState *s, int argc, reg_t *argv) {
|
||||
reg_t address = argv[0];
|
||||
address.offset += s->_segMan->strlen(address);
|
||||
|
@ -36,11 +36,13 @@ namespace Common {
|
||||
}
|
||||
|
||||
#include "sci/sci.h"
|
||||
#include "sci/vocabulary.h"
|
||||
#include "sci/resource.h"
|
||||
#include "sci/engine/kernel.h" // for kfunct_sig_pair_t
|
||||
#include "sci/engine/script.h"
|
||||
#include "sci/engine/seg_manager.h"
|
||||
|
||||
#include "sci/parser/vocabulary.h"
|
||||
|
||||
#include "sci/sound/audio.h"
|
||||
#ifdef USE_OLD_MUSIC_FUNCTIONS
|
||||
#include "sci/sound/iterator/core.h"
|
||||
|
@ -7,10 +7,8 @@ MODULE_OBJS := \
|
||||
event.o \
|
||||
resource.o \
|
||||
sci.o \
|
||||
vocabulary.o \
|
||||
engine/game.o \
|
||||
engine/gc.o \
|
||||
engine/grammar.o \
|
||||
engine/kernel.o \
|
||||
engine/kevent.o \
|
||||
engine/kfile.o \
|
||||
@ -20,6 +18,7 @@ MODULE_OBJS := \
|
||||
engine/kmenu.o \
|
||||
engine/kmisc.o \
|
||||
engine/kmovement.o \
|
||||
engine/kparse.o \
|
||||
engine/kpathing.o \
|
||||
engine/kscripts.o \
|
||||
engine/ksound.o \
|
||||
@ -51,6 +50,9 @@ MODULE_OBJS := \
|
||||
graphics/transitions.o \
|
||||
graphics/view.o \
|
||||
graphics/windowmgr.o \
|
||||
parser/grammar.o \
|
||||
parser/said.o \
|
||||
parser/vocabulary.o \
|
||||
sound/audio.o \
|
||||
sound/midiparser_sci.o \
|
||||
sound/music.o \
|
||||
|
@ -28,7 +28,7 @@
|
||||
* that grammar, writing an appropriate node tree if successful.
|
||||
*/
|
||||
|
||||
#include "sci/vocabulary.h"
|
||||
#include "sci/parser/vocabulary.h"
|
||||
#include "sci/console.h"
|
||||
#include "common/array.h"
|
||||
|
@ -25,7 +25,7 @@
|
||||
|
||||
// Main vocabulary support functions and word lookup
|
||||
|
||||
#include "sci/vocabulary.h"
|
||||
#include "sci/parser/vocabulary.h"
|
||||
#include "sci/resource.h"
|
||||
#include "sci/engine/state.h"
|
||||
#include "sci/engine/kernel.h"
|
@ -32,7 +32,7 @@
|
||||
#include "sci/engine/state.h"
|
||||
#include "sci/engine/kernel.h"
|
||||
#include "sci/resource.h"
|
||||
#include "sci/vocabulary.h"
|
||||
#include "sci/parser/vocabulary.h"
|
||||
#include "sci/decompressor.h"
|
||||
|
||||
namespace Sci {
|
||||
|
Loading…
Reference in New Issue
Block a user