TODO 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. - Other archivers: perhaps tar(.gz|.bz2), RPM, ARJ, etc. These are less
  5. important, since streaming archives aren't of much value to games (which
  6. is why zipfiles are king: random access), but it could have uses for, say,
  7. an installer/updater.
  8. - Stack allocate in stripAppleBundle() (platform/unix.c) instead of calloc().
  9. - Reduce malloc() pressure all over the place. We fragment memory like mad.
  10. - macclassic.c :
  11. "/* (Hmm. Default behaviour is broken in the base library. :) ) */"
  12. - Platforms to port to: Amiga (needs platform driver), DOS4GW (platform driver).
  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. - Probably other stuff. Requests and recommendations are welcome.
  20. - Cygwin should use unix/posix and not win32 platform code.
  21. - Add "mount points"
  22. - Expose the archiver registration mechanism to the outside world.
  23. - Allow the application to provide allocation services.
  24. - Find some way to relax or remove the security model for external tools.
  25. - Non-blocking I/O
  26. - mmap() in posix.c
  27. - OSX shouldn't use ~/.app for userdir.
  28. - fscanf and fprintf support in extras dir.
  29. - Why do we call it openArchive and dirClose?
  30. - Sanity check byte order at runtime.
  31. - Every DIR_* function requires a malloc/free!
  32. - Memory locking?
  33. - Find a better name than dvoid and fvoid.
  34. - Can win32.c and pocketpc.c get merged?
  35. - There's so much cut-and-paste between archivers...can this be reduced?
  36. - General code audit.
  37. - Multiple write dirs with mount points?
  38. - Deprecate PHYSFS_setSaneConfig and move it to extras?
  39. - Why is physfsrwops.c cut-and-pasted into the ruby bindings?
  40. - Replace code from SDL...
  41. - MIX grabs all archives that no other archivers claim.
  42. - MIX enumerates files as hash values.
  43. - Should file enumeration return an error or set error state?
  44. - Ryanify pocketpc.c ...
  45. - Update internal zlib?
  46. - Get svn hooks working.
  47. - maybe other stuff.
  48. // end of TODO ...