TODO 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. - Expose the archiver registration mechanism to the outside world.
  22. - Find some way to relax or remove the security model for external tools.
  23. - Non-blocking I/O
  24. - mmap() in posix.c
  25. - OSX shouldn't use ~/.app for userdir.
  26. - fscanf and fprintf support in extras dir.
  27. - Why do we call it openArchive and dirClose?
  28. - Sanity check byte order at runtime.
  29. - Memory locking?
  30. - Find a better name than dvoid and fvoid.
  31. - Can win32.c and pocketpc.c get merged?
  32. - There's so much cut-and-paste between archivers...can this be reduced?
  33. - General code audit.
  34. - Multiple write dirs with mount points?
  35. - Deprecate PHYSFS_setSaneConfig and move it to extras?
  36. - Why is physfsrwops.c cut-and-pasted into the ruby bindings?
  37. - Replace code from SDL...
  38. - MIX grabs all archives that no other archivers claim.
  39. - MIX enumerates files as hash values.
  40. - Should file enumeration return an error or set error state?
  41. - Ryanify pocketpc.c ...
  42. - Update internal zlib?
  43. - Need "getmountpoint" command in test_physfs.c ...
  44. - Look for calloc() calls that aren't going through the allocation hooks.
  45. - maybe other stuff.
  46. - Is -Wall enabled?
  47. // end of TODO ...