You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

77 lines
3.9 KiB

8 years ago
  1. # raylib roadmap
  2. Here it is a wishlist with features and ideas to improve the library. Note that features listed here are usually long term improvements or just describe a route to follow for the library. There are also some additional places to look for raylib improvements and ideas:
  3. - [GitHub Issues](https://github.com/raysan5/raylib/issues) has several open issues for possible improvements or bugs to fix.
  4. - [raylib source code](https://github.com/raysan5/raylib/tree/master/src) has multiple *TODO* comments around code with pending things to review or improve.
  5. - raylib wishlists discussions (https://github.com/raysan5/raylib/discussions/1502, https://github.com/raysan5/raylib/discussions/2272) are open to everyone to ask for improvements, feel free to check and comment.
  6. _Current version of raylib is complete and functional but there is always room for improvements._
  7. **raylib 4.x**
  8. - [ ] Redesign camera module (more flexible) ([#1143](https://github.com/raysan5/raylib/issues/1143), https://github.com/raysan5/raylib/discussions/2507)
  9. - [ ] Redesign gestures system, improve touch inputs management
  10. - [ ] Redesign raudio module, implement miniaudio high-level provided features
  11. - [x] Better documentation and improved examples
  12. - [x] Focus on HTML5 ([raylib 5k gamejam](https://itch.io/jam/raylib-5k-gamejam)) and embedded platforms (RPI and similar SOCs)
  13. - [x] Additional support libraries: [raygui](https://github.com/raysan5/raygui), [rres](https://github.com/raysan5/rres)
  14. **raylib 4.0**
  15. - [x] Improved consistency and coherency in raylib API
  16. - [x] Continuous Deployment using GitHub Actions
  17. - [x] rlgl improvements for standalone usage (avoid raylib coupling)
  18. - Basic CPU/GPU stats system (memory, draws, time...) ([#1295](https://github.com/raysan5/raylib/issues/1295)) - _DISCARDED_
  19. - Software rendering backend (avoiding OpenGL) ([#1370](https://github.com/raysan5/raylib/issues/1370)) - _DISCARDED_
  20. - Network module (UDP): `rnet` ([#753](https://github.com/raysan5/raylib/issues/753)) - _DISCARDED_ - Use [nbnet](https://github.com/nathhB/nbnet).
  21. **raylib 3.0**
  22. - [x] Custom memory allocators support
  23. - [x] Global variables moved to global context
  24. - [x] Optimize data structures for pass-by-value
  25. - [x] Trace log messages redesign ([#1065](https://github.com/raysan5/raylib/issues/1065))
  26. - [x] Continuous Integration using GitHub Actions
  27. **raylib 2.5**
  28. - [x] Support Animated models
  29. - [x] Support glTF models file format
  30. - [x] Unicode support on text drawing
  31. **raylib 2.0**
  32. - [x] Removed external dependencies (GLFW3 and OpenAL)
  33. - [x] Support TCC compiler (32bit and 64bit)
  34. **raylib 1.8**
  35. - [x] Improved Materials system with PBR support
  36. - [x] Procedural image generation functions (spot, gradient, noise...)
  37. - [x] Procedural mesh generation functions (cube, sphere...)
  38. - [x] Custom Android APK build pipeline (default Makefile)
  39. **raylib 1.7**
  40. - [x] Support configuration flags
  41. - [x] Improved build system for Android
  42. - [x] Gamepad support on HTML5
  43. **raylib 1.6**
  44. - [x] Lua scripting support (raylib Lua wrapper)
  45. - [x] Redesigned audio module
  46. - [x] Support FLAC file format
  47. **raylib 1.5**
  48. - [x] Support Oculus Rift CV1 and VR stereo rendering (simulator)
  49. - [x] Redesign Shaders/Textures system -> New Materials system
  50. - [x] Support lighting: Omni, Directional and Spot lights
  51. - [x] Redesign physics module (physac)
  52. - [x] Chiptunes audio modules support
  53. **raylib 1.4**
  54. - [x] TTF fonts support (using stb_truetype)
  55. - [x] Raycast system for 3D picking (including collisions detection)
  56. - [x] Floyd-Steinberg dithering on 16bit image format conversion
  57. - [x] Basic image manipulation functions (crop, resize, draw...)
  58. - [x] Storage load/save data functionality
  59. - [x] Add Physics module (physac)
  60. - [x] Remove GLEW dependency -> Replaced by GLAD
  61. - [x] Redesign Raspberry PI inputs system
  62. - [x] Redesign gestures module to be multiplatform
  63. - [x] Module raymath as header-only and functions inline
  64. - [x] Add Easings module (easings.h)