aboutsummaryrefslogtreecommitdiff
path: root/src/glfw/window.h
blob: 143d4575b29d87371a04020e28cc14516e6355dd (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#pragma once

#include <tuple>
#include <string>

#include <GL/glew.h>
#include <GLFW/glfw3.h>

#include "key_watcher.h"

class Window {
private:
	bool _good   = false;
	int  _width  = 800;
	int  _height = 600;

	GLFWwindow* const _handle;

	bool updateSize();

public:
	Window(const std::string& title);
	~Window();

	bool isGood() const;

	int getWidth() const;
	int getHeight() const;

	std::tuple<int,int,int> getMouse() const;

	KeyWatcher getKeyWatcher(int key) const;

	template <class F>
	void init(F f);

	template <class F>
	void render(F loop);
};

template <class F>
void Window::init(F f) {
	glfwMakeContextCurrent(_handle);
	f();
	glfwMakeContextCurrent(nullptr);
}

template <class F>
void Window::render(F loop) {
	glfwMakeContextCurrent(_handle);

	while ( glfwGetKey(_handle, GLFW_KEY_ESCAPE) != GLFW_PRESS &&
	        glfwWindowShouldClose(_handle)       == 0 ) {
		const bool window_size_changed = updateSize();

		if ( window_size_changed ) {
			glViewport(0, 0, getWidth(), getHeight());
		}

		loop(window_size_changed);

		glfwSwapBuffers(_handle);
		glfwPollEvents();
	}

	glfwMakeContextCurrent(nullptr);
}