Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-05-12 | GIT: Clean up: Suppress SVN tags, now useless | strangerke | |
2011-04-28 | JANITORIAL: Add in necessary include files to fix compilation in MSVC | Paul Gilbert | |
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-02-09 | AUDIO: Rename sound/ dir to audio/ | Max Horn | |
svn-id: r55850 | |||
2010-11-29 | SDL: Trying to cleanup the FORBIDDEN_SYMBOL situation | Max Horn | |
svn-id: r54575 | |||
2010-11-29 | BACKENDS: Include scummsys.h at top of all .cpp files, *before* any #ifdefs | Max Horn | |
svn-id: r54573 | |||
2010-10-30 | ALL: Add code to help stop people from accidentally using "bad" APIs | Max Horn | |
A new header file common/forbidden.h is included by scummsys.h and it re-#defines numerous symbols like fopen(), fread(), system(), etc. with garbage, in order to provoke compile errors in any code using them. If a .cpp file really *must* use any of these (e.g. because it is a backend file), then these redefinitions can be disabled by #defining FORBIDDEN_SYMBOL_ALLOW_ALL as the first thing in the .cpp file. Whenever this is done, an explanatory comment should be added. Note that this system cannot catch all "bad" usages (notably the Lua code in the sword25 engine), as it can only work if scummsys.h is included. svn-id: r53961 | |||
2010-09-18 | JANITORIAL: Removed most punctuation at end of warning() and error() | Torbjörn Andersson | |
Our warning() and error() functions always add an exclamation mark to the end of the message anyway. svn-id: r52791 | |||
2010-06-26 | Define WIN32_LEAN_AND_MEAN before including windows.h. | Johannes Schickel | |
This will cause our code to include less functionality, but might on the other hand fasten up the compilation. svn-id: r50346 | |||
2010-06-26 | GUI: Add and improve some messages to translate | Jordi Vilalta Prat | |
svn-id: r50324 | |||
2010-06-21 | Patch #1956501: "GUI/LAUNCHER: Midi device selection" | Max Horn | |
svn-id: r50128 | |||
2009-12-09 | Remove the Audio::Mixer parameter from the midi/music plugins | Max Horn | |
svn-id: r46315 | |||
2009-03-20 | Fix parameter in Windows MIDI backend (this is according to API ↵ | Johannes Schickel | |
documentation from M$). svn-id: r39556 | |||
2008-11-30 | - Extended MidiDriver::sysEx to allow 264 byte sysEx messages | Johannes Schickel | |
- Updated all drivers to allow 264+2 byte sysEx messages - Implemented sysEx processing for MT-32 for Kyra1 and HoF. MT-32 should now be working properly. svn-id: r35180 | |||
2008-11-05 | Turned enum PluginError into Common::Error, which in the future is to be ↵ | Max Horn | |
used in more places. Help with this is highly welcome svn-id: r34906 | |||
2008-06-13 | Added initial interface to list music devices and their types | Jordi Vilalta Prat | |
svn-id: r32695 | |||
2008-06-13 | Renamed MIDI plugins to Music plugins | Jordi Vilalta Prat | |
svn-id: r32693 | |||
2008-05-14 | - Added more information (ID and capabilities) to the MIDI drivers | Jordi Vilalta Prat | |
- Added the MidiPlugin interface to the remaining MIDI drivers - Added an initial MidiManager to handle the MIDI plugins (just static plugins by now) svn-id: r32117 | |||
2008-05-14 | Moved midiplugin.h to sound/ since it will be used for more than just the ↵ | Jordi Vilalta Prat | |
native MIDI drivers. svn-id: r32097 | |||
2008-05-11 | Fixed compilation under windows | Filippos Karapetis | |
svn-id: r32010 | |||
2008-05-11 | Added the MidiPlugin interface (first step towards the MIDI plugins) | Jordi Vilalta Prat | |
svn-id: r31993 | |||
2007-09-19 | Merged common/stdafx.h into common/scummsys.h. All referencing files have ↵ | Nicola Mettifogo | |
been updated. svn-id: r28966 | |||
2007-05-30 | Updated legal headers in source files, based on what Pidgin (the IM client ↵ | Max Horn | |
formerly knowns as Gaim) does; added new (incomplete) COPYRIGHT file; updated copyright dates in a few spots svn-id: r27024 | |||
2007-03-09 | reduced dependency from windows-specific header files | Nicola Mettifogo | |
svn-id: r26034 | |||
2007-02-16 | Unified how we deal with (and how we generate) MIDI sysex messages -- in ↵ | Max Horn | |
particular, we now always do so w/o framing the message (documented this with a Doxygen comment in the MidiDriver class) svn-id: r25630 | |||
2006-02-27 | SysEx data now passed around with const pointers. Permits simplification of ↵ | Jamieson Christian | |
some SysEx client code. Testing on Windows. Developers on other platforms, please verify integrity of music handling in your respective MidiDrivers. svn-id: r20952 | |||
2006-02-11 | Change CVS keywords to SVN keywords | Max Horn | |
svn-id: r20535 | |||
2006-01-18 | Update copyright notice | Eugene Sandulenko | |
svn-id: r20088 | |||
2005-10-18 | Update FSF address. Eek. Actually that took place on May 1, 2005 | Eugene Sandulenko | |
svn-id: r19142 | |||
2005-07-02 | cleanup | Max Horn | |
svn-id: r18484 | |||
2005-06-24 | When including files from common/, explicitly use the common/ prefix | Max Horn | |
svn-id: r18444 | |||
2005-01-01 | Updated copyright | Max Horn | |
svn-id: r16398 | |||
2004-11-10 | - Minor improvement to failure handling. | Jerome Fisher | |
svn-id: r15777 | |||
2004-01-06 | updated copyright notice | Max Horn | |
svn-id: r12176 | |||
2003-11-08 | cleanup whitespaces | Paweł Kołodziejski | |
svn-id: r11220 | |||
2003-09-25 | Fix for Bug [810564] ALL: missing instruments with native MT-32 | Jamieson Christian | |
As defined in Patch [811623] MT-32 patch for Bug 810564 Added a channel mask to MPU-401 devices so that --native-mt32 may force the device to use only the subset of MIDI channels actually supported by the MT-32. Also added a best-guess interpretation of iMuse Part priority in the SysEx 0x00 msg, since part priorities become more of an issue when the channel count is cramped. svn-id: r10409 | |||
2003-09-10 | moved declaration of error/warning/debug from engine.h to util.h | Max Horn | |
svn-id: r10151 | |||
2003-06-11 | Fixed race condition in MPU401 shutdown | Jamieson Christian | |
svn-id: r8432 | |||
2003-06-01 | Fixed SysEx errors | Jamieson Christian | |
svn-id: r8212 | |||
2003-05-18 | Implemented new Simon MIDI module, switching from MidiStreamer to ↵ | Jamieson Christian | |
MidiParser. Restructuring enables XMIDI support and vc_72 implementation. Various cleanup on MidiParser's and MidiDriver's. svn-id: r7654 | |||
2003-05-15 | Possible fix for Windows SysEx transmissions | Jamieson Christian | |
svn-id: r7525 | |||
2003-03-06 | updated copyrights headers | Paweł Kołodziejski | |
svn-id: r6726 | |||
2003-03-06 | and more cleanup .... | Paweł Kołodziejski | |
svn-id: r6719 | |||
2003-01-10 | First-revision SysEx support for -ewindows. | Jamieson Christian | |
svn-id: r6381 | |||
2002-12-12 | Fixed VC++ errors in Windows driver after streaming capability was removed. | Jamieson Christian | |
svn-id: r5908 | |||
2002-12-11 | ripped out obsolete midi streaming code from backends (this may break ↵ | Max Horn | |
Alsa/SEQ/Windows/Morphos compile, I tried my best, but you'll have to clean up after me) svn-id: r5905 | |||
2002-12-11 | fixed legal header | Max Horn | |
svn-id: r5902 | |||
2002-12-11 | Separated Windows MIDI driver into its own file | Jamieson Christian | |
svn-id: r5901 |