Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-03-23 | Pushed down dependencies from parser.h | Nicola Mettifogo | |
svn-id: r39636 | |||
2009-01-03 | Dropped the script preprocessor introduced to fix the broken scripts. The ↵ | Nicola Mettifogo | |
parser has evolved in the meantime and can deal with it accordingly. svn-id: r35700 | |||
2008-12-04 | Made readLineIntern() return a zero-length string when no printable text is ↵ | Nicola Mettifogo | |
read out of a script. This makes life easier for the parser, and also makes the introduction fully viewable. svn-id: r35233 | |||
2008-11-30 | It's unnecessary to use strlen() just to find out if a string is empty or not. | Torbjörn Andersson | |
svn-id: r35185 | |||
2008-11-14 | Removed unused parameter. | Nicola Mettifogo | |
svn-id: r35053 | |||
2008-11-13 | Update to the low level parser: | Nicola Mettifogo | |
* made it detect buffer overflows * removed unused code paths * general simplification svn-id: r35047 | |||
2008-11-09 | Update ReadStringStream and parser to work with the new eos() logic. | Nicola Mettifogo | |
svn-id: r34945 | |||
2008-08-19 | Deleted debug code that slipped in. | Nicola Mettifogo | |
svn-id: r34041 | |||
2008-08-19 | Fixed bug in low-level parser. Block comments weren't interpreted correctly. | Nicola Mettifogo | |
svn-id: r34038 | |||
2008-08-14 | Finally moved parseNextToken to Script, where it belongs! | Nicola Mettifogo | |
svn-id: r33859 | |||
2008-08-02 | * Increasing max number of allowed token on one line. | Nicola Mettifogo | |
* Increasing buffer size to match old parser. svn-id: r33512 | |||
2008-08-02 | Fixed issues detected by DrMcCoy's obnoxious compiler. ;) | Nicola Mettifogo | |
svn-id: r33511 | |||
2008-08-02 | * Added a preprocessor to deal with the crappy location scripts in BRA. | Nicola Mettifogo | |
* Added some comments on how the parser and related code should be changed to make things smoother. svn-id: r33509 | |||
2008-06-03 | PARA: Fixed some memory leaks | Christopher Page | |
svn-id: r32519 | |||
2008-06-02 | PARA: Got rid of calls to system->quit() so that the Parallaction engine can ↵ | Christopher Page | |
return to the launcher. Also fixed a couple of memory leaks. svn-id: r32504 | |||
2008-05-11 | Cleanup of parsing code. | Nicola Mettifogo | |
svn-id: r31999 | |||
2008-05-10 | Extracted script parsing code to its own class. | Nicola Mettifogo | |
svn-id: r31972 | |||
2008-05-04 | Added new Parser class, which will gradually grow to include all parsing ↵ | Nicola Mettifogo | |
code from the engine class. svn-id: r31865 | |||
2008-02-05 | Enhanced parser to handle multi-line comments in scripts. | Nicola Mettifogo | |
svn-id: r30797 | |||
2008-02-03 | Fixed maximum token length for the parser. | Nicola Mettifogo | |
svn-id: r30776 | |||
2007-12-16 | Changed an explicit warning/remainder into a code comment. | Nicola Mettifogo | |
svn-id: r29879 | |||
2007-10-14 | Integrated low-level routines into the Script class, turning it into a ↵ | Nicola Mettifogo | |
self-contained parser for location, program and table scripts. svn-id: r29221 | |||
2007-09-19 | Merged common/stdafx.h into common/scummsys.h. All referencing files have ↵ | Nicola Mettifogo | |
been updated. svn-id: r28966 | |||
2007-08-24 | First step in restructuring engine code: | Nicola Mettifogo | |
- code has been consolidated in fewer files - new table-driven parsers/execution - some functions has been pushed down the engine hierarchy - Parallaction_br now inherits from Parallaction_ns svn-id: r28711 | |||
2007-08-16 | Changed more parsing routines to use tables instead of switch statements. | Nicola Mettifogo | |
svn-id: r28637 | |||
2007-08-12 | Added preliminary support for loading locations in BRA: | Nicola Mettifogo | |
- changed parseLocation to invoke subclasses for version-specific keywords. - implemented loading of background resources (backgrounds should be visible) svn-id: r28568 | |||
2007-07-08 | Yet another fix for broken parsing/displaying of strings. Now quotes are ↵ | Nicola Mettifogo | |
properly considered when they are needed, and ignored when they aren't. svn-id: r27967 | |||
2007-07-08 | Finally fixed parsing of labels. | Nicola Mettifogo | |
svn-id: r27962 | |||
2007-07-08 | Made parseNextToken *really* work this time. | Nicola Mettifogo | |
svn-id: r27960 | |||
2007-07-08 | Parser is now able to deal with missing quotes at the end of instructions in ↵ | Nicola Mettifogo | |
location scripts. svn-id: r27959 | |||
2007-05-30 | Updated legal headers in source files, based on what Pidgin (the IM client ↵ | Max Horn | |
formerly knowns as Gaim) does; added new (incomplete) COPYRIGHT file; updated copyright dates in a few spots svn-id: r27024 | |||
2007-05-13 | cleanup | Nicola Mettifogo | |
svn-id: r26834 | |||
2007-04-03 | - added a new archive member variable to Disk, to decouple resource archives ↵ | Nicola Mettifogo | |
from location archives - made Script use a stream as input with overall simplification of Disk routines svn-id: r26379 | |||
2007-03-04 | made Script optionally take ownership and dispose input text | Nicola Mettifogo | |
svn-id: r25973 | |||
2007-03-04 | replaced memAlloc/memFree with standard malloc/free | Nicola Mettifogo | |
svn-id: r25962 | |||
2007-02-20 | changed parseComment to use Script stream instead of file | Nicola Mettifogo | |
svn-id: r25739 | |||
2007-02-20 | cleanup and small fixes | Nicola Mettifogo | |
svn-id: r25738 | |||
2007-02-20 | animation scripts are now parsed through the same pipeline used for location ↵ | Nicola Mettifogo | |
scripts. Thus, animation scripts are now cached instead of being read line by line. svn-id: r25737 | |||
2007-02-19 | first step in parser simplification | Nicola Mettifogo | |
svn-id: r25733 | |||
2007-02-19 | a little more refactoring | Nicola Mettifogo | |
svn-id: r25725 | |||
2007-02-19 | refactoring | Nicola Mettifogo | |
svn-id: r25724 | |||
2007-02-19 | a little bit of fiddling to expose similarities between routines | Nicola Mettifogo | |
svn-id: r25723 | |||
2007-02-19 | moved specialised parsing routines in parser.cpp, so code can be refactored ↵ | Nicola Mettifogo | |
more easily svn-id: r25718 | |||
2007-02-17 | Some indentation and format changes. Mostly replacing spaces with tabs. | Torbjörn Andersson | |
svn-id: r25654 | |||
2007-02-13 | skip_whitespace() -> Common::ltrim() | Eugene Sandulenko | |
svn-id: r25573 | |||
2007-01-14 | Initial import of Parallaction engine | Eugene Sandulenko | |
svn-id: r25083 |