mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-22 13:37:22 +00:00
65 lines
1.4 KiB
C++
65 lines
1.4 KiB
C++
#pragma once
|
|
|
|
#include "Entity.h"
|
|
#include "Component.h"
|
|
#include "eReplicaComponentType.h"
|
|
|
|
/**
|
|
* Component that handles player forced movement
|
|
*
|
|
*/
|
|
class PlayerForcedMovementComponent : public Component {
|
|
public:
|
|
inline static const eReplicaComponentType ComponentType = eReplicaComponentType::PLAYER_FORCED_MOVEMENT;
|
|
|
|
/**
|
|
* Constructor for this component
|
|
* @param parent parent that contains this component
|
|
*/
|
|
PlayerForcedMovementComponent(Entity* parent) : Component(parent) {};
|
|
|
|
void Serialize(RakNet::BitStream* outBitStream, bool bIsInitialUpdate, unsigned int& flags);
|
|
|
|
/**
|
|
* @brief Set the Player On Rail object
|
|
*
|
|
* @param value if the player is on a rail
|
|
*/
|
|
void SetPlayerOnRail(bool value) {
|
|
if (m_PlayerOnRail == value) return;
|
|
m_PlayerOnRail = value;
|
|
m_DirtyInfo = true;
|
|
}
|
|
|
|
/**
|
|
* @brief Set the Show Billboard object
|
|
*
|
|
* @param value if the billboard should be shown
|
|
*/
|
|
void SetShowBillboard(bool value) {
|
|
if (m_ShowBillboard == value) return;
|
|
m_ShowBillboard = value;
|
|
m_DirtyInfo = true;
|
|
}
|
|
|
|
bool GetPlayerOnRail() { return m_PlayerOnRail; }
|
|
bool GetShowBillboard() { return m_ShowBillboard; }
|
|
|
|
private:
|
|
/**
|
|
* whether the info is dirty
|
|
*/
|
|
bool m_DirtyInfo = false;
|
|
|
|
/**
|
|
* whether the player is on a rail
|
|
*/
|
|
bool m_PlayerOnRail = false;
|
|
|
|
/**
|
|
* whether the billboard should be showing
|
|
*/
|
|
bool m_ShowBillboard = false;
|
|
|
|
};
|