Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-05-15 | Indentation and whitespace. | Torbjörn Andersson | |
svn-id: r18107 | |||
2005-05-15 | Added String::iterator | Max Horn | |
svn-id: r18105 | |||
2005-05-14 | Improvements to --disable-* stuff. Now less ugly #ifdefs with #includes. | Eugene Sandulenko | |
svn-id: r18100 | |||
2005-05-14 | Added --disable-hq and --disable-scumm-7-8 options. Also improved | Eugene Sandulenko | |
DISABLE_HE so more HE-specific code gets excluded. svn-id: r18099 | |||
2005-05-14 | Factor out common stuff in scummsys.h a little bit | Max Horn | |
svn-id: r18095 | |||
2005-05-14 | Removing the last traces of the old custom new/delete operators | Max Horn | |
svn-id: r18094 | |||
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-05-10 | Moved (In/Out)SaveFile(Manager) and Timer to namespace Common | Max Horn | |
svn-id: r18038 | |||
2005-05-10 | Moved class File and the MD5 stuff to namespace Common | Max Horn | |
svn-id: r18037 | |||
2005-05-10 | Fix compilation | Eugene Sandulenko | |
svn-id: r18017 | |||
2005-05-10 | Fix compilation | Eugene Sandulenko | |
svn-id: r18016 | |||
2005-05-09 | fixed compilation for evc4 and vc7 | Paweł Kołodziejski | |
svn-id: r18013 | |||
2005-05-09 | Patch #1181544 (AmigaOS 4 changes) | Max Horn | |
svn-id: r18011 | |||
2005-05-09 | fixed warnings | Paweł Kołodziejski | |
svn-id: r18004 | |||
2005-05-09 | Fix doxygen comment | Max Horn | |
svn-id: r17999 | |||
2005-05-08 | Silly copy & paste error :-) | Max Horn | |
svn-id: r17981 | |||
2005-05-08 | New method InSaveFile::skip() | Max Horn | |
svn-id: r17979 | |||
2005-05-08 | Code to grab & downscale the screen content (used for thumbnail creation, ↵ | Max Horn | |
part of patch #1163026) svn-id: r17978 | |||
2005-05-08 | Comply to our coding conventions | Max Horn | |
svn-id: r17975 | |||
2005-05-08 | Added two new methods to OSystem: grabPalette and grabRawScreen | Max Horn | |
svn-id: r17974 | |||
2005-05-08 | oops | Max Horn | |
svn-id: r17971 | |||
2005-05-08 | Fix doxygen warning | Max Horn | |
svn-id: r17970 | |||
2005-05-08 | Fix doxygen warning | Max Horn | |
svn-id: r17969 | |||
2005-05-06 | Fix another doyxgen warning | Max Horn | |
svn-id: r17933 | |||
2005-05-05 | Fixed some doxygen warnings | Max Horn | |
svn-id: r17923 | |||
2005-05-05 | Turned File::exists into a static method (as it should have been from the ↵ | Max Horn | |
start, silly copy&paste mistake svn-id: r17915 | |||
2005-05-02 | Don't assert that "domain" is valid. One of the cases where this function | Torbjörn Andersson | |
is called is when parsing the command-line, and we can't really expect the user to always type something sensible. svn-id: r17893 | |||
2005-04-28 | Moved Stream::eos() to ReadStream::eos() | Max Horn | |
svn-id: r17853 | |||
2005-04-27 | Use a pointer ref for RGBtoYUV, instead of an array, so that we can choose ↵ | Max Horn | |
to allocate RGBtoYUV on the heap; added a comment that tries to explain why RGBtoYUV and LUT16to32 are evil and slow and how they could be removed svn-id: r17834 | |||
2005-04-24 | Some C++ compilers don't support the 'not' keyword, it seems | Max Horn | |
svn-id: r17793 | |||
2005-04-24 | Add additional check for comments with (). | Travis Howell | |
Required for map.ini file included with mustard. svn-id: r17783 | |||
2005-04-24 | The last section of config file was not saved, when loading config file. | Travis Howell | |
Fix all string compares. svn-id: r17781 | |||
2005-04-23 | Implement some missing methods | Max Horn | |
svn-id: r17780 | |||
2005-04-23 | Make StringMap class (with case insensitive keys) global | Max Horn | |
svn-id: r17779 | |||
2005-04-23 | Added new ConfigFile class. It is not yet used anywhere. ConfigManager will ↵ | Max Horn | |
be rewritten around this class. Note that it is not final yet and may be revised in many ways. svn-id: r17773 | |||
2005-04-23 | Remove StringMap class from map.h (at least for now) | Max Horn | |
svn-id: r17772 | |||
2005-04-23 | Simplified debuglevel handling: | Max Horn | |
- it's only honored in the global level of the config file - all checks for it go through gDebugLevel now, which is made global - the '-d' switch is handled in a slightly saner and consistent way - removed 'debuglevel' from the config format documentation; we do not want to encourage the avarage user to use it svn-id: r17769 | |||
2005-04-23 | Check for a '\' before adding slash too, otherwise starting a game in root ↵ | Travis Howell | |
directory will fail. svn-id: r17763 | |||
2005-04-22 | Use class File instead of FILE (not finished) | Max Horn | |
svn-id: r17753 | |||
2005-04-22 | * Added new virtual base class 'Stream', ReadStream and | Max Horn | |
WriteStream are now subclasses of it. * Added new methods eos(), ioFailed(), clearIOFailed() to all streams. This allows better error checking. * SaveFile classes take advantage of these new standard stream APIS * Removed File::gets() * Added SeekableReadStream::readLine() (replaces File::gets) * Added WriteStream::writeString, for convenience svn-id: r17752 | |||
2005-04-19 | Replace OSystem::hasAlpha with a feature flag | Max Horn | |
svn-id: r17695 | |||
2005-04-19 | Added new (optional) OSystem::initBackend() method; this (and its usage) ↵ | Max Horn | |
fixes bugs #1160977 and #1184664 svn-id: r17694 | |||
2005-04-16 | vc compile warn | Andrew Kurushin | |
svn-id: r17637 | |||
2005-04-13 | Get rid of errno; add some (optional) error checking facilities to SaveFile ↵ | Max Horn | |
classes (they are ugly, and to simple, but better than nothing) svn-id: r17589 | |||
2005-04-10 | split SaveFileManager::openSavefile and class SaveFile into two, each, one ↵ | Max Horn | |
for loading and one for saving svn-id: r17517 | |||
2005-04-09 | Moved the GFX_ constants to sdl-common.h, where they belong. | Max Horn | |
svn-id: r17479 | |||
2005-04-09 | A common platform alias for 'Windows' is 'win' | Max Horn | |
svn-id: r17478 | |||
2005-04-08 | Add NES platform | Eugene Sandulenko | |
svn-id: r17454 | |||
2005-04-03 | Added some comments on how the graphics in OSystem are meant to work, based ↵ | Max Horn | |
partially on a nice mail by Marcus, and adding in some information of my own. Certainly could be improved in style, language, content and everything, but once again it should be better than nothing... svn-id: r17359 | |||
2005-04-03 | Added some overlay method comments. They could be better and explain more, ↵ | Max Horn | |
but it's at least a start svn-id: r17358 |