Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-04-02 | Treat 'targes' like the other command line 'commands' | Max Horn | |
svn-id: r21570 | |||
2006-04-02 | Move handling of --list-targets and --list-games to a later point (after ↵ | Max Horn | |
plugin & config file loading), to make them work properly again. svn-id: r21569 | |||
2006-04-02 | Split GameDetector::parseCommandLine into a static parseCommandLine method ↵ | Max Horn | |
which returns a StringMap with all settings, and a non-static parseCommandLine method which interprets the StringMap returned by parseCommandLine. svn-id: r21563 | |||
2006-03-09 | - Renamed GameSettings to PlainGameDescriptor | Max Horn | |
- Added new GameDescriptor struct (similar to PlainGameDescriptor but with Common::String members instead of const char * ones) - Changed DetectedGame to subclass GameDescriptor - Removed toGameSettings() in favor of new (template) constructors in DetectedGame and GameDescriptor - Fixed a bug in the obsolete gameid handling in the SCUMM & SIMON engines svn-id: r21150 | |||
2006-02-18 | - Merged GameDetector::detectGame() into GameDetector::detectMain() | Max Horn | |
- Replaced GameSettings GameDetector::_game by a simple gameid string svn-id: r20753 | |||
2006-02-18 | - Removed the 'features' field from GameSettings | Max Horn | |
- Removed GF_DEFAULT_TO_1X_SCALER svn-id: r20747 | |||
2006-02-17 | Added global toGameSettings() template function for convenience; simplified ↵ | Max Horn | |
GameSettings usage in some engines svn-id: r20739 | |||
2006-02-11 | Change CVS keywords to SVN keywords | Max Horn | |
svn-id: r20509 | |||
2006-01-21 | Fix various incorrect usages of the word 'target' instead of 'gameid'; ↵ | Max Horn | |
change the ambigiuous 'GameSettings::name' to 'GameSettings::gameid' svn-id: r20115 | |||
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-30 | Remove trailing whitespaces. | Eugene Sandulenko | |
svn-id: r18604 | |||
2005-05-10 | Moved class SoundMixer to Audio::Mixer (didn't call the namespace 'Sound' ↵ | Max Horn | |
because we already have many classes with that name) svn-id: r18039 | |||
2005-03-10 | Add --force-1x-overlay command line option as discussed in bugreport | Eugene Sandulenko | |
#1160454 "ALL: Failed assertion when using 1x scaler" svn-id: r17067 | |||
2005-01-01 | Updated copyright | Max Horn | |
svn-id: r16398 | |||
2004-12-27 | Reducing header dependencies a bit | Max Horn | |
svn-id: r16347 | |||
2004-12-27 | Fix for bug #1091748 (DIG: Starting new games takes a long time); turns out ↵ | Max Horn | |
querying the debuglevel from the config-manager very often is too slow svn-id: r16345 | |||
2004-12-02 | Moved MidiDriver creation code into the MidiDriver class (as static ↵ | Max Horn | |
methods), same for some other MIDI related stuff svn-id: r15968 | |||
2004-02-24 | the OSystem changes we discussed on the ML (note: renaming of the existing ↵ | Max Horn | |
OSystem API is not yet finished); porters will have to fix their ports to get them to compile again svn-id: r13036 | |||
2004-02-22 | avoid #include scaler.h | Max Horn | |
svn-id: r12997 | |||
2004-01-18 | don't use bit 31 | Max Horn | |
svn-id: r12501 | |||
2004-01-16 | Hack for Launcher Scaler dropdown. Backends using the Launcher will need to ↵ | James Brown | |
implement the OSystem HAS_SCALER property. The global options dialog still needs doing. svn-id: r12436 | |||
2004-01-06 | updated copyright notice | Max Horn | |
svn-id: r12176 | |||
2003-12-21 | Make it possible for game detection functions to detect language/platform ↵ | Max Horn | |
(not yet done by any detector, but will come with the MD5 detection code) svn-id: r11811 | |||
2003-12-13 | removed GameSettings::detectname and GameSettings::midi; renamed ↵ | Max Horn | |
GameSettings::gameName to name; added temporary experimental MD5 hack svn-id: r11603 | |||
2003-11-10 | cut down on unnecessary GameDetector references | Max Horn | |
svn-id: r11239 | |||
2003-11-08 | cleanup whitespaces | Paweł Kołodziejski | |
svn-id: r11218 | |||
2003-11-02 | turned NewGui into a singleton, and made OSystem a pseudo-singleton; added ↵ | Max Horn | |
Widget::findWidget (preparing to add support for nested widgets, for the tab widget) svn-id: r11045 | |||
2003-10-28 | cleanup: removed version/id from GameSettings | Max Horn | |
svn-id: r10995 | |||
2003-10-18 | We proudly present the latest installment of our hit series 'Untangle the ↵ | Max Horn | |
mess': 'Help! Space Invaders refactored the music detector'... in other news, I obviously need to sleep now svn-id: r10883 | |||
2003-10-17 | cleanup | Max Horn | |
svn-id: r10874 | |||
2003-10-17 | added a listTargets() function (not yet used, soon) and some cleanup | Max Horn | |
svn-id: r10865 | |||
2003-10-17 | oops, forgot to remove the old Platform enum | Max Horn | |
svn-id: r10863 | |||
2003-10-17 | moved platform/language constants to common/util.* | Max Horn | |
svn-id: r10862 | |||
2003-10-17 | factored out the game detection code into the Plugin class; this is the ↵ | Max Horn | |
first step towards allowing more powerful, plugin specific detection code; also, moved the Plugin GameSettings APIs to a slightly higher level svn-id: r10858 | |||
2003-10-15 | removed the kDefault*Volume constants | Max Horn | |
svn-id: r10816 | |||
2003-10-14 | fix debug mode 0 | Max Horn | |
svn-id: r10791 | |||
2003-10-12 | some renaming for more consistent terminology (although we might want to ↵ | Max Horn | |
reevaluate this): 'target' is what is in your config file; 'game' is what a frontend provide. E.g. the scumm frontend provides the game 'monkeyvga', and my config file has target 'monkeyvga-ger' configured to use that game svn-id: r10766 | |||
2003-10-08 | new config manager. not everything is completed, and some things will still ↵ | Max Horn | |
be changed, but it seems to work well enough to put it into CVS svn-id: r10687 | |||
2003-10-05 | Preliminary preparation for new YM2612 FM emulator. | Jamieson Christian | |
All the hooks are in, but actual implementation needs to be checked for portability. svn-id: r10615 | |||
2003-10-02 | cleanup & restructuring; in particular move the midi driver list to its own ↵ | Max Horn | |
source file svn-id: r10550 | |||
2003-10-02 | renamed namespace ScummVM to Common | Max Horn | |
svn-id: r10544 | |||
2003-10-01 | disable joystick input by default either command line or config file need to ↵ | Jonathan Gray | |
be used to enable it now, ability to choose joystick number to use also added svn-id: r10518 | |||
2003-09-20 | fix invalid target crash for build using loadable modules | Max Horn | |
svn-id: r10325 | |||
2003-09-17 | cleanup | Max Horn | |
svn-id: r10284 | |||
2003-09-17 | new module 'base'; moved gameDetector.*, main.cpp and base/plugins.* there ↵ | Max Horn | |
(this removes the need for an ugly hack in the build system, and is also conceptionally cleaner) svn-id: r10282 |