Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
GlfwWindow.hpp
1#pragma once
2
3#ifndef NOMINMAX
4#define NOMINMAX
5#endif
6
7#include "Window.hpp"
8#include <windows.h>
9#include <Common/Input/InputInterface.hpp>
10
11struct GLFWwindow;
12
13namespace Grindstone {
14 class EngineCore;
15
16 class GlfwWindow : public Window {
17 public:
18 virtual ~GlfwWindow() override;
19 virtual bool Initialize(CreateInfo& createInfo) override;
20 virtual void Show() override;
21 virtual void Hide() override;
22 virtual bool ShouldClose() override;
23 virtual void HandleEvents() override;
24 virtual void SetFullscreen(FullscreenMode mode) override;
25 virtual void GetWindowRect(unsigned int& left, unsigned int& top, unsigned int& right, unsigned int& bottom) const override;
26 virtual void GetWindowSize(unsigned int& width, unsigned int& height) const override;
27 virtual void SetWindowSize(unsigned int width, unsigned int height) override;
28 virtual void SetMousePos(unsigned int x, unsigned int y) override;
29 virtual void GetMousePos(unsigned int& x, unsigned int& y) const override;
30 virtual void SetCursorMode(Grindstone::Input::CursorMode cursorMode) override;
31 virtual Grindstone::Input::CursorMode GetCursorMode() const override;
32 virtual void SetMouseIsRawMotion(bool isRawMotion) override;
33 virtual bool GetMouseIsRawMotion() const override;
34 virtual void SetWindowPos(unsigned int x, unsigned int y) override;
35 virtual void GetWindowPos(unsigned int& x, unsigned int& y) const override;
36 virtual bool GetWindowFocus() const override;
37 virtual void SetWindowFocus(bool isFocused) override;
38 virtual bool GetWindowMinimized() const override;
39 virtual void GetTitle(char* allocatedBuffer) const override;
40 virtual void SetTitle(const char* title) override;
41 virtual void SetWindowAlpha(float alpha) override;
42 virtual float GetWindowDpiScale() const override;
43 virtual void Close() override;
44
45 virtual void OnSwapchainResized(int width, int height);
46
47 virtual bool CopyStringToClipboard(const std::string& stringToCopy) override;
48 virtual std::filesystem::path BrowseFolder(std::filesystem::path& defaultPath) override;
49 virtual std::filesystem::path OpenFileDialogue(const char* filter) override;
50 virtual std::filesystem::path SaveFileDialogue(const char* filter) override;
51 virtual void ExplorePath(const char* path) override;
52 virtual void OpenFileUsingDefaultProgram(const char* path) override;
53 public:
54 virtual GLFWwindow* GetHandle() const;
55 EngineCore* engineCore = nullptr;
56 private:
57 GLFWwindow* windowHandle;
58
59 /*
60 RECT windowSize;
61 unsigned int width;
62 unsigned int height;
63 FullscreenMode fullscreenMode;
64 DWORD style;
65 DWORD extendedStyle;
66 bool shouldClose;
67 */
68 };
69};
Definition EngineCore.hpp:57
Definition GlfwWindow.hpp:16
Definition Window.cs:7
Definition Window.hpp:20