TODO 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. - Set up a mechanism for file enumeration that employs a callback.
  24. - Allow the application to provide allocation services.
  25. - Find some way to relax or remove the security model for external tools.
  26. - Non-blocking I/O
  27. - mmap() in posix.c
  28. - OSX shouldn't use ~/.app for userdir.
  29. - fscanf and fprintf support in extras dir.
  30. - Why do we call it openArchive and dirClose?
  31. - Sanity check byte order at runtime.
  32. - Every DIR_* function requires a malloc/free!
  33. - Merge DirHandle and PhysDirInfo.
  34. - Memory locking?
  35. - Clean up file code to match DirHandle cleanups.
  36. - maybe other stuff.
  37. // end of TODO ...