Added Transformable class
This commit is contained in:
parent
587454e708
commit
8dd9035ff8
|
@ -2,7 +2,7 @@ set(PNAME SDLU)
|
|||
|
||||
add_library(${PNAME}
|
||||
alibi.cpp SDLU.hpp Util.hpp
|
||||
"structures/Color.cpp" "structures/Mouse.cpp" "structures/Window.cpp" "graphics/RenderTarget.cpp")
|
||||
"structures/Color.cpp" "structures/Mouse.cpp" "structures/Window.cpp" "graphics/RenderTarget.cpp" "graphics/drawable/Transformable.cpp")
|
||||
|
||||
set_property(TARGET ${PNAME} PROPERTY CXX_STANDARD 17)
|
||||
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
target_sources(${PNAME} PRIVATE
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Graphics.hpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/RenderWindow.hpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/RenderWindow.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/RenderTarget.hpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/RenderTarget.cpp
|
||||
)
|
||||
)
|
||||
|
||||
add_subdirectory(drawable)
|
5
SDLU/graphics/Graphics.hpp
Normal file
5
SDLU/graphics/Graphics.hpp
Normal file
|
@ -0,0 +1,5 @@
|
|||
#pragma once
|
||||
|
||||
#include <RenderTarget.hpp>
|
||||
#include <RenderWindow.hpp>
|
||||
#include <drawable/Drawable.hpp>
|
|
@ -22,6 +22,11 @@ namespace sdlu
|
|||
SDL_RenderClear(renderer);
|
||||
}
|
||||
|
||||
void RenderTarget::Draw(const Drawable& drawable)
|
||||
{
|
||||
drawable.Draw(*this);
|
||||
}
|
||||
|
||||
void RenderTarget::Display()
|
||||
{
|
||||
RETURN_IF_NULLPTR(renderer);
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
#include <SDL.h>
|
||||
|
||||
#include <structures/Color.hpp>
|
||||
#include <graphics/drawable/Drawable.hpp>
|
||||
|
||||
namespace sdlu
|
||||
{
|
||||
|
@ -29,6 +30,13 @@ namespace sdlu
|
|||
*/
|
||||
void Clear(const Color& color = Color::Black);
|
||||
|
||||
/**
|
||||
* @brief Draws a sdlu::Drawable to the SDL_Renderer
|
||||
*
|
||||
* @param[in] drawable A reference to a derived class of Drawable
|
||||
*/
|
||||
void Draw(const Drawable& drawable);
|
||||
|
||||
/**
|
||||
* @brief Display the current state of the renderer to the screen
|
||||
*/
|
||||
|
|
5
SDLU/graphics/drawable/CMakeLists.txt
Normal file
5
SDLU/graphics/drawable/CMakeLists.txt
Normal file
|
@ -0,0 +1,5 @@
|
|||
target_sources(${PNAME} PRIVATE
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Drawable.hpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Transformable.hpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Transformable.cpp
|
||||
)
|
29
SDLU/graphics/drawable/Drawable.hpp
Normal file
29
SDLU/graphics/drawable/Drawable.hpp
Normal file
|
@ -0,0 +1,29 @@
|
|||
/**
|
||||
* @file Drawable.hpp
|
||||
* @brief The base class of everything renderable by RenderTarget
|
||||
* @author Lauchmelder23
|
||||
* @date 20.05.2020
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
#include <graphics/RenderTarget.hpp>
|
||||
|
||||
namespace sdlu
|
||||
{
|
||||
/**
|
||||
* @brief Everything that can be rendered derives from this class.
|
||||
*/
|
||||
class Drawable
|
||||
{
|
||||
public:
|
||||
Drawable() = delete;
|
||||
Drawable(const Drawable& other) = delete;
|
||||
Drawable(Drawable&& other) = delete;
|
||||
Drawable& operator=(const Drawable& other) = delete;
|
||||
|
||||
friend class RenderTarget;
|
||||
|
||||
protected:
|
||||
virtual void Draw(RenderTarget& target) const = 0;
|
||||
};
|
||||
}
|
95
SDLU/graphics/drawable/Transformable.cpp
Normal file
95
SDLU/graphics/drawable/Transformable.cpp
Normal file
|
@ -0,0 +1,95 @@
|
|||
#include "Transformable.hpp"
|
||||
|
||||
namespace sdlu
|
||||
{
|
||||
Transformable::Transformable() :
|
||||
m_oPosition(0, 0), m_oOrigin(0, 0),
|
||||
m_oScale(1.f, 1.f), m_fRotation(0.f)
|
||||
{
|
||||
// Empty
|
||||
}
|
||||
|
||||
Transformable::~Transformable()
|
||||
{
|
||||
// Empty
|
||||
}
|
||||
|
||||
Vector2f Transformable::GetPosition()
|
||||
{
|
||||
return m_oPosition;
|
||||
}
|
||||
|
||||
void Transformable::SetPosition(const Vector2f& position)
|
||||
{
|
||||
m_oPosition = position;
|
||||
}
|
||||
|
||||
void Transformable::SetPosition(float x, float y)
|
||||
{
|
||||
m_oPosition = Vector2f(x, y);
|
||||
}
|
||||
|
||||
void Transformable::Move(const Vector2f& position)
|
||||
{
|
||||
m_oPosition += position;
|
||||
}
|
||||
|
||||
void Transformable::Move(float x, float y)
|
||||
{
|
||||
m_oPosition += Vector2f(x, y);
|
||||
}
|
||||
Vector2f Transformable::GetOrigin()
|
||||
{
|
||||
return m_oOrigin;
|
||||
}
|
||||
|
||||
void Transformable::SetOrigin(const Vector2f& origin)
|
||||
{
|
||||
m_oOrigin = origin;
|
||||
}
|
||||
|
||||
void Transformable::SetOrigin(float x, float y)
|
||||
{
|
||||
m_oOrigin = Vector2f(x, y);
|
||||
}
|
||||
|
||||
Vector2f Transformable::GetScale()
|
||||
{
|
||||
return m_oScale;
|
||||
}
|
||||
|
||||
void Transformable::SetScale(const Vector2f& scale)
|
||||
{
|
||||
m_oScale = scale;
|
||||
}
|
||||
|
||||
void Transformable::SetScale(float x, float y)
|
||||
{
|
||||
m_oScale = Vector2f(x, y);
|
||||
}
|
||||
|
||||
void Transformable::Scale(const Vector2f& scale)
|
||||
{
|
||||
m_oScale += scale;
|
||||
}
|
||||
|
||||
void Transformable::Scale(float x, float y)
|
||||
{
|
||||
m_oScale += Vector2f(x, y);
|
||||
}
|
||||
|
||||
float Transformable::GetRotation()
|
||||
{
|
||||
return m_fRotation;
|
||||
}
|
||||
|
||||
void Transformable::SetRotation(float angle)
|
||||
{
|
||||
m_fRotation = angle;
|
||||
}
|
||||
|
||||
void Transformable::Rotate(float angle)
|
||||
{
|
||||
m_fRotation += angle;
|
||||
}
|
||||
}
|
158
SDLU/graphics/drawable/Transformable.hpp
Normal file
158
SDLU/graphics/drawable/Transformable.hpp
Normal file
|
@ -0,0 +1,158 @@
|
|||
/**
|
||||
* @file Transformable.hpp
|
||||
* @brief Contains information for transformable objects
|
||||
* @author Lauchmelder23
|
||||
* @date 23.05.2020
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
#include <structures/Vector2.hpp>
|
||||
|
||||
namespace sdlu
|
||||
{
|
||||
/**
|
||||
* @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);
|
||||
|
||||
private:
|
||||
Vector2f m_oPosition;
|
||||
Vector2f m_oOrigin;
|
||||
Vector2f m_oScale;
|
||||
float m_fRotation;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue