DarkflameServer/dGame/dComponents/SimplePhysicsComponent.h

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

114 lines
2.6 KiB
C
Raw Permalink Normal View History

/*
* Darkflame Universe
* Copyright 2018
*/
#ifndef SIMPLEPHYSICSCOMPONENT_H
#define SIMPLEPHYSICSCOMPONENT_H
#include "dCommonVars.h"
#include "RakNetTypes.h"
#include "NiPoint3.h"
#include "NiQuaternion.h"
#include "PhysicsComponent.h"
#include "eReplicaComponentType.h"
class Entity;
2022-05-18 11:36:21 +00:00
enum class eClimbableType : int32_t {
2022-05-18 02:38:36 +00:00
CLIMBABLE_TYPE_NOT = 0,
2022-05-18 02:27:08 +00:00
CLIMBABLE_TYPE_LADDER,
CLIMBABLE_TYPE_WALL,
CLIMBABLE_TYPE_WALL_STICK
};
/**
* Component that serializes locations of entities to the client
*/
class SimplePhysicsComponent : public PhysicsComponent {
public:
static constexpr eReplicaComponentType ComponentType = eReplicaComponentType::SIMPLE_PHYSICS;
2022-05-18 02:27:08 +00:00
feat: Add isolated and simplified path to add components (#1204) * Components: Make ComponentType inline Prevents the next commits ODR violation * Components: Add new components * Entity: Add headers inline script component ComponentType * Components: Flip constructor argument order Entity comes first always * Entity: Add generic AddComponent Allows for much easier adding of components and is error proof by not allowing the user to add more than 1 of a specific component type to an Entity. * Entity: Migrate all component constructors Move all to the new variadic templates AddComponent function to reduce clutter and ways the component map is modified. The new function makes no assumptions. Component is assumed to not exist and is checked for with operator[]. This will construct a null component which will then be newed if the component didnt exist, or it will just get the current component if it does already exist. No new component will be allocated or constructed if the component already exists and the already existing pointer is returned instead. * Entity: Add placement new For the case where the component may already exist, use a placement new to construct the component again, it would be constructed again, but would not need to go through the allocator. * Entity: Add comments on likely new code * Tests: Fix tests * Update Entity.cpp * Update SGCannon.cpp * Entity: call destructor when re-constructing * Update Entity.cpp Update Entity.cpp --------- Co-authored-by: Aaron Kimbrell <aronwk.aaron@gmail.com>
2023-10-23 01:08:49 +00:00
SimplePhysicsComponent(Entity* parent, uint32_t componentID);
~SimplePhysicsComponent() override;
2022-07-28 13:39:57 +00:00
void Serialize(RakNet::BitStream& outBitStream, bool bIsInitialUpdate) override;
2022-07-28 13:39:57 +00:00
/**
* Returns the velocity of this entity
* @return the velocity of this entity
*/
const NiPoint3& GetVelocity() { return m_Velocity; }
2022-07-28 13:39:57 +00:00
/**
* Sets the velocity of this entity
* @param value the velocity to set
*/
void SetVelocity(const NiPoint3& value) { m_Velocity = value; m_DirtyVelocity = true; }
2022-07-28 13:39:57 +00:00
/**
* Returns the angular velocity of this entity
* @return the angular velocity of this entity
*/
const NiPoint3& GetAngularVelocity() { return m_AngularVelocity; }
2022-07-28 13:39:57 +00:00
/**
* Sets the angular velocity of this entity
* @param value the angular velocity to set
*/
void SetAngularVelocity(const NiPoint3& value) { m_AngularVelocity = value; m_DirtyVelocity = true; }
2022-07-28 13:39:57 +00:00
/**
* Returns the physics motion state
* @return the physics motion state
*/
uint32_t GetPhysicsMotionState() const;
2022-07-28 13:39:57 +00:00
/**
* Sets the physics motion state
* @param value the motion state to set
*/
void SetPhysicsMotionState(uint32_t value);
2022-05-18 02:27:08 +00:00
/**
* Returns the ClimbableType of this entity
* @return the ClimbableType of this entity
*/
const eClimbableType& GetClimabbleType() { return m_ClimbableType; }
/**
* Sets the ClimbableType of this entity
* @param value the ClimbableType to set
*/
void SetClimbableType(const eClimbableType& value) { m_ClimbableType = value; }
private:
/**
* The current velocity of the entity
*/
NiPoint3 m_Velocity = NiPoint3Constant::ZERO;
2022-07-28 13:39:57 +00:00
/**
* The current angular velocity of the entity
*/
NiPoint3 m_AngularVelocity = NiPoint3Constant::ZERO;
2022-07-28 13:39:57 +00:00
/**
* Whether or not the velocity has changed
*/
bool m_DirtyVelocity = true;
2022-07-28 13:39:57 +00:00
/**
* The current physics motion state
*/
uint32_t m_PhysicsMotionState = 0;
2022-07-28 13:39:57 +00:00
2022-05-18 02:27:08 +00:00
/**
* Whether or not the entity is climbable
*/
2022-05-18 11:36:21 +00:00
eClimbableType m_ClimbableType = eClimbableType::CLIMBABLE_TYPE_NOT;
};
#endif // SIMPLEPHYSICSCOMPONENT_H