physfs/TODO.txt

46 lines
1.9 KiB
Plaintext
Raw Permalink Normal View History

2001-09-15 00:57:22 +02:00
Stuff that needs to be done and wishlist:
2001-09-02 03:17:35 +02:00
2004-01-08 06:52:41 +01:00
These are in no particular order.
Some might be dupes, some might be done already.
2002-03-25 06:01:29 +01:00
2007-03-08 22:31:59 +01:00
UNICODE:
- OS/2: Codepages. No full Unicode in the filesystem, but we can probably make
a conversion effort.
2007-03-09 09:16:32 +01:00
2007-03-08 22:31:59 +01:00
Stuff:
2002-07-23 09:49:20 +02:00
- Other archivers: perhaps tar(.gz|.bz2), RPM, ARJ, etc. These are less
2002-03-25 06:01:29 +01:00
important, since streaming archives aren't of much value to games (which
is why zipfiles are king: random access), but it could have uses for, say,
2004-01-08 06:52:41 +01:00
an installer/updater.
- Reduce malloc() pressure all over the place. We fragment memory like mad.
2002-08-21 04:58:30 +02:00
- profile string list interpolation.
2002-08-29 01:32:48 +02:00
- We have two different ways to find dir entries in zip.c.
- Do symlinks in zip archiver work when they point to dirs?
2002-08-21 06:39:08 +02:00
- Enable more warnings?
2002-07-21 12:05:06 +02:00
- Use __cdecl in physfs.h?
2002-03-25 06:01:29 +01:00
- Look for FIXMEs (many marked with "!!!" in comments).
2004-09-23 08:38:51 +02:00
- Find some way to relax or remove the security model for external tools.
- OSX shouldn't use ~/.app for userdir.
- fscanf and fprintf support in extras dir.
2004-09-26 02:24:05 +02:00
- Why do we call it openArchive and dirClose?
- Sanity check byte order at runtime.
- Memory locking?
2004-09-26 14:56:23 +02:00
- Find a better name than dvoid and fvoid.
2007-03-11 11:30:43 +01:00
- Can windows.c and pocketpc.c get merged?
2004-09-26 14:56:23 +02:00
- There's so much cut-and-paste between archivers...can this be reduced?
- General code audit.
- Multiple write dirs with mount points?
- Deprecate PHYSFS_setSaneConfig and move it to extras?
2004-09-26 15:15:03 +02:00
- Why is physfsrwops.c cut-and-pasted into the ruby bindings?
2004-09-29 08:03:44 +02:00
- Replace code from SDL...
- Should file enumeration return an error or set error state?
2005-03-16 12:20:43 +01:00
- Need "getmountpoint" command in test_physfs.c ...
2005-03-16 14:10:40 +01:00
- Look for calloc() calls that aren't going through the allocation hooks.
2007-03-15 09:19:17 +01:00
- Write up a simple HOWTO on embedding physicsfs in another project.
2006-03-23 11:19:55 +01:00
- Archivers need abstracted i/o to read from memory or files (archives in archives?)
2007-03-11 11:30:43 +01:00
- Probably other stuff. Requests and recommendations are welcome.
2001-08-29 05:10:45 +02:00
// end of TODO.txt ...
2001-08-29 05:10:45 +02:00