-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEngine.cpp
156 lines (124 loc) · 3.82 KB
/
Engine.cpp
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/*
* Engine.cpp
*
* Created on: Apr 10, 2020
* Author: ans
*/
#include "Engine.h"
// constructor and destructor stubs
Engine::Engine() : oldTime(0.), debugChanged(false) {}
Engine::~Engine() {}
// set the rendering mode
void Engine::setRenderingMode(MainWindow::RenderingMode mode) {
this->window.setRenderingMode(mode);
}
// set whether to clear the buffer every frame
void Engine::setClearBuffer(bool clear) {
this->window.setClearBuffer(clear);
}
// set the actual size of one pixel
void Engine::setPixelSize(unsigned short size) {
this->window.setPixelSize(size);
}
// enable pixel testing
void Engine::setPixelTest(const PixelTest& pixelTest) {
this->window.setPixelTest(pixelTest);
}
// disable pixel testing
void Engine::disablePixelTest() {
this->window.setPixelTest(PixelTest());
}
// set additional debugging information to be shown in the window title
void Engine::setDebugText(const std::string& string) {
if(string != this->debug) {
this->debug = string;
this->debugChanged = true;
}
}
// create the main window
void Engine::createMainWindow(int width, int height, const std::string& title) {
this->window.init(width, height, title);
}
// run the engine
void Engine::run() {
// initialize application-specific data
this->onCreate();
// set callback for rendering
this->window.setOnUpdate(std::bind(&Engine::onUpdate, this, std::placeholders::_1));
while(true) {
// update window
if(this->window.update()) {
const double newTime = this->window.getTime();
if(this->debugChanged || newTime - this->oldTime > 0.25) {
// show framerate in title bar
std::ostringstream oss;
oss.precision(2);
oss << std::fixed << this->window.getFPS() << "fps";
if(!(this->debug.empty()))
oss << ", " << this->debug;
this->window.setDebugText(oss.str());
this->oldTime = newTime;
this->debugChanged = false;
}
}
else
break;
}
this->onDestroy();
}
// get the window width
int Engine::getWindowWidth() const {
return this->window.getWidth();
}
// get the window height
int Engine::getWindowHeight() const {
return this->window.getHeight();
}
// get the current (run)time
double Engine::getTime() const {
return this->window.getTime();
}
// get the current rendering mode
MainWindow::RenderingMode Engine::getRenderingMode() const {
return this->window.getRenderingMode();
}
// clip x and y into window space
void Engine::clip(int& x, int& y) {
if(x < 0)
x = 0;
else if(x >= this->window.getWidth())
x = this->window.getWidth();
if(y < 0)
y = 0;
else if(y >= this->window.getHeight())
y = this->window.getHeight();
}
// draw a pixel at the specified window position (x, y) with the specified color (r, g, b)
void Engine::draw(int x, int y, unsigned char r, unsigned char g, unsigned char b) {
this->window.putPixel(x, y, r, g, b);
}
// fill pixels between the specified window positions (x1, y1 and x2, y2) with the specified color (r, g, b)
void Engine::fill(int x1, int y1, int x2, int y2, unsigned char r, unsigned char g, unsigned char b) {
this->clip(x1, y1);
this->clip(x2, y2);
for(int x = x1; x < x2; ++x)
for(int y = y1; y < y2; ++y)
this->draw(x, y, r, g, b);
}
// check whether a key has been pressed THIS frame
bool Engine::isKeyPressed(unsigned int code) const {
return this->window.isKeyPressed(code);
}
// check whether a key is held (works continiously over multiple frames)
bool Engine::isKeyHeld(unsigned int code) const {
return this->window.isKeyHeld(code);
}
// check whether a key has been released THIS frame
bool Engine::isKeyReleased(unsigned int code) const {
return this->window.isKeyReleased(code);
}
// check whether a key has been held long enough for being repeated
// NOTE: keys might not be repeated when other keys have been pressed in the meantime
bool Engine::isKeyRepeated(unsigned int code) const {
return this->window.isKeyRepeated(code);
}