src/fileio.cpp
Fri, 05 Dec 2008 18:02:04 +0000 rubidium (svn r14656) -Change: replace instances of x & S_IFREG with S_ISREG(x) as S_IFREG can be 0 on some platforms.
Wed, 26 Nov 2008 13:12:45 +0000 rubidium (svn r14636) -Add: DOS port of OpenTTD, without network support though.
Wed, 26 Nov 2008 01:07:49 +0000 rubidium (svn r14635) -Change: use S_ISDIR/S_ISREG as x & S_IFREG always results false on platforms when S_IFREG is 0x0000.
Sun, 02 Nov 2008 11:20:15 +0000 skidd13 (svn r14555) -Codechange: replace ttd_strlcat and ttd_strlcpy with strecat and strecpy where direct conversion is possible
Tue, 14 Oct 2008 19:27:08 +0000 rubidium (svn r14466) -Doc: remove some obsolete parameters, fix a few parameter names in comments and add a little more doxygen documentation.
Mon, 29 Sep 2008 16:27:02 +0000 rubidium (svn r14414) -Fix: replace instances of strncpy with strecpy as strncpy doesn't guarantee the resulting string is '\0'-terminated.
Sun, 31 Aug 2008 10:50:05 +0000 rubidium (svn r14199) -Codechange: split fileio.h into fileio_type.h and fileio_func.h so not everything that includes saveload.h needs to include everything else too.
Sun, 31 Aug 2008 08:38:30 +0000 rubidium (svn r14196) -Codechange: make the searching for files with a specific extension extendable.
Wed, 13 Aug 2008 14:52:54 +0000 rubidium (svn r14069) -Fix: silence MSVC 64-bits compile warnings.
Wed, 23 Jul 2008 21:42:55 +0000 rubidium (svn r13810) -Fix: small memory leak when tar files would be found.
Sun, 13 Jul 2008 19:44:05 +0000 frosch (svn r13698) -Fix (r13697): MorphOS compilation.
Sun, 13 Jul 2008 16:09:00 +0000 frosch (svn r13697) -Feature: Add some support for symbolic links in .tar files.
Sat, 12 Jul 2008 14:49:43 +0000 frosch (svn r13693) -Fix (r11106, r11117): Do not rely on .tar files always ending with a block of zeros.
Tue, 24 Jun 2008 09:05:24 +0000 smatz (svn r13618) -Codechange: move tar-specific declarations to separate file
Thu, 05 Jun 2008 20:54:52 +0000 glx (svn r13390) -Codechange: introduce usererror() for fatal but not openttd related errors. Now all error() will 'crash' openttd after showing the message in win32 releases (MSVC), creating a crash.log and crash.dmp (like the '!' hack used before). On the other hand, usererror() will just close the game. So use error() only when it can be helpful to debugging, else use usererror().
Tue, 27 May 2008 23:10:42 +0000 smatz (svn r13303) -Fix (r13301): 64bit gcc compilation was broken
Tue, 27 May 2008 21:41:00 +0000 rubidium (svn r13301) -Fix [FS#1997]: resolve more MSVC 9 x64 warnings.
Thu, 08 May 2008 13:20:54 +0000 glx (svn r13008) -Fix [FS#1997]: silence some MSVC x64 warnings
Mon, 05 May 2008 22:35:33 +0000 rubidium (svn r12963) -Fix (r12960): loading some NewGRFs could cause an infinite loop.
Mon, 05 May 2008 21:54:05 +0000 rubidium (svn r12960) -Codechange: handle return values of (some) file system related functions.
Sun, 04 May 2008 21:47:36 +0000 rubidium (svn r12943) -Fix: reading/modifying invalid data under some circumstances.
Tue, 22 Jan 2008 07:27:06 +0000 peter1138 (svn r11940) -Codechange: Store short filename once per open file instead of once per sprite cache entry. Not all file types need this, but most of the time no sprite cache entry needed it either.
Sun, 13 Jan 2008 17:45:29 +0000 bjarni (svn r11837) -Feature: [OSX] added "/Library/Application Support/OpenTTD" to the search paths (based on patch by pv2b)
Mon, 07 Jan 2008 14:23:25 +0000 rubidium (svn r11777) -Codechange: split the string header and make do not include it when it's not necessary.
Tue, 25 Dec 2007 11:26:07 +0000 rubidium (svn r11692) -Codechange: move some functions from 'functions.h' to a more logical place and remove about 50% of the includes of 'functions.h'
Tue, 25 Dec 2007 09:48:53 +0000 rubidium (svn r11691) -Codechange: move+rename helpers.hpp and only include it when it is really needed.
Fri, 21 Dec 2007 19:21:21 +0000 rubidium (svn r11674) -Codechange: refactor some functions out of macros.h into more logical locations.
Tue, 04 Dec 2007 18:42:08 +0000 rubidium (svn r11569) -Fix [FS#1480]: full paths sometimes did not work correctly.
Mon, 19 Nov 2007 20:40:14 +0000 skidd13 (svn r11480) -Codechange: Rename the function ALIGN fitting to the naming style
Sun, 18 Nov 2007 18:28:32 +0000 rubidium (svn r11464) -Fix: some issue that made OpenTTD on MorphOS seriously unplayable.
Mon, 29 Oct 2007 23:02:31 +0000 rubidium (svn r11355) -Fix [FS#1377]: loading too many GRFs was not handled gracefully causing crashes and such.
Tue, 25 Sep 2007 14:15:38 +0000 glx (svn r11159) -Fix (r11155): restore the ability to save in a non existing file
Mon, 24 Sep 2007 19:55:50 +0000 glx (svn r11156) -Fix r11155: fix one compiler makes the other warn ;)
Mon, 24 Sep 2007 19:15:42 +0000 rubidium (svn r11155) -Fix [FS#1253]: work around a nasty MS CRT 8 SP1 bug making it virtually impossible to debug 32bpp games under MSVC (http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=257606). Patch by boekabart.
Sun, 16 Sep 2007 18:10:52 +0000 truelight (svn r11119) -Codechange: analyze .tar files upon loading, remembering their files and offsets, which speeds up .tar handling with a big factor
Sat, 15 Sep 2007 15:38:09 +0000 truelight (svn r11117) -Add: add support for 7z .tar files, which are in the 'old' (deprecated) format
Sat, 15 Sep 2007 15:21:17 +0000 glx (svn r11116) -Fix (r11106): tar loader was not compiled for WIN32
Fri, 14 Sep 2007 23:03:28 +0000 truelight (svn r11109) -Fix r11106: it is silly to use a std::list for something that is cleary a std::vector (less memory ;) WHOHO!)
Fri, 14 Sep 2007 22:25:00 +0000 truelight (svn r11106) -Add: added .tar support; you can pack all files in your data/ dir in how ever many .tar files you like, keeping the dir-structure equal to the unpacked version, and OpenTTD can handle them just like the files were unpacked
Thu, 13 Sep 2007 18:50:42 +0000 truelight (svn r11100) -Fix r11099: darn typos...
Thu, 13 Sep 2007 18:46:29 +0000 truelight (svn r11099) -Codechange: allow on opening of a file via FioFOpenFile to request the size of the file, so we can keep that in mind
Thu, 13 Sep 2007 18:22:34 +0000 truelight (svn r11095) -Codechange: don't abuse 'file_pos' by storing the file_slot in it too, but use a nice seperate variable for it
Sat, 28 Jul 2007 12:45:27 +0000 truelight (svn r10715) -Fix: limited-fs code was broken
Fri, 22 Jun 2007 19:30:59 +0000 glx (svn r10272) -Fix (FS#916): remove more invalid characters from savegame names
Thu, 21 Jun 2007 14:32:27 +0000 rubidium (svn r10246) -Fix (r10297): some forgotten money conversions and truncation issues. Thanks to benc for providing the patch.
Sun, 17 Jun 2007 21:26:57 +0000 rubidium (svn r10194) -Codechange: prefer the current working directory above the user's home directory when openttd.cfg exists in the current working directory, otherwise prefer the home directory.
Sun, 17 Jun 2007 20:09:05 +0000 rubidium (svn r10188) -Codechange: make it a little easier to load a savegame from the console:
Sun, 17 Jun 2007 15:48:57 +0000 rubidium (svn r10182) -Codechange: rewrite most part of the file loading/searching to be more flexible.
Wed, 13 Jun 2007 16:21:11 +0000 truelight (svn r10143) -Add: store the filename of the grfs opened and allow easy access to the name
Tue, 12 Jun 2007 15:46:34 +0000 rubidium (svn r10116) -Fix [FS#850]: remove invalid characters (for the file system) from savegame names. Based on a patch by TheJosh.
Fri, 08 Jun 2007 21:16:17 +0000 rubidium (svn r10073) -Codechange: make the NewGRF paths in the config file without any full paths (again).
Wed, 30 May 2007 18:24:54 +0000 rubidium (svn r9990) -Fix: MorphOS and AmigaOS do not like "//" in filenames as that means the same as "/../" in means in Unix.
Wed, 04 Apr 2007 12:03:10 +0000 rubidium (svn r9560) -Codechange: add support for multiple 'base' directories for newgrf searching.
Sun, 18 Mar 2007 18:02:24 +0000 rubidium (svn r9281) -Fix [FS#687]: compile failure when compiling with 'home directories' enabled (stepancheg).
Sat, 17 Mar 2007 22:21:05 +0000 rubidium (svn r9271) -Codechange: make the language pack initialisation a little more clear and extendable (more language paths).
Sat, 17 Mar 2007 11:36:04 +0000 rubidium (svn r9266) -Codechange: unify the retrieval of the base paths a little more.
Mon, 12 Mar 2007 15:40:12 +0000 rubidium (svn r9130) -Codechange: move the fileio functions that do open a file into a Fio slot together.
Mon, 12 Mar 2007 15:25:33 +0000 rubidium (svn r9129) -Codechange: unify parts of DeterminePaths.
Wed, 07 Mar 2007 12:11:48 +0000 rubidium (svn r9051) -Codechange: typedef [enum|struct] Y {} X; -> [enum|struct] X {};
Wed, 07 Mar 2007 11:47:46 +0000 rubidium (svn r9050) -Codechange: Foo(void) -> Foo()