MyGL
Loading...
Searching...
No Matches
AbstractShape.hpp
1#ifndef MYGL_ABSTRACT_SHAPE
2#define MYGL_ABSTRACT_SHAPE
3
4#include "../mygl_export.h"
5
6#include "../Camera.hpp"
7#include "../Color.hpp"
8#include "../ShaderProgram.hpp"
9#include "../Texture.hpp"
10
11#include <string>
12#include <vector>
13#include <numbers>
14
15namespace my
16{
21 {
22 private:
23 static void initShaders();
24
25 protected:
26 static constexpr float pi = std::numbers::pi_v<float>;
27 static my::ShaderProgram shader;
28 static my::ShaderProgram texShader;
29
30 glm::vec2 m_position;
31 glm::vec2 m_originalScale;
32 glm::vec2 m_scaleFactor;
33 float m_rotationAngle;
34 mutable bool m_updateMatrix;
35 mutable glm::mat4 m_model;
36 my::Color m_color;
37 float m_outlineThickness;
38 my::Color m_outlineColor;
39 mutable glm::mat4 m_outlineModel;
40 my::Texture m_texture;
41 bool m_isTextured;
42 my::ShaderProgram m_shader;
43 my::ShaderProgram m_outlineShader;
44
49 virtual std::vector<glm::vec2> points() const = 0;
50
51 public:
52 static const ShaderProgram& defaultShader;
53
57 MYGL_EXPORT AbstractShape();
58
64 MYGL_EXPORT AbstractShape(int width, int height);
65
73 MYGL_EXPORT AbstractShape(int width, int height, int x, int y);
74
76 MYGL_EXPORT virtual ~AbstractShape();
77
82 MYGL_EXPORT glm::vec2 getSize() const noexcept;
83
91 MYGL_EXPORT virtual void setPosition(int x, int y, bool center = false);
92
99 MYGL_EXPORT virtual void setPosition(const glm::vec2& pos, bool center = false);
100
109 MYGL_EXPORT virtual void setRelativePosition(int x, int y, const my::Camera& camera, bool center = false);
110
118 MYGL_EXPORT virtual void setRelativePosition(const glm::vec2& pos, const my::Camera& camera, bool center = false);
119
125 MYGL_EXPORT virtual void move(float x, float y) noexcept;
126
131 MYGL_EXPORT glm::vec2 getPosition() const noexcept;
132
138 MYGL_EXPORT void setScale(float x, float y) noexcept;
139
145 MYGL_EXPORT void scale(float x, float y) noexcept;
146
151 MYGL_EXPORT glm::vec2 getScale() const noexcept;
152
157 MYGL_EXPORT void setRotation(float angle);
158
163 MYGL_EXPORT void rotate(float angle);
164
169 MYGL_EXPORT float getRotation() const noexcept;
170
178 MYGL_EXPORT virtual void setColor(uint8_t r, uint8_t g, uint8_t b, uint8_t alpha = 255) noexcept;
179
184 MYGL_EXPORT virtual void setColor(const my::Color& color) noexcept;
185
190 MYGL_EXPORT my::Color getColor() const noexcept;
191
196 MYGL_EXPORT void setOutlineThickness(unsigned int thickness);
197
202 MYGL_EXPORT void setOutlineColor(const my::Color& color) noexcept;
203
211 MYGL_EXPORT void setOutlineColor(uint8_t r, uint8_t g, uint8_t b, uint8_t alpha = 255) noexcept;
212
219 MYGL_EXPORT bool SATCollides(const AbstractShape& shape) const;
220
232 MYGL_EXPORT bool BBoxCollides(const AbstractShape& shape) const noexcept;
233
238 MYGL_EXPORT virtual void setTexture(const my::Texture& texture);
239
245 MYGL_EXPORT void setTexture(const std::string& filename);
246
251 MYGL_EXPORT void setShader(const ShaderProgram& program);
252
257 MYGL_EXPORT void setOutlineShader(const ShaderProgram& program);
258
264 MYGL_EXPORT virtual void draw(const glm::mat4& lookAt, const glm::mat4& projection) const = 0;
265 };
266
267} // namespace my
268
269#endif // MYGL_ABSTRACT_SHAPE
Class inherited by all the shapes, it defines common operations on a shape.
virtual MYGL_EXPORT void move(float x, float y) noexcept
Moves the shape relative to it's current position.
MYGL_EXPORT glm::vec2 getScale() const noexcept
Gives the current scaling factor applied to the shape.
MYGL_EXPORT void rotate(float angle)
Rotates the shape.
virtual MYGL_EXPORT void setColor(uint8_t r, uint8_t g, uint8_t b, uint8_t alpha=255) noexcept
Sets the shape's color from its individual components (ints between 0 and 255)
MYGL_EXPORT void setOutlineColor(const my::Color &color) noexcept
Sets the shape's outline color.
MYGL_EXPORT void setShader(const ShaderProgram &program)
Sets the shader used to draw the shape.
virtual MYGL_EXPORT void setTexture(const my::Texture &texture)
Attaches a texture to the shape.
MYGL_EXPORT bool SATCollides(const AbstractShape &shape) const
Tells wether 2 shapes are overlapping using the separating axis theorem (SAT)
MYGL_EXPORT float getRotation() const noexcept
Returns the shapes's angle of rotation.
MYGL_EXPORT void setOutlineShader(const ShaderProgram &program)
Sets the shader used to draw the shape's outline.
MYGL_EXPORT void scale(float x, float y) noexcept
Modifies the scaling factor.
MYGL_EXPORT void setRotation(float angle)
Sets the rotation applied to the shape.
virtual MYGL_EXPORT void draw(const glm::mat4 &lookAt, const glm::mat4 &projection) const =0
Draws a shape, this method is called by a window.
virtual std::vector< glm::vec2 > points() const =0
Returns the points composing this shape.
virtual MYGL_EXPORT ~AbstractShape()
Default destructor.
MYGL_EXPORT bool BBoxCollides(const AbstractShape &shape) const noexcept
Tells whether 2 shapes are overlapping using their bounding boxes.
MYGL_EXPORT glm::vec2 getPosition() const noexcept
Gives the current position of the shape's center.
MYGL_EXPORT void setOutlineThickness(unsigned int thickness)
Sets the shape's outline's thickness.
MYGL_EXPORT glm::vec2 getSize() const noexcept
Returns the size of the shape.
virtual MYGL_EXPORT void setRelativePosition(int x, int y, const my::Camera &camera, bool center=false)
Moves the shape to a certain position, relative to a camera's position.
MYGL_EXPORT AbstractShape(int width, int height, int x, int y)
Initializes a width * height object whose center is at (x, y);.
MYGL_EXPORT AbstractShape()
Default constructor, Initializes a 10 * 10 grey object.
MYGL_EXPORT my::Color getColor() const noexcept
Returns the shape's color.
virtual MYGL_EXPORT void setPosition(int x, int y, bool center=false)
Moves the shape to (x,y)
MYGL_EXPORT void setScale(float x, float y) noexcept
Sets the scale factor applied to the shape.
MYGL_EXPORT AbstractShape(int width, int height)
Intializes a grey object which dimensions are width * height.
Class used to manipulate a 2D camera.
Definition Camera.hpp:15
Class for storing color objects.
Definition Color.hpp:17
Class for creating shader programs.
Class for storing textures.
Definition Texture.hpp:21
Namespace containing every class, function and enum of the library.
Definition Camera.hpp:10