Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-12-13 | COMMON: Make more members of Archive constant. | Andrea Corna | |
2011-11-03 | PARALLACTION: Fix memset size parameter. | Johannes Schickel | |
2011-11-03 | PARALLACTION: Fix warnings. Fix nasty out-of-scope bug in parallaction_br.cpp | Eugene Sandulenko | |
2011-10-23 | AD: Switched rest of the engines to new GUIO | Eugene Sandulenko | |
2011-10-01 | PARALLACTION: Fixed bugs #2880939 and #3135868 | Filippos Karapetis | |
A regression from commit 774773b. Many thanks to digitall for bisecting | |||
2011-09-29 | PARALLACTION: Code formatting (and trying to keep clone2727 happy! :P ) | Filippos Karapetis | |
2011-09-29 | PARALLACTION: Fixed bug #2969915 - "NIPPON: Disguise changing back and forth" | Filippos Karapetis | |
A regression from commit 18b48c7. The name of the normal Donna actor is "donna", whereas it's "donnatras" for the disguised one, so strstr() seems to be wrong here. This fixes the bug and it shouldn't cause any further regressions. Also, changed the relevant code to conform to our code convention guidelines - it's quite a bad idea to not enclose a whole big code block in brackets, as it becomes hard to read. | |||
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-09-02 | PARALLACTION: Add Graphics Debug Output. Minor Whitespace Fixes. | D G Turner | |
This adds debug output for graphics object access to help with investigation of bug #2969913 i.e. "NIPPON: Katana graphics not shown (regression)" as well as cleanup of whitespace in this class. | |||
2011-08-24 | PARALLACTION: Correct Previous Commit to Coding Conventions. | D G Turner | |
2011-08-24 | PARALLACTION: Improve safety of PathBuffer Accesses in Pathfinding. | D G Turner | |
2011-08-07 | JANITORIAL: Remove trailing empty lines. | Christoph Mallon | |
2011-08-06 | ALL: Reduce audio/ header dependency | Eugene Sandulenko | |
2011-07-03 | COMMON: Fix compilation when USE_HASHMAP_MEMORY_POOL is not defined. | Johannes Schickel | |
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-06-14 | DETECTOR: Merge ADParams into AdvancedMetaEngine | Max Horn | |
2011-06-13 | I18N: Make many more GUI MessageDialog strings translatable | Thierry Crozat | |
2011-06-10 | PARALLACTION: Switch to alternate AdvancedMetaEngine, avoid ADParams | Max Horn | |
2011-06-10 | ENGINES: Change incorrect use of 'target' to 'gameid' | Max Horn | |
2011-05-17 | COMMON: Registers RandomSources in constructor with the event recorder | Max Horn | |
This also removes the dependency of engines on the event recorder header and API, and will make it easier to RandomSources that are not properly registered. | |||
2011-05-16 | ENGINES: Unify engine names | Thierry Crozat | |
This unifies the engine names in MetaEngine::getName() and the credits. In particular drop "Engine" or "engine" from the names when it was present and use expanded names in credits when the MetaEngine uses it (e.g. "Beneath a Steel Sky" instead of "BASS"). | |||
2011-05-12 | GIT: Clean up: Suppress SVN tags, now useless | strangerke | |
2011-05-01 | Merge pull request #16 "Add a PixelFormat to Graphics::Surface.". | Johannes Schickel | |
For further discussion check here: https://github.com/scummvm/scummvm/pull/16 Conflicts: graphics/png.cpp | |||
2011-04-30 | PARALLACTION: Fix BRA Compilation After Common Header Changes. | D G Turner | |
2011-04-28 | JANITORIAL: Reduce header dependencies in shared code | Ori Avtalion | |
Some backends may break as I only compiled SDL | |||
2011-04-28 | JANITORIAL: Format forward declarations to follow convention | Ori Avtalion | |
2011-04-18 | COMMON: Rename Error to ErrorCode, introduce new Error class | Max Horn | |
2011-04-17 | PARALLACTION: Prefer Surface::create taking a PixelFormat over the one ↵ | Johannes Schickel | |
taking a byte depth. | |||
2011-04-12 | COMMON: Replace MKID_BE by MKTAG | Max Horn | |
MKID_BE relied on unspecified behavior of the C++ compiler, and as such was always a bit unsafe. The new MKTAG macro is slightly less elegant, but does no longer depend on the behavior of the compiler. Inspired by FFmpeg, which has an almost identical macro. | |||
2011-03-25 | AUDIO: Move more common code to Audio::MidiPlayer | Max Horn | |
This also should fix some regressions from the previous commits, related to MidiParser's either being leaked, or being deleted and then used again (i.e., crashing). I tested as many games as I had available, but further testing of all affected engines is called for anyway. | |||
2011-03-25 | PARALLACTION: Move MidiDriver creation into MidiPlayer(_MSC) constructors | Max Horn | |
2011-03-24 | PARALLACTION: Change MidiPlayer impls to derive from Audio::MidiPlayer | Max Horn | |
2011-03-23 | ENGINES: Further simplify pseudo MidiDrivers; fix some regressions | Max Horn | |
The regression affected AGOS and maybe some others; specifically, the real MidiDriver would have been deleted twice -- I previously missed that the Engine instances takes care of freeing the real MidiDriver, not the MidiPlayer wrapping it. This commit should clarify the ownership of the real MidiDriver for most pseudo MidiDrivers. | |||
2011-03-23 | AUDIO: Change several fake MidiDrivers to MidiDriver_BASE subclasses | Max Horn | |
Many engines follow the advice in audio/midiparser.h and create a "pseudo-MidiDriver" subclass. But MidiParser really only needs a tiny subset of the MidiDriver capabilities, namely those found in MidiDriver_BASE. So we try to subclass from that whenever possible; this allows us to remove many stub methods, and enables further future simplifications. | |||
2011-03-23 | ENGINES: Use Common::StackLock in more places | Max Horn | |
2011-03-22 | AUDIO: Add pure virtual MidiDriver::isOpen() method | Max Horn | |
This in turn enables modifying MidiDriver_MPU401::close() to allow it to be called on a midi driver that has not yet been opened. The specific issue that triggered me to make these changes was a crash-upon-quit in HUGO, caused by it instantiating a midi driver, then encountering an error (missing hugo.dat) *before* having opened the new midi driver; the general cleanup code then tries to close the (not yet opened) midi driver -> kaboom Also fixed some engines which were leaking MidiDriver instances. | |||
2011-03-19 | PARALLACTION: Init volume levels on startup | dhewg | |
2011-02-19 | Merge branch 'osystem-palette' of https://github.com/lordhoto/scummvm into ↵ | Johannes Schickel | |
master Conflicts: backends/platform/android/android.cpp engines/sci/graphics/screen.cpp engines/sci/graphics/transitions.cpp | |||
2011-02-16 | PARALLACTION: Use signed math in fadeTo. | Alyssa Milburn | |
This fixes corruption during fades when low palette values end up negative. | |||
2011-02-16 | PARALLACTION: Fix half bright palette. | Johannes Schickel | |
Thanks to peres for pointing this out to me. | |||
2011-02-14 | PARALLACTION: Adapt to setPalette RGBA->RGB change. | Johannes Schickel | |
This change is not tested, but should hopefully work fine. | |||
2011-02-12 | JANITORIAL: Remove duplicate #include's | Ori Avtalion | |
svn-id: r55889 | |||
2011-02-09 | AUDIO: Rename sound/ dir to audio/ | Max Horn | |
svn-id: r55850 | |||
2011-02-08 | PARALLACTION: Avoid hiding overloaded virtual methods. | Nicola Mettifogo | |
svn-id: r55820 | |||
2011-02-07 | ALL: Fix whitespaces / indention | Max Horn | |
svn-id: r55818 | |||
2011-02-07 | GUI: Rename SaveLoadChooser::runModal to runModalWithPluginAndTarget | Max Horn | |
This avoids hiding an overloaded virtual method, which in turn can cause weird bugs (see also the next commit). svn-id: r55815 | |||
2011-02-07 | COMMON: OSystem now has a PaletteManager | Max Horn | |
svn-id: r55806 | |||
2011-02-06 | PARALLACTION: update MIDI driver commands description for BRA. | Nicola Mettifogo | |
svn-id: r55792 |