-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEngine.h
62 lines (48 loc) · 1.41 KB
/
Engine.h
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
/*
* Engine.h
*
* Created on: Apr 10, 2020
* Author: ans
*/
#ifndef ENGINE_H_
#define ENGINE_H_
#pragma once
#include <sstream> // std::fixed, std::ostringstream
#include <string> // std::string
#include "MainWindow.h"
#include "PixelTest.h"
class Engine {
public:
Engine();
virtual ~Engine();
void setRenderingMode(MainWindow::RenderingMode mode);
void setClearBuffer(bool clear);
void setPixelSize(unsigned short size);
void setPixelTest(const PixelTest& pixelTest);
void disablePixelTest();
void setDebugText(const std::string& string);
void createMainWindow(int width, int height, const std::string& title);
void run();
// functions to overwrite
virtual void onCreate() = 0;
virtual void onUpdate(double elapsedTime) = 0;
virtual void onDestroy() {};
protected:
int getWindowWidth() const;
int getWindowHeight() const;
double getTime() const;
MainWindow::RenderingMode getRenderingMode() const;
void clip(int& x, int& y);
void draw(int x, int y, unsigned char r, unsigned char g, unsigned char b);
void fill(int x1, int y1, int x2, int y2, unsigned char r, unsigned char g, unsigned char b);
bool isKeyPressed(unsigned int code) const;
bool isKeyHeld(unsigned int code) const;
bool isKeyReleased(unsigned int code) const;
bool isKeyRepeated(unsigned int code) const;
private:
MainWindow window;
double oldTime;
std::string debug;
bool debugChanged;
};
#endif /* ENGINE_H_ */