4#include "mygl_export.h"
7#define GLFW_INCLUDE_NONE
13#include "Drawable/AbstractShape.hpp"
19#include <unordered_map>
54 static bool gladIsInitialized;
55 static unsigned int instancesCount;
56 static std::unordered_map<GLFWwindow*, Window*> windows;
59 glm::mat4 m_projection;
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;
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);
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);
161 MYGL_EXPORT
void setClipPlanes(
float left,
float right,
float bottom,
float top);
174 MYGL_EXPORT
void setViewport(
int x,
int y,
int width,
int height);
200 MYGL_EXPORT
void setSize(
unsigned int width,
unsigned int height,
bool resizeViewport = false);
206 MYGL_EXPORT glm::ivec2
getSize() const noexcept;
239 static
void* getGLProcAdress(const
char* name);
Class inherited by all the shapes, it defines common operations on a shape.
Class used to manipulate a 2D camera.
Class for storing color objects.
A class for storing custom cursors.
A class for manipulating imges.
Class for creating a window.
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.
WindowFlag
Flags passed when creating a window to change its behaviour.
@ maximized
Maximizes the window when created.
@ floating
Keeps the window on top of other windows.
@ transparent
Allows the framebuffer to be transparent, this means that calling window.clear() with a color whose a...
@ resizable
Makes the window resizable.
Struct for representing events and informations associated with them.