raycasting/view.cpp

73 lines
1.3 KiB
C++
Raw Normal View History

2023-03-31 06:49:36 +08:00
#include "view.h"
#include <SFML/Graphics.hpp>
#include <stdio.h>
#include "maths.h"
#include "camera.h"
#include "minimap.h"
#define MINIMAP_SIZE 300
#define HALF_MINIMAP_SIZE MINIMAP_SIZE/2.f
#define DRAW_SCALE MINIMAP_SIZE/5.f
2023-03-31 06:49:36 +08:00
2023-04-01 05:56:26 +08:00
static int handleKeyCode(sf::Keyboard::Key key);
static Camera camera = { sf::Vector2f(5.f/2.f, 5.f/2.f), 0.f, 300, 0.5f*PI, DRAW_SCALE };
2023-03-31 06:49:36 +08:00
static sf::Uint32 style = sf::Style::Titlebar;
static sf::RenderWindow window(sf::VideoMode(MINIMAP_SIZE + camera.resolution, MINIMAP_SIZE), "Raycasting", style);
2023-04-02 07:41:32 +08:00
static sf::Clock timer;
2023-03-31 06:49:36 +08:00
int view_init()
{
printf("view_init()\n");
minimap_init(MINIMAP_SIZE);
2023-03-31 06:49:36 +08:00
return 1;
}
int view_update()
{
if (!window.isOpen()) return 0;
sf::Event event;
while (window.pollEvent(event)) {
2023-04-01 05:56:26 +08:00
switch (event.type) {
case sf::Event::Closed:
return 0;
case sf::Event::KeyPressed:
if (handleKeyCode(event.key.code)) continue;
return 0;
default:
continue;
2023-03-31 06:49:36 +08:00
}
}
2023-04-02 07:41:32 +08:00
sf::Time t = timer.restart();
camera_update(&camera, t.asSeconds());
window.clear();
minimap_update(&window, &camera);
2023-03-31 06:49:36 +08:00
window.display();
return 1;
}
void view_end()
{
printf("view_end()\n");
2023-04-01 05:56:26 +08:00
window.close();
}
static int handleKeyCode(sf::Keyboard::Key key)
{
switch (key) {
case sf::Keyboard::Escape:
case sf::Keyboard::Q:
return 0;
default:
return 1;
}
}