blob: 29ea76bfe868cc1a1c0947eeebbb31e0a1300323 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
/**
* @file window.hpp
* Provides a system for handling the game's window.
*/
#ifndef WINDOW_HPP_
#define WINDOW_HPP_
#include <entityx/entityx.h>
#include <SDL2/SDL.h>
#include <events.hpp>
/**
* @class WindowSystem
* Contains everything needed to create and update a window, using SDL.
* Also handles window resizing (WIP) and screenshots (WIP).
*/
class WindowSystem : public entityx::System<WindowSystem>, public entityx::Receiver<WindowSystem> {
private:
/**
* SDL's object for the window.
*/
static SDL_Window *window;
/**
* An OpenGL context, created when OpenGL is set up for use.
*/
static SDL_GLContext glContext;
public:
WindowSystem(void);
static void die(void);
void configure(entityx::EventManager &ev);
void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override
{ (void)en; (void)ev; (void)dt; }
static void render(void);
bool receive(const WindowResizeEvent&);
bool receive(const ScreenshotEvent&);
};
#endif // WINDOW_HPP_
|