TODO.txt 1.7 KB

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