aboutsummaryrefslogtreecommitdiff
path: root/common
AgeCommit message (Collapse)Author
2008-11-15Saving some more bytes of binary size in the advanced detectorMax Horn
svn-id: r35081
2008-11-15Little fix for my last commit.Johannes Schickel
svn-id: r35074
2008-11-15Yet another buffer safetyness fix. (strcpy -> strncpy)Johannes Schickel
svn-id: r35073
2008-11-15Paranoia: Add destination buffer size to Engine::errorString to help ↵Johannes Schickel
avoiding buffer overflows. svn-id: r35072
2008-11-14Committed my patch #2123680 "SDL: Backend transaction / rollback support".Johannes Schickel
svn-id: r35062
2008-11-13Fixed compilation with DISABLE_TEXT_CONSOLE.Johannes Schickel
svn-id: r35041
2008-11-13* got rid of CDECLMax Horn
* got rid of scumm_strrev * added DISABLE_TEXT_CONSOLE flag which disables printf, warning, debug (but not error) svn-id: r35038
2008-11-09Removed many unnecessary #includesMax Horn
svn-id: r34959
2008-11-09Removed unused XML_GLOBAL_PROP functionality (saves some kilobytes)Max Horn
svn-id: r34950
2008-11-07Reverted my earlier commit r34926.Nicola Mettifogo
svn-id: r34930
2008-11-07Fixed leak when using SearchSet::add for an already existing name.Johannes Schickel
svn-id: r34928
2008-11-07Fixed leaks in SearchMan. Default directories are now added with the ↵Nicola Mettifogo
'autoFree' parameter set to true. svn-id: r34926
2008-11-07Refactoring the Arj decoder code, phase 4 (done for now, TODO added for ↵Max Horn
future work) svn-id: r34925
2008-11-07Refactoring the Arj decoder code, phase 3 (fixing some more leaks, too)Max Horn
svn-id: r34924
2008-11-07Refactoring the Arj decoder code, phase 2Max Horn
svn-id: r34923
2008-11-07Refactoring the Arj decoder code, phase 1Max Horn
svn-id: r34922
2008-11-06Merged SFMError into Common::Error, added some new error codes; revised some ↵Max Horn
error handling in DefaultSaveManager svn-id: r34915
2008-11-06Got rid of OSystem::colorToRGB and RGBToColor; added implementations for ↵Max Horn
OSystem::getOverlayFormat to several ports (pending testing by the porters) svn-id: r34912
2008-11-06Got rid of OSystem::ARGBToColor and colorToARGBMax Horn
svn-id: r34911
2008-11-06cleanupMax Horn
svn-id: r34910
2008-11-06Simplified AdvancedMetaEngine::fallbackDetect usageMax Horn
svn-id: r34909
2008-11-05Turned 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-11-04dead codeMax Horn
svn-id: r34900
2008-11-04Improved ZipArchive to take arbitrary SeekableReadStream; also, the variant ↵Max Horn
which is inited using a filename now uses SearchMan to lookup the filename's file svn-id: r34899
2008-11-03Committed my patch #2216641 "GRAPHICS: PixelFormat introduction".Johannes Schickel
svn-id: r34875
2008-11-01Commit of patch #2207782 "ARCHIVE: New method 'getMember'".Johannes Schickel
svn-id: r34871
2008-10-30Reset _chunksPerPage after MemoryPool::freeUnusedPages, to avoid enormous ↵Max Horn
memory consumption in various easy to trigger situations; out of paranoia, prohibit for now memory chunks bigger than 16MB svn-id: r34868
2008-10-27Fix for bug #2198456 "FS: Cannot add a subfolder to a non-existing folder".Johannes Schickel
svn-id: r34857
2008-10-23Pushed down some header depsMax Horn
svn-id: r34845
2008-10-22Made constructor of SearchManager singleton privateMax Horn
svn-id: r34841
2008-10-22Committed updated version of my patch #2184529 "SearchSet: Get rid of ↵Johannes Schickel
SharedPtr usage". svn-id: r34837
2008-10-22Removed File::addDefaultDirectoryRecursive, tweaked SearchMan API slightlyMax Horn
svn-id: r34836
2008-10-21Fixed: Broken english in System.h documentation.Vicent Marti
svn-id: r34835
2008-10-18Rewrote XMLParser error() function for the 5th time.Vicent Marti
Bugfix: Ambiguous error message when parsing an unexpected header. svn-id: r34819
2008-10-18Changed XML Parser to require standards-compilant XML header.Vicent Marti
Updated STX version to 0.3 svn-id: r34817
2008-10-16OSYSTEM: Pushed out some port specific code from common/system.cpp to the ↵Max Horn
respective ports svn-id: r34812
2008-10-15Changed XMLParser comment syntax to conform to XML standards (<!-- * -->)Vicent Marti
Changed STX version string to 0.2. svn-id: r34807
2008-10-14Greatly improved XML Parser error messages.Vicent Marti
svn-id: r34803
2008-10-14Added "Mass Add" dialog.Vicent Marti
svn-id: r34802
2008-10-13Removed SearchManager::addArchive, since SearchManager::add offers the same ↵Johannes Schickel
functionallity. svn-id: r34795
2008-10-13OSYSTEM: Removed unused getExtraThemeConfig() method (TODO: Implement a new ↵Max Horn
system which allows ports to add/remove stuff from the options dialogs) svn-id: r34794
2008-10-12COMMON: Added a new ObjectPool class, with matching operator new/delete ↵Max Horn
overloads svn-id: r34785
2008-10-12Changed Common::Rect doxygen comments to the (Java) style we use elsewhereMax Horn
svn-id: r34779
2008-10-12* Added prefix support to cache entries of FSDirectory, as specified in ↵Nicola Mettifogo
patch #2034983. * Updated comments on most Archive-related classes. svn-id: r34776
2008-10-11Changed XMLParser to use SearchMan / FSNode::openForReadingMax Horn
svn-id: r34773
2008-10-09- Fixed theme loading from Zip files.Vicent Marti
- Changed Common::ZipArchive to use FSNodes instead of full paths (external API unchanged). svn-id: r34761
2008-10-09Manual merge of the GSoC2008 GUI branch. (71 files)Vicent Marti
svn-id: r34757
2008-10-08Added an optional depth parameter to FSDirectory::getSubDirectory(), so that ↵Nicola Mettifogo
returned FSDirectory can be more flexibly configured. svn-id: r34756
2008-10-06Fix warnings about Event::synthetic being undefinedMax Horn
svn-id: r34754
2008-10-05Merged revisions 34748,34750 via svnmerge from Vicent Marti
https://tanoku@scummvm.svn.sourceforge.net/svnroot/scummvm/scummvm/trunk ........ r34748 | dreammaster | 2008-10-05 12:25:35 +0200 (Sun, 05 Oct 2008) | 1 line Changed NPC schedules to be loaded when an NPC is activated - this avoids an issue with the Castle Skorl's pre-activation room number being invalid room #99 ........ r34750 | fingolfin | 2008-10-05 14:18:16 +0200 (Sun, 05 Oct 2008) | 1 line Fixed ambiguous 'else' ........ svn-id: r34752