aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/true_talk/tt_parser.cpp
AgeCommit message (Collapse)Author
2019-07-25TITANIC: Fix gcc compiler warningsPaul Gilbert
2019-03-03TITANIC: Fix crash asking Parrot who sabotaged the shipPaul Gilbert
2019-01-07TITANIC: Fix some incorrect switch fall throughsPaul Gilbert
2018-07-14TITANIC: More properly handle parser clearing after sentence processingPaul Gilbert
The original actually freed the parser entirely from within findFrames, and then recreated it each time a sentence is parsed. Since this is nasty, and in ScummVM _parser isn't dynamically created, I settled on adding a clear command to completely clear the parser instead.
2018-07-14TITANIC: Remove any unfreed parser nodes at the end of sentence parsingPaul Gilbert
This fixes cases like bug #10621, which are somehow resulting from not all parser nodes being properly freed after parsing the first sentence finishes
2018-05-20JANITORIAL: Remove trailing whitespaceAdrian Frühwirth
2018-05-02TITANIC: Hopefully fix Release mode crash when selecting floors manuallyPaul Gilbert
2017-10-12TITANIC: DE: Fix saying 'ja' to Deskbot during checkinPaul Gilbert
2017-10-10TITANIC: Fix buffer overflow in parser searchAndReplacePaul Gilbert
2017-10-06TITANIC: DE: Fixes for article handlingPaul Gilbert
2017-09-18TITANIC: Fix identified redundant tests & assignmentsPaul Gilbert
2017-08-24TITANIC: Reduce header includes for titanic.hDavid Fioramonti
I reduced the header includes a lot in Titanic.h and forward declared when I could. Titanic.h was including a lot and a lot of functions that were including it were not using its API. This will help make it more clear which implementation files are using which class since they will just need to include which ones they need. I also moved the debug related items in Titanic.h into the debugger header. I also reordered several of the the header includes to be local to global.
2017-08-12TITANIC: Fix converting double digit words into numbersPaul Gilbert
2017-08-12TITANIC: Fix to processing textual numbers in sentencesPaul Gilbert
2017-07-30TITANIC: Fix crash saying 'No I dont' to DeskbotPaul Gilbert
2017-07-18TITANIC: Fix access after free in filterConcepts loopPaul Gilbert
2017-06-22TITANIC: Implement German parser preprocessingPaul Gilbert
2017-06-12TITANIC: Fix saying goodbye to BellbotPaul Gilbert
2017-06-12TITANIC: Add missing addNode to WC_ABSTRACT handlingPaul Gilbert
2017-01-28TITANIC: Revert field renamings in CScriptHandlerPaul Gilbert
I initially thought the four concept fields could be given a relevant name for actor, object, and verb, but on further analysis, it looks like what fields go in which concept slot depends on the kind of sentence. I haven't been able to find any consistency, so I'm reverting them back to being called _concept1P through _concept4P
2017-01-28TITANIC: Renamed sentence concept fields in CScriptHandlerPaul Gilbert
2017-01-28TITANIC: Properly handle sentences with multiple objectsPaul Gilbert
2017-01-28TITANIC: Properly handle uppercase and 's when normalizing conv textPaul Gilbert
2017-01-27TITANIC: Use ParserAction enum in calls to addNodePaul Gilbert
2017-01-27TITANIC: Don't untimely remove unrecognised COMPLEX_VERB parser nodesPaul Gilbert
2016-11-13TITANIC: Fix incorrect local assignment in CHECK_COMMAND_FORM casePaul Gilbert
2016-11-11TITANIC: Field renamings, and fix for incorrect switch casesPaul Gilbert
2016-11-06TITANIC: Fix crash in TTparser::processModifiersPaul Gilbert
2016-11-05TITANIC: Parser fix for saying 'no' to having reservationPaul Gilbert
2016-11-04TITANIC: Fix removing parser nodes after processingPaul Gilbert
2016-11-03TITANIC: Parser fixes for using unrecognised wordsPaul Gilbert
2016-11-03TITANIC: Fix choosing correct vocab matches for wordsPaul Gilbert
2016-11-02TITANIC: Parser fixesPaul Gilbert
2016-10-09JANITORIAL: Remove trailing spacesEugene Sandulenko
2016-09-01TITANIC: Convert many static_casts to dynamic_castPaul Gilbert
2016-07-15TITANIC: gcc compilation fixesPaul Gilbert
2016-07-15TITANIC: Remainder of TTparser considerRequestsPaul Gilbert
2016-07-15TITANIC: Remaining tag switch cases in TTparser considerRequestsPaul Gilbert
2016-07-15TITANIC: Adding tag switches to TTparser considerRequestsPaul Gilbert
2016-07-15TITANIC: Convert outer tag comparisons to switch cases in TTparser ↵Paul Gilbert
considerRequests
2016-07-15TITANIC: Finished inner switch of TTparser considerRequestsPaul Gilbert
2016-07-15TITANIC: Fleshing out TTparser considerRequestsPaul Gilbert
2016-07-15TITANIC: Fleshing out TTparser considerRequestsPaul Gilbert
2016-07-15TITANIC: Adding more to TTparser considerRequests, and support methodsPaul Gilbert
2016-07-15TITANIC: Finished TTparser processModifiersPaul Gilbert
2016-07-15TITANIC: In-progress TTparser processModifiersPaul Gilbert
2016-07-15TITANIC: Added TTparser removeNodePaul Gilbert
2016-07-15TITANIC: Added TTparser processRequestsPaul Gilbert
2016-07-15TITANIC: Finished TTparser checkForActionPaul Gilbert
2016-07-15TITANIC: More work on TTparser considerRequestsPaul Gilbert