aboutsummaryrefslogtreecommitdiff
path: root/common
AgeCommit message (Collapse)Author
2005-06-21Patches needed to build for SYMBIAN32 WINS/GCC added.Lars Persson
Test built for Symbian and run on P910i without any major problems. Test built for MSVC6. Changed parts seems to compile ok but there are some problems with MSVC6 and some of the targets which the EPOC build does n't support (KYRA,SAGA). svn-id: r18430
2005-06-20Added virtual destructor, to silence a few more GCC 4 warningsMax Horn
svn-id: r18419
2005-06-10fix VS2005beta2 compilationAndrew Kurushin
svn-id: r18374
2005-06-07Increase max number of timers to 8.Eugene Sandulenko
svn-id: r18364
2005-06-05added code for loading dynamic plugins(DLLs) for windowsPaweł Kołodziejski
svn-id: r18356
2005-05-28fix warningAndrew Kurushin
svn-id: r18285
2005-05-28commit adds setWidth & setHeight to extend bounds of rectAndrew Kurushin
svn-id: r18283
2005-05-22Add Norwegian Bokm�l version of Freddi Fish 1.Travis Howell
Set HE70+ games to Windows platform by default. svn-id: r18213
2005-05-17Initial support of C64 MM & ZakEugene Sandulenko
svn-id: r18146
2005-05-15Indentation and whitespace.Torbjörn Andersson
svn-id: r18107
2005-05-15Added String::iteratorMax Horn
svn-id: r18105
2005-05-14Improvements to --disable-* stuff. Now less ugly #ifdefs with #includes.Eugene Sandulenko
svn-id: r18100
2005-05-14Added --disable-hq and --disable-scumm-7-8 options. Also improvedEugene Sandulenko
DISABLE_HE so more HE-specific code gets excluded. svn-id: r18099
2005-05-14Factor out common stuff in scummsys.h a little bitMax Horn
svn-id: r18095
2005-05-14Removing the last traces of the old custom new/delete operatorsMax Horn
svn-id: r18094
2005-05-10Moved 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-10Moved (In/Out)SaveFile(Manager) and Timer to namespace CommonMax Horn
svn-id: r18038
2005-05-10Moved class File and the MD5 stuff to namespace CommonMax Horn
svn-id: r18037
2005-05-10Fix compilationEugene Sandulenko
svn-id: r18017
2005-05-10Fix compilationEugene Sandulenko
svn-id: r18016
2005-05-09fixed compilation for evc4 and vc7Paweł Kołodziejski
svn-id: r18013
2005-05-09Patch #1181544 (AmigaOS 4 changes)Max Horn
svn-id: r18011
2005-05-09fixed warningsPaweł Kołodziejski
svn-id: r18004
2005-05-09Fix doxygen commentMax Horn
svn-id: r17999
2005-05-08Silly copy & paste error :-)Max Horn
svn-id: r17981
2005-05-08New method InSaveFile::skip()Max Horn
svn-id: r17979
2005-05-08Code to grab & downscale the screen content (used for thumbnail creation, ↵Max Horn
part of patch #1163026) svn-id: r17978
2005-05-08Comply to our coding conventionsMax Horn
svn-id: r17975
2005-05-08Added two new methods to OSystem: grabPalette and grabRawScreenMax Horn
svn-id: r17974
2005-05-08oopsMax Horn
svn-id: r17971
2005-05-08Fix doxygen warningMax Horn
svn-id: r17970
2005-05-08Fix doxygen warningMax Horn
svn-id: r17969
2005-05-06Fix another doyxgen warningMax Horn
svn-id: r17933
2005-05-05Fixed some doxygen warningsMax Horn
svn-id: r17923
2005-05-05Turned 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-02Don't assert that "domain" is valid. One of the cases where this functionTorbjö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-28Moved Stream::eos() to ReadStream::eos()Max Horn
svn-id: r17853
2005-04-27Use 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-24Some C++ compilers don't support the 'not' keyword, it seemsMax Horn
svn-id: r17793
2005-04-24Add additional check for comments with ().Travis Howell
Required for map.ini file included with mustard. svn-id: r17783
2005-04-24The last section of config file was not saved, when loading config file.Travis Howell
Fix all string compares. svn-id: r17781
2005-04-23Implement some missing methodsMax Horn
svn-id: r17780
2005-04-23Make StringMap class (with case insensitive keys) globalMax Horn
svn-id: r17779
2005-04-23Added 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-23Remove StringMap class from map.h (at least for now)Max Horn
svn-id: r17772
2005-04-23Simplified 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-23Check for a '\' before adding slash too, otherwise starting a game in root ↵Travis Howell
directory will fail. svn-id: r17763
2005-04-22Use class File instead of FILE (not finished)Max Horn
svn-id: r17753
2005-04-22* Added new virtual base class 'Stream', ReadStream andMax 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-19Replace OSystem::hasAlpha with a feature flagMax Horn
svn-id: r17695