2021-12-05 17:54:36 +00:00
|
|
|
#ifndef BOUNCERCOMPONENT_H
|
|
|
|
#define BOUNCERCOMPONENT_H
|
|
|
|
|
|
|
|
#include "dCommonVars.h"
|
|
|
|
#include "RakNetTypes.h"
|
|
|
|
#include "Entity.h"
|
|
|
|
#include "Component.h"
|
2023-03-04 07:16:37 +00:00
|
|
|
#include "eReplicaComponentType.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Attached to bouncer entities, allowing other entities to bounce off of it
|
|
|
|
*/
|
2023-06-26 08:23:22 +00:00
|
|
|
class BouncerComponent final : public Component {
|
2021-12-05 17:54:36 +00:00
|
|
|
public:
|
2023-06-09 08:22:45 +00:00
|
|
|
inline static const eReplicaComponentType ComponentType = eReplicaComponentType::BOUNCER;
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
BouncerComponent(Entity* parentEntity);
|
|
|
|
|
2023-06-26 08:19:49 +00:00
|
|
|
void Startup() override;
|
2021-12-05 17:54:36 +00:00
|
|
|
void Serialize(RakNet::BitStream* outBitStream, bool bIsInitialUpdate, unsigned int& flags);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets whether or not this bouncer needs to be activated by a pet
|
|
|
|
* @param value whether or not this bouncer needs to be activated by a pet
|
|
|
|
*/
|
2023-06-26 08:19:49 +00:00
|
|
|
void SetBounceOnCollision(bool value);
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets whether or not this bouncer is currently being activated by a pet, allowing entities to bounce off of it,
|
|
|
|
* also displays FX accordingly.
|
|
|
|
* @param value whether or not this bouncer is activated by a pet
|
|
|
|
*/
|
2023-06-26 08:19:49 +00:00
|
|
|
void SetBouncerEnabled(bool value);
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Finds the switch used to activate this bouncer if its pet-enabled and stores this components' state there
|
|
|
|
*/
|
|
|
|
void LookupPetSwitch();
|
|
|
|
|
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* Whether this bouncer is currently being activated by a pet
|
|
|
|
*/
|
2023-06-26 08:19:49 +00:00
|
|
|
bool m_BounceOnCollision;
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2023-06-26 08:19:49 +00:00
|
|
|
bool m_DirtyBounceInfo;
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BOUNCERCOMPONENT_H
|