aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra
AgeCommit message (Collapse)Author
2011-06-25KYRA: _athrxx is the new Kyra maintainer.Johannes Schickel
2011-06-25KYRA: revert d7e700f370c258a5f4786d972af3666b93b71f94athrxx
The GMM mouse cursor bug has now been fixed inside the GMM and CursorMan code.
2011-06-23ANALYSIS: Add static casts to is* functionsLittleboy
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-23KYRA: Allocate screen region buffer on the heapJulien
2011-06-20ALL: Remove trailing whitespacesMax 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-19LOL: fix bug reported on forumathrxx
In cases where the script failed to delete a certain character from the party (because that character was not a party member) it would add this character to the party instead. E.g. when returning to Gladstone without having picked up Timothy, he would get added to the party after the throne room scene. The same happened with Lora at the Draracle if she wasn't picked up on the way.
2011-06-18KYRA: Replace vsprintf by Common::String::vformatMax Horn
2011-06-14DETECTOR: Merge ADParams into AdvancedMetaEngineMax Horn
2011-06-13I18N: Make many more GUI MessageDialog strings translatableThierry Crozat
2011-06-12LOL: fix typoathrxx
2011-06-12LOL: add another detection entry for Italian fan translationathrxx
(this detection entry applies if the game has been patched with the official 1.02 patch before using the translation patch)
2011-06-11LOL: update kyra.dat for italian fan translationathrxx
2011-06-10LOL: fix so-called bug #3313950athrxx
(LoL support for Italian fan translation)
2011-06-10KYRA: Switch to alternate AdvancedMetaEngine, avoid ADParamsMax Horn
2011-06-10ENGINES: Change incorrect use of 'target' to 'gameid'Max Horn
2011-06-09KYRA: Add a default case to a switch statement.Johannes Schickel
This includes a TODO, about what to do if we ever hit this case.
2011-06-09KYRA: Get rid of most snprintf usages.Johannes Schickel
Thanks to digitall for his initial patch, which I only altered slightly.
2011-06-05KYRA: fix audio detectionathrxx
Don't attempt to detect PC devices for non-PC versions of the game, because this might trigger unnecessary detection failure messages.
2011-06-05KYRA: fix GMM savingathrxx
(match with 477d6233c3672d9a60cceea3570bc775df3d9253)
2011-06-05LOL: cleanupathrxx
- fix RTL during outro/credits - get rid of _animator - fix wrong memset
2011-06-04LOL: changed workaround for fireball bugathrxx
(see comment in items_lol.cpp)
2011-06-03KYRA: improve readability of key mapping codeathrxx
2011-05-29KYRA: pause midi sounds while gmm is runningathrxx
2011-05-29KYRA: remove useless mutex from sound_townsathrxx
2011-05-25ALL: initialise -> initializeMatthew Hoops
2011-05-17FM-TOWNS AUDIO: Some midi code fixes and some renamingathrxx
2011-05-17FM-TOWNS AUDIO: Some renaming in the euphony driver codeathrxx
2011-05-17COMMON: Registers RandomSources in constructor with the event recorderMax 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-16KYRA: Change engine name to KyraThierry Crozat
2011-05-16ENGINES: Unify engine namesThierry 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-12GIT: Clean up: Suppress SVN tags, now uselessstrangerke
2011-04-28KYRA: Fix compilation when LoL is disabled.Johannes Schickel
2011-04-28KYRA: Clean up of header includes.Johannes Schickel
2011-04-28JANITORIAL: Reduce header dependencies in shared codeOri Avtalion
Some backends may break as I only compiled SDL
2011-04-18COMMON: Rename Error to ErrorCode, introduce new Error classMax Horn
2011-04-14KYRA: Enforce use of American English in comments.Johannes Schickel
2011-04-12COMMON: Replace MKID_BE by MKTAGMax 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-04-11KYRA: Add some assertion to prevent out of bounds access.Johannes Schickel
2011-04-11KYRA: Constify static data table in LoL code.Johannes Schickel
2011-04-11KYRA: Get rid of non-const static variable in Kyra2 code.Johannes Schickel
2011-04-11KYRA: Cleanup.Johannes Schickel
2011-04-11KYRA: Get rid of non-const static variables in HoF.Johannes Schickel
2011-04-09DEVTOOLS: Renamed 'tools' directory to 'devtools'Max Horn
2011-04-07KYRA: Slight cleanup.Johannes Schickel
This more or less silently fixes the silent music introduced with f19e201, by me setting volume to "true" instead of "255". Whoops.
2011-04-07KYRA: Cleanup background music looping of Kyra3.Johannes Schickel
2011-04-07KYRA: Cleanup static variable usage in LoK.Johannes Schickel
2011-04-07KYRA: Slight cleanup.Johannes Schickel
2011-03-29JANITORIAL: Remove/comment unused varsdhewg
Found by GCC 4.6's -Wunused-but-set-variable
2011-03-23AUDIO: Change several fake MidiDrivers to MidiDriver_BASE subclassesMax 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-22AUDIO: Add pure virtual MidiDriver::isOpen() methodMax 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.