blob: 369228ae81c466840cae7151a1e5b7ad732739de (
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
|
#pragma once
#include "chronology.h"
#include "collection.h"
#include "gfx/gl/uiShader.h"
#include "ptr.h"
#include "uiComponent.h" // IWYU pragma: keep
#include <SDL2/SDL.h>
#include <cstddef>
#include <special_members.h>
#include <string>
using SDL_WindowPtr = wrapped_ptrt<SDL_Window, SDL_CreateWindow, SDL_DestroyWindow>;
using GL_Context = std::remove_pointer_t<SDL_GLContext>;
using SDL_GLContextPtr = wrapped_ptrt<GL_Context, SDL_GL_CreateContext, SDL_GL_DeleteContext>;
class Window {
public:
Window(size_t width, size_t height, const std::string & title, Uint32 flags);
virtual ~Window() = default;
NO_COPY(Window);
NO_MOVE(Window);
virtual void tick(TickDuration elapsed) = 0;
void refresh() const;
bool handleInput(const SDL_Event & e);
void clear(float r, float g, float b, float a) const;
void swapBuffers() const;
protected:
virtual void render() const;
struct GLInitHelper {
GLInitHelper();
};
const glm::ivec2 size;
SDL_WindowPtr m_window;
SDL_GLContextPtr glContext;
GLInitHelper glInithelper;
Collection<UIComponent> uiComponents;
UIShader uiShader;
};
|