2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
2023-06-07 01:59:53 +00:00
|
|
|
#include "tinyxml2.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
class Entity;
|
|
|
|
|
2023-06-07 03:48:30 +00:00
|
|
|
namespace RakNet {
|
|
|
|
class BitStream;
|
|
|
|
}
|
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
/**
|
|
|
|
* Component base class, provides methods for game loop updates, usage events and loading and saving to XML.
|
|
|
|
*/
|
2023-06-07 01:59:53 +00:00
|
|
|
class Component {
|
2021-12-05 17:54:36 +00:00
|
|
|
public:
|
2023-06-07 01:59:53 +00:00
|
|
|
Component(Entity* owningEntity);
|
2023-06-27 06:01:46 +00:00
|
|
|
virtual ~Component() {};
|
2022-07-28 13:39:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the owner of this component
|
|
|
|
* @return the owner of this component
|
|
|
|
*/
|
2023-06-09 09:46:01 +00:00
|
|
|
Entity* GetParentEntity() const { return m_ParentEntity; };
|
2022-07-28 13:39:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Event called when this component is being used, e.g. when some entity interacted with it
|
|
|
|
* @param originator
|
|
|
|
*/
|
2023-06-27 06:01:46 +00:00
|
|
|
virtual void OnUse(Entity* originator) {};
|
2022-07-28 13:39:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Save data from this componennt to character XML
|
|
|
|
* @param doc the document to write data to
|
|
|
|
*/
|
2023-06-27 06:01:46 +00:00
|
|
|
virtual void UpdateXml(tinyxml2::XMLDocument* doc) {};
|
2022-07-28 13:39:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Load base data for this component from character XML
|
|
|
|
* @param doc the document to read data from
|
|
|
|
*/
|
2023-06-27 06:01:46 +00:00
|
|
|
virtual void LoadFromXml(tinyxml2::XMLDocument* doc) {};
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2023-06-07 01:59:53 +00:00
|
|
|
/**
|
|
|
|
* Call after you have newed the component to initialize it
|
|
|
|
*/
|
2023-06-27 06:01:46 +00:00
|
|
|
virtual void Startup() {};
|
2023-06-07 01:59:53 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates the component in the game loop
|
|
|
|
* @param deltaTime time passed since last update
|
|
|
|
*/
|
2023-06-27 06:01:46 +00:00
|
|
|
virtual void Update(float deltaTime) {};
|
2023-06-07 01:59:53 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads the data of this component from the luz/lvl configuration
|
|
|
|
*/
|
2023-06-27 06:01:46 +00:00
|
|
|
virtual void LoadConfigData() {};
|
2023-06-07 01:59:53 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads the data of this component from the cdclient database
|
|
|
|
*/
|
2023-06-27 06:01:46 +00:00
|
|
|
virtual void LoadTemplateData() {};
|
2023-06-07 03:48:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Serializes the component for delivery to the client(s)
|
|
|
|
*/
|
2023-06-27 06:01:46 +00:00
|
|
|
virtual void Serialize(RakNet::BitStream* bitStream, bool isConstruction = false) {};
|
2021-12-05 17:54:36 +00:00
|
|
|
protected:
|
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
/**
|
|
|
|
* The entity that owns this component
|
|
|
|
*/
|
2023-06-09 09:46:01 +00:00
|
|
|
Entity* m_ParentEntity;
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|