Main.cpp 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. #include "ecs/Components.h"
  2. #include "math/Vector.h"
  3. #include "rendering/Window.h"
  4. #include "tests/ArrayListTests.h"
  5. #include "tests/ArrayTests.h"
  6. #include "tests/BitArrayTests.h"
  7. #include "tests/BufferTests.h"
  8. #include "tests/ClockTests.h"
  9. #include "tests/ColorTests.h"
  10. #include "tests/ComponentsTests.h"
  11. #include "tests/FrustumTests.h"
  12. #include "tests/HashMapTests.h"
  13. #include "tests/ImageReaderTests.h"
  14. #include "tests/ListTests.h"
  15. #include "tests/MatrixStackTests.h"
  16. #include "tests/MatrixTests.h"
  17. #include "tests/NetworkTests.h"
  18. #include "tests/PlaneTests.h"
  19. #include "tests/QuaternionTests.h"
  20. #include "tests/RandomTests.h"
  21. #include "tests/RingBufferTests.h"
  22. #include "tests/SplitStringTests.h"
  23. #include "tests/StackTests.h"
  24. #include "tests/StringBufferTests.h"
  25. #include "tests/TypedBufferTests.h"
  26. #include "tests/UniquePointerTests.h"
  27. #include "tests/UtilsTests.h"
  28. #include "tests/VectorTests.h"
  29. #include "utils/Logger.h"
  30. #include "wrapper/GL.h"
  31. int main(int argAmount, char** args) {
  32. if(argAmount < 2) {
  33. LOG_ERROR("missing path to images");
  34. return 0;
  35. }
  36. ArrayTests::test();
  37. ArrayListTests::test();
  38. HashMapTests::test();
  39. ListTests::test();
  40. BitArrayTests::test();
  41. StringBufferTests::test();
  42. RandomTests::test();
  43. RingBufferTests::test();
  44. SplitStringTests::test();
  45. VectorTests::test();
  46. MatrixTests::test();
  47. StackTests::test();
  48. MatrixStackTests::test();
  49. PlaneTests::test();
  50. FrustumTests::test();
  51. QuaternionTests::test();
  52. UtilsTests::test();
  53. ColorTests::test();
  54. ClockTests::test();
  55. ImageReaderTests::test(args[1]);
  56. BufferTests::test();
  57. TypedBufferTests::test();
  58. UniquePointerTests::test();
  59. NetworkTests::test();
  60. ComponentsTests::test();
  61. struct Game {
  62. bool isRunning() {
  63. return true;
  64. }
  65. void tick() {
  66. }
  67. void render(float) {
  68. }
  69. };
  70. WindowOptions options(4, 3, {800, 480}, false, "Test");
  71. Window w;
  72. Error error = w.open(options);
  73. if(error.has()) {
  74. LOG_ERROR(error.message);
  75. return 0;
  76. }
  77. Game game;
  78. w.run(game, 10'000'000);
  79. GL::printError("WUSI");
  80. return 0;
  81. }