Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-03-24 | GP2X: Remove incorrect GP2XWiz define from the GP2X event code. | David-John Willis | |
* My plan is to move all of the GPH devices into the GPH backend but for now this is just a merge mess from the GSoC-OpenGL branch. | |||
2011-03-24 | ANDROID: Fix texture double release | dhewg | |
2011-03-24 | SCI: Close Memory Leak from kAnimate Calls. | D G Turner | |
This was due to a missing destructor in the HunkTable. Thanks to wjp for this patch. | |||
2011-03-24 | ANDROID: Fix cursor's keycolor | dhewg | |
Don't wipe the RGB bits, fixes wrong colors on BASS cursors | |||
2011-03-24 | ANDROID: Cleanup | dhewg | |
2011-03-24 | AUDIO: Expand MidiPlayer docs / goals a bit, mention deadlock bug | Max Horn | |
2011-03-24 | HUGO: Turn FileManager::getBootCypher into a const static variable | Max Horn | |
2011-03-24 | SAGA: Rename some MusicDriver members to match Audio::MidiPlayer | Max Horn | |
2011-03-24 | QUEEN: Rename some MidiMusic members to match Audio::MidiPlayer | Max Horn | |
2011-03-24 | TINSEL: Change MidiMusicPlayer to derive from Audio::MidiPlayer | Max Horn | |
2011-03-24 | PARALLACTION: Change MidiPlayer impls to derive from Audio::MidiPlayer | Max Horn | |
2011-03-24 | MADE: Change MusicPlayer to derive from Audio::MidiPlayer | Max Horn | |
2011-03-24 | M4: Change MidiPlayer to derive from Audio::MidiPlayer | Max Horn | |
Also fix the _driver double delete regression I recently introduced | |||
2011-03-24 | HUGO: Change MidiPlayer to derive from Audio::MidiPlayer | Max Horn | |
2011-03-24 | DRACI: Change MusicPlayer to derive from Audio::MidiPlayer | Max Horn | |
2011-03-24 | AGI: Change SoundGenMIDI to derive from Audio::MidiPlayer | Max Horn | |
As a side effect, this fixes the incorrect handling of 'All Note Off' in SoundGenMIDI::send. | |||
2011-03-24 | AUDIO: Added Audio::MidiPlayer class | Max Horn | |
This code is currently not complete, but contains enough code to allow several engines to switch their pseudo MidiDrivers to be based on this class, greatly reducing code duplication. | |||
2011-03-24 | DRACI: Fix incorrect 'all notes off' handling | Max Horn | |
2011-03-24 | QUEEN: Fix incorrect 'all notes off' handling | Max Horn | |
2011-03-24 | HUGO: When erroring out due to a missing file, tell the user which file is ↵ | Max Horn | |
missing | |||
2011-03-24 | SWORD25: Commit submitted patch of German comments translated to English | Paul Gilbert | |
2011-03-23 | MOHAWK: Use direct access on the hashmap for Riven variables now | Matthew Hoops | |
2011-03-23 | MOHAWK: Make Riven's save/load code use the variable map directly | Matthew Hoops | |
2011-03-23 | MOHAWK: Begin using a hashmap to store Riven variables | Matthew Hoops | |
2011-03-23 | ENGINES: Remove unused MIDI pass-through code | 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 | AUDIO: Introduce a new MidiDriver_BASE base class. | Max Horn | |
The actual MidiDriver derives from it. MidiDriver_BASE only provides the minimal API necessary for transmitting MIDI data. The idea is that this is all MidiParser needs, thus allowing us to simplify the various MidiPlayer classes in our engines. | |||
2011-03-23 | AUDIO: Update some comments, remove some obsolete ones | Max Horn | |
2011-03-23 | AGOS: Sanitize the mutex locking in MidiPlayer::startTrack | Max Horn | |
2011-03-23 | ENGINES: Use Common::StackLock in more places | Max Horn | |
2011-03-23 | TINSEL: Make MidiMusicPlayer::_parser and _mutex protected | Max Horn | |
2011-03-23 | SCUMM: Remove unused iMuse MIDI 'passthrough' code | Max Horn | |
2011-03-23 | COMMON: Remove TODO from struct Event | Max Horn | |
I moved this TODO to the Wiki TODO page and extended it there. Yet while I originally wrote it, I now think that we are probably best off keeping things as they are. | |||
2011-03-23 | SWORD25: Commit of patch translating German comments to English | Paul Gilbert | |
2011-03-22 | MOHAWK: Remove 'old' from the LB v1 sound function too | Matthew Hoops | |
2011-03-22 | MOHAWK: Rename OldMohawkBitmap to LivingBooksBitmap_v1 | Matthew Hoops | |
'Old' is very ambiguous ;) | |||
2011-03-22 | MOHAWK: Begin to implement Riven opcode 38 | Matthew Hoops | |
Also, renamed it to better reflect its purpose | |||
2011-03-22 | MOHAWK: Minor cursor call cleanup | Matthew Hoops | |
2011-03-22 | MOHAWK: Remove the Riven 'restart' console command | Matthew Hoops | |
This ancient console function has no purpose any longer and is half-broken anyway. | |||
2011-03-22 | MOHAWK: Cleanup installer handling | Matthew Hoops | |
2011-03-22 | MOHAWK: Handle launcher load fails more gracefully | Matthew Hoops | |
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-22 | NEWS: Mention new Swedish translation | Thierry Crozat | |
2011-03-22 | I18N: Update translation data file | Thierry Crozat | |
2011-03-22 | I18N: Clean po files (remove obsolete strings) | Thierry Crozat | |
2011-03-22 | I18N: Regenerate translation template and update po files | Thierry Crozat | |
This follows the modification done in the scumm help dialog to reduce the number of strings to translate. | |||
2011-03-22 | I18N: Break keyboard shortcut translation by key | Thierry Crozat | |
In the scumm help dialog, translate single keys, e.g. "Ctrl" or "Alt" instead of asking the translator to translate individually "Ctrl a", "Ctrl b", "Alt a", "Alt b", Ctrl Alt a" and so on. This reduce greatly the number of strings to translate. | |||
2011-03-22 | BUILD: remove obsolete rule for translation support | Thierry Crozat | |
2011-03-22 | CREDITS: Add credits for Swedish translation | Thierry Crozat | |