My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

.gitattributes 19B

123456789101112131415161718192021222324252627282930313233343536
  1. # To-Do List
  2. ## General
  3. * Endian dependence ugly, shouldn't dereference to different types?
  4. * TombRaider.h/cpp structs aren't aligned... unportable to some big endian & other archs?!
  5. * Maybe replace loader with [VT](http://icculus.org/vt/), also used by OpenTomb.
  6. * Use more asserts
  7. * Don't use C-Style code, try to replace with C++ lib
  8. * Use std::strings
  9. * Rewrite Console and use operator << to write to the console?
  10. * SDL_TTF 2.0.12+ [can do line breaks](http://stackoverflow.com/questions/17847818/how-to-do-line-breaks-and-line-wrapping-with-sdl-ttf/18418688#18418688), use it
  11. * Mesh has 2 different approaches of storing the same data (eg. mColors and mColorArray), but half of ‘em isn’t implemented. Unify this, probably even combining Mesh and StaticMesh...
  12. * Don’t use float everywhere just because (eg. float colors)
  13. ## Changes
  14. * Using std::vector with [] is not bound checked. Segfaults were caused because the upper bound of the argument was never checked and garbage was returned... Do consistent checks, or use .at() as it throws an exception
  15. ## Cmake
  16. * Support SSE with other compilers than Clang (src/CMakeLists.txt)
  17. * Visual C++ compiler flags? (CMakeLists.txt)
  18. ## Future Features
  19. * Cut TGA image reader, currently only used for menu background?!
  20. * Need useful, always available image writer alternative for screenshots then
  21. * When cutscene rendering is working, use TR4/5 style menu?
  22. # Travis CI
  23. * Currently only building on Linux
  24. * Should also build on Mac, but needs different before_install / install scripts,
  25. that can detect the platform they’re running on