summaryrefslogtreecommitdiff
path: root/application/main.cpp
blob: f7861c895556d1b77f9c9c21fdc27923f5416d90 (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#include "game/terrain.h"
#include "gfx/window.h"
#include <SDL2/SDL.h>
#include <chrono>
#include <cmath>
#include <collection.hpp>
#include <game/physical.h>
#include <game/world.h>
#include <game/worldobject.h>
#include <gfx/gl/camera.h>
#include <gfx/gl/shader.h>
#include <gfx/gl/transform.h>
#include <gfx/renderable.h>
#include <glm/glm.hpp>
#include <memory>
#include <numbers>
#include <special_members.hpp>
#include <worker.h>

static const int DISPLAY_WIDTH = 800;
static const int DISPLAY_HEIGHT = 600;

class Monkey : public WorldObject, public Physical {
public:
	Monkey() : Physical {{0.0, 0.5, 1.0}, "res/monkey3.obj", "res/bricks.jpg"} { }

	void
	tick(TickDuration elapsed) override
	{
		counter += 0.000625F * elapsed.count();
		location.GetRot().y = std::numbers::pi_v<double> + sin(counter);
		location.GetRot().z = 0.3 * cos(counter * 10);
	}

private:
	float counter {};
};

class SDL_Application {
public:
	SDL_Application()
	{
		SDL_Init(SDL_INIT_EVERYTHING);

		SDL_GL_SetAttribute(SDL_GL_RED_SIZE, 8);
		SDL_GL_SetAttribute(SDL_GL_GREEN_SIZE, 8);
		SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 8);
		SDL_GL_SetAttribute(SDL_GL_ALPHA_SIZE, 8);
		SDL_GL_SetAttribute(SDL_GL_BUFFER_SIZE, 32);
		SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 16);
		SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
	}
	~SDL_Application()
	{
		SDL_Quit();
	}
	NO_COPY(SDL_Application);
	NO_MOVE(SDL_Application);

	void
	run()
	{
		Collection<Window> windows;
		windows.create(DISPLAY_WIDTH, DISPLAY_HEIGHT, "OpenGL");

		Worker w;

		World world;
		world.create<Monkey>();
		world.create<Terrain>();

		Shader shader;
		Camera camera({-5.0F, 2.0F, -5.0F}, 70.0F, (float)DISPLAY_WIDTH / (float)DISPLAY_HEIGHT, 0.1F, 100.0F);
		camera.RotateY(0.7854);
		shader.Bind();
		shader.setView(camera.GetViewProjection());

		SDL_Event e;
		bool isRunning = true;

		auto t_start = std::chrono::high_resolution_clock::now();
		const auto framelen = std::chrono::milliseconds {1000} / 120;

		while (isRunning) {
			while (SDL_PollEvent(&e)) {
				switch (e.type) {
					case SDL_QUIT:
						isRunning = false;
						break;
					case SDL_KEYDOWN:
						switch (e.key.keysym.sym) {
							case SDLK_KP_8:
								camera.MoveForward(1);
								break;
							case SDLK_KP_2:
								camera.MoveForward(-1);
								break;
							case SDLK_KP_4:
								camera.MoveRight(1);
								break;
							case SDLK_KP_6:
								camera.MoveRight(-1);
								break;
							case SDLK_KP_7:
								camera.RotateY(0.04);
								break;
							case SDLK_KP_9:
								camera.RotateY(-0.04);
								break;
						}
						shader.setView(camera.GetViewProjection());
						break;
				}
			}

			const auto t_end = std::chrono::high_resolution_clock::now();
			const auto t_passed = std::chrono::duration_cast<std::chrono::milliseconds>(t_end - t_start);

			world.apply(&WorldObject::tick, t_passed);
			windows.apply(&Window::Clear, 0.0F, 0.0F, 0.0F, 1.0F);
			world.apply<Renderable>(&Renderable::render, shader);
			windows.apply(&Window::SwapBuffers);

			if (const auto snz = framelen - t_passed; snz.count() > 0) {
				SDL_Delay(snz.count());
			}
			t_start = t_end;
		}
	}
};

int
main(int, char **)
{
	SDL_Application().run();

	return 0;
}