MyGL
Loading...
Searching...
No Matches
Window.hpp
1#ifndef MYGL_WINDOW
2#define MYGL_WINDOW
3
4#include "mygl_export.h"
5
6#include <glad/gl.h>
7#define GLFW_INCLUDE_NONE
8#include <GLFW/glfw3.h>
9
10#include "Camera.hpp"
11#include "Color.hpp"
12#include "Cursor.hpp"
13#include "Drawable/AbstractShape.hpp"
14#include "Event.hpp"
15#include "Image.hpp"
16
17#include <chrono>
18#include <deque>
19#include <unordered_map>
20
21namespace my
22{
26 enum WindowFlag : unsigned int {
27 none = 0,
31 resizable = 1 << 0,
35 floating = 1 << 1,
41 transparent = 1 << 2,
45 maximized = 1 << 3
46 };
47
51 class Window
52 {
53 private:
54 static bool gladIsInitialized;
55 static unsigned int instancesCount;
56 static std::unordered_map<GLFWwindow*, Window*> windows;
57 static my::Camera defaultCamera;
58
59 glm::mat4 m_projection;
60 my::Camera* p_camera;
61 GLFWwindow* p_window;
62 my::Cursor m_cursor;
63 glm::ivec2 m_size;
64 bool m_usable;
65 std::chrono::microseconds m_frameDelay;
66 mutable std::chrono::microseconds m_frametime;
67 mutable std::chrono::time_point<std::chrono::steady_clock> m_chrono;
68 std::deque<Event> m_eventQueue;
69
74 static void keyCallback(GLFWwindow* window, int key, int scancode, int action, int mods);
75 static void mouseButtonCallback(GLFWwindow* window, int button, int action, int mods);
76 static void cursorPosCallback(GLFWwindow* window, double xpos, double ypos);
77 static void cursorEnterCallback(GLFWwindow* window, int entered);
78 static void scrollCallback(GLFWwindow* window, double xoffset, double yoffset);
79 static void framebufferSizeCallback(GLFWwindow* window, int width, int height);
80 static void windowCloseCallback(GLFWwindow* window);
83 public:
87 MYGL_EXPORT Window();
88
105 MYGL_EXPORT Window(int width, int height, const std::string& title, unsigned int flags = my::WindowFlag::none, int antiAliasing = 0, int GLVersionMajor = 3,
106 int GLVersionMinor = 3);
107
108 MYGL_EXPORT ~Window();
109
114 MYGL_EXPORT bool isRunning() const noexcept;
115
119 MYGL_EXPORT void close();
120
126 MYGL_EXPORT bool pollEvent(my::Event& e);
127
131 MYGL_EXPORT void setActive() noexcept;
132
138 MYGL_EXPORT void setFramerate(unsigned int limit);
139
145 MYGL_EXPORT void enableVsync(bool enable);
146
151 MYGL_EXPORT void clear(const my::Color& color) const;
152
161 MYGL_EXPORT void setClipPlanes(float left, float right, float bottom, float top);
162
174 MYGL_EXPORT void setViewport(int x, int y, int width, int height);
175
180 MYGL_EXPORT void setCamera(my::Camera& camera) noexcept;
181
187 MYGL_EXPORT my::Camera& getCamera() noexcept;
188
200 MYGL_EXPORT void setSize(unsigned int width, unsigned int height, bool resizeViewport = false);
201
206 MYGL_EXPORT glm::ivec2 getSize() const noexcept;
207
214 MYGL_EXPORT void setIcon(const Image& icon);
215
220 MYGL_EXPORT void setCursor(const Cursor& cursor) noexcept;
221
226 MYGL_EXPORT void draw(my::AbstractShape& shape) const;
227
231 MYGL_EXPORT void display() const;
232
237 MYGL_EXPORT double getFrametime() const;
238
239 static void* getGLProcAdress(const char* name);
240 };
241
242} // namespace my
243
244#endif // MYGL_WINDOW
Class inherited by all the shapes, it defines common operations on a shape.
Class used to manipulate a 2D camera.
Definition Camera.hpp:15
Class for storing color objects.
Definition Color.hpp:17
A class for storing custom cursors.
Definition Cursor.hpp:19
A class for manipulating imges.
Definition Image.hpp:15
Class for creating a window.
Definition Window.hpp:52
MYGL_EXPORT void draw(my::AbstractShape &shape) const
Draws a shape.
MYGL_EXPORT void clear(const my::Color &color) const
Clears the window's content and replaces it with a background color.
MYGL_EXPORT Window()
Default constructor, creates a 800 * 600 window.
MYGL_EXPORT void setCursor(const Cursor &cursor) noexcept
Sets the cursor used by this window.
MYGL_EXPORT Window(int width, int height, const std::string &title, unsigned int flags=my::WindowFlag::none, int antiAliasing=0, int GLVersionMajor=3, int GLVersionMinor=3)
Creates a window.
MYGL_EXPORT bool pollEvent(my::Event &e)
retrieves the event in front of the event queue
MYGL_EXPORT void setActive() noexcept
Sets the window's OpenGL context current.
MYGL_EXPORT void setSize(unsigned int width, unsigned int height, bool resizeViewport=false)
Sets the size of the window's rendering area.
MYGL_EXPORT void setViewport(int x, int y, int width, int height)
Sets the viewport's position and size.
MYGL_EXPORT double getFrametime() const
Indicates the time that the last frame took to render.
MYGL_EXPORT void enableVsync(bool enable)
Enable or disable vsync, enabling vsync will override the framerate limit if it was previously set.
MYGL_EXPORT void setCamera(my::Camera &camera) noexcept
Sets the camera used by this window.
MYGL_EXPORT my::Camera & getCamera() noexcept
Returns the currently bound camera.
MYGL_EXPORT void setClipPlanes(float left, float right, float bottom, float top)
Sets the dimensions of the window's projection matrix's frustum.
MYGL_EXPORT void setIcon(const Image &icon)
Sets the window's icon.
MYGL_EXPORT void display() const
Refreshes the window to display all the things which have been drawn.
MYGL_EXPORT void close()
Closes a window.
MYGL_EXPORT bool isRunning() const noexcept
Tells wheter a window is opened or closed.
MYGL_EXPORT void setFramerate(unsigned int limit)
Limit the window's framerate at the specified value, a call to this method will disable vsync if it w...
MYGL_EXPORT glm::ivec2 getSize() const noexcept
Gives the window's size.
Namespace containing every class, function and enum of the library.
Definition Camera.hpp:10
WindowFlag
Flags passed when creating a window to change its behaviour.
Definition Window.hpp:26
@ maximized
Maximizes the window when created.
Definition Window.hpp:45
@ floating
Keeps the window on top of other windows.
Definition Window.hpp:35
@ transparent
Allows the framebuffer to be transparent, this means that calling window.clear() with a color whose a...
Definition Window.hpp:41
@ resizable
Makes the window resizable.
Definition Window.hpp:31
Struct for representing events and informations associated with them.
Definition Event.hpp:295