2023-04-01 07:16:14 +08:00
|
|
|
#include "camera.h"
|
2023-04-02 08:21:02 +08:00
|
|
|
|
2023-04-05 03:02:49 +08:00
|
|
|
#include "maths.h"
|
2023-04-02 08:21:02 +08:00
|
|
|
#include "level.h"
|
2023-04-01 07:16:14 +08:00
|
|
|
|
2023-04-05 03:02:49 +08:00
|
|
|
#define ROTATION_SPEED PI
|
2023-04-16 09:17:11 +08:00
|
|
|
#define TRANSLATIONAL_SPEED 1.f
|
2023-04-01 07:16:14 +08:00
|
|
|
|
2023-04-02 07:41:32 +08:00
|
|
|
static void move(Camera* camera, float t);
|
2023-04-01 07:16:14 +08:00
|
|
|
|
2023-04-16 09:17:11 +08:00
|
|
|
void camera_update(Camera* camera, float t)
|
2023-04-01 07:16:14 +08:00
|
|
|
{
|
2023-04-16 09:17:11 +08:00
|
|
|
if (!camera) return;
|
2023-04-01 07:16:14 +08:00
|
|
|
|
2023-04-02 07:41:32 +08:00
|
|
|
move(camera, t);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void move(Camera* camera, float t)
|
|
|
|
{
|
|
|
|
int forward = 0;
|
|
|
|
int rotation = 0;
|
|
|
|
if (sf::Keyboard::isKeyPressed(sf::Keyboard::F))
|
|
|
|
forward += 1;
|
|
|
|
if (sf::Keyboard::isKeyPressed(sf::Keyboard::S))
|
|
|
|
forward -= 1;
|
|
|
|
if (sf::Keyboard::isKeyPressed(sf::Keyboard::T))
|
|
|
|
rotation +=1;
|
|
|
|
if (sf::Keyboard::isKeyPressed(sf::Keyboard::R))
|
|
|
|
rotation -=1;
|
|
|
|
|
|
|
|
float magnitude = forward * t * TRANSLATIONAL_SPEED;
|
2023-04-05 03:02:49 +08:00
|
|
|
sf::Vector2f offset(magnitude * cos(camera->direction), magnitude *sin(camera->direction));
|
2023-04-02 07:41:32 +08:00
|
|
|
|
|
|
|
camera->pos += offset;
|
|
|
|
camera->direction += rotation * t * ROTATION_SPEED;
|
|
|
|
}
|