MyGL
|
Class inherited by all the shapes, it defines common operations on a shape. More...
#include <AbstractShape.hpp>
Public Member Functions | |
MYGL_EXPORT | AbstractShape () |
Default constructor, Initializes a 10 * 10 grey object. | |
MYGL_EXPORT | AbstractShape (int width, int height) |
Intializes a grey object which dimensions are width * height. | |
MYGL_EXPORT | AbstractShape (int width, int height, int x, int y) |
Initializes a width * height object whose center is at (x, y);. | |
virtual MYGL_EXPORT | ~AbstractShape () |
Default destructor. | |
MYGL_EXPORT glm::vec2 | getSize () const noexcept |
Returns the size of the shape. | |
virtual MYGL_EXPORT void | setPosition (int x, int y, bool center=false) |
Moves the shape to (x,y) | |
virtual MYGL_EXPORT void | setPosition (const glm::vec2 &pos, bool center=false) |
Moves the shape to a specified position. | |
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. | |
virtual MYGL_EXPORT void | setRelativePosition (const glm::vec2 &pos, const my::Camera &camera, bool center=false) |
Moves the shape to a certain position, relative to a camera's position. | |
virtual MYGL_EXPORT void | move (float x, float y) noexcept |
Moves the shape relative to it's current position. | |
MYGL_EXPORT glm::vec2 | getPosition () const noexcept |
Gives the current position of the shape's center. | |
MYGL_EXPORT void | setScale (float x, float y) noexcept |
Sets the scale factor applied to the shape. | |
MYGL_EXPORT void | scale (float x, float y) noexcept |
Modifies the scaling factor. | |
MYGL_EXPORT glm::vec2 | getScale () const noexcept |
Gives the current scaling factor applied to the shape. | |
MYGL_EXPORT void | setRotation (float angle) |
Sets the rotation applied to the shape. | |
MYGL_EXPORT void | rotate (float angle) |
Rotates the shape. | |
MYGL_EXPORT float | getRotation () const noexcept |
Returns the shapes's angle of rotation. | |
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) | |
virtual MYGL_EXPORT void | setColor (const my::Color &color) noexcept |
Sets the shape's color from an existing color. | |
MYGL_EXPORT my::Color | getColor () const noexcept |
Returns the shape's color. | |
MYGL_EXPORT void | setOutlineThickness (unsigned int thickness) |
Sets the shape's outline's thickness. | |
MYGL_EXPORT void | setOutlineColor (const my::Color &color) noexcept |
Sets the shape's outline color. | |
MYGL_EXPORT void | setOutlineColor (uint8_t r, uint8_t g, uint8_t b, uint8_t alpha=255) noexcept |
Sets the shape's outline color from its individual components (ints between 0 and 255) | |
MYGL_EXPORT bool | SATCollides (const AbstractShape &shape) const |
Tells wether 2 shapes are overlapping using the separating axis theorem (SAT) | |
MYGL_EXPORT bool | BBoxCollides (const AbstractShape &shape) const noexcept |
Tells whether 2 shapes are overlapping using their bounding boxes. | |
virtual MYGL_EXPORT void | setTexture (const my::Texture &texture) |
Attaches a texture to the shape. | |
MYGL_EXPORT void | setTexture (const std::string &filename) |
Attaches a texture to the shape. | |
MYGL_EXPORT void | setShader (const ShaderProgram &program) |
Sets the shader used to draw the shape. | |
MYGL_EXPORT void | setOutlineShader (const ShaderProgram &program) |
Sets the shader used to draw the shape's outline. | |
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. | |
Static Public Attributes | |
static const ShaderProgram & | defaultShader |
Protected Member Functions | |
virtual std::vector< glm::vec2 > | points () const =0 |
Returns the points composing this shape. | |
Protected Attributes | |
glm::vec2 | m_position |
glm::vec2 | m_originalScale |
glm::vec2 | m_scaleFactor |
float | m_rotationAngle |
bool | m_updateMatrix |
glm::mat4 | m_model |
my::Color | m_color |
float | m_outlineThickness |
my::Color | m_outlineColor |
glm::mat4 | m_outlineModel |
my::Texture | m_texture |
bool | m_isTextured |
my::ShaderProgram | m_shader |
my::ShaderProgram | m_outlineShader |
Static Protected Attributes | |
static constexpr float | pi = std::numbers::pi_v<float> |
static my::ShaderProgram | shader |
static my::ShaderProgram | texShader |
Class inherited by all the shapes, it defines common operations on a shape.
Definition at line 20 of file AbstractShape.hpp.
MYGL_EXPORT AbstractShape | ( | int | width, |
int | height ) |
Intializes a grey object which dimensions are width * height.
width | The object's width |
height | The object's height |
MYGL_EXPORT AbstractShape | ( | int | width, |
int | height, | ||
int | x, | ||
int | y ) |
Initializes a width * height object whose center is at (x, y);.
width | The object's width |
height | The object's height |
x | x coordinate of the center |
y | y coordinate of the center |
|
noexcept |
Tells whether 2 shapes are overlapping using their bounding boxes.
shape | The shape to test against |
This method is less expensive than the SAT one but far less precise (and it doesn't work properly when the shapes are rotated). If you need more precision use the SATCollides method instead.
|
pure virtual |
|
noexcept |
Returns the shape's color.
|
noexcept |
Gives the current position of the shape's center.
|
noexcept |
Returns the shapes's angle of rotation.
|
noexcept |
Gives the current scaling factor applied to the shape.
|
noexcept |
Returns the size of the shape.
|
virtualnoexcept |
Moves the shape relative to it's current position.
x | The horizontal offset |
y | The vertical offset |
|
protectedpure virtual |
Returns the points composing this shape.
Implemented in Rectangle.
MYGL_EXPORT void rotate | ( | float | angle | ) |
Rotates the shape.
angle | The angle (in degrees) to add to the current angle of rotation |
MYGL_EXPORT bool SATCollides | ( | const AbstractShape & | shape | ) | const |
Tells wether 2 shapes are overlapping using the separating axis theorem (SAT)
shape | The shape to test against |
|
noexcept |
Modifies the scaling factor.
x | The value to add to the horizontal scaling factor |
y | The value to add to the vertical scaling factor |
|
virtualnoexcept |
Sets the shape's color from an existing color.
color | The color to be applied to the shape |
|
virtualnoexcept |
Sets the shape's color from its individual components (ints between 0 and 255)
r | The red component |
g | The green component |
b | The blue component |
alpha | The alpha (transparency) value, by default 255 |
|
noexcept |
Sets the shape's outline color.
color | The color to be applied |
|
noexcept |
Sets the shape's outline color from its individual components (ints between 0 and 255)
r | The red component |
g | The green component |
b | The blue component |
alpha | The alpha (transparency) value, by default 255 |
MYGL_EXPORT void setOutlineShader | ( | const ShaderProgram & | program | ) |
Sets the shader used to draw the shape's outline.
program | The shader program to use |
MYGL_EXPORT void setOutlineThickness | ( | unsigned int | thickness | ) |
Sets the shape's outline's thickness.
thickness | The thickness in pixels |
|
virtual |
Moves the shape to a specified position.
pos | A glm::vec2 containing the new position |
center | If true, set the shape's center at 'pos', else sets its bottom left hand corner. Default value is false |
Reimplemented in Triangle.
|
virtual |
Moves the shape to (x,y)
x | The new horizontal position |
y | The new vertical popsition |
center | If true, set the shape's center at (x,y), else sets its bottom left hand corner at (x,y). Default value is false |
Reimplemented in Triangle.
|
virtual |
Moves the shape to a certain position, relative to a camera's position.
pos | A glm::vec2 containing the new position |
camera | A my::Camera |
center | If true, set the shape's center at (x,y), else sets its bottom left hand corner at (x,y). Default value is false |
|
virtual |
Moves the shape to a certain position, relative to a camera's position.
x | The new horizontal position in the camera's view |
y | The vertical position in the camera's view |
camera | A my::Camera |
center | If true, set the shape's center at (x,y), else sets its bottom left hand corner at (x,y). Default value is false |
MYGL_EXPORT void setRotation | ( | float | angle | ) |
Sets the rotation applied to the shape.
angle | the angle (in degrees) of rotation |
|
noexcept |
Sets the scale factor applied to the shape.
x | The horizontal scaling factor |
y | The vertical scaling factor |
MYGL_EXPORT void setShader | ( | const ShaderProgram & | program | ) |
Sets the shader used to draw the shape.
program | The shader program to use |
|
virtual |
Attaches a texture to the shape.
texture | A texture that has already been initialized |
MYGL_EXPORT void setTexture | ( | const std::string & | filename | ) |
Attaches a texture to the shape.
filename | The path to the image, supported formats are jpeg, png, gif (not animated), bmp, tga, psd, hdr, pic, and pnm |
|
static |
Definition at line 52 of file AbstractShape.hpp.
|
protected |
Definition at line 36 of file AbstractShape.hpp.
|
protected |
Definition at line 41 of file AbstractShape.hpp.
|
mutableprotected |
Definition at line 35 of file AbstractShape.hpp.
|
protected |
Definition at line 31 of file AbstractShape.hpp.
|
protected |
Definition at line 38 of file AbstractShape.hpp.
|
mutableprotected |
Definition at line 39 of file AbstractShape.hpp.
|
protected |
Definition at line 43 of file AbstractShape.hpp.
|
protected |
Definition at line 37 of file AbstractShape.hpp.
|
protected |
Definition at line 30 of file AbstractShape.hpp.
|
protected |
Definition at line 33 of file AbstractShape.hpp.
|
protected |
Definition at line 32 of file AbstractShape.hpp.
|
protected |
Definition at line 42 of file AbstractShape.hpp.
|
protected |
Definition at line 40 of file AbstractShape.hpp.
|
mutableprotected |
Definition at line 34 of file AbstractShape.hpp.
|
staticconstexprprotected |
Definition at line 26 of file AbstractShape.hpp.
|
staticprotected |
Definition at line 27 of file AbstractShape.hpp.
|
staticprotected |
Definition at line 28 of file AbstractShape.hpp.