restructured everything

This commit is contained in:
Robert 2021-04-23 15:08:51 +02:00
parent 4225a524b9
commit c66cae17f2
61 changed files with 18406 additions and 1710 deletions

View file

@ -0,0 +1,62 @@
/**
* @file Rectangle.hpp
* @brief The primitive Rectangle shape
* @author Lauchmelder23
* @date 23.05.2020
*/
#pragma once
#include "Shape.hpp"
namespace sdlu
{
class Rectangle :
public Shape
{
public:
/**
* @brief Default constructor
*/
Rectangle();
/**
* @brief Constructor with default parameters
*
* @param[in] position A 2D position vector
* @param[in] size A 2D size vector
*/
Rectangle(const Vector2f& position, const Vector2f& size);
/**
* @brief Gets the size of the rectangle
*
* @return A 2D vector with the size information
*/
Vector2f GetSize();
/**
* @brief Sets a new size for the rectangle
*
* @param[in] size A 2D vector with the size information
*/
void SetSize(const Vector2f& size);
/**
* @brief Sets a new size for the rectangle
*
* @param[in] x The new size in x direction
* @param[in] y The new size in y direction
*/
void SetSize(float x, float y);
/**
* @brief Draws the Rectangle to the target
*
* @param[in] target The RenderTarget to draw to
*/
virtual void Draw(SDL_Renderer* const target) const override;
private:
Vector2f size; ///< Size of the rectangle
};
}

View file

@ -0,0 +1,45 @@
/**
* @file Shape.hpp
* @brief The base class for all native SDLU shapes
* @author Lauchmelder23
* @date 23.05.2020
*/
#pragma once
#include "graphics/drawable/Drawable.hpp"
#include "graphics/drawable/Transformable.hpp"
#include "structures/Color.hpp"
SDLU_BEGIN
/**
* @brief The non-instantiable base class for all SDLU shapes
*/
class Shape :
public Drawable, public Transformable
{
public:
/**
* @brief Deconstructor
*/
virtual ~Shape();
/**
* @brief Sets the color of the shape
*/
void SetColor(const Color& color);
/**
* @brief Gets the color of the shape
*/
Color GetColor();
protected:
/**
* @brief Default constructor
*/
Shape();
protected:
Color color;
};
SDLU_END