TODO.txt 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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, some might be bad ideas.
  4. From http://icculus.org/pipermail/physfs/2009-March/000698.html ...
  5. - Archives formats provided by the implementation.
  6. - Write support for various archives. I haven't decided how to do this yet,
  7. but I'd like to.
  8. - Add an API to expose a file's extended attributes to the application?
  9. - Deprecate PHYSFS_setSaneConfig(). It really should have been in the extras
  10. directory.
  11. - Clean up the sources to match my ever-changing coding style. :)
  12. From http://icculus.org/pipermail/physfs/2010-January/000821.html ...
  13. - Plugin system for the archive handlers
  14. From http://icculus.org/pipermail/physfs/2010-January/000826.html ...
  15. - Lua bindings
  16. From http://icculus.org/pipermail/physfs/2010-January/000833.html ...
  17. - SWIG bindings
  18. From old TODO.txt...
  19. - Other archivers: perhaps tar(.gz|.bz2), RPM, ARJ, etc. These are less
  20. important, since streaming archives aren't of much value to games (which
  21. is why zipfiles are king: random access), but it could have uses for, say,
  22. an installer/updater.
  23. - profile string list interpolation.
  24. - We have two different ways to find dir entries in zip.c.
  25. - Do symlinks in zip archiver work when they point to dirs?
  26. - Enable more warnings?
  27. - Use __cdecl in physfs.h?
  28. - Look for FIXMEs (many marked with "!!!" in comments).
  29. - Find some way to relax or remove the security model for external tools.
  30. - fscanf and fprintf support in extras dir.
  31. - Sanity check byte order at runtime.
  32. - Memory locking?
  33. - General code audit.
  34. - Multiple write dirs with mount points?
  35. - Replace code from SDL...
  36. - Should file enumeration return an error or set error state?
  37. - Write up a simple HOWTO on embedding physicsfs in another project.
  38. Other stuff I thought of...
  39. - moar asserts!
  40. - constify!
  41. - Does iPhone work?
  42. - Fix CMake vs Doxygen.
  43. - Doxygen replacement? (manpages suck.)
  44. - Fix coding standards to match.
  45. - See if we can ditch some #include lines...
  46. - We lost Vista symlink support when removing isSymLink(). Pull it back from
  47. revision control.
  48. - PHYSFS_exists() fails if you mountIo with a NULL filename. We need to decide
  49. how this API should work.
  50. - ZIP64 support?
  51. - LZMA support in zip archiver?
  52. - bzip2 support in zip archiver?
  53. - rewrite 7zip archiver.
  54. - ryanify iso9660 code.
  55. - Reduce the BAIL and GOTO macro use. A lot of these don't add anything.
  56. - Modernize CMakeLists.txt
  57. - Change the term "search path" to something less confusing.
  58. Probably other stuff. Requests and recommendations are welcome.
  59. // end of TODO.txt ...