summaryrefslogtreecommitdiff
path: root/application/main.cpp
blob: 30b4a4477695a52e5c774e170894355ac41cea75 (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
#include <SDL2/SDL.h>
#include <chrono>
#include <collection.hpp>
#include <game/network/rail.h>
#include <game/terrain.h>
#include <game/world.h>
#include <game/worldobject.h>
#include <gfx/camera_controller.h>
#include <gfx/gl/camera.h>
#include <gfx/gl/shader.h>
#include <gfx/inputHandler.h>
#include <gfx/manualCameraController.h>
#include <gfx/renderable.h>
#include <gfx/window.h>
#include <glm/glm.hpp>
#include <memory>
#include <special_members.hpp>
#include <vector>
#include <worker.h>

static const int DISPLAY_WIDTH = 1280;
static const int DISPLAY_HEIGHT = 1024;

class SDL_Application : public InputHandler, public std::enable_shared_from_this<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() override
	{
		SDL_Quit();
	}

	NO_COPY(SDL_Application);
	NO_MOVE(SDL_Application);

	bool
	handleInput(SDL_Event & e) override
	{
		switch (e.type) {
			case SDL_QUIT:
				isRunning = false;
				return true;
		}
		return false;
	}

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

		Worker w;

		world.create<Terrain>();

		auto rl = world.create<RailLinks>();
		{
			const glm::vec3 j {-1100, 5, -1100}, k {-1100, 15, -1000}, l {-1150, 30, -1050}, m {-1050, 10, -1050};
			rl->addLink<RailLinkStraight>(j, k);
			rl->addLink<RailLinkCurve>(l, k, glm::vec2 {l.x, k.z});
			rl->addLink<RailLinkStraight>(l, m);
			rl->addLink<RailLinkCurve>(m, j, glm::vec2 {m.x, j.z});
		}

		Shader shader;
		Camera camera({-1250.0F, 35.0F, -1250.0F}, 70.0F, (float)DISPLAY_WIDTH / (float)DISPLAY_HEIGHT, 0.1F, 10000.0F);
		camera.Pitch(0.24);
		camera.RotateY(0.7854);
		shader.Bind();
		shader.setView(camera.GetViewProjection());

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

		inputStack.objects.push_back(shared_from_this());
		inputStack.objects.insert(inputStack.objects.begin(), world.create<ManualCameraController>());

		while (isRunning) {
			processInputs();
			const auto t_end = std::chrono::high_resolution_clock::now();
			const auto t_passed = std::chrono::duration_cast<WorldObject::TickDuration>(t_end - t_start);

			world.apply(&WorldObject::tick, t_passed);
			world.apply<CameraController>(&CameraController::updateCamera, &camera, &shader);
			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;
		}

		return 0;
	}

private:
	void
	processInputs()
	{
		for (SDL_Event e; SDL_PollEvent(&e);) {
			inputStack.applyOne(&InputHandler::handleInput, e);
		}
	}

	bool isRunning {true};
	Collection<InputHandler> inputStack;
	World world;
};

int
main(int, char **)
{
	return std::make_shared<SDL_Application>()->run();
}