DarkflameServer/dGame/dComponents/HavokVehiclePhysicsComponent.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

81 lines
1.8 KiB
C
Raw Permalink Normal View History

#pragma once
#include "BitStream.h"
#include "Entity.h"
#include "PhysicsComponent.h"
#include "eReplicaComponentType.h"
2024-01-07 07:05:57 +00:00
#include "PositionUpdate.h"
/**
* Physics component for vehicles.
*/
class HavokVehiclePhysicsComponent : public PhysicsComponent {
public:
static constexpr eReplicaComponentType ComponentType = eReplicaComponentType::HAVOK_VEHICLE_PHYSICS;
2022-07-28 13:39:57 +00:00
HavokVehiclePhysicsComponent(Entity* parentEntity);
void Serialize(RakNet::BitStream& outBitStream, bool bIsInitialUpdate) override;
/**
* Sets the velocity
* @param vel the new velocity
*/
void SetVelocity(const NiPoint3& vel);
2022-07-28 13:39:57 +00:00
/**
* Gets the velocity
* @return the velocity
*/
const NiPoint3& GetVelocity() const { return m_Velocity; }
2022-07-28 13:39:57 +00:00
/**
* Sets the angular velocity
* @param vel the new angular velocity
*/
void SetAngularVelocity(const NiPoint3& vel);
2022-07-28 13:39:57 +00:00
/**
* Gets the angular velocity
* @return the angular velocity
*/
const NiPoint3& GetAngularVelocity() const { return m_AngularVelocity; }
2022-07-28 13:39:57 +00:00
/**
* Sets whether the vehicle is on the ground
* @param val whether the vehicle is on the ground
*/
void SetIsOnGround(bool val);
2022-07-28 13:39:57 +00:00
/**
* Gets whether the vehicle is on the ground
* @return whether the vehicle is on the ground
*/
const bool GetIsOnGround() const { return m_IsOnGround; }
2022-07-28 13:39:57 +00:00
/**
* Gets whether the vehicle is on rail
* @return whether the vehicle is on rail
*/
void SetIsOnRail(bool val);
2022-07-28 13:39:57 +00:00
/**
* Gets whether the vehicle is on rail
* @return whether the vehicle is on rail
*/
const bool GetIsOnRail() const { return m_IsOnRail; }
2022-07-28 13:39:57 +00:00
void SetRemoteInputInfo(const RemoteInputInfo&);
private:
NiPoint3 m_Velocity;
NiPoint3 m_AngularVelocity;
bool m_IsOnGround;
bool m_IsOnRail;
2022-07-28 13:39:57 +00:00
float m_SoftUpdate = 0;
uint32_t m_EndBehavior;
RemoteInputInfo m_RemoteInputInfo;
};