-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathKernel.hpp
134 lines (97 loc) · 2.72 KB
/
Kernel.hpp
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
#pragma once
#include <memory>
#include <string>
#include <SFML/Graphics.hpp>
#include <SFML/Audio.hpp>
#include <SFML/System.hpp>
#include <SFML/Window/Joystick.hpp>
#include <fstream>
#ifdef _WIN32
#include <windows.h>
#include "wtypes.h"
#elif __linux__
#include <X11/Xlib.h>
#undef None
#elif __APPLE__
#include <CoreGraphics/CoreGraphics.h>
#endif
#include "../../../Libs/Libs.hpp"
#include "../Chrono/Chrono.hpp"
#include "../Math/Math.hpp"
#include "../Scene/Scene.hpp"
#include "../Color/Color.hpp"
#include "../Event/Event.hpp"
#include "../Event/EventEmitter.hpp"
#define Alce alce::KERNEL::Instance()
namespace alce
{
typedef std::shared_ptr<sf::Texture> TexturePtr;
typedef std::shared_ptr<sf::SoundBuffer> SoundBufferPtr;
typedef std::shared_ptr<sf::Font> FontPtr;
typedef std::function<void()> Lambda;
enum DisplayMode
{
Close,
Default,
Fullscreen,
None,
Resize,
Titlebar
};
enum MemoryUnit
{
byte,
kilobyte,
megabyte,
gigabyte
};
class KERNEL
{
public:
static KERNEL& Instance()
{
static KERNEL kernel;
return kernel;
}
void Window(String title, DisplayMode displayMode = DisplayMode::Default, Vector2 size = Vector2(1280, 720), int antialiasing = 0);
sf::RenderWindow& GetWindow();
Vector2 GetScreenResolution();
Vector2 GetWindowSize();
void SetWindowIcon(String file);
void AddScene(ScenePtr scene);
template<typename T>
void AddScene()
{
ScenePtr scene = std::make_shared<T>();
AddScene(scene);
}
void RemoveScene(String name);
ScenePtr GetScene(String name);
void SetCurrentScene(String name);
ScenePtr GetCurrentScene();
TexturePtr GetTexture(String file);
SoundBufferPtr GetSoundBuffer(String file);
FontPtr GetFont(String file);
void SetClearColor(Color color);
float GetFPS();
EventEmitterPtr GetEventEmitter();
bool stanby = false;
void Run();
private:
ScenePtr currentScene = nullptr;
bool restart = false;
Dictionary<String, ScenePtr> scenes;
Dictionary<String, TexturePtr> textures;
Dictionary<String, SoundBufferPtr> sounds;
Dictionary<String, FontPtr> fonts;
sf::RenderWindow window;
String windowTitle;
Color clearColor = Color("#41424C");
String iconFile = "logo.png";
EventEmitterPtr eventEmitter = nullptr;
bool exit = false;
float fps = 0;
KERNEL() { };
KERNEL(KERNEL const&);
};
}