Difference between revisions of "SCI Parser Programmer's Reference/Said Specs"
(→<from:) |
|||
Line 55: | Line 55: | ||
<span style="float: left">[[SCI Parser Programmer's Reference/User Parse Trees|< Previous: User Parse Trees]]</span> | <span style="float: left">[[SCI Parser Programmer's Reference/User Parse Trees|< Previous: User Parse Trees]]</span> | ||
− | <span style="float: right">[[SCI Parser Programmer's Reference/Syntax|Next: Syntax >]]</span> | + | <span style="float: right">[[SCI Parser Programmer's Reference/Said Syntax|Next: Said Syntax >]]</span> |
| |
Revision as of 00:52, 22 December 2015
Said-specs
The previous section briefly describes the upper branch of the parsing system. The lower branch allows the SCI coder to specify what sentences he wants to recognize using "Said" statements. The above sentence ("take the gold from the dwarf") can be recognized by:
(Said 'take/gold/dwarf<from')
which would return TRUE if the user typed the phrase in. Let's dissect this spec:
take:
the first of three sections separated by slashes, it is the verb in the verb phrase.
/gold:
the slash signals the beginning of the direct object, which is a noun phrase with root "gold"
/dwarf:
the slash signals the beginning of the indirect object, which is an Associated Phrase. The root is "dwarf"
<from:
the "<" means "modified by". In this case the preposition "from" modifies the root of the AP
- Notes
< Previous: User Parse Trees Next: Said Syntax >