mirror of
https://github.com/Kbz-8/42_vox.git
synced 2026-01-10 22:23:35 +00:00
46 lines
1.5 KiB
C++
46 lines
1.5 KiB
C++
#ifndef __SCOP_RENDERER_ACTOR__
|
|
#define __SCOP_RENDERER_ACTOR__
|
|
|
|
#include <Maths/Vec3.h>
|
|
#include <Maths/Vec4.h>
|
|
#include <Maths/Quaternions.h>
|
|
#include <Core/Script.h>
|
|
#include <Graphics/Model.h>
|
|
|
|
namespace Scop
|
|
{
|
|
class Actor
|
|
{
|
|
public:
|
|
Actor();
|
|
Actor(Model model);
|
|
|
|
inline void AttachScript(std::shared_ptr<ActorScript> script) { p_script = script; }
|
|
void Update(NonOwningPtr<class Scene> scene, class Inputs& input, float timestep);
|
|
|
|
inline void SetColor(Vec4f color) noexcept { m_color = color; }
|
|
inline void SetPosition(Vec3f position) noexcept { m_position = position; }
|
|
inline void SetScale(Vec3f scale) noexcept { m_scale = scale; }
|
|
inline void SetOrientation(Quatf orientation) noexcept { m_orientation = orientation; }
|
|
|
|
[[nodiscard]] inline const Vec4f& GetColor() const noexcept { return m_color; }
|
|
[[nodiscard]] inline const Vec3f& GetPosition() const noexcept { return m_position; }
|
|
[[nodiscard]] inline const Vec3f& GetScale() const noexcept { return m_scale; }
|
|
[[nodiscard]] inline const Quatf& GetOrientation() const noexcept { return m_orientation; }
|
|
[[nodiscard]] inline const Model& GetModel() const noexcept { return m_model; }
|
|
[[nodiscard]] inline Model& GetModelRef() noexcept { return m_model; }
|
|
|
|
~Actor();
|
|
|
|
private:
|
|
Model m_model;
|
|
Quatf m_orientation = Quatf::Identity();
|
|
Vec4f m_color = Vec4f{ 1.0f, 1.0f, 1.0f, 1.0f };
|
|
Vec3f m_position = Vec3f{ 0.0f, 0.0f, 0.0f };
|
|
Vec3f m_scale = Vec3f{ 1.0f, 1.0f, 1.0f };
|
|
std::shared_ptr<ActorScript> p_script;
|
|
};
|
|
}
|
|
|
|
#endif
|