Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-11-07 | CINE: Added basic debugging console to engine | David Turner | |
Since CINE uses Debug Channels, this allows for the interactive setting of debugflags as well as providing a base for adding further debugging commands. svn-id: r54115 | |||
2010-08-09 | CINE: eliminate global variables | Eugene Sandulenko | |
svn-id: r51937 | |||
2010-07-16 | CINE: Get rid of some unnecessary g_cine refs | Max Horn | |
svn-id: r50945 | |||
2010-07-16 | CINE: Get rid of g_saveFileMan | Max Horn | |
svn-id: r50944 | |||
2010-05-19 | Implement FR #2841445: FW: Restart doesn't work | Eugene Sandulenko | |
svn-id: r49096 | |||
2010-05-04 | Move DebugChannel related code to new header | Max Horn | |
svn-id: r48935 | |||
2010-05-04 | Move initGraphics and initCommonGFX from to new header. | Max Horn | |
These functions are only used internally be Engine subclasses, and by moving them to a separate header we can reduce indirect header dependencies. svn-id: r48934 | |||
2010-04-27 | COMMON: Move DebugChannel stuff into a new DebugMan singleton | Max Horn | |
svn-id: r48821 | |||
2010-04-21 | CINE: Change Doxygen commands to match our CFC | Max Horn | |
svn-id: r48764 | |||
2010-01-12 | Rename all "Adlib" uses to "AdLib" to match the real name of the sound card ↵ | Johannes Schickel | |
/ company. Check this for reference: http://en.wikipedia.org/wiki/Ad_Lib,_Inc. http://www.crossfire-designs.de/images/articles/soundcards/adlib.jpg (note the upper left of the card) This commit does not touch "adlib" and "ADLIB" uses! Also it does not update all the SCUMM detection entries, which still use "Adlib". svn-id: r47279 | |||
2009-08-25 | Fix for bugs #2843081 "FW: Assert starting demo (regression)" and #2843080 ↵ | Johannes Schickel | |
"OS: Assert starting demo (regression)". svn-id: r43743 | |||
2009-08-03 | Fix for #2824798 (FW: crash when clicking "load" in the GUI): | Kari Salminen | |
- Fixed CineMetaEngine::listSaves(const char *target) which was broken. - Also added explicit initialization of savegame descriptions to empty strings for safety reasons (e.g. arrays on stack aren't initialized to zero). - Added explicit trailing zero setting to savegame descriptions (Previously using GMM you could write a description of length >= 20 that had no trailing zero when written to description file (e.g. fw.dir)). svn-id: r43027 | |||
2009-07-25 | Move the event recorder to its own class (EventRecoder inside ↵ | Johannes Schickel | |
common/EventRecorder.[h/cpp]). svn-id: r42751 | |||
2009-05-11 | Fix bug #2055836: "FW: Music is not restarted when loading a saved game" | Eugene Sandulenko | |
svn-id: r40465 | |||
2009-03-01 | Engines: Fused several init&go methods into a single run method | Max Horn | |
svn-id: r39003 | |||
2009-01-30 | Renamed SpecialDebugLevel to DebugChannel | Max Horn | |
svn-id: r36142 | |||
2009-01-01 | Whoa! Removing trailing spaces. | Eugene Sandulenko | |
svn-id: r35648 | |||
2008-11-14 | Committed my patch #2123680 "SDL: Backend transaction / rollback support". | Johannes Schickel | |
svn-id: r35062 | |||
2008-11-06 | Switched various Engine APIs to use Common::Error | Max Horn | |
svn-id: r34916 | |||
2008-10-06 | Added new type Engine::Feature; pushed down some #include dependencies | Max Horn | |
svn-id: r34755 | |||
2008-09-03 | Moved check for shouldRTL() from engines to scummvm_main | Max Horn | |
svn-id: r34310 | |||
2008-08-16 | Merged revisions ↵ | Christopher Page | |
33777,33781-33788,33790,33792-33793,33795,33797,33805,33807-33812,33815-33817,33819,33822,33826,33829,33837,33839,33844,33847,33858-33861,33864,33871-33873,33875,33877-33879,33886,33889-33892,33894,33896,33900,33902-33903,33919 via svnmerge from https://scummvm.svn.sourceforge.net/svnroot/scummvm/scummvm/trunk svn-id: r33924 | |||
2008-08-11 | Moved fontParamTable inside TextHandler struct and made it a constant size ↵ | Kari Salminen | |
as that's what it is (No need for using malloc & free anymore). Previously we would've tried to free an array that wasn't heap-allocated in freePoldatDat (Freeing fontParamTable_standard or fontParamTable_alt), that's fixed. svn-id: r33786 | |||
2008-08-11 | Changed palPtr from a pointer to a Common::Array named palArray. Removed ↵ | Kari Salminen | |
palEntriesCount variable as it's now equivalent to palArray.size(). svn-id: r33785 | |||
2008-08-11 | Removed textDataPtr pointer as it's not used beyond the loadTextData ↵ | Kari Salminen | |
function. Reworked loadTextData a bit so there are no two loops for the same thing (Also renamed some of the local variables). svn-id: r33784 | |||
2008-08-11 | Changed partBuffer from a pointer to a Common::Array. Removed ↵ | Kari Salminen | |
numElementInPart variable as it's now equivalent with partBuffer.size(). svn-id: r33783 | |||
2008-08-10 | Merged revisions ↵ | Christopher Page | |
33719,33721-33723,33725-33727,33729-33730,33733,33736,33742,33754,33756,33758,33761,33763,33766 via svnmerge from https://scummvm.svn.sourceforge.net/svnroot/scummvm/scummvm/trunk svn-id: r33769 | |||
2008-08-09 | Converted zoneData and zoneQuery tables from plain array types to ↵ | Kari Salminen | |
Common::Array. Should help catch out of bounds access errors that may cause memory corruption. svn-id: r33727 | |||
2008-08-09 | Converted animDataTable from a plain array to a Common::Array. Should help ↵ | Kari Salminen | |
to catch out of bounds access errors which may cause memory corruption. svn-id: r33726 | |||
2008-08-09 | Converted objectTable from a plain array to a Common::Array. Should help to ↵ | Kari Salminen | |
catch out of bounds access errors that may cause memory corruption. svn-id: r33725 | |||
2008-08-09 | Merged revisions ↵ | Christopher Page | |
33632-33633,33635,33637,33639-33640,33642-33645,33648,33654-33655,33664,33667-33670,33673-33674,33678,33682,33686-33691,33693,33696,33698,33700,33703,33708,33710,33712-33714,33716 via svnmerge from https://scummvm.svn.sourceforge.net/svnroot/scummvm/scummvm/trunk svn-id: r33720 | |||
2008-08-08 | Partially fix Adlib volume setting in Cine (Now uses music volume for Adlib ↵ | Kari Salminen | |
volume, previously always played with full volume. Doesn't differentiate between playing sound effects and music!). svn-id: r33700 | |||
2008-08-07 | Implemented game speed changing by pressing - or + to e.g. ease testing. | Kari Salminen | |
svn-id: r33689 | |||
2008-08-06 | Renamed page3Raw to collisionPage so it's more apparent what it does. | Kari Salminen | |
svn-id: r33669 | |||
2008-07-10 | Removed unnecessary #inlcudes | Christopher Page | |
svn-id: r32984 | |||
2008-07-07 | CINE works with the new GMM implementation | Christopher Page | |
svn-id: r32954 | |||
2008-06-24 | Created Global Main Menu Dialog. Made a uniform _quit flag for engines. So ↵ | Christopher Page | |
far agi, agos, and cine are now using the new _quit flag. svn-id: r32770 | |||
2008-06-12 | CINE: Fixed memory leaks in the CINE engine | Christopher Page | |
svn-id: r32677 | |||
2008-05-28 | Merged revisions ↵ | Christopher Page | |
32124,32126-32128,32131,32133,32135-32144,32146-32153,32155-32163,32165-32168,32170-32173,32175-32179,32181-32191,32193-32202,32204-32205,32209-32214,32216,32218,32220-32235,32237-32266,32269-32271,32273-32290,32292-32295,32297-32317,32319-32323,32325-32328,32330-32331,32334-32338,32343-32347 via svnmerge from https://scummvm.svn.sourceforge.net/svnroot/scummvm/scummvm/trunk svn-id: r32350 | |||
2008-05-27 | CINE: Fixed two memory leaks when shutting down the CINE engine | Christopher Page | |
svn-id: r32332 | |||
2008-05-24 | Patch #1969189: "CinE renderer rewrite" | Eugene Sandulenko | |
svn-id: r32257 | |||
2008-04-21 | Patch #1941066: "CinE sprite overlay rewrite" courtsey of next_ghost | Eugene Sandulenko | |
svn-id: r31651 | |||
2008-04-07 | Patch #1913862: "CinE Script system" | Eugene Sandulenko | |
svn-id: r31444 | |||
2008-02-15 | Merged lots of _mixer->isReady() warnings into a single one in Engine ↵ | Max Horn | |
constructor svn-id: r30871 | |||
2008-01-01 | Slightly modified patch #1848173: "ScriptVars class implementation for CinE" | Eugene Sandulenko | |
svn-id: r30125 | |||
2007-12-24 | _Properly_ fix lock-up introduced introduced in revision 29860. A typical | Eugene Sandulenko | |
c/p error. svn-id: r29982 | |||
2007-12-24 | Fix regressions (crashes) introduced in commit 29860 | Eugene Sandulenko | |
svn-id: r29981 | |||
2007-12-14 | renamed several structures, variables and functions | Gregory Montoir | |
svn-id: r29860 | |||
2007-12-13 | use CLIP template for clipping, made an array static const and renamed ↵ | Gregory Montoir | |
MAX_OBJECTDATA to MAX_VAR svn-id: r29853 | |||
2007-12-13 | Cleanup | Filippos Karapetis | |
svn-id: r29844 |