Advertisement
Zgragselus

Component

Jan 24th, 2025
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.59 KB | None | 0 0
  1. #include "SkyeCuillin.h"
  2.  
  3. class DemoController : public Engine::Component
  4. {
  5. public:
  6.     static std::string mComponentName;
  7.  
  8.     Engine::float4 mFloat4Value;
  9.     Engine::mat4 mMatrixValue;
  10.     float mValue;
  11.     int mIntValue;
  12.     std::string mStringValue;
  13.  
  14.     virtual std::string& GetName() override
  15.     {
  16.         return mComponentName;
  17.     }
  18.  
  19.     virtual bool Editor(std::string& prev, std::string& next)
  20.     {
  21.         SetupContext();
  22.        
  23.         return Engine::Component::DefaultEditor(this, &Reflection, prev, next);
  24.     }
  25.  
  26.     virtual void Init()
  27.     {
  28.         mValue = 0.0f;
  29.     }
  30.  
  31.     virtual void Shutdown()
  32.     {
  33.  
  34.     }
  35.  
  36.     virtual void Update(float deltaTime)
  37.     {
  38.         mValue += 1.0f / 60.0f;
  39.         if (mValue > 1.0f)
  40.         {
  41.             mValue -= 1.0f;
  42.         }
  43.  
  44.         printf("%f %f %f\n",
  45.             this->mGameObject->GetEntity()->Transformation().GetTranslation().x,
  46.             this->mGameObject->GetEntity()->Transformation().GetTranslation().y,
  47.             this->mGameObject->GetEntity()->Transformation().GetTranslation().z);
  48.     }
  49.  
  50.     virtual std::string Serialize()
  51.     {
  52.         return Engine::Component::DefaultSerialize(this, &Reflection);
  53.     }
  54.  
  55.     virtual void Deserialize(const std::string& data)
  56.     {
  57.         Engine::Component::DefaultDeserialize(this, &Reflection, data);
  58.     }
  59.  
  60.     virtual void CollisionEnter(Engine::GameObject* other)
  61.     {
  62.  
  63.     }
  64.  
  65.     virtual void CollisionExit(Engine::GameObject* other)
  66.     {
  67.  
  68.     }
  69.  
  70.     REFLECT()
  71. };
  72.  
  73. REFLECT_STRUCT_BEGIN(DemoController)
  74. REFLECT_STRUCT_MEMBER(mValue)
  75. REFLECT_STRUCT_MEMBER(mIntValue)
  76. REFLECT_STRUCT_MEMBER(mFloat4Value)
  77. REFLECT_STRUCT_MEMBER(mMatrixValue)
  78. REFLECT_STRUCT_MEMBER(mStringValue)
  79. REFLECT_STRUCT_END()
  80.  
  81. SKYE_CUILLIN_COMPONENT(DemoController)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement