2014-05-26 06:34:49 +02:00
|
|
|
#ifndef GAME_HPP
|
|
|
|
#define GAME_HPP
|
|
|
|
|
|
|
|
#include <SFML/Window.hpp>
|
|
|
|
#include <SFML/Graphics.hpp>
|
|
|
|
#include <engine/GameObject.hpp>
|
|
|
|
#include <engine/GameWorld.hpp>
|
|
|
|
|
|
|
|
constexpr double PiOver180 = 3.1415926535897932384626433832795028/180;
|
|
|
|
|
2014-05-31 09:18:50 +02:00
|
|
|
// TODO: Move all of this stuff so it's not just lying around.
|
2014-05-26 06:34:49 +02:00
|
|
|
|
|
|
|
bool hitWorldRay(glm::vec3& hit, glm::vec3& normal, GameObject** object = nullptr);
|
2014-05-31 09:18:50 +02:00
|
|
|
bool hitWorldRay(const glm::vec3& start, const glm::vec3& direction,
|
|
|
|
glm::vec3& hit, glm::vec3& normal, GameObject** object = nullptr);
|
2014-05-26 06:34:49 +02:00
|
|
|
|
2014-09-16 20:22:43 +02:00
|
|
|
#define ENV_GAME_PATH_NAME ("OPENRW_GAME_PATH")
|
2014-12-16 03:57:18 +01:00
|
|
|
#define GAME_TIMESTEP (1.f/10.f)
|
2014-09-16 20:22:43 +02:00
|
|
|
#define GAME_WINDOW_WIDTH 800
|
|
|
|
#define GAME_WINDOW_HEIGHT 600
|
2014-07-27 01:38:01 +02:00
|
|
|
|
2014-05-26 06:34:49 +02:00
|
|
|
#endif // GAME_HPP
|
|
|
|
|