Advertisement
Zgragselus

Demo Component (3)

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