restructured everything
This commit is contained in:
parent
4225a524b9
commit
c66cae17f2
61 changed files with 18406 additions and 1710 deletions
30
include/graphics/drawable/Drawable.hpp
Normal file
30
include/graphics/drawable/Drawable.hpp
Normal file
|
@ -0,0 +1,30 @@
|
|||
/**
|
||||
* @file Drawable.hpp
|
||||
* @brief The base class of everything renderable by RenderTarget
|
||||
* @author Lauchmelder23
|
||||
* @date 20.05.2020
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
#include "Util.hpp"
|
||||
|
||||
struct SDL_Renderer;
|
||||
|
||||
SDLU_BEGIN
|
||||
/**
|
||||
* @brief Everything that can be rendered derives from this class.
|
||||
*/
|
||||
class Drawable
|
||||
{
|
||||
public:
|
||||
Drawable(const Drawable& other) = delete;
|
||||
Drawable(Drawable&& other) = delete;
|
||||
Drawable& operator=(const Drawable& other) = delete;
|
||||
|
||||
friend class RenderTarget;
|
||||
|
||||
protected:
|
||||
Drawable() { }
|
||||
virtual void Draw(SDL_Renderer* const target) const = 0;
|
||||
};
|
||||
SDLU_END
|
157
include/graphics/drawable/Transformable.hpp
Normal file
157
include/graphics/drawable/Transformable.hpp
Normal file
|
@ -0,0 +1,157 @@
|
|||
/**
|
||||
* @file Transformable.hpp
|
||||
* @brief Contains information for transformable objects
|
||||
* @author Lauchmelder23
|
||||
* @date 23.05.2020
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
#include "structures/Vector2.hpp"
|
||||
|
||||
SDLU_BEGIN
|
||||
/**
|
||||
* @brief A class that stores locational information
|
||||
*
|
||||
* Stores position, rotation, scale and the origin of an
|
||||
* object, and provides functions to get/set those values.
|
||||
* "Origin" is the offset between the position and the top-left
|
||||
* corner of the object.
|
||||
*/
|
||||
class Transformable
|
||||
{
|
||||
public:
|
||||
/**
|
||||
* @brief Default constructur
|
||||
*/
|
||||
Transformable();
|
||||
|
||||
/**
|
||||
* @brief Deconstructor
|
||||
*/
|
||||
virtual ~Transformable();
|
||||
|
||||
/**
|
||||
* @brief Returns the position of the object
|
||||
*
|
||||
* @return A 2D vector of the position
|
||||
*/
|
||||
Vector2f GetPosition();
|
||||
|
||||
/**
|
||||
* @brief Sets a new position
|
||||
*
|
||||
* @param[in] position A 2D vector with the new position
|
||||
*/
|
||||
void SetPosition(const Vector2f& position);
|
||||
|
||||
/**
|
||||
* @brief Sets a new position
|
||||
*
|
||||
* @param[in] x The new x position
|
||||
* @param[in] y The new y position
|
||||
*/
|
||||
void SetPosition(float x, float y);
|
||||
|
||||
/**
|
||||
* @brief Adds to the current position
|
||||
*
|
||||
* @param[in] position A 2D movement vector
|
||||
*/
|
||||
void Move(const Vector2f& position);
|
||||
|
||||
/**
|
||||
* @brief Adds to the current position
|
||||
*
|
||||
* @param[in] x The offset in x direction
|
||||
* @param[in] y The offset in y direction
|
||||
*/
|
||||
void Move(float x, float y);
|
||||
|
||||
|
||||
/**
|
||||
* @brief Gets the current local origin
|
||||
*
|
||||
* @return A 2D vector with the offset
|
||||
*/
|
||||
Vector2f GetOrigin();
|
||||
|
||||
/**
|
||||
* @brief Sets a new local origin
|
||||
*
|
||||
* @param[in] origin A 2D vector with the new origin
|
||||
*/
|
||||
void SetOrigin(const Vector2f& origin);
|
||||
|
||||
/**
|
||||
* @brief Sets a new local origin
|
||||
*
|
||||
* @param[in] x The new x component of the origin
|
||||
* @param[in] y The new y component of the origin
|
||||
*/
|
||||
void SetOrigin(float x, float y);
|
||||
|
||||
/**
|
||||
* @brief Gets the current scale of the object
|
||||
*
|
||||
* @return A 2D vector with the scale in x- and y-direction
|
||||
*/
|
||||
Vector2f GetScale();
|
||||
|
||||
/**
|
||||
* @brief Sets a new scale
|
||||
*
|
||||
* @param[in] scale A 2D vector with the new scale
|
||||
*/
|
||||
void SetScale(const Vector2f& scale);
|
||||
|
||||
/**
|
||||
* @brief Sets a new scale
|
||||
*
|
||||
* @param[in] x The new scale in x direction
|
||||
* @param[in] y The new scale in y direction
|
||||
*/
|
||||
void SetScale(float x, float y);
|
||||
|
||||
/**
|
||||
* @brief Scales the object by some amount
|
||||
*
|
||||
* @param[in] scale The amount to scale by in x- and y-direction
|
||||
*/
|
||||
void Scale(const Vector2f& scale);
|
||||
|
||||
/**
|
||||
* @brief Scales the object by some amount
|
||||
*
|
||||
* @param[in] x The amount to scale by in x direction
|
||||
* @param[in] y The amount to scale by in y direction
|
||||
*/
|
||||
void Scale(float x, float y);
|
||||
|
||||
/**
|
||||
* @brief Gets the current rotation
|
||||
*
|
||||
* @return The rotation in degrees
|
||||
*/
|
||||
float GetRotation();
|
||||
|
||||
/**
|
||||
* @brief Sets a new rotation
|
||||
*
|
||||
* @param[in] angle The new rotation in degrees
|
||||
*/
|
||||
void SetRotation(float angle);
|
||||
|
||||
/**
|
||||
* @brief Rotates by some amount
|
||||
*
|
||||
* @param[in] angle The angle to rotate by in degrees
|
||||
*/
|
||||
void Rotate(float angle);
|
||||
|
||||
protected:
|
||||
Vector2f position; ///< Position of the object
|
||||
Vector2f origin; ///< Offset of the top-left corner from the position
|
||||
Vector2f scale; ///< Scale of the object
|
||||
float rotation; ///< Rotation of the object (in degrees)
|
||||
};
|
||||
SDLU_END
|
62
include/graphics/drawable/shapes/Rectangle.hpp
Normal file
62
include/graphics/drawable/shapes/Rectangle.hpp
Normal 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
|
||||
};
|
||||
}
|
45
include/graphics/drawable/shapes/Shape.hpp
Normal file
45
include/graphics/drawable/shapes/Shape.hpp
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue