175 lines
4.2 KiB
C++
175 lines
4.2 KiB
C++
// Copyright (C) 2015 Jérôme Leclercq
|
|
// This file is part of the "Nazara Development Kit"
|
|
// For conditions of distribution and use, see copyright notice in Prerequesites.hpp
|
|
|
|
#include <Nazara/Core/Error.hpp>
|
|
|
|
namespace Ndk
|
|
{
|
|
inline PhysicsComponent::PhysicsComponent(const PhysicsComponent& physics)
|
|
{
|
|
// Pas de copie de l'objet physique (étant donné que nous n'allons le créer qu'une fois attaché à une entité)
|
|
NazaraUnused(physics);
|
|
}
|
|
|
|
inline void PhysicsComponent::AddForce(const Nz::Vector3f& force, Nz::CoordSys coordSys)
|
|
{
|
|
NazaraAssert(m_object, "Invalid physics object");
|
|
|
|
m_object->AddForce(force, coordSys);
|
|
}
|
|
|
|
inline void PhysicsComponent::AddForce(const Nz::Vector3f& force, const Nz::Vector3f& point, Nz::CoordSys coordSys)
|
|
{
|
|
NazaraAssert(m_object, "Invalid physics object");
|
|
|
|
m_object->AddForce(force, point, coordSys);
|
|
}
|
|
|
|
inline void PhysicsComponent::AddTorque(const Nz::Vector3f& torque, Nz::CoordSys coordSys)
|
|
{
|
|
NazaraAssert(m_object, "Invalid physics object");
|
|
|
|
m_object->AddForce(torque, coordSys);
|
|
}
|
|
|
|
inline void PhysicsComponent::EnableAutoSleep(bool autoSleep)
|
|
{
|
|
NazaraAssert(m_object, "Invalid physics object");
|
|
|
|
m_object->EnableAutoSleep(autoSleep);
|
|
}
|
|
|
|
inline Nz::Boxf PhysicsComponent::GetAABB() const
|
|
{
|
|
NazaraAssert(m_object, "Invalid physics object");
|
|
|
|
return m_object->GetAABB();
|
|
}
|
|
|
|
inline Nz::Vector3f PhysicsComponent::GetAngularVelocity() const
|
|
{
|
|
NazaraAssert(m_object, "Invalid physics object");
|
|
|
|
return m_object->GetAngularVelocity();
|
|
}
|
|
|
|
inline float PhysicsComponent::GetGravityFactor() const
|
|
{
|
|
NazaraAssert(m_object, "Invalid physics object");
|
|
|
|
return m_object->GetGravityFactor();
|
|
}
|
|
|
|
inline float PhysicsComponent::GetMass() const
|
|
{
|
|
NazaraAssert(m_object, "Invalid physics object");
|
|
|
|
return m_object->GetMass();
|
|
}
|
|
|
|
inline Nz::Vector3f PhysicsComponent::GetMassCenter(Nz::CoordSys coordSys) const
|
|
{
|
|
NazaraAssert(m_object, "Invalid physics object");
|
|
|
|
return m_object->GetMassCenter(coordSys);
|
|
}
|
|
|
|
inline const Nz::Matrix4f& PhysicsComponent::GetMatrix() const
|
|
{
|
|
NazaraAssert(m_object, "Invalid physics object");
|
|
|
|
return m_object->GetMatrix();
|
|
}
|
|
|
|
inline Nz::Vector3f PhysicsComponent::GetPosition() const
|
|
{
|
|
NazaraAssert(m_object, "Invalid physics object");
|
|
|
|
return m_object->GetPosition();
|
|
}
|
|
|
|
inline Nz::Quaternionf PhysicsComponent::GetRotation() const
|
|
{
|
|
NazaraAssert(m_object, "Invalid physics object");
|
|
|
|
return m_object->GetRotation();
|
|
}
|
|
|
|
inline Nz::Vector3f PhysicsComponent::GetVelocity() const
|
|
{
|
|
NazaraAssert(m_object, "Invalid physics object");
|
|
|
|
return m_object->GetVelocity();
|
|
}
|
|
|
|
inline bool PhysicsComponent::IsAutoSleepEnabled() const
|
|
{
|
|
NazaraAssert(m_object, "Invalid physics object");
|
|
|
|
return m_object->IsAutoSleepEnabled();
|
|
}
|
|
|
|
inline bool PhysicsComponent::IsSleeping() const
|
|
{
|
|
NazaraAssert(m_object, "Invalid physics object");
|
|
|
|
return m_object->IsSleeping();
|
|
}
|
|
|
|
inline void PhysicsComponent::SetAngularVelocity(const Nz::Vector3f& angularVelocity)
|
|
{
|
|
NazaraAssert(m_object, "Invalid physics object");
|
|
|
|
m_object->SetAngularVelocity(angularVelocity);
|
|
}
|
|
|
|
inline void PhysicsComponent::SetGravityFactor(float gravityFactor)
|
|
{
|
|
NazaraAssert(m_object, "Invalid physics object");
|
|
|
|
m_object->SetGravityFactor(gravityFactor);
|
|
}
|
|
|
|
inline void PhysicsComponent::SetMass(float mass)
|
|
{
|
|
NazaraAssert(m_object, "Invalid physics object");
|
|
NazaraAssert(mass > 0.f, "Mass should be positive");
|
|
|
|
m_object->SetMass(mass);
|
|
}
|
|
|
|
inline void PhysicsComponent::SetMassCenter(const Nz::Vector3f& center)
|
|
{
|
|
NazaraAssert(m_object, "Invalid physics object");
|
|
|
|
m_object->SetMassCenter(center);
|
|
}
|
|
|
|
inline void PhysicsComponent::SetPosition(const Nz::Vector3f& position)
|
|
{
|
|
NazaraAssert(m_object, "Invalid physics object");
|
|
|
|
m_object->SetPosition(position);
|
|
}
|
|
|
|
inline void PhysicsComponent::SetRotation(const Nz::Quaternionf& rotation)
|
|
{
|
|
NazaraAssert(m_object, "Invalid physics object");
|
|
|
|
m_object->SetRotation(rotation);
|
|
}
|
|
|
|
inline void PhysicsComponent::SetVelocity(const Nz::Vector3f& velocity)
|
|
{
|
|
NazaraAssert(m_object, "Invalid physics object");
|
|
|
|
m_object->SetVelocity(velocity);
|
|
}
|
|
|
|
inline Nz::PhysObject& PhysicsComponent::GetPhysObject()
|
|
{
|
|
return *m_object.get();
|
|
}
|
|
}
|