1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #ifndef GAME_H
- #define GAME_H
- #include "client/input/Control.h"
- #include "client/math/Camera.h"
- #include "client/utils/Clock.h"
- #include "client/rendering/RenderSettings.h"
- #include "client/rendering/Renderer.h"
- #include "client/rendering/Mesh.h"
- #include "client/rendering/FileTexture.h"
- #include "client/rendering/FontRenderer.h"
- class Game final {
- public:
- Game(const Control& control, const Camera& camera, Ray& ray, const Clock& fps, const Clock& tps,
- RenderSettings& renderSettings);
- void tick();
- void renderWorld(float lag, Renderer& renderer) const;
- void renderTextOverlay(float lag, Renderer& renderer, FontRenderer& fr) const;
-
- bool isRunning() const;
- private:
- void addCube(float x, float y, float z, bool bottom, bool top, bool left, bool right, bool front, bool back);
- const Control& control;
- const Camera& camera;
- Ray& ray;
- const Clock& fps;
- const Clock& tps;
- RenderSettings& renderSettings;
- float lengthAngle;
- float widthAngle;
- Vector pos;
- Mesh m;
- FileTexture texture;
- };
- #endif
|