TDME2 1.9.121
Application.h
Go to the documentation of this file.
1#pragma once
2
3#if defined(_MSC_VER)
4 // this suppresses a warning redefinition of APIENTRY macro
5 #define NOMINMAX
6 #include <windows.h>
7#endif
8#define GLFW_INCLUDE_NONE
9#include <GLFW/glfw3.h>
10
11#define MOUSE_CURSOR_DISABLED 0
12#define MOUSE_CURSOR_ENABLED 1
13#define MOUSE_CURSOR_NORMAL 1
14#define MOUSE_CURSOR_HAND 2
15#include <array>
16using std::array;
17
18#include <string>
19
20#include <tdme/tdme.h>
25
26using std::string;
27
30
31/**
32 * Application base class, please make sure to allocate application on heap to have correct application shutdown working
33 * @author Andreas Drewke
34 * @version $Id$
35 */
37{
38 friend class InputEventHandler;
40
41public:
42
43 static constexpr int WINDOW_HINT_NONE { 0 };
44 static constexpr int WINDOW_HINT_NOTRESIZEABLE { 1 };
45 static constexpr int WINDOW_HINT_NOTDECORATED { 2 };
46 static constexpr int WINDOW_HINT_INVISIBLE { 4 };
47 static constexpr int WINDOW_HINT_MAXIMIZED { 8 };
48
49 static constexpr int FPS { 60 };
50
51 /**
52 * @return renderer
53 */
54 inline static Renderer* getRenderer() {
55 return renderer;
56 }
57
58 /**
59 * @return if having a GL/Vulkan window and context
60 */
61 inline static bool hasApplication() {
62 return application != nullptr;
63 }
64
65 /**
66 * @return application
67 */
68 inline static Application* getApplication() {
69 return application;
70 }
71
72 /**
73 * @return if FPS should be limited to 60 frames per seconds
74 */
75 inline static bool isLimitFPS() {
76 return limitFPS;
77 }
78
79 /**
80 * Set frames per seconds limit
81 * @param limitFPS set up if FPS should be limited to 60 frames per seconds
82 */
83 inline static void setLimitFPS(bool limitFPS) {
85 }
86
87 /**
88 * Set vsync enabled
89 * @param vSync vertical sync
90 */
91 static void setVSyncEnabled(bool vSync);
92
93 /**
94 * @return Operating system the application is running on
95 */
96 static string getOSName();
97
98 /**
99 * @return CPU the application is running on
100 */
101 static string getCPUName();
102
103 /**
104 * Public constructor
105 */
106 Application();
107
108 /**
109 * Destructor
110 */
111 virtual ~Application();
112
113 /**
114 * @return title
115 */
116 inline const string& getTitle() {
117 return title;
118 }
119
120 /**
121 * @return executable file name
122 */
123 inline const string& getExecutableFileName() {
124 return executableFileName;
125 }
126
127 /**
128 * @return debugging enabled
129 */
130 inline bool isDebuggingEnabled() {
131 return debuggingEnabled;
132 }
133
134 /**
135 * Set input event handler
136 * @param inputEventHandler input event handler
137 */
139
140 /**
141 * Execute a command and wait until it finished running
142 * @param command command to execute
143 * @throws std::runtime_error
144 * @return application output
145 */
146 static string execute(const string& command);
147
148 /**
149 * Execute a command in background
150 * @param command command to execute
151 */
152 static void executeBackground(const string& command);
153
154 /**
155 * Open browser with given url
156 * @param url url
157 */
158 static void openBrowser(const string& url);
159
160 /**
161 * Cancels a users requested exit (ALT-F4 or X button)
162 */
163 static void cancelExit();
164
165 /**
166 * Exits this application with given exit code
167 * @param exitCode exit code
168 */
169 static void exit(int exitCode);
170
171 /**
172 * @return If window is active on Win32, on other platforms it currently always return true
173 */
174 static bool isActive();
175
176 /**
177 * @return window X position
178 */
179 int getWindowXPosition() const;
180
181 /**
182 * Set window X position when initializing
183 * @param windowXPosition window X position
184 */
186
187 /**
188 * @return window Y position
189 */
190 int getWindowYPosition() const;
191
192 /**
193 * Set window Y position when initializing
194 * @param windowYPosition window Y position
195 */
197
198 /**
199 * @return window width
200 */
201 int getWindowWidth() const;
202
203 /**
204 * Set window width
205 * @param windowWidth window width
206 */
207 void setWindowWidth(int windowWidth);
208
209 /**
210 * @return window height
211 */
212 int getWindowHeight() const;
213
214 /**
215 * Set window height
216 * @param windowHeight window height
217 */
219
220 /**
221 * @return is full screen
222 */
223 bool isFullScreen() const;
224
225 /**
226 * Set full screen mode
227 * @param fullScreen full screen
228 */
229 void setFullScreen(bool fullScreen);
230
231 /**
232 * Windows only: Install exception handler that will print a stack trace if crashing
233 */
234 static void installExceptionHandler();
235
236 /**
237 * Set mouse cursor
238 * @param mouseCursor mouse cursor, see MOUSE_CURSOR_*
239 */
240 static void setMouseCursor(int mouseCursor);
241
242 /**
243 * @return get mouse X position
244 */
245 static int getMousePositionX();
246
247 /**
248 * @return get mouse Y position
249 */
250 static int getMousePositionY();
251
252 /**
253 * Set mouse position
254 * @param x x
255 * @param y y
256 */
257 static void setMousePosition(int x, int y);
258
259 /**
260 * Swap rendering buffers
261 */
262 static void swapBuffers();
263
264 /**
265 * @return clipboard content as utf8 string
266 */
267 string getClipboardContent();
268
269 /**
270 * Set clipboard content
271 * @param content content
272 */
273 void setClipboardContent(const string& content);
274
275 /**
276 * Run this application
277 * @param argc argument count
278 * @param argv argument values
279 * @param title title
280 * @param inputEventHandler application input event handler
281 * @param windowHints window hints
282 */
283 void run(int argc, char** argv, const string& title, InputEventHandler* inputEventHandler = nullptr, int windowHints = WINDOW_HINT_NONE);
284
285 /**
286 * Init
287 */
288 virtual void initialize() = 0;
289
290 /**
291 * Resize
292 * @param width width
293 * @param height height
294 */
295 virtual void reshape(int width, int height) = 0;
296
297 /**
298 * Display
299 */
300 virtual void display() = 0;
301
302 /**
303 * Disposes
304 */
305 virtual void dispose() = 0;
306
307 /**
308 * On close
309 */
310 virtual void onClose();
311
312private:
318 bool debuggingEnabled { false };
319 bool initialized { false };
320 int windowWidth { 1024 };
321 int windowHeight { 768 };
322 int windowXPosition { -1 };
323 int windowYPosition { -1 };
324 bool fullScreen { false };
327 string title;
328 int exitCode { 0 };
329
330 STATIC_DLL_IMPEXT static GLFWwindow* glfwWindow;
331 STATIC_DLL_IMPEXT static array<unsigned int, 10> glfwMouseButtonDownFrames;
335
336 /**
337 * Set application icon
338 */
339 void setIcon();
340
341 /**
342 * Display function
343 */
344 static void displayInternal();
345
346 /**
347 * Reshape function
348 * @param width width
349 * @param height height
350 */
351 static void reshapeInternal(int width, int height);
352
353 /**
354 * GLFW on char
355 * @param window window
356 * @param key key
357 */
358 static void glfwOnChar(GLFWwindow* window, unsigned int key);
359
360 /**
361 * GLFW on key
362 * @param window window
363 * @param key key
364 * @param scanCode scan code
365 * @param action action
366 * @param mods modifier keys
367 */
368 static void glfwOnKey(GLFWwindow* window, int key, int scanCode, int action, int mods);
369
370 /**
371 * GLFW on mouse moved
372 * @param window window
373 * @param x x
374 * @param y y
375 */
376 static void glfwOnMouseMoved(GLFWwindow* window, double x, double y);
377
378 /**
379 * GLFW on key
380 * @param window window
381 * @param button button
382 * @param action action
383 * @param mods modifier keys
384 */
385 static void glfwOnMouseButton(GLFWwindow* window, int button, int action, int mods);
386
387 /**
388 * GLFW on key
389 * @param window window
390 * @param x x
391 * @param y y
392 */
393 static void glfwOnMouseWheel(GLFWwindow* window, double x, double y);
394
395 /**
396 * GLFW on window resize
397 * @param window window
398 * @param width width
399 * @param height height
400 */
401 static void glfwOnWindowResize(GLFWwindow* window, int width, int height);
402
403 /**
404 * GLFW on close
405 */
406 static void glfwOnClose(GLFWwindow* window);
407
408};
Application base class, please make sure to allocate application on heap to have correct application ...
Definition: Application.h:37
static void setMousePosition(int x, int y)
Set mouse position.
static STATIC_DLL_IMPEXT Renderer * renderer
Definition: Application.h:313
static STATIC_DLL_IMPEXT int glfwMouseButtonLast
Definition: Application.h:332
static void glfwOnMouseWheel(GLFWwindow *window, double x, double y)
GLFW on key.
static void executeBackground(const string &command)
Execute a command in background.
static STATIC_DLL_IMPEXT Application * application
Definition: Application.h:314
static void swapBuffers()
Swap rendering buffers.
void setIcon()
Set application icon.
virtual void reshape(int width, int height)=0
Resize.
static void glfwOnMouseMoved(GLFWwindow *window, double x, double y)
GLFW on mouse moved.
void setWindowXPosition(int windowXPosition)
Set window X position when initializing.
static void glfwOnClose(GLFWwindow *window)
GLFW on close.
static void glfwOnWindowResize(GLFWwindow *window, int width, int height)
GLFW on window resize.
static STATIC_DLL_IMPEXT array< unsigned int, 10 > glfwMouseButtonDownFrames
Definition: Application.h:331
void setWindowYPosition(int windowYPosition)
Set window Y position when initializing.
static string execute(const string &command)
Execute a command and wait until it finished running.
Definition: Application.cpp:91
void setClipboardContent(const string &content)
Set clipboard content.
static void displayInternal()
Display function.
const string & getExecutableFileName()
Definition: Application.h:123
static void glfwOnChar(GLFWwindow *window, unsigned int key)
GLFW on char.
static void reshapeInternal(int width, int height)
Reshape function.
void setWindowWidth(int windowWidth)
Set window width.
static STATIC_DLL_IMPEXT bool limitFPS
Definition: Application.h:326
virtual ~Application()
Destructor.
static void cancelExit()
Cancels a users requested exit (ALT-F4 or X button)
virtual void onClose()
On close.
static void setLimitFPS(bool limitFPS)
Set frames per seconds limit.
Definition: Application.h:83
static STATIC_DLL_IMPEXT bool glfwCapsLockEnabled
Definition: Application.h:333
static Renderer * getRenderer()
Definition: Application.h:54
static void installExceptionHandler()
Windows only: Install exception handler that will print a stack trace if crashing.
virtual void display()=0
Display.
static STATIC_DLL_IMPEXT int64_t timeLast
Definition: Application.h:325
void setFullScreen(bool fullScreen)
Set full screen mode.
static constexpr int WINDOW_HINT_MAXIMIZED
Definition: Application.h:47
static constexpr int FPS
Definition: Application.h:49
static STATIC_DLL_IMPEXT InputEventHandler * inputEventHandler
Definition: Application.h:315
virtual void initialize()=0
Init.
static constexpr int WINDOW_HINT_NOTDECORATED
Definition: Application.h:45
static constexpr int WINDOW_HINT_INVISIBLE
Definition: Application.h:46
static void exit(int exitCode)
Exits this application with given exit code.
static Application * getApplication()
Definition: Application.h:68
static STATIC_DLL_IMPEXT GLFWwindow * glfwWindow
Definition: Application.h:330
static constexpr int WINDOW_HINT_NOTRESIZEABLE
Definition: Application.h:44
static void setVSyncEnabled(bool vSync)
Set vsync enabled.
void setWindowHeight(int windowHeight)
Set window height.
virtual void dispose()=0
Disposes.
static void glfwOnKey(GLFWwindow *window, int key, int scanCode, int action, int mods)
GLFW on key.
static void openBrowser(const string &url)
Open browser with given url.
void setInputEventHandler(InputEventHandler *inputEventHandler)
Set input event handler.
void run(int argc, char **argv, const string &title, InputEventHandler *inputEventHandler=nullptr, int windowHints=WINDOW_HINT_NONE)
Run this application.
static constexpr int WINDOW_HINT_NONE
Definition: Application.h:43
Application()
Public constructor.
static void glfwOnMouseButton(GLFWwindow *window, int button, int action, int mods)
GLFW on key.
static void setMouseCursor(int mouseCursor)
Set mouse cursor.
static STATIC_DLL_IMPEXT GLFWcursor * glfwHandCursor
Definition: Application.h:334
Application input event handler interface.
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11