TODO.txt 1.9 KB

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