Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-08-18 | PARALLACTION: Replace use of strdup with Common::String & malloc | Colin Snover | |
2014-02-18 | PARALLACTION: Make GPL headers consistent in themselves. | Johannes Schickel | |
2013-04-17 | PARALLACTION: Use strlcpy instead of strncpy. | Alyssa Milburn | |
2012-09-27 | PARALLACTION: Clean up global variables a bit. | Alyssa Milburn | |
2012-02-21 | Merge pull request #182 from fingolfin/forbid-ctype | Willem Jan Palenstijn | |
ALL: Avoid using is* macros from ctype.h | |||
2012-02-20 | COMMON: Move isFoo functions to namespace Common, add doxygen comments | Max Horn | |
2012-02-15 | JANITORIAL: Fix whitespace in pointer template arg | Tarek Soliman | |
2012-02-15 | ALL: Avoid using is* macros from ctype.h | Max Horn | |
On some systems, passing signed chars to macros like isspace() etc. lead to a runtime error. Hence, mark these macros as forbidden by default, and introduce otherwise equivalent alternatives for them. | |||
2011-09-28 | PARALLACTION: Updated the fix for script bug #2969913 to a workaround | Filippos Karapetis | |
2011-09-28 | PARALLACTION: Fixed bug #2969913 - "NIPPON: Katana graphics not shown ↵ | Filippos Karapetis | |
(regression)" | |||
2011-06-23 | ANALYSIS: Add static casts to is* functions | Littleboy | |
This fixes a potential problem with passing char values that would be sign-extended and yield unexpected results. See http://msdn.microsoft.com/en-us/library/ms245348.aspx | |||
2011-06-20 | ALL: Remove trailing whitespaces | Max Horn | |
This tries to make our code a bit more compliant with our code formatting conventions. For future use, this is the command I used: git ls-files "*.cpp" "*.h" | xargs sed -i -e 's/[ \t]*$//' | |||
2011-05-12 | GIT: Clean up: Suppress SVN tags, now useless | strangerke | |
2011-04-28 | JANITORIAL: Reduce header dependencies in shared code | Ori Avtalion | |
Some backends may break as I only compiled SDL | |||
2010-12-12 | PARALLACTION: parse command lists for kNoneType zones, even if defined after ↵ | Nicola Mettifogo | |
TYPE markers. This fixes bug #3131769. svn-id: r54879 | |||
2010-11-01 | ENGINES: Replace many printfs by warning/debug/debugN | Max Horn | |
svn-id: r54031 | |||
2010-06-04 | Ensure that zones/animations always get the same index number. | Nicola Mettifogo | |
When a zone/animation is skipped by the parser because already loaded, the index is now increased. This does not affect NS, since indexes are only used for scene sorting there, but is relevant for BRA, where indexes need to be coherent across location changes. Patch #3004008 by fuzzie. svn-id: r49428 | |||
2010-04-28 | Fixed leaks in parsing of examine and door zones. | Nicola Mettifogo | |
svn-id: r48838 | |||
2009-07-26 | Moved parser functions arrays to file scope, as they were tripping up the ↵ | Nicola Mettifogo | |
obsolete gcc used for the BeOS/Haiku port. If anybody can work out a better solution please apply it, because this makes me sick. svn-id: r42793 | |||
2009-04-03 | Moved Nippon Safes specific code from Parallaction to Parallaction_ns and ↵ | Nicola Mettifogo | |
adapted client code. svn-id: r39813 | |||
2009-04-03 | PARALLACTION: Fix silly Mingw 'shadowed declaration' warnings | Max Horn | |
svn-id: r39809 | |||
2009-03-29 | Commands now evaluate their reference Zone at runtime, thus handling of ↵ | Nicola Mettifogo | |
forward references in the parser is no more needed. svn-id: r39738 | |||
2009-03-29 | Merged CommandData into Command. | Nicola Mettifogo | |
svn-id: r39732 | |||
2009-03-24 | Removed paranoia check. | Nicola Mettifogo | |
svn-id: r39656 | |||
2009-03-24 | * Pushed evaluation of 'following question' from dialogue parsing to ↵ | Nicola Mettifogo | |
dialogue execution. * Removed all the question forwards declaration code svn-id: r39654 | |||
2009-03-23 | Refactored the zone type parsers. | Nicola Mettifogo | |
svn-id: r39650 | |||
2009-03-23 | Turned ZoneTypes into a regular numeric id (no more a bitfield). | Nicola Mettifogo | |
svn-id: r39648 | |||
2009-03-23 | Merged GetData, HearData, SpeakData, PathData, ExamineData, MergeData into ↵ | Nicola Mettifogo | |
TypeData struct. This simplifies life a bit especially in the parsers. svn-id: r39645 | |||
2009-03-23 | Pushed down dependencies from parser.h | Nicola Mettifogo | |
svn-id: r39636 | |||
2009-03-23 | Implemented all variants of IF script instruction. Program class has been ↵ | Nicola Mettifogo | |
changed to store an Array of instruction instead of a List, so that references to instructions are integers. svn-id: r39631 | |||
2009-03-14 | Fixed building on 64-bit architectures. | Nicola Mettifogo | |
svn-id: r39395 | |||
2009-03-14 | * Added a generic sound manager that hides engine-specific managers and ↵ | Nicola Mettifogo | |
allows accessing them through a simplified command/parameter interface. * Updated client code to use the new manager. * Moved Nippon Safes sound code from sound.cpp to sound_ns.cpp. svn-id: r39394 | |||
2009-02-27 | The engine has now to build the drawing list for the graphic department, ↵ | Nicola Mettifogo | |
instead of setting visibility flags; the new field _prog has been added to GfxObj to help sorting the list. The outcome is that cleaning up unused resources on location switches is now easier to manage, and less error prone. svn-id: r38928 | |||
2009-02-26 | Removed null*Ptr dummy objects, using SharedPtr's reset method to null ↵ | Nicola Mettifogo | |
pointers instead. svn-id: r38897 | |||
2009-02-23 | Cleanup. | Nicola Mettifogo | |
svn-id: r38817 | |||
2009-01-20 | Replacement an immediate with the appropriate #define constant. | Nicola Mettifogo | |
svn-id: r35950 | |||
2009-01-20 | Adapted fixed-sized arrays to cope with the larger dialogues in BRA. Maybe ↵ | Nicola Mettifogo | |
they should be turned into dynamic data structures... svn-id: r35944 | |||
2009-01-08 | Don't assert anymore when a command flag doesn't exist, but ignore it and ↵ | Nicola Mettifogo | |
print a warning instead. Some location scripts in BRA are totally broken. svn-id: r35783 | |||
2009-01-04 | Made sure to display labels on animations. | Nicola Mettifogo | |
svn-id: r35726 | |||
2009-01-04 | Implemented counters in BRA. Only valid answer options are shown, and ↵ | Nicola Mettifogo | |
counter calculations in scripts are performed. svn-id: r35723 | |||
2008-12-21 | Added a stub to dialogue parser, so that dialogue lines controlled by ↵ | Nicola Mettifogo | |
counters are displayed. svn-id: r35465 | |||
2008-12-17 | Reduced code duplication when manipulating Animations, and cleanup. | Nicola Mettifogo | |
svn-id: r35408 | |||
2008-12-14 | Removed references to _vm from the engine itself. | Nicola Mettifogo | |
svn-id: r35358 | |||
2008-12-13 | * Replaced char* with Common::String in the parser. | Nicola Mettifogo | |
* Enforced const-correctness on related routines. svn-id: r35326 | |||
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-12 | Fixed default zone flags, so that labels in BRA are only shown on zones ↵ | Nicola Mettifogo | |
which have one. svn-id: r35012 | |||
2008-11-09 | Enabled flags parsing for all commands in location script. Most of them ↵ | Nicola Mettifogo | |
don't need it, but some commands have been enhanced in BRA. svn-id: r34944 | |||
2008-11-08 | * cleanup | Nicola Mettifogo | |
* moved find routines from Parallaction to Location svn-id: r34940 | |||
2008-08-15 | Made coordinates and frame number protected into Zone and Animation, and ↵ | Nicola Mettifogo | |
changed client code to use get/set. This will allow various simplifications (e.g. when calculating Z), and is a step towards correct handling of interactive zones of Zone/Animation in BRA. svn-id: r33892 | |||
2008-08-15 | Made scripts access Animation fields via accessors and mutators, instead of ↵ | Nicola Mettifogo | |
using raw pointers. svn-id: r33891 |