Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-08-22 | WINTERMUTE: Fix compilation with MSVC | Filippos Karapetis | |
Change the way that EXTENDED_DEBUGGER_ENABLED is checked. The way it was used, it triggered a fatal error C1017 | |||
2016-03-01 | WINTERMUTE: Remember to delete watch instances | Tobia Tesan | |
2016-03-01 | WINTERMUTE: Do not delete a pointer we do not own in resolveName | Tobia Tesan | |
2016-03-01 | WINTERMUTE: Add Watch functionality | Tobia Tesan | |
2016-03-01 | WINTERMUTE: Add name resolution to DebuggableScript | Tobia Tesan | |
2016-02-29 | WINTERMUTE: Add post instruction hook to DebuggableScript | Tobia Tesan | |
2016-02-29 | WINTERMUTE: Add DebuggableScript and DebuggableScriptEngine classes | Tobia Tesan | |
These extend the script engine and allow for monitoring and adding pre/post instruction hooks | |||
2016-02-29 | WINTERMUTE: Make _operand protected in script.h | Tobia Tesan | |
2016-02-29 | WINTERMUTE: Remove dead code from vestigial remnants of WME debugger | Tobia Tesan | |
2014-06-08 | WINTERMUTE: Silence/fix some warnigns when compiling Symbian port. | Johannes Schickel | |
See bug #6625 "WINTERMUTE: Symbian Compilation Warnings". | |||
2014-02-19 | WME: Fix bug #6531 - "WME: Art of Murder - Assertion" | Filippos Karapetis | |
2014-02-18 | WINTERMUTE: Make GPL headers consistent in themselves. | Johannes Schickel | |
2013-11-23 | WINTERMUTE: Switch WideString to U32String. | Johannes Schickel | |
2013-11-05 | WINTERMUTE: Transfer Const Char* explicitly when saving/loading. | Einar Johan Trøan Sømåen | |
2013-11-05 | WINTERMUTE: Transfer Char* explicitly when saving/loading. | Einar Johan Trøan Sømåen | |
2013-11-05 | WINTERMUTE: Transfer Sint32s explicitly when saving/loading. | Einar Johan Trøan Sømåen | |
2013-11-05 | WINTERMUTE: Transfer Uint32s explicitly when saving/loading. | Einar Johan Trøan Sømåen | |
2013-10-29 | WINTERMUTE: Transfer Doubles explicitly when saving/loading. | Einar Johan Trøan Sømåen | |
2013-10-28 | WINTERMUTE: Transfer booleans explicitly when saving/loading. | Einar Johan Trøan Sømåen | |
2013-09-05 | WINTERMUTE: Disambiguate empty and NULL strings when saving | Willem Jan Palenstijn | |
The string stored is now strlen(s)+1, with length 0 indicating NULL. Increment savegame version for this new format. Old savegames are fixed by assuming VAL_STRING should never be NULL. | |||
2013-09-05 | WINTERMUTE: Don't clean up _scripts mid-iteration | Willem Jan Palenstijn | |
Scripts executing from ScEngine::tick() can call ScEngine::unbreakableTick() via scCallMethod("SaveGame") and applyEvent("BeforeSave"). This recursive execution could cause finished scripts being removed from _scripts while ScEngine::tick() is still iterating over that array. | |||
2013-08-04 | WINTERMUTE: Fix end of namespace comments. | Johannes Schickel | |
2013-07-23 | WINTERMUTE: Set _scriptStream to nullptr after deletion | Einar Johan Trøan Sømåen | |
(Clang static-analyzer issue) | |||
2013-06-18 | WINTERMUTE: Avoid explicitly including <math.h> | Einar Johan Trøan Sømåen | |
2013-04-20 | WINTERMUTE: Fix ScriptExtDate-saving (bump savegame-version to 1.2.1). | Einar Johan Trøan Sømåen | |
This also fixes int->int32 in ScriptExtDate::transfer. | |||
2013-04-20 | WINTERMUTE: Change ScriptValue to use int32. | Einar Johan Trøan Sømåen | |
2013-04-19 | WINTERMUTE: Replace a few more ints by int32s. | Einar Johan Trøan Sømåen | |
2013-04-19 | WINTERMUTE: Rename transfer(void *) to transferPtr(void *) to avoid ↵ | Einar Johan Trøan Sømåen | |
overload-misses. | |||
2013-04-18 | WINTERMUTE: Use int32 instead of int in classes. | Einar Johan Trøan Sømåen | |
2013-04-18 | WINTERMUTE: Split the timers from BaseGame into a separate class. | Einar Johan Trøan Sømåen | |
2013-04-17 | WINTERMUTE: Use strlcpy instead of strcpy in SXString::scCallMethod() | Einar Johan Trøan Sømåen | |
2013-03-24 | WINTERMUTE: Really fix build breakage... | D G Turner | |
strlcpy() needed qualification of Common namespace. | |||
2013-03-24 | WINTERMUTE: Fix build breaking missing header declaration. | D G Turner | |
This is required to declare the strlcpy() function. | |||
2013-03-24 | WINTERMUTE: Replace WMELite's String-Split-function with code from WME. | Einar Johan Trøan Sømåen | |
2013-01-31 | WINTERMUTE: Redo the way floats are saved, break savegame compatibility with ↵ | Einar Johan Trøan Sømåen | |
WME Lite completely. (This also breaks compatibility with savegames from ScummVM prior to this commit, AND resets the Savegame-version, older savegames will have differing MAGIC-numbers in their headers, and will thus not be recognized). | |||
2013-01-26 | WINTERMUTE: Replace all NULLs with nullptr. | Einar Johan Trøan Sømåen | |
2013-01-24 | WINTERMUTE: More formatting fixes. | Einar Johan Trøan Sømåen | |
2013-01-24 | JANITORIAL: Fix ){ -> ) { | Einar Johan Trøan Sømåen | |
2013-01-24 | WINTERMUTE: Remove commented out code. | Einar Johan Trøan Sømåen | |
2012-12-03 | WINTERMUTE: Const-ify member-functions that obviously should be const. | Einar Johan Trøan Sømåen | |
2012-12-02 | WINTERMUTE: Avoid including script_ext_math.h in base_game.cpp | Einar Johan Trøan Sømåen | |
2012-09-29 | WINTERMUTE: Make scGetProperty use Common::String& instead of const char* | Einar Johan Trøan Sømåen | |
2012-09-11 | WINTERMUTE: Remove a few more unused includes. | Einar Johan Trøan Sømåen | |
2012-09-11 | WINTERMUTE: Remove unneccessary includes of base_file.h | Einar Johan Trøan Sømåen | |
2012-09-04 | WINTERMUTE: Convert CRLF to LF | Willem Jan Palenstijn | |
2012-09-04 | WINTERMUTE: Fix a warning with MSVC | Filippos Karapetis | |
2012-08-31 | WINTERMUTE: Use tabs in enums | Einar Johan Trøan Sømåen | |
2012-08-31 | WINTERMUTE: Use ++it instead of it++ | Einar Johan Trøan Sømåen | |
2012-08-31 | WINTERMUTE: Replace col_templ's getSize with Common::Array::size() | Einar Johan Trøan Sømåen | |
2012-08-31 | WINTERMUTE: Use <math.h> instead of <cmath> | Einar Johan Trøan Sømåen | |