PhysicsSystem redesigned, more work is needed.
This commit is contained in:
@@ -0,0 +1,18 @@
|
|||||||
|
#ifndef Components_HingeConstraint_h__
|
||||||
|
#define Components_HingeConstraint_h__
|
||||||
|
|
||||||
|
#include "Component.h"
|
||||||
|
|
||||||
|
namespace Components
|
||||||
|
{
|
||||||
|
|
||||||
|
struct HingeConstraint : Component
|
||||||
|
{
|
||||||
|
EntityID LinkedEntity;
|
||||||
|
glm::vec3 Pivot;
|
||||||
|
glm::vec3 Axis;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif // Components_HingeConstraint_h__
|
||||||
+29
-17
@@ -22,14 +22,20 @@ void GameWorld::Initialize()
|
|||||||
auto model = AddComponent<Components::Model>(ground, "Model");
|
auto model = AddComponent<Components::Model>(ground, "Model");
|
||||||
//model->ModelFile = "Models/TestScene/testScene.obj";
|
//model->ModelFile = "Models/TestScene/testScene.obj";
|
||||||
model->ModelFile = "Models/Placeholders/Terrain/Terrain.obj";
|
model->ModelFile = "Models/Placeholders/Terrain/Terrain.obj";
|
||||||
auto meshShape = AddComponent<Components::MeshShape>(ground, "MeshShape");
|
|
||||||
meshShape->ResourceName = "Models/Placeholders/Terrain/Terrain.obj";
|
|
||||||
//meshShape->ResourceName = "Models/TestScene/testScene.obj";
|
|
||||||
|
|
||||||
auto physics = AddComponent<Components::Physics>(ground, "Physics");
|
auto physics = AddComponent<Components::Physics>(ground, "Physics");
|
||||||
physics->Mass = 10;
|
physics->Mass = 10;
|
||||||
physics->Static = true;
|
physics->Static = true;
|
||||||
|
|
||||||
|
|
||||||
|
auto groundshape = CreateEntity(ground);
|
||||||
|
auto transformshape = AddComponent<Components::Transform>(groundshape, "Transform");
|
||||||
|
auto meshShape = AddComponent<Components::MeshShape>(groundshape, "MeshShape");
|
||||||
|
meshShape->ResourceName = "Models/Placeholders/Terrain/Terrain.obj";
|
||||||
|
//meshShape->ResourceName = "Models/TestScene/testScene.obj";
|
||||||
|
|
||||||
|
|
||||||
|
CommitEntity(groundshape);
|
||||||
CommitEntity(ground);
|
CommitEntity(ground);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -49,11 +55,10 @@ void GameWorld::Initialize()
|
|||||||
{
|
{
|
||||||
auto jeep = CreateEntity();
|
auto jeep = CreateEntity();
|
||||||
auto transform = AddComponent<Components::Transform>(jeep, "Transform");
|
auto transform = AddComponent<Components::Transform>(jeep, "Transform");
|
||||||
transform->Position = glm::vec3(0, 15, 0);
|
transform->Position = glm::vec3(0, 5, 0);
|
||||||
|
transform->Orientation = glm::angleAxis(glm::pi<float>()/2, glm::vec3(0, 1, 0));
|
||||||
auto physics = AddComponent<Components::Physics>(jeep, "Physics");
|
auto physics = AddComponent<Components::Physics>(jeep, "Physics");
|
||||||
physics->Mass = 800;
|
physics->Mass = 1800;
|
||||||
|
|
||||||
|
|
||||||
// auto box = AddComponent<Components::Box>(jeep, "Box");
|
// auto box = AddComponent<Components::Box>(jeep, "Box");
|
||||||
// box->Width = 1.487f;
|
// box->Width = 1.487f;
|
||||||
@@ -61,7 +66,7 @@ void GameWorld::Initialize()
|
|||||||
// box->Depth = 2.594f;
|
// box->Depth = 2.594f;
|
||||||
|
|
||||||
auto meshShape = AddComponent<Components::MeshShape>(jeep, "MeshShape");
|
auto meshShape = AddComponent<Components::MeshShape>(jeep, "MeshShape");
|
||||||
meshShape->ResourceName = "Models/JeepV2/Chassi/ChassiCollision.obj";
|
meshShape->ResourceName = "Models/Jeep/Chassi/ChassiCollision.obj";
|
||||||
|
|
||||||
auto vehicle = AddComponent<Components::Vehicle>(jeep, "Vehicle");
|
auto vehicle = AddComponent<Components::Vehicle>(jeep, "Vehicle");
|
||||||
|
|
||||||
@@ -72,7 +77,7 @@ void GameWorld::Initialize()
|
|||||||
auto transform = AddComponent<Components::Transform>(chassis, "Transform");
|
auto transform = AddComponent<Components::Transform>(chassis, "Transform");
|
||||||
transform->Position = glm::vec3(0, 0, 0); // 0.6577f
|
transform->Position = glm::vec3(0, 0, 0); // 0.6577f
|
||||||
auto model = AddComponent<Components::Model>(chassis, "Model");
|
auto model = AddComponent<Components::Model>(chassis, "Model");
|
||||||
model->ModelFile = "Models/JeepV2/Chassi/ChassiCollision.obj";
|
model->ModelFile = "Models/Jeep/Chassi/chassi.obj";
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
@@ -98,7 +103,7 @@ void GameWorld::Initialize()
|
|||||||
transform->Position = glm::vec3(1.9f, 0.5546f - wheelOffset, -0.9242f);
|
transform->Position = glm::vec3(1.9f, 0.5546f - wheelOffset, -0.9242f);
|
||||||
transform->Scale = glm::vec3(1.0f);
|
transform->Scale = glm::vec3(1.0f);
|
||||||
auto model = AddComponent<Components::Model>(wheel, "Model");
|
auto model = AddComponent<Components::Model>(wheel, "Model");
|
||||||
model->ModelFile = "Models/JeepV2/WheelFront/wheelFront.obj";
|
model->ModelFile = "Models/Jeep/WheelFront/wheelFront.obj";
|
||||||
auto Wheel = AddComponent<Components::Wheel>(wheel, "Wheel");
|
auto Wheel = AddComponent<Components::Wheel>(wheel, "Wheel");
|
||||||
Wheel->Hardpoint = transform->Position + glm::vec3(0.f, springLength, 0.f);
|
Wheel->Hardpoint = transform->Position + glm::vec3(0.f, springLength, 0.f);
|
||||||
Wheel->AxleID = 0;
|
Wheel->AxleID = 0;
|
||||||
@@ -118,7 +123,7 @@ void GameWorld::Initialize()
|
|||||||
transform->Scale = glm::vec3(1.0f);
|
transform->Scale = glm::vec3(1.0f);
|
||||||
transform->Orientation = glm::angleAxis(glm::pi<float>(), glm::vec3(0, 0, 1));
|
transform->Orientation = glm::angleAxis(glm::pi<float>(), glm::vec3(0, 0, 1));
|
||||||
auto model = AddComponent<Components::Model>(wheel, "Model");
|
auto model = AddComponent<Components::Model>(wheel, "Model");
|
||||||
model->ModelFile = "Models/JeepV2/WheelFront/wheelFront.obj";
|
model->ModelFile = "Models/Jeep/WheelFront/wheelFront.obj";
|
||||||
auto Wheel = AddComponent<Components::Wheel>(wheel, "Wheel");
|
auto Wheel = AddComponent<Components::Wheel>(wheel, "Wheel");
|
||||||
Wheel->Hardpoint = transform->Position + glm::vec3(0.f, springLength, 0.f);
|
Wheel->Hardpoint = transform->Position + glm::vec3(0.f, springLength, 0.f);
|
||||||
Wheel->AxleID = 0;
|
Wheel->AxleID = 0;
|
||||||
@@ -136,7 +141,7 @@ void GameWorld::Initialize()
|
|||||||
auto transform = AddComponent<Components::Transform>(wheel, "Transform");
|
auto transform = AddComponent<Components::Transform>(wheel, "Transform");
|
||||||
transform->Position = glm::vec3(0.2726f, 0.2805f - wheelOffset, 1.9307f);
|
transform->Position = glm::vec3(0.2726f, 0.2805f - wheelOffset, 1.9307f);
|
||||||
auto model = AddComponent<Components::Model>(wheel, "Model");
|
auto model = AddComponent<Components::Model>(wheel, "Model");
|
||||||
model->ModelFile = "Models/JeepV2/WheelBack/wheelBack.obj";
|
model->ModelFile = "Models/Jeep/WheelBack/wheelBack.obj";
|
||||||
auto Wheel = AddComponent<Components::Wheel>(wheel, "Wheel");
|
auto Wheel = AddComponent<Components::Wheel>(wheel, "Wheel");
|
||||||
Wheel->Hardpoint = transform->Position + glm::vec3(0.f, springLength, 0.f);
|
Wheel->Hardpoint = transform->Position + glm::vec3(0.f, springLength, 0.f);
|
||||||
Wheel->AxleID = 1;
|
Wheel->AxleID = 1;
|
||||||
@@ -155,7 +160,7 @@ void GameWorld::Initialize()
|
|||||||
transform->Position = glm::vec3(-0.2726f, 0.2805f - wheelOffset, 1.9307f);
|
transform->Position = glm::vec3(-0.2726f, 0.2805f - wheelOffset, 1.9307f);
|
||||||
transform->Orientation = glm::angleAxis(glm::pi<float>(), glm::vec3(0, 0, 1));
|
transform->Orientation = glm::angleAxis(glm::pi<float>(), glm::vec3(0, 0, 1));
|
||||||
auto model = AddComponent<Components::Model>(wheel, "Model");
|
auto model = AddComponent<Components::Model>(wheel, "Model");
|
||||||
model->ModelFile = "Models/JeepV2/WheelBack/wheelBack.obj";
|
model->ModelFile = "Models/Jeep/WheelBack/wheelBack.obj";
|
||||||
auto Wheel = AddComponent<Components::Wheel>(wheel, "Wheel");
|
auto Wheel = AddComponent<Components::Wheel>(wheel, "Wheel");
|
||||||
Wheel->Hardpoint = transform->Position + glm::vec3(0.f, springLength, 0.f);
|
Wheel->Hardpoint = transform->Position + glm::vec3(0.f, springLength, 0.f);
|
||||||
Wheel->AxleID = 1;
|
Wheel->AxleID = 1;
|
||||||
@@ -167,6 +172,7 @@ void GameWorld::Initialize()
|
|||||||
Wheel->ConnectedToHandbrake = true;
|
Wheel->ConnectedToHandbrake = true;
|
||||||
CommitEntity(wheel);
|
CommitEntity(wheel);
|
||||||
}
|
}
|
||||||
|
|
||||||
CommitEntity(jeep);
|
CommitEntity(jeep);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -194,7 +200,7 @@ void GameWorld::Initialize()
|
|||||||
CommitEntity(entity);
|
CommitEntity(entity);
|
||||||
}*/
|
}*/
|
||||||
|
|
||||||
for(int i = 0; i < 5; i++)
|
for(int i = 0; i < 1; i++)
|
||||||
{
|
{
|
||||||
auto wall = CreateEntity();
|
auto wall = CreateEntity();
|
||||||
auto transform = AddComponent<Components::Transform>(wall, "Transform");
|
auto transform = AddComponent<Components::Transform>(wall, "Transform");
|
||||||
@@ -205,7 +211,7 @@ void GameWorld::Initialize()
|
|||||||
{
|
{
|
||||||
for (int x = -5; x < 5; x++)
|
for (int x = -5; x < 5; x++)
|
||||||
{
|
{
|
||||||
auto brick = CreateEntity(wall);
|
auto brick = CreateEntity();
|
||||||
auto transform = AddComponent<Components::Transform>(brick, "Transform");
|
auto transform = AddComponent<Components::Transform>(brick, "Transform");
|
||||||
transform->Position = glm::vec3(x + 0.01f, y * 0.3f + 0.01f, 0);
|
transform->Position = glm::vec3(x + 0.01f, y * 0.3f + 0.01f, 0);
|
||||||
transform->Position.x += (y % 2)*0.5f;
|
transform->Position.x += (y % 2)*0.5f;
|
||||||
@@ -216,10 +222,16 @@ void GameWorld::Initialize()
|
|||||||
|
|
||||||
auto physics = AddComponent<Components::Physics>(brick, "Physics");
|
auto physics = AddComponent<Components::Physics>(brick, "Physics");
|
||||||
physics->Mass = 3;
|
physics->Mass = 3;
|
||||||
auto box = AddComponent<Components::BoxShape>(brick, "BoxShape");
|
|
||||||
|
|
||||||
|
|
||||||
|
auto shape = CreateEntity(brick);
|
||||||
|
auto transformshape = AddComponent<Components::Transform>(shape, "Transform");
|
||||||
|
auto box = AddComponent<Components::BoxShape>(shape, "BoxShape");
|
||||||
box->Width = 0.5f;
|
box->Width = 0.5f;
|
||||||
box->Height = 0.15f;
|
box->Height = 0.15f;
|
||||||
box->Depth = 0.3f;
|
box->Depth = 0.3f;
|
||||||
|
CommitEntity(shape);
|
||||||
CommitEntity(brick);
|
CommitEntity(brick);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -31,6 +31,7 @@
|
|||||||
#include "Components/BoxShape.h"
|
#include "Components/BoxShape.h"
|
||||||
#include "Components/Vehicle.h"
|
#include "Components/Vehicle.h"
|
||||||
#include "Components/Wheel.h"
|
#include "Components/Wheel.h"
|
||||||
|
#include "Components/HingeConstraint.h"
|
||||||
|
|
||||||
class GameWorld : public World
|
class GameWorld : public World
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -48,7 +48,6 @@ void VehicleSetup::buildVehicle(World *world, const hkpWorld* physicsWorld, hkpV
|
|||||||
|
|
||||||
setupWheelCollide(physicsWorld, vehicle, *static_cast<hkpVehicleRayCastWheelCollide*>(vehicle.m_wheelCollide));
|
setupWheelCollide(physicsWorld, vehicle, *static_cast<hkpVehicleRayCastWheelCollide*>(vehicle.m_wheelCollide));
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Check that all components are present.
|
// Check that all components are present.
|
||||||
//
|
//
|
||||||
@@ -212,6 +211,9 @@ void VehicleSetup::setupComponent(const hkpVehicleData& data, hkpVehicleDefaultT
|
|||||||
transmission.m_wheelsTorqueRatio[2] = 0.3f;
|
transmission.m_wheelsTorqueRatio[2] = 0.3f;
|
||||||
transmission.m_wheelsTorqueRatio[3] = 0.3f;
|
transmission.m_wheelsTorqueRatio[3] = 0.3f;
|
||||||
|
|
||||||
|
//transmission.m_wheelsTorqueRatio[4] = 0.1f;
|
||||||
|
//transmission.m_wheelsTorqueRatio[5] = 0.1f;
|
||||||
|
// HACK: fix support for more than 4 wheels, m_wheelsTorqueRatio must equal 1 for all wheels
|
||||||
|
|
||||||
transmission.m_primaryTransmissionRatio = hkpVehicleDefaultTransmission::calculatePrimaryTransmissionRatio(
|
transmission.m_primaryTransmissionRatio = hkpVehicleDefaultTransmission::calculatePrimaryTransmissionRatio(
|
||||||
vehicleComponent.TopSpeed,
|
vehicleComponent.TopSpeed,
|
||||||
|
|||||||
+233
-175
@@ -67,15 +67,12 @@ Systems::PhysicsSystem::PhysicsSystem(World* world) : System(world)
|
|||||||
|
|
||||||
worldInfo.setupSolverInfo(hkpWorldCinfo::SOLVER_TYPE_4ITERS_MEDIUM);
|
worldInfo.setupSolverInfo(hkpWorldCinfo::SOLVER_TYPE_4ITERS_MEDIUM);
|
||||||
worldInfo.m_gravity = hkVector4(0.0f, -9.82f, 0.0f);
|
worldInfo.m_gravity = hkVector4(0.0f, -9.82f, 0.0f);
|
||||||
worldInfo.m_broadPhaseBorderBehaviour = hkpWorldCinfo::BROADPHASE_BORDER_REMOVE_ENTITY; // just fix the entity if the object falls off too far
|
worldInfo.m_broadPhaseBorderBehaviour = hkpWorldCinfo::BROADPHASE_BORDER_FIX_ENTITY; // just fix the entity if the object falls off too far
|
||||||
|
|
||||||
// You must specify the size of the broad phase - objects should not be simulated outside this region
|
// You must specify the size of the broad phase - objects should not be simulated outside this region
|
||||||
worldInfo.setBroadPhaseWorldSize(1000.0f);
|
worldInfo.setBroadPhaseWorldSize(1000.0f);
|
||||||
m_PhysicsWorld = new hkpWorld(worldInfo);
|
m_PhysicsWorld = new hkpWorld(worldInfo);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// When the simulation type is SIMULATION_TYPE_MULTITHREADED, in the debug build, the sdk performs checks
|
// When the simulation type is SIMULATION_TYPE_MULTITHREADED, in the debug build, the sdk performs checks
|
||||||
// to make sure only one thread is modifying the world at once to prevent multithreaded bugs. Each thread
|
// to make sure only one thread is modifying the world at once to prevent multithreaded bugs. Each thread
|
||||||
// must call markForRead / markForWrite before it modifies the world to enable these checks.
|
// must call markForRead / markForWrite before it modifies the world to enable these checks.
|
||||||
@@ -113,6 +110,7 @@ void Systems::PhysicsSystem::RegisterComponents(ComponentFactory* cf)
|
|||||||
cf->Register("Vehicle", []() { return new Components::Vehicle(); });
|
cf->Register("Vehicle", []() { return new Components::Vehicle(); });
|
||||||
cf->Register("Wheel", []() { return new Components::Wheel(); });
|
cf->Register("Wheel", []() { return new Components::Wheel(); });
|
||||||
cf->Register("MeshShape", []() { return new Components::MeshShape(); });
|
cf->Register("MeshShape", []() { return new Components::MeshShape(); });
|
||||||
|
cf->Register("HingeConstraint", []() { return new Components::HingeConstraint(); });
|
||||||
}
|
}
|
||||||
|
|
||||||
void Systems::PhysicsSystem::Update(double dt)
|
void Systems::PhysicsSystem::Update(double dt)
|
||||||
@@ -131,20 +129,19 @@ void Systems::PhysicsSystem::Update(double dt)
|
|||||||
|
|
||||||
if(m_RigidBodies[entity]->isActive())
|
if(m_RigidBodies[entity]->isActive())
|
||||||
{
|
{
|
||||||
|
|
||||||
hkVector4 position;
|
hkVector4 position;
|
||||||
hkQuaternion rotation;
|
hkQuaternion rotation;
|
||||||
|
|
||||||
if (parent)
|
if (parent)
|
||||||
{
|
{
|
||||||
auto absoluteTransform = m_World->GetSystem<Systems::TransformSystem>("TransformSystem")->AbsoluteTransform(entity);
|
auto absoluteTransform = m_World->GetSystem<Systems::TransformSystem>("TransformSystem")->AbsoluteTransform(entity);
|
||||||
position = hkVector4(absoluteTransform.Position.x, absoluteTransform.Position.y, absoluteTransform.Position.z);
|
position = ConvertPosition(absoluteTransform.Position);
|
||||||
rotation = hkQuaternion(absoluteTransform.Orientation.x, absoluteTransform.Orientation.y, absoluteTransform.Orientation.z, absoluteTransform.Orientation.w);
|
rotation = ConvertRotation(absoluteTransform.Orientation);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
position = hkVector4(transformComponent->Position.x, transformComponent->Position.y, transformComponent->Position.z);
|
position = ConvertPosition(transformComponent->Position);
|
||||||
rotation = hkQuaternion(transformComponent->Orientation.x, transformComponent->Orientation.y, transformComponent->Orientation.z, transformComponent->Orientation.w);
|
rotation = ConvertRotation(transformComponent->Orientation);
|
||||||
}
|
}
|
||||||
m_PhysicsWorld->markForWrite();
|
m_PhysicsWorld->markForWrite();
|
||||||
m_RigidBodies[entity]->setPositionAndRotation(position, rotation);
|
m_RigidBodies[entity]->setPositionAndRotation(position, rotation);
|
||||||
@@ -154,14 +151,13 @@ void Systems::PhysicsSystem::Update(double dt)
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
static const double timestep = 1 / 60.0;
|
static const double timestep = 1 / 60.0;
|
||||||
m_Accumulator += dt;
|
m_Accumulator += dt;
|
||||||
while (m_Accumulator >= timestep)
|
while (m_Accumulator >= timestep)
|
||||||
{
|
{
|
||||||
m_PhysicsWorld->stepMultithreaded(m_JobQueue, m_ThreadPool, timestep);
|
m_PhysicsWorld->stepMultithreaded(m_JobQueue, m_ThreadPool, timestep);
|
||||||
|
//m_PhysicsWorld->stepDeltaTime(timestep);
|
||||||
|
|
||||||
m_Accumulator -= timestep;
|
m_Accumulator -= timestep;
|
||||||
|
|
||||||
m_Context->syncTimers(m_ThreadPool);
|
m_Context->syncTimers(m_ThreadPool);
|
||||||
@@ -200,7 +196,7 @@ void Systems::PhysicsSystem::UpdateEntity(double dt, EntityID entity, EntityID p
|
|||||||
|
|
||||||
hkQuaternion steeringOrientation = m_Vehicles[car]->m_wheelsInfo[wheelComponent->ID].m_steeringOrientationChassisSpace;
|
hkQuaternion steeringOrientation = m_Vehicles[car]->m_wheelsInfo[wheelComponent->ID].m_steeringOrientationChassisSpace;
|
||||||
hkReal spinAngle = -m_Vehicles[car]->m_wheelsInfo[wheelComponent->ID].m_spinAngle;
|
hkReal spinAngle = -m_Vehicles[car]->m_wheelsInfo[wheelComponent->ID].m_spinAngle;
|
||||||
glm::quat orientation = glm::quat(steeringOrientation(3), steeringOrientation(0), steeringOrientation(1), steeringOrientation(2)) * glm::angleAxis<float>(spinAngle, glm::vec3(1, 0, 0));
|
glm::quat orientation = ConvertRotation(steeringOrientation) * glm::angleAxis<float>(spinAngle, glm::vec3(1, 0, 0));
|
||||||
transformComponent->Orientation = orientation * wheelComponent->OriginalOrientation;
|
transformComponent->Orientation = orientation * wheelComponent->OriginalOrientation;
|
||||||
m_PhysicsWorld->unmarkForWrite();
|
m_PhysicsWorld->unmarkForWrite();
|
||||||
}
|
}
|
||||||
@@ -208,23 +204,18 @@ void Systems::PhysicsSystem::UpdateEntity(double dt, EntityID entity, EntityID p
|
|||||||
else if(m_RigidBodies.find(entity) != m_RigidBodies.end())
|
else if(m_RigidBodies.find(entity) != m_RigidBodies.end())
|
||||||
{
|
{
|
||||||
auto transformComponentParent = m_World->GetComponent<Components::Transform>(parent, "Transform");
|
auto transformComponentParent = m_World->GetComponent<Components::Transform>(parent, "Transform");
|
||||||
//m_PhysicsWorld->markForWrite();
|
|
||||||
hkVector4 position = m_RigidBodies[entity]->getPosition();
|
transformComponent->Position = ConvertPosition(m_RigidBodies[entity]->getPosition());
|
||||||
transformComponent->Position = glm::vec3(position(0), position(1), position(2));
|
transformComponent->Orientation = ConvertRotation(m_RigidBodies[entity]->getRotation());
|
||||||
|
// TODO: No support for Scale, MIGHT be possible
|
||||||
|
|
||||||
if (transformComponentParent)
|
if (transformComponentParent)
|
||||||
{
|
{
|
||||||
transformComponent->Position -= transformComponentParent->Position;
|
transformComponent->Position -= transformComponentParent->Position;
|
||||||
transformComponent->Position = transformComponent->Position * transformComponentParent->Orientation;
|
transformComponent->Position = transformComponent->Position * transformComponentParent->Orientation;
|
||||||
}
|
|
||||||
hkQuaternion orientation = m_RigidBodies[entity]->getRotation();
|
|
||||||
transformComponent->Orientation = glm::quat(orientation(3),orientation(0), orientation(1), orientation(2));
|
|
||||||
if (transformComponentParent)
|
|
||||||
{
|
|
||||||
transformComponent->Orientation = transformComponent->Orientation * glm::inverse(transformComponentParent->Orientation);
|
transformComponent->Orientation = transformComponent->Orientation * glm::inverse(transformComponentParent->Orientation);
|
||||||
}
|
}
|
||||||
//m_PhysicsWorld->unmarkForWrite();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// HACK: Vehicle test-controls
|
// HACK: Vehicle test-controls
|
||||||
auto vehicleComponent = m_World->GetComponent<Components::Vehicle>(entity, "Vehicle");
|
auto vehicleComponent = m_World->GetComponent<Components::Vehicle>(entity, "Vehicle");
|
||||||
@@ -276,7 +267,6 @@ void Systems::PhysicsSystem::UpdateEntity(double dt, EntityID entity, EntityID p
|
|||||||
else if(deviceStatus->m_positionX < -1)
|
else if(deviceStatus->m_positionX < -1)
|
||||||
deviceStatus->m_positionX = -1;
|
deviceStatus->m_positionX = -1;
|
||||||
|
|
||||||
|
|
||||||
deviceStatus->m_handbrakeButtonPressed = inputComponent->KeyState[GLFW_KEY_RIGHT_CONTROL];
|
deviceStatus->m_handbrakeButtonPressed = inputComponent->KeyState[GLFW_KEY_RIGHT_CONTROL];
|
||||||
|
|
||||||
if(inputComponent->KeyState[GLFW_KEY_R] && !inputComponent->LastKeyState[GLFW_KEY_R])
|
if(inputComponent->KeyState[GLFW_KEY_R] && !inputComponent->LastKeyState[GLFW_KEY_R])
|
||||||
@@ -297,7 +287,6 @@ void Systems::PhysicsSystem::OnEntityCommit( EntityID entity )
|
|||||||
if (!transformComponent)
|
if (!transformComponent)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
||||||
auto wheelComponent = m_World->GetComponent<Components::Wheel>(entity, "Wheel");
|
auto wheelComponent = m_World->GetComponent<Components::Wheel>(entity, "Wheel");
|
||||||
if (wheelComponent)
|
if (wheelComponent)
|
||||||
{
|
{
|
||||||
@@ -306,178 +295,216 @@ void Systems::PhysicsSystem::OnEntityCommit( EntityID entity )
|
|||||||
m_Wheels.push_back(entity);
|
m_Wheels.push_back(entity);
|
||||||
}
|
}
|
||||||
|
|
||||||
auto physicsComponent = m_World->GetComponent<Components::Physics>(entity, "Physics");
|
EntityID entityParent = m_World->GetEntityBaseParent(entity);
|
||||||
if (!physicsComponent)
|
|
||||||
return;
|
|
||||||
|
|
||||||
auto sphereComponent = m_World->GetComponent<Components::SphereShape>(entity, "SphereShape");
|
auto sphereComponent = m_World->GetComponent<Components::SphereShape>(entity, "SphereShape");
|
||||||
auto boxComponent = m_World->GetComponent<Components::BoxShape>(entity, "BoxShape");
|
auto boxComponent = m_World->GetComponent<Components::BoxShape>(entity, "BoxShape");
|
||||||
auto meshShapeComponent = m_World->GetComponent<Components::MeshShape >(entity, "MeshShape");
|
auto meshShapeComponent = m_World->GetComponent<Components::MeshShape >(entity, "MeshShape");
|
||||||
|
|
||||||
hkpShape* shape = nullptr;
|
|
||||||
hkpRigidBodyCinfo rigidBodyInfo;
|
|
||||||
hkMassProperties massProperties;
|
|
||||||
|
|
||||||
|
if(entityParent == entity && (sphereComponent || boxComponent || meshShapeComponent))
|
||||||
if (sphereComponent)
|
|
||||||
{
|
|
||||||
shape = new hkpSphereShape(sphereComponent->Radius);
|
|
||||||
rigidBodyInfo.m_shape = shape;
|
|
||||||
|
|
||||||
if (physicsComponent->Static)
|
|
||||||
{
|
|
||||||
rigidBodyInfo.m_motionType = hkpMotion::MOTION_FIXED;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
rigidBodyInfo.m_motionType = hkpMotion::MOTION_SPHERE_INERTIA;
|
|
||||||
}
|
|
||||||
|
|
||||||
hkpInertiaTensorComputer::computeSphereVolumeMassProperties(sphereComponent->Radius, physicsComponent->Mass, massProperties);
|
|
||||||
|
|
||||||
}
|
|
||||||
else if (boxComponent)
|
|
||||||
{
|
|
||||||
hkReal thickness = 0.05;
|
|
||||||
shape = new hkpBoxShape(hkVector4(boxComponent->Width - thickness, boxComponent->Height - thickness, boxComponent->Depth - thickness));
|
|
||||||
rigidBodyInfo.m_shape = shape;
|
|
||||||
if (physicsComponent->Static)
|
|
||||||
{
|
|
||||||
rigidBodyInfo.m_motionType = hkpMotion::MOTION_FIXED;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
rigidBodyInfo.m_motionType = hkpMotion::MOTION_BOX_INERTIA;
|
|
||||||
}
|
|
||||||
hkpInertiaTensorComputer::computeBoxSurfaceMassProperties(hkVector4(boxComponent->Width - thickness, boxComponent->Height - thickness, boxComponent->Depth - thickness), physicsComponent->Mass, thickness, massProperties);
|
|
||||||
|
|
||||||
}
|
|
||||||
else if(meshShapeComponent)
|
|
||||||
{
|
|
||||||
std::vector<hkReal>* vertices = new std::vector<hkReal>;
|
|
||||||
std::vector<hkUint16>* vertexIndices = new std::vector<hkUint16>;
|
|
||||||
auto meshShape = m_World->GetResourceManager()->Load<OBJ>("OBJ", meshShapeComponent->ResourceName);
|
|
||||||
|
|
||||||
for (auto &vertex : meshShape->Vertices)
|
|
||||||
{
|
|
||||||
hkReal x, y, z;
|
|
||||||
std::tie(x, y, z) = vertex;
|
|
||||||
vertices->push_back(x);
|
|
||||||
vertices->push_back(y);
|
|
||||||
vertices->push_back(z);
|
|
||||||
}
|
|
||||||
|
|
||||||
int i = 0;
|
|
||||||
for (auto &face : meshShape->Faces)
|
|
||||||
{
|
|
||||||
for (auto &faceDef : face.Definitions)
|
|
||||||
{
|
|
||||||
vertexIndices->push_back(faceDef.VertexIndex - 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
hkpExtendedMeshShape* mesh = new hkpExtendedMeshShape();
|
|
||||||
mesh->setRadius( 0.05f);
|
|
||||||
{
|
|
||||||
hkpExtendedMeshShape::TrianglesSubpart part;
|
|
||||||
part.m_numTriangleShapes = meshShape->Faces.size();
|
|
||||||
part.m_indexBase = vertexIndices->data();
|
|
||||||
part.m_indexStriding = sizeof(hkUint16) * 3;
|
|
||||||
|
|
||||||
part.m_numVertices = vertices->size() / 3;
|
|
||||||
part.m_vertexBase = vertices->data();
|
|
||||||
part.m_vertexStriding = sizeof(hkReal) * 3;
|
|
||||||
|
|
||||||
part.m_stridingType = hkpExtendedMeshShape::INDICES_INT16;
|
|
||||||
|
|
||||||
mesh->addTrianglesSubpart(part);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (physicsComponent->Static)
|
|
||||||
{
|
|
||||||
rigidBodyInfo.m_motionType = hkpMotion::MOTION_FIXED;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
rigidBodyInfo.m_motionType = hkpMotion::MOTION_BOX_INERTIA;
|
|
||||||
}
|
|
||||||
hkpInertiaTensorComputer::computeShapeVolumeMassProperties(mesh, physicsComponent->Mass, massProperties);
|
|
||||||
rigidBodyInfo.m_shape = mesh;
|
|
||||||
m_ExtendedMeshShapes[entity].ExtendedMeshShape = mesh;
|
|
||||||
m_ExtendedMeshShapes[entity].VertexIndices = vertexIndices;
|
|
||||||
m_ExtendedMeshShapes[entity].Vertices = vertices;
|
|
||||||
|
|
||||||
hkpMoppCompilerInput mci;
|
|
||||||
hkpMoppCode* code = hkpMoppUtility::buildCode( mesh, mci );
|
|
||||||
hkpMoppBvTreeShape* moppShape = new hkpMoppBvTreeShape(mesh, code);
|
|
||||||
|
|
||||||
m_ExtendedMeshShapes[entity].Code = code;
|
|
||||||
m_ExtendedMeshShapes[entity].MoppShape = moppShape;
|
|
||||||
shape = moppShape;
|
|
||||||
|
|
||||||
shape = mesh;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
{
|
||||||
|
LOG_ERROR("Entity: %i , Only the children can have a shapeComponent", entity);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
auto absoluteTransform = m_World->GetSystem<Systems::TransformSystem>("TransformSystem")->AbsoluteTransform(entity);
|
auto physicsComponent = m_World->GetComponent<Components::Physics>(entity, "Physics");
|
||||||
rigidBodyInfo.m_position.set(absoluteTransform.Position.x, absoluteTransform.Position.y, absoluteTransform.Position.z);
|
if (physicsComponent)
|
||||||
rigidBodyInfo.m_rotation.set(absoluteTransform.Orientation.x, absoluteTransform.Orientation.y, absoluteTransform.Orientation.z, absoluteTransform.Orientation.w);
|
|
||||||
rigidBodyInfo.m_inertiaTensor = massProperties.m_inertiaTensor;
|
|
||||||
//rigidBodyInfo.m_centerOfMass = massProperties.m_centerOfMass;
|
|
||||||
rigidBodyInfo.m_mass = massProperties.m_mass;
|
|
||||||
|
|
||||||
|
|
||||||
// Create RigidBody
|
|
||||||
hkpRigidBody* rigidBody = new hkpRigidBody(rigidBodyInfo);
|
|
||||||
|
|
||||||
|
|
||||||
auto vehicleComponent = m_World->GetComponent<Components::Vehicle >(entity, "Vehicle");
|
|
||||||
if (vehicleComponent && m_Vehicles.find(entity) == m_Vehicles.end())
|
|
||||||
{
|
{
|
||||||
for (int i = 0; i < m_Wheels.size(); i++)
|
|
||||||
{
|
|
||||||
if(m_World->GetEntityParent(m_Wheels[i]) != entity)
|
|
||||||
{
|
|
||||||
m_Wheels.erase(m_Wheels.begin() + i);
|
|
||||||
i--;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
if(entityParent != entity)
|
||||||
|
{
|
||||||
|
LOG_ERROR("Entity: %i , Only the baseparent can have a PhysicsComponent", entity);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
VehicleSetup vehicleSetup;
|
if(! physicsComponent->Static) // Not static
|
||||||
// Create the basic vehicle.
|
{
|
||||||
m_Vehicles[entity] = new hkpVehicleInstance(rigidBody);
|
hkArray<hkpShape*> shapeArray;
|
||||||
m_PhysicsWorld->markForWrite();
|
for (auto &shapeData : m_Shapes[entity])
|
||||||
vehicleSetup.buildVehicle(m_World, m_PhysicsWorld, *m_Vehicles[entity], entity, m_Wheels);
|
{
|
||||||
// Add the vehicle's entities and phantoms to the world
|
shapeArray.pushBack(shapeData.Shape);
|
||||||
m_Vehicles[entity]->addToWorld(m_PhysicsWorld);
|
}
|
||||||
|
|
||||||
m_RigidBodies[entity] = rigidBody;
|
|
||||||
|
|
||||||
// The vehicle is an action
|
// Create a hkpListShape* of all the childEntities collected in m_ShapeArrays
|
||||||
m_PhysicsWorld->addAction(m_Vehicles[entity]);
|
hkpListShape* listShape = new hkpListShape(shapeArray.begin(), shapeArray.getSize(), hkpShapeContainer::REFERENCE_POLICY_INCREMENT);
|
||||||
m_PhysicsWorld->unmarkForWrite();
|
// Save the listShape for further use
|
||||||
|
m_ListShapes[entity] = listShape;
|
||||||
|
|
||||||
|
|
||||||
|
//////////////////////////////////
|
||||||
|
//******************************//
|
||||||
|
// Add a hkpBvShape //
|
||||||
|
//******************************//
|
||||||
|
//////////////////////////////////
|
||||||
|
|
||||||
|
// Clean up for less memory usage
|
||||||
|
m_Shapes.erase(entity);
|
||||||
|
|
||||||
|
hkMassProperties massProperties;
|
||||||
|
hkpInertiaTensorComputer::computeShapeVolumeMassProperties(listShape, physicsComponent->Mass, massProperties);
|
||||||
|
|
||||||
|
hkpRigidBodyCinfo rigidBodyInfo;
|
||||||
|
{
|
||||||
|
rigidBodyInfo.m_shape = listShape;
|
||||||
|
rigidBodyInfo.m_motionType = hkpMotion::MOTION_DYNAMIC;
|
||||||
|
auto absoluteTransform = m_World->GetSystem<Systems::TransformSystem>("TransformSystem")->AbsoluteTransform(entity);
|
||||||
|
hkVector4 position = ConvertPosition(absoluteTransform.Position);
|
||||||
|
hkQuaternion rotation = ConvertRotation(absoluteTransform.Orientation);
|
||||||
|
rigidBodyInfo.m_position.set(position(0), position(1), position(2), position(3));
|
||||||
|
rigidBodyInfo.m_rotation.set(rotation(0), rotation(1), rotation(2), rotation(3));
|
||||||
|
|
||||||
|
rigidBodyInfo.m_inertiaTensor = massProperties.m_inertiaTensor;
|
||||||
|
//rigidBodyInfo.m_centerOfMass = massProperties.m_centerOfMass; //HACK: CENTER OF MASS ALWAYS IN THE CENTER
|
||||||
|
rigidBodyInfo.m_mass = massProperties.m_mass;
|
||||||
|
}
|
||||||
|
// Create RigidBody
|
||||||
|
hkpRigidBody* rigidBody = new hkpRigidBody(rigidBodyInfo);
|
||||||
|
|
||||||
|
m_PhysicsWorld->markForWrite();
|
||||||
|
m_PhysicsWorld->addEntity(rigidBody);
|
||||||
|
m_RigidBodies[entity] = rigidBody;
|
||||||
|
m_PhysicsWorld->unmarkForWrite();
|
||||||
|
|
||||||
|
listShape->removeReference();
|
||||||
|
rigidBody->removeReference();
|
||||||
|
}
|
||||||
|
else // Static
|
||||||
|
{
|
||||||
|
// Create the hkpStaticCompoundShape and add the instances.
|
||||||
|
// "meshShape" should not be modified by the user in any way after adding it as an instance.
|
||||||
|
hkpStaticCompoundShape* staticCompoundShape = new hkpStaticCompoundShape();
|
||||||
|
|
||||||
|
for (auto &shapeData : m_Shapes[entity])
|
||||||
|
{
|
||||||
|
|
||||||
|
auto childTransformComponent = m_World->GetComponent<Components::Transform>(shapeData.Entity, "Transform");
|
||||||
|
|
||||||
|
hkVector4 position = ConvertPosition(childTransformComponent->Position);
|
||||||
|
hkQuaternion rotation = ConvertRotation(childTransformComponent->Orientation);
|
||||||
|
hkVector4 scale = ConvertScale(childTransformComponent->Scale);
|
||||||
|
hkQsTransform transform(position, rotation, scale);
|
||||||
|
|
||||||
|
staticCompoundShape->addInstance(shapeData.Shape, transform);
|
||||||
|
}
|
||||||
|
|
||||||
|
// This must be called after adding the instances and before using the shape.
|
||||||
|
staticCompoundShape->bake();
|
||||||
|
|
||||||
|
m_Shapes.erase(entity);
|
||||||
|
hkMassProperties massProperties;
|
||||||
|
hkpInertiaTensorComputer::computeShapeVolumeMassProperties(staticCompoundShape, physicsComponent->Mass, massProperties);
|
||||||
|
|
||||||
|
hkpRigidBodyCinfo rigidBodyInfo;
|
||||||
|
{
|
||||||
|
rigidBodyInfo.m_shape = staticCompoundShape;
|
||||||
|
rigidBodyInfo.m_motionType = hkpMotion::MOTION_FIXED;
|
||||||
|
auto absoluteTransform = m_World->GetSystem<Systems::TransformSystem>("TransformSystem")->AbsoluteTransform(entity);
|
||||||
|
hkVector4 position = ConvertPosition(absoluteTransform.Position);
|
||||||
|
hkQuaternion rotation = ConvertRotation(absoluteTransform.Orientation);
|
||||||
|
rigidBodyInfo.m_position.set(position(0), position(1), position(2), position(3));
|
||||||
|
rigidBodyInfo.m_rotation.set(rotation(0), rotation(1), rotation(2), rotation(3));
|
||||||
|
|
||||||
|
rigidBodyInfo.m_inertiaTensor = massProperties.m_inertiaTensor;
|
||||||
|
//rigidBodyInfo.m_centerOfMass = massProperties.m_centerOfMass; //HACK: CENTER OF MASS ALWAYS IN THE CENTER
|
||||||
|
rigidBodyInfo.m_mass = massProperties.m_mass;
|
||||||
|
}
|
||||||
|
// Create RigidBody
|
||||||
|
hkpRigidBody* rigidBody = new hkpRigidBody(rigidBodyInfo);
|
||||||
|
|
||||||
|
m_PhysicsWorld->markForWrite();
|
||||||
|
m_PhysicsWorld->addEntity(rigidBody);
|
||||||
|
m_RigidBodies[entity] = rigidBody;
|
||||||
|
m_PhysicsWorld->unmarkForWrite();
|
||||||
|
|
||||||
|
staticCompoundShape->removeReference();
|
||||||
|
rigidBody->removeReference();
|
||||||
|
}
|
||||||
|
|
||||||
//m_Vehicles[entity]->m_rpm = 0.0f; // Not sure why this one should be here
|
|
||||||
m_Wheels.clear();
|
|
||||||
shape->removeReference();
|
|
||||||
rigidBody->removeReference();
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
m_PhysicsWorld->markForWrite();
|
|
||||||
m_PhysicsWorld->addEntity(rigidBody);
|
//TODO: COMMENT THIS SECTION
|
||||||
m_RigidBodies[entity] = rigidBody;
|
if(sphereComponent)
|
||||||
m_PhysicsWorld->unmarkForWrite();
|
{
|
||||||
|
hkpSphereShape* sphereShape = new hkpSphereShape(sphereComponent->Radius);
|
||||||
|
|
||||||
|
hkQsTransform transform( ConvertPosition(transformComponent->Position), ConvertRotation(transformComponent->Orientation), ConvertScale(transformComponent->Scale));
|
||||||
|
hkpConvexTransformShape* transformedSphereShape = new hkpConvexTransformShape( sphereShape, transform );
|
||||||
|
|
||||||
|
m_Shapes[entityParent].push_back(ShapeArrayData(entity, transformedSphereShape));
|
||||||
|
|
||||||
shape->removeReference();
|
sphereShape->removeReference();
|
||||||
rigidBody->removeReference();
|
}
|
||||||
|
//TODO: COMMENT THIS SECTION
|
||||||
|
else if(boxComponent)
|
||||||
|
{
|
||||||
|
hkReal thickness = 0.05;
|
||||||
|
hkpBoxShape* boxShape = new hkpBoxShape(hkVector4(boxComponent->Width, boxComponent->Height, boxComponent->Depth), thickness);
|
||||||
|
|
||||||
|
hkpShapeShrinker* shapeShrinker = new hkpShapeShrinker();
|
||||||
|
boxShape = shapeShrinker->shrinkBoxShape(boxShape, thickness, 0); // HACK: Unsure about the 3rd argument
|
||||||
|
delete shapeShrinker;
|
||||||
|
|
||||||
|
hkQsTransform transform( ConvertPosition(transformComponent->Position), ConvertRotation(transformComponent->Orientation), ConvertScale(transformComponent->Scale));
|
||||||
|
hkpConvexTransformShape* transformedBoxShape = new hkpConvexTransformShape( boxShape, transform );
|
||||||
|
m_Shapes[entityParent].push_back(ShapeArrayData(entity, transformedBoxShape));
|
||||||
|
boxShape->removeReference();
|
||||||
|
}
|
||||||
|
else if(meshShapeComponent)
|
||||||
|
{
|
||||||
|
std::vector<hkReal>* vertices = new std::vector<hkReal>;
|
||||||
|
std::vector<hkUint16>* vertexIndices = new std::vector<hkUint16>;
|
||||||
|
auto meshShape = m_World->GetResourceManager()->Load<OBJ>("OBJ", meshShapeComponent->ResourceName);
|
||||||
|
|
||||||
|
for (auto &vertex : meshShape->Vertices)
|
||||||
|
{
|
||||||
|
hkReal x, y, z;
|
||||||
|
std::tie(x, y, z) = vertex;
|
||||||
|
vertices->push_back(x);
|
||||||
|
vertices->push_back(y);
|
||||||
|
vertices->push_back(z);
|
||||||
|
}
|
||||||
|
|
||||||
|
int i = 0;
|
||||||
|
for (auto &face : meshShape->Faces)
|
||||||
|
{
|
||||||
|
for (auto &faceDef : face.Definitions)
|
||||||
|
{
|
||||||
|
vertexIndices->push_back(faceDef.VertexIndex - 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
hkpExtendedMeshShape* mesh = new hkpExtendedMeshShape();
|
||||||
|
hkReal thickness = 0.00f; // HACK: Convex radius should be 0 for static shapes and 0.05 for dynamic shapes.
|
||||||
|
mesh->setRadius(thickness);
|
||||||
|
{
|
||||||
|
hkpExtendedMeshShape::TrianglesSubpart part;
|
||||||
|
part.m_numTriangleShapes = meshShape->Faces.size();
|
||||||
|
part.m_indexBase = vertexIndices->data();
|
||||||
|
part.m_indexStriding = sizeof(hkUint16) * 3;
|
||||||
|
|
||||||
|
part.m_numVertices = vertices->size() / 3;
|
||||||
|
part.m_vertexBase = vertices->data();
|
||||||
|
part.m_vertexStriding = sizeof(hkReal) * 3;
|
||||||
|
|
||||||
|
part.m_stridingType = hkpExtendedMeshShape::INDICES_INT16;
|
||||||
|
|
||||||
|
mesh->addTrianglesSubpart(part);
|
||||||
|
}
|
||||||
|
hkpMoppCompilerInput mci;
|
||||||
|
hkpMoppCode* code = hkpMoppUtility::buildCode( mesh, mci );
|
||||||
|
hkpMoppBvTreeShape* moppShape = new hkpMoppBvTreeShape(mesh, code);
|
||||||
|
|
||||||
|
m_ExtendedMeshShapes[entity].Code = code;
|
||||||
|
m_ExtendedMeshShapes[entity].MoppShape = moppShape;
|
||||||
|
m_Shapes[entityParent].push_back(ShapeArrayData(entity, moppShape)); //HACK: Should maybe have transform, not sure yet
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Systems::PhysicsSystem::TearDownPhysicsState(EntityID entity, EntityID parent)
|
void Systems::PhysicsSystem::TearDownPhysicsState(EntityID entity, EntityID parent)
|
||||||
@@ -527,3 +554,34 @@ void HK_CALL Systems::PhysicsSystem::HavokErrorReport(const char* msg, void*)
|
|||||||
LOG_INFO("%s", msg);
|
LOG_INFO("%s", msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
glm::vec3 Systems::PhysicsSystem::ConvertPosition(const hkVector4 &hkPosition)
|
||||||
|
{
|
||||||
|
return glm::vec3(hkPosition(0), hkPosition(1), hkPosition(2));
|
||||||
|
}
|
||||||
|
|
||||||
|
const hkVector4& Systems::PhysicsSystem::ConvertPosition(glm::vec3 glmPosition)
|
||||||
|
{
|
||||||
|
return hkVector4( glmPosition.x, glmPosition.y, glmPosition.z );
|
||||||
|
}
|
||||||
|
|
||||||
|
glm::quat Systems::PhysicsSystem::ConvertRotation(const hkQuaternion &hkRotation)
|
||||||
|
{
|
||||||
|
return glm::quat(hkRotation(3), hkRotation(0), hkRotation(1), hkRotation(2));
|
||||||
|
}
|
||||||
|
|
||||||
|
const hkQuaternion& Systems::PhysicsSystem::ConvertRotation(glm::quat glmRotation)
|
||||||
|
{
|
||||||
|
return hkQuaternion(glmRotation.x, glmRotation.y, glmRotation.z, glmRotation.w );
|
||||||
|
}
|
||||||
|
|
||||||
|
glm::vec3 Systems::PhysicsSystem::ConvertScale(const hkVector4 &hkScale)
|
||||||
|
{
|
||||||
|
return glm::vec3(hkScale(0), hkScale(1), hkScale(2));
|
||||||
|
}
|
||||||
|
|
||||||
|
const hkVector4& Systems::PhysicsSystem::ConvertScale(glm::vec3 glmScale)
|
||||||
|
{
|
||||||
|
return hkVector4(glmScale.x, glmScale.y, glmScale.z);
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -10,6 +10,7 @@
|
|||||||
#include "Components/Vehicle.h"
|
#include "Components/Vehicle.h"
|
||||||
#include "Components/Input.h"
|
#include "Components/Input.h"
|
||||||
#include "Components/MeshShape.h"
|
#include "Components/MeshShape.h"
|
||||||
|
#include "Components/HingeConstraint.h"
|
||||||
#include "OBJ.h"
|
#include "OBJ.h"
|
||||||
|
|
||||||
// Math and base include
|
// Math and base include
|
||||||
@@ -44,6 +45,13 @@
|
|||||||
#include <Common/Base/Thread/JobQueue/hkJobQueue.h>
|
#include <Common/Base/Thread/JobQueue/hkJobQueue.h>
|
||||||
#include <Common/Base/Thread/Job/ThreadPool/Cpu/hkCpuJobThreadPool.h>
|
#include <Common/Base/Thread/Job/ThreadPool/Cpu/hkCpuJobThreadPool.h>
|
||||||
#include <Common/Base/DebugUtil/MultiThreadCheck/hkMultiThreadCheck.h>
|
#include <Common/Base/DebugUtil/MultiThreadCheck/hkMultiThreadCheck.h>
|
||||||
|
#include <Physics/Constraint/Data/Hinge/hkpHingeConstraintData.h>
|
||||||
|
#include <Physics/Constraint/Data/LimitedHinge/hkpLimitedHingeConstraintData.h>
|
||||||
|
|
||||||
|
#include <Physics2012/Collide/Shape/Compound/Collection/List/hkpListShape.h>
|
||||||
|
#include <Physics2012/Internal/Collide/StaticCompound/hkpStaticCompoundShape.h>
|
||||||
|
#include <Physics2012/Collide/Util/ShapeShrinker/hkpShapeShrinker.h>
|
||||||
|
#include <Physics2012/Collide/Shape/Misc/Bv/hkpBvShape.h>
|
||||||
|
|
||||||
#include "Physics/VehicleSetup.h"
|
#include "Physics/VehicleSetup.h"
|
||||||
|
|
||||||
@@ -75,6 +83,16 @@ private:
|
|||||||
void StepVisualDebugger();
|
void StepVisualDebugger();
|
||||||
static void HK_CALL HavokErrorReport(const char* msg, void*);
|
static void HK_CALL HavokErrorReport(const char* msg, void*);
|
||||||
void SetupPhysics(hkpWorld* physicsWorld);
|
void SetupPhysics(hkpWorld* physicsWorld);
|
||||||
|
|
||||||
|
// Converterfunctions
|
||||||
|
glm::vec3 ConvertPosition(const hkVector4 &hkPosition);
|
||||||
|
const hkVector4& ConvertPosition(glm::vec3 glmPosition);
|
||||||
|
|
||||||
|
glm::quat ConvertRotation(const hkQuaternion &hkRotation);
|
||||||
|
const hkQuaternion& ConvertRotation(glm::quat glmRotation);
|
||||||
|
|
||||||
|
glm::vec3 ConvertScale(const hkVector4 &hkScale);
|
||||||
|
const hkVector4&ConvertScale(glm::vec3 glmScale);
|
||||||
|
|
||||||
std::unordered_map<EntityID, hkpRigidBody*> m_RigidBodies;
|
std::unordered_map<EntityID, hkpRigidBody*> m_RigidBodies;
|
||||||
|
|
||||||
@@ -88,7 +106,21 @@ private:
|
|||||||
|
|
||||||
hkpVehicleInstance* Systems::PhysicsSystem::createVehicle(VehicleSetup& vehicleSetup, hkpRigidBody* chassis);
|
hkpVehicleInstance* Systems::PhysicsSystem::createVehicle(VehicleSetup& vehicleSetup, hkpRigidBody* chassis);
|
||||||
|
|
||||||
|
|
||||||
|
struct ShapeArrayData
|
||||||
|
{
|
||||||
|
ShapeArrayData(EntityID entity, hkpShape* shape)
|
||||||
|
{
|
||||||
|
Entity = entity;
|
||||||
|
Shape = shape;
|
||||||
|
}
|
||||||
|
EntityID Entity;
|
||||||
|
hkpShape* Shape;
|
||||||
|
};
|
||||||
|
std::unordered_map<EntityID, std::list<ShapeArrayData>> m_Shapes;
|
||||||
|
std::unordered_map<EntityID, hkpListShape*> m_ListShapes;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
struct ExtendedShapeData
|
struct ExtendedShapeData
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -124,7 +124,9 @@
|
|||||||
<ClInclude Include="..\..\src\Components\BoxShape.h" />
|
<ClInclude Include="..\..\src\Components\BoxShape.h" />
|
||||||
<ClInclude Include="..\..\src\Components\Camera.h" />
|
<ClInclude Include="..\..\src\Components\Camera.h" />
|
||||||
<ClInclude Include="..\..\src\Components\DirectionalLight.h" />
|
<ClInclude Include="..\..\src\Components\DirectionalLight.h" />
|
||||||
|
<ClInclude Include="..\..\src\Components\ExtendedMeshShape.h" />
|
||||||
<ClInclude Include="..\..\src\Components\FreeSteering.h" />
|
<ClInclude Include="..\..\src\Components\FreeSteering.h" />
|
||||||
|
<ClInclude Include="..\..\src\Components\HingeConstraint.h" />
|
||||||
<ClInclude Include="..\..\src\Components\Input.h" />
|
<ClInclude Include="..\..\src\Components\Input.h" />
|
||||||
<ClInclude Include="..\..\src\Components\MeshShape.h" />
|
<ClInclude Include="..\..\src\Components\MeshShape.h" />
|
||||||
<ClInclude Include="..\..\src\Components\Model.h" />
|
<ClInclude Include="..\..\src\Components\Model.h" />
|
||||||
|
|||||||
@@ -236,6 +236,12 @@
|
|||||||
<ClInclude Include="..\..\src\Util\UnorderedMapPair.h">
|
<ClInclude Include="..\..\src\Util\UnorderedMapPair.h">
|
||||||
<Filter>Util</Filter>
|
<Filter>Util</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\Components\HingeConstraint.h">
|
||||||
|
<Filter>Physics\Components</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\src\Components\ExtendedMeshShape.h">
|
||||||
|
<Filter>Physics\Components</Filter>
|
||||||
|
</ClInclude>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="..\..\src\Shaders\AABB.frag.glsl">
|
<None Include="..\..\src\Shaders\AABB.frag.glsl">
|
||||||
|
|||||||
Reference in New Issue
Block a user