Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-06-22 | PS3: Initial version of the PlayStation 3 backend | Bastien Bouclet | |
2011-06-04 | IRIX: Fix compilation | Joost Peters | |
2011-05-25 | BUILD: Rename UNIX #define to POSIX | Max Horn | |
2011-05-23 | COMMON: Mark more symbols as forbidden | Max Horn | |
2011-05-12 | GIT: Clean up: Suppress SVN tags, now useless | strangerke | |
2011-05-03 | MACOSX: Try to fix compile errors triggered with certain Mac OS X SDK versions | Max Horn | |
2011-05-03 | COMMON: Forbid use of getcwd&getwd; add macro to enable unistd.h compatibility | Max Horn | |
2011-05-03 | BACKENDS: Avoid #including .cpp files | Max Horn | |
So far, the various *-fs-factory.cpp files were #including the corresponding *-fs.cpp files. This is surprising and hence could lead to all kinds of problems). To fix this, provide proper headers for the *-fs.cpp files. This also makes code reuse via subclassing possible. Since not all ports were tested, this will likely lead to a few easy to fix compile regressions. | |||
2011-05-02 | ALL: Mark printf and various other symbols as forbidden | Max Horn | |
Right now, a few places in the frontend code still use printf and consorts. We mark the affected files with a FIXME for now, and add a dedicated exception for each. To be fixed! Also tweak FORBIDDEN_SYMBOL_REPLACEMENT to hopefully really always enforce a compiler error | |||
2009-03-14 | Applied part of patch #2684986 | Max Horn | |
svn-id: r39398 | |||
2009-01-23 | Renamed FSNode::openForReading / openForWriting to createReadStream / ↵ | Max Horn | |
createWriteStream, again to make ownership of the returned stream clear svn-id: r36014 | |||
2009-01-01 | Whoa! Removing trailing spaces. | Eugene Sandulenko | |
svn-id: r35648 | |||
2008-10-02 | Renamed FilesystemNode -> FSNode | Max Horn | |
svn-id: r34716 | |||
2008-09-17 | Patch #2043093 (again - new patch): OS/2 patches for posix-fs | Max Horn | |
svn-id: r34595 | |||
2008-09-11 | Simplify check for a slash in the string *g* | Max Horn | |
svn-id: r34485 | |||
2008-09-05 | Some tweaks to help (?) OS/2 | Max Horn | |
svn-id: r34368 | |||
2008-09-03 | POSIX FSNode: got rid of Double-slashes in paths for childs of the root; ↵ | Max Horn | |
simplified code svn-id: r34307 | |||
2008-09-03 | Pushed AbstractFilesystemNode::openForReading() / openForWriting() impls out ↵ | Max Horn | |
to backends svn-id: r34304 | |||
2008-09-03 | Moved StdioStream to its own files inside backends | Max Horn | |
svn-id: r34303 | |||
2008-09-03 | Moved FilesystemNode / FSList to namespace Common; also got rid of some ↵ | Max Horn | |
'typedef Common::String String;' name aliases svn-id: r34302 | |||
2008-09-02 | Modified POSIX FSNode implementation to use Common::normalizePath & ↵ | Max Horn | |
Common::lastPathComponent; added a TODO regarding relative paths svn-id: r34283 | |||
2008-08-27 | FSNode code: Merged most versions of lastPathComponent() into one new ↵ | Max Horn | |
AbstractFilesystemNode::lastPathComponent() method, with customizable path separator character svn-id: r34197 | |||
2008-08-27 | Slightly modified form of patch #2043093: OS/2 patches for posix-fs | Max Horn | |
svn-id: r34193 | |||
2008-08-22 | Turned Windows, AmigaOS and POSIX FSFactories into plain classes; no need ↵ | Max Horn | |
for them to be singletons (actually true for all other FS factories) svn-id: r34098 | |||
2008-08-22 | Moved POSIXFilesystemNode class declaration to a new header file, to enable ↵ | Max Horn | |
subclassing svn-id: r34097 | |||
2008-08-03 | cleanup | Max Horn | |
svn-id: r33587 | |||
2008-02-24 | Don't #include the FS factory implementations in common/system.cpp; rather, ↵ | Max Horn | |
rely on the build system to include them svn-id: r30957 | |||
2008-02-23 | Renamed AbstractFilesystemFactory to FilesystemFactory | Max Horn | |
svn-id: r30935 | |||
2008-01-28 | Fixed the spaces before tabs. | Jordi Vilalta Prat | |
svn-id: r30667 | |||
2008-01-27 | Removed trailing spaces. | Jordi Vilalta Prat | |
svn-id: r30664 | |||
2007-12-25 | Removed obsolete comment | Max Horn | |
svn-id: r29992 | |||
2007-12-09 | Expand ~/ to the HOME env var (see also patch #1846545) | Max Horn | |
svn-id: r29797 | |||
2007-10-07 | Commit of patch #1804861. It implements a static lastPathComponent() ↵ | David Corrales | |
function in each backend, used to extract the last path component of a given path, returned by getName(). svn-id: r29159 | |||
2007-09-19 | Merged common/stdafx.h into common/scummsys.h. All referencing files have ↵ | Nicola Mettifogo | |
been updated. svn-id: r28966 | |||
2007-09-18 | Fix linker issues when doing a plugin build, and (hopefully) also on Windows | Max Horn | |
svn-id: r28950 | |||
2007-09-18 | Code formatting fixes | Max Horn | |
svn-id: r28945 | |||
2007-09-18 | Patch #1768757: Merge fsnode-gsoc into trunk (MAJOR change, will break ↵ | Max Horn | |
compilation on some ports) svn-id: r28944 | |||
2007-08-18 | Merged some of the changes from the trunk patch back in to the GSoC fsnode ↵ | David Corrales | |
branch. svn-id: r28649 | |||
2007-08-01 | Initial commit of the new BaseFile implementation. It provides a common ↵ | David Corrales | |
ground for file objects across platforms and divides responsibilities between the Common::File class and a base file implementation. Also rearranged the factories into a new directory for clarity. Note 1: The posix-file.h and cpp files are for testing only. Only the ds, ps2 and symbian architecture will use special BaseFile based objects. Note 2: The current code does not yet make use of this new structure, since the Common::File remains intact. svn-id: r28395 | |||
2007-07-19 | Fixed a subtle bug when browsing directories in the main game chooser. | David Corrales | |
svn-id: r28149 | |||
2007-06-20 | Initial implementation of the lookupFile() function. It's meant to search ↵ | David Corrales | |
recursively for given filename within a set of directories. svn-id: r27551 | |||
2007-06-17 | Added a new parameter to the getChildren function, which allows including ↵ | David Corrales | |
hidden files in the results. svn-id: r27514 | |||
2007-06-16 | Removed the isValid operation from the FilesystemNode class in favor of the ↵ | David Corrales | |
much richer combinations possible with the new operations (exists, isReadable and isWritable). The work on the Common::File class is far from complete. Only the necessary was updated. svn-id: r27473 | |||
2007-06-04 | Added stubs for the exists(), isReadable() and isWritable() methods for all ↵ | David Corrales | |
architectures. svn-id: r27087 | |||
2007-06-04 | Added a missing include in non-POSIX factories. | David Corrales | |
For the POSIX and Windows architectures, added exists(), isReadable() and isWritable() svn-id: r27073 | |||
2007-05-31 | Merged the fs branch with trunk. r26949:27031 | David Corrales | |
svn-id: r27032 | |||
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-05-26 | Merged the fs branch with trunk. r26472:26948 | David Corrales | |
svn-id: r26949 | |||
2007-05-12 | Use common/singleton.h in the concrete fs factories. | David Corrales | |
svn-id: r26814 | |||
2007-05-12 | Renamed files and minor tweaks. Thanks LordHoto :) | David Corrales | |
svn-id: r26810 |