2013-12-06 09:46:30 +01:00
|
|
|
#ifndef PHYSICS_STRUCTS_IMPL_H
|
|
|
|
#define PHYSICS_STRUCTS_IMPL_H
|
|
|
|
|
|
|
|
#include "PhysicsStructs.h"
|
2014-01-14 10:34:22 +01:00
|
|
|
#include "OysterPhysics3D.h"
|
2013-12-06 09:46:30 +01:00
|
|
|
|
2013-12-19 14:30:16 +01:00
|
|
|
namespace Oyster
|
|
|
|
{
|
|
|
|
namespace Physics
|
2013-12-06 09:46:30 +01:00
|
|
|
{
|
2013-12-19 14:30:16 +01:00
|
|
|
namespace Struct
|
2013-12-06 09:46:30 +01:00
|
|
|
{
|
2013-12-19 14:30:16 +01:00
|
|
|
inline SimpleBodyDescription::SimpleBodyDescription()
|
|
|
|
{
|
|
|
|
this->rotation = ::Oyster::Math::Float4x4::identity;
|
2014-01-09 11:36:55 +01:00
|
|
|
this->centerPosition = ::Oyster::Math::Float4::standard_unit_w;
|
|
|
|
this->size = ::Oyster::Math::Float4( 1.0f );
|
2013-12-19 14:30:16 +01:00
|
|
|
this->mass = 12.0f;
|
|
|
|
this->inertiaTensor = ::Oyster::Math::Float4x4::identity;
|
|
|
|
this->subscription = NULL;
|
|
|
|
this->ignoreGravity = false;
|
|
|
|
}
|
2013-12-06 09:46:30 +01:00
|
|
|
|
2013-12-19 14:30:16 +01:00
|
|
|
inline SphericalBodyDescription::SphericalBodyDescription()
|
|
|
|
{
|
|
|
|
this->rotation = ::Oyster::Math::Float4x4::identity;
|
2014-01-09 11:36:55 +01:00
|
|
|
this->centerPosition = ::Oyster::Math::Float4::standard_unit_w;
|
2013-12-19 14:30:16 +01:00
|
|
|
this->radius = 0.5f;
|
|
|
|
this->mass = 10.0f;
|
|
|
|
this->subscription = NULL;
|
|
|
|
this->ignoreGravity = false;
|
|
|
|
}
|
2013-12-06 09:46:30 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline CustomBodyState::CustomBodyState( ::Oyster::Math::Float mass, ::Oyster::Math::Float restitutionCoeff, ::Oyster::Math::Float staticFrictionCoeff, ::Oyster::Math::Float kineticFrictionCoeff, const ::Oyster::Math::Float4x4 &inertiaTensor, const ::Oyster::Math::Float4 &reach, const ::Oyster::Math::Float4 ¢erPos, const ::Oyster::Math::Float4 &rotation, const ::Oyster::Math::Float4 &linearMomentum, const ::Oyster::Math::Float4 &angularMomentum )
|
2013-12-19 14:30:16 +01:00
|
|
|
{
|
2014-01-09 11:36:55 +01:00
|
|
|
this->mass = mass;
|
|
|
|
this->restitutionCoeff = restitutionCoeff;
|
|
|
|
this->staticFrictionCoeff = staticFrictionCoeff;
|
|
|
|
this->kineticFrictionCoeff = kineticFrictionCoeff;
|
|
|
|
this->inertiaTensor = inertiaTensor;
|
|
|
|
this->reach = reach;
|
|
|
|
this->centerPos = centerPos;
|
|
|
|
this->angularAxis = rotation;
|
|
|
|
this->linearMomentum = linearMomentum;
|
|
|
|
this->angularMomentum = angularMomentum;
|
|
|
|
this->linearImpulse = this->angularImpulse = ::Oyster::Math::Float4::null;
|
|
|
|
this->deltaPos = this->deltaAxis = ::Oyster::Math::Float4::null;
|
|
|
|
this->isSpatiallyAltered = this->isDisturbed = this->isForwarded = false;
|
2013-12-19 14:30:16 +01:00
|
|
|
}
|
2013-12-06 09:46:30 +01:00
|
|
|
|
2013-12-19 14:30:16 +01:00
|
|
|
inline CustomBodyState & CustomBodyState::operator = ( const CustomBodyState &state )
|
|
|
|
{
|
2014-01-09 11:36:55 +01:00
|
|
|
this->mass = state.mass;
|
|
|
|
this->restitutionCoeff = state.restitutionCoeff;
|
|
|
|
this->staticFrictionCoeff = state.staticFrictionCoeff;
|
|
|
|
this->kineticFrictionCoeff = state.kineticFrictionCoeff;
|
|
|
|
this->inertiaTensor = state.inertiaTensor;
|
2013-12-19 14:30:16 +01:00
|
|
|
this->reach = state.reach;
|
|
|
|
this->centerPos = state.centerPos;
|
|
|
|
this->angularAxis = state.angularAxis;
|
2014-01-09 11:36:55 +01:00
|
|
|
this->linearMomentum = state.linearMomentum;
|
|
|
|
this->angularMomentum = state.angularMomentum;
|
|
|
|
this->linearImpulse = state.linearImpulse;
|
|
|
|
this->angularImpulse = state.angularImpulse;
|
|
|
|
this->deltaPos = state.deltaPos;
|
|
|
|
this->deltaAxis = state.deltaAxis;
|
2013-12-19 14:30:16 +01:00
|
|
|
this->isSpatiallyAltered = state.isSpatiallyAltered;
|
|
|
|
this->isDisturbed = state.isDisturbed;
|
2014-01-09 11:36:55 +01:00
|
|
|
this->isForwarded = state.isForwarded;
|
2013-12-19 14:30:16 +01:00
|
|
|
return *this;
|
|
|
|
}
|
2013-12-06 09:46:30 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline const ::Oyster::Math::Float CustomBodyState::GetMass() const
|
|
|
|
{
|
|
|
|
return this->mass;
|
|
|
|
}
|
2013-12-18 14:16:13 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline const ::Oyster::Math::Float CustomBodyState::GetRestitutionCoeff() const
|
|
|
|
{
|
|
|
|
return this->restitutionCoeff;
|
|
|
|
}
|
2013-12-18 14:16:13 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline const ::Oyster::Math::Float CustomBodyState::GetFrictionCoeff_Static() const
|
|
|
|
{
|
|
|
|
return this->staticFrictionCoeff;
|
|
|
|
}
|
2013-12-19 10:03:56 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline const ::Oyster::Math::Float CustomBodyState::GetFrictionCoeff_Kinetic() const
|
|
|
|
{
|
|
|
|
return this->kineticFrictionCoeff;
|
|
|
|
}
|
2013-12-18 14:16:13 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline const ::Oyster::Math::Float4x4 & CustomBodyState::GetMomentOfInertia() const
|
|
|
|
{
|
|
|
|
return this->inertiaTensor;
|
|
|
|
}
|
2013-12-18 14:16:13 +01:00
|
|
|
|
2013-12-19 14:30:16 +01:00
|
|
|
inline const ::Oyster::Math::Float4 & CustomBodyState::GetReach() const
|
|
|
|
{
|
|
|
|
return this->reach;
|
|
|
|
}
|
2013-12-06 09:46:30 +01:00
|
|
|
|
2013-12-19 14:30:16 +01:00
|
|
|
inline ::Oyster::Math::Float4 CustomBodyState::GetSize() const
|
|
|
|
{
|
|
|
|
return 2.0f * this->GetReach();
|
|
|
|
}
|
2013-12-06 09:46:30 +01:00
|
|
|
|
2013-12-19 14:30:16 +01:00
|
|
|
inline const ::Oyster::Math::Float4 & CustomBodyState::GetCenterPosition() const
|
|
|
|
{
|
|
|
|
return this->centerPos;
|
|
|
|
}
|
2013-12-06 09:46:30 +01:00
|
|
|
|
2013-12-19 14:30:16 +01:00
|
|
|
inline const ::Oyster::Math::Float4 & CustomBodyState::GetAngularAxis() const
|
|
|
|
{
|
|
|
|
return this->angularAxis;
|
|
|
|
}
|
2013-12-06 09:46:30 +01:00
|
|
|
|
2013-12-19 14:30:16 +01:00
|
|
|
inline ::Oyster::Math::Float4x4 CustomBodyState::GetRotation() const
|
|
|
|
{
|
|
|
|
return ::Oyster::Math3D::RotationMatrix( this->GetAngularAxis().xyz );
|
|
|
|
}
|
2013-12-06 09:46:30 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline ::Oyster::Math::Float4x4 CustomBodyState::GetOrientation() const
|
|
|
|
{
|
|
|
|
return ::Oyster::Math3D::OrientationMatrix( this->angularAxis.xyz, this->centerPos.xyz );
|
|
|
|
}
|
2014-01-09 10:42:22 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline ::Oyster::Math::Float4x4 CustomBodyState::GetOrientation( const ::Oyster::Math::Float4 &offset ) const
|
|
|
|
{
|
|
|
|
return ::Oyster::Math3D::OrientationMatrix( this->angularAxis.xyz, (this->centerPos + offset).xyz );
|
|
|
|
}
|
2013-12-18 08:57:27 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline ::Oyster::Math::Float4x4 CustomBodyState::GetView() const
|
|
|
|
{
|
|
|
|
return ::Oyster::Math3D::ViewMatrix( this->angularAxis.xyz, this->centerPos.xyz );
|
|
|
|
}
|
2014-01-09 10:42:22 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline ::Oyster::Math::Float4x4 CustomBodyState::GetView( const ::Oyster::Math::Float4 &offset ) const
|
|
|
|
{
|
|
|
|
return ::Oyster::Math3D::ViewMatrix( this->angularAxis.xyz, (this->centerPos + offset).xyz );
|
|
|
|
}
|
2013-12-18 08:57:27 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline const ::Oyster::Math::Float4 & CustomBodyState::GetLinearMomentum() const
|
|
|
|
{
|
|
|
|
return this->linearMomentum;
|
|
|
|
}
|
2013-12-18 08:57:27 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline ::Oyster::Math::Float4 CustomBodyState::GetLinearMomentum( const ::Oyster::Math::Float4 &at ) const
|
|
|
|
{
|
2014-01-14 10:34:22 +01:00
|
|
|
return this->linearMomentum + ::Oyster::Physics3D::Formula::TangentialLinearMomentum( this->angularMomentum, at - this->centerPos );
|
2014-01-09 11:36:55 +01:00
|
|
|
}
|
2013-12-18 08:57:27 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline const ::Oyster::Math::Float4 & CustomBodyState::GetAngularMomentum() const
|
|
|
|
{
|
|
|
|
return this->angularMomentum;
|
|
|
|
}
|
2013-12-18 14:16:13 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline const ::Oyster::Math::Float4 & CustomBodyState::GetLinearImpulse() const
|
|
|
|
{
|
|
|
|
return this->linearImpulse;
|
|
|
|
}
|
2013-12-18 14:16:13 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline const ::Oyster::Math::Float4 & CustomBodyState::GetAngularImpulse() const
|
|
|
|
{
|
|
|
|
return this->angularImpulse;
|
|
|
|
}
|
2013-12-20 11:13:44 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline const ::Oyster::Math::Float4 & CustomBodyState::GetForward_DeltaPos() const
|
|
|
|
{
|
|
|
|
return this->deltaPos;
|
|
|
|
}
|
2013-12-20 11:13:44 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline const ::Oyster::Math::Float4 & CustomBodyState::GetForward_DeltaAxis() const
|
|
|
|
{
|
|
|
|
return this->deltaAxis;
|
|
|
|
}
|
2013-12-18 14:16:13 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline void CustomBodyState::SetMass_KeepMomentum( ::Oyster::Math::Float m )
|
|
|
|
{
|
2013-12-18 14:16:13 +01:00
|
|
|
this->mass = m;
|
|
|
|
}
|
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline void CustomBodyState::SetMass_KeepVelocity( ::Oyster::Math::Float m )
|
|
|
|
{
|
|
|
|
if( m != 0.0f )
|
|
|
|
{ // sanity block!
|
|
|
|
// Formula::LinearMomentum( m, Formula::LinearVelocity(this->mass, this->linearMomentum) )
|
|
|
|
// is the same as (this->linearMomentum / this->mass) * m = (m / this->mass) * this->linearMomentum
|
|
|
|
this->linearMomentum *= (m / this->mass);
|
|
|
|
this->mass = m;
|
|
|
|
}
|
|
|
|
}
|
2013-12-18 14:16:13 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline void CustomBodyState::SetRestitutionCoeff( ::Oyster::Math::Float e )
|
|
|
|
{
|
|
|
|
this->restitutionCoeff = e;
|
|
|
|
}
|
2013-12-18 14:16:13 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline void CustomBodyState::SetFrictionCoeff( ::Oyster::Math::Float staticU, ::Oyster::Math::Float kineticU )
|
|
|
|
{
|
|
|
|
this->staticFrictionCoeff = staticU;
|
|
|
|
this->kineticFrictionCoeff = kineticU;
|
|
|
|
}
|
2013-12-18 14:16:13 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline void CustomBodyState::SetMomentOfInertia_KeepMomentum( const ::Oyster::Math::Float4x4 &tensor )
|
|
|
|
{
|
2013-12-18 14:16:13 +01:00
|
|
|
this->inertiaTensor = tensor;
|
|
|
|
}
|
2014-01-09 11:36:55 +01:00
|
|
|
|
|
|
|
inline void CustomBodyState::SetMomentOfInertia_KeepVelocity( const ::Oyster::Math::Float4x4 &tensor )
|
|
|
|
{
|
|
|
|
if( tensor.GetDeterminant() != 0.0f )
|
|
|
|
{ // sanity block!
|
|
|
|
::Oyster::Math::Float4x4 rotation = ::Oyster::Math3D::RotationMatrix(this->angularAxis.xyz);
|
2014-01-14 10:34:22 +01:00
|
|
|
::Oyster::Math::Float4 w = ::Oyster::Physics3D::Formula::AngularVelocity( (rotation * this->inertiaTensor).GetInverse(), this->angularMomentum );
|
2014-01-09 11:36:55 +01:00
|
|
|
this->inertiaTensor = tensor;
|
2014-01-14 10:34:22 +01:00
|
|
|
this->angularMomentum = ::Oyster::Physics3D::Formula::AngularMomentum( rotation * tensor, w );
|
2014-01-09 11:36:55 +01:00
|
|
|
}
|
|
|
|
}
|
2013-12-18 14:16:13 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline void CustomBodyState::SetSize( const ::Oyster::Math::Float4 &size )
|
2013-12-19 14:30:16 +01:00
|
|
|
{
|
|
|
|
this->SetReach( 0.5f * size );
|
|
|
|
}
|
2013-12-06 09:46:30 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline void CustomBodyState::SetReach( const ::Oyster::Math::Float4 &halfSize )
|
2013-12-19 14:30:16 +01:00
|
|
|
{
|
|
|
|
this->reach.xyz = halfSize;
|
|
|
|
this->reach = ::Utility::Value::Max( this->reach, ::Oyster::Math::Float4::null );
|
|
|
|
this->isSpatiallyAltered = this->isDisturbed = true;
|
|
|
|
}
|
2013-12-06 09:46:30 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline void CustomBodyState::SetCenterPosition( const ::Oyster::Math::Float4 ¢erPos )
|
2013-12-19 14:30:16 +01:00
|
|
|
{
|
|
|
|
this->centerPos.xyz = centerPos;
|
|
|
|
this->isSpatiallyAltered = this->isDisturbed = true;
|
|
|
|
}
|
2013-12-06 09:46:30 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline void CustomBodyState::SetRotation( const ::Oyster::Math::Float4 &angularAxis )
|
2013-12-19 14:30:16 +01:00
|
|
|
{
|
|
|
|
this->angularAxis.xyz = angularAxis;
|
|
|
|
this->isSpatiallyAltered = this->isDisturbed = true;
|
|
|
|
}
|
2013-12-06 09:46:30 +01:00
|
|
|
|
2013-12-19 14:30:16 +01:00
|
|
|
inline void CustomBodyState::SetRotation( const ::Oyster::Math::Float4x4 &rotation )
|
|
|
|
{
|
2014-01-09 11:36:55 +01:00
|
|
|
this->SetRotation( ::Oyster::Math3D::AngularAxis(rotation) );
|
|
|
|
}
|
2013-12-06 09:46:30 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline void CustomBodyState::SetOrientation( const ::Oyster::Math::Float4x4 &orientation )
|
|
|
|
{
|
|
|
|
this->SetRotation( ::Oyster::Math3D::ExtractAngularAxis(orientation) );
|
|
|
|
this->SetCenterPosition( orientation.v[3] );
|
|
|
|
}
|
2013-12-18 08:57:27 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline void CustomBodyState::SetLinearMomentum( const ::Oyster::Math::Float4 &g )
|
|
|
|
{
|
|
|
|
this->linearMomentum.xyz = g;
|
|
|
|
this->isDisturbed = true;
|
|
|
|
}
|
2013-12-18 08:57:27 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline void CustomBodyState::SetAngularMomentum( const ::Oyster::Math::Float4 &h )
|
|
|
|
{
|
|
|
|
this->angularMomentum.xyz = h;
|
|
|
|
this->isDisturbed = true;
|
|
|
|
}
|
2013-12-18 08:57:27 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline void CustomBodyState::SetLinearImpulse( const ::Oyster::Math::Float4 &j )
|
|
|
|
{
|
|
|
|
this->linearImpulse.xyz = j;
|
|
|
|
this->isDisturbed = true;
|
|
|
|
}
|
2013-12-18 08:57:27 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline void CustomBodyState::SetAngularImpulse( const ::Oyster::Math::Float4 &j )
|
|
|
|
{
|
|
|
|
this->angularImpulse.xyz = j;
|
|
|
|
this->isDisturbed = true;
|
|
|
|
}
|
2013-12-18 08:57:27 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline void CustomBodyState::AddRotation( const ::Oyster::Math::Float4 &angularAxis )
|
|
|
|
{
|
|
|
|
this->angularAxis += angularAxis;
|
|
|
|
this->isSpatiallyAltered = this->isDisturbed = true;
|
|
|
|
}
|
2013-12-18 14:16:13 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline void CustomBodyState::AddTranslation( const ::Oyster::Math::Float4 &deltaPos )
|
|
|
|
{
|
|
|
|
this->centerPos += deltaPos;
|
|
|
|
this->isSpatiallyAltered = this->isDisturbed = true;
|
|
|
|
}
|
2013-12-18 08:57:27 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline void CustomBodyState::ApplyLinearImpulse( const ::Oyster::Math::Float4 &j )
|
|
|
|
{
|
|
|
|
this->linearImpulse += j;
|
|
|
|
this->isDisturbed = true;
|
|
|
|
}
|
2013-12-18 14:16:13 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline void CustomBodyState::ApplyAngularImpulse( const ::Oyster::Math::Float4 &j )
|
|
|
|
{
|
|
|
|
this->angularImpulse += j;
|
|
|
|
this->isDisturbed = true;
|
|
|
|
}
|
2013-12-18 14:16:13 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline void CustomBodyState::ApplyImpulse( const ::Oyster::Math::Float4 &j, const ::Oyster::Math::Float4 &at, const ::Oyster::Math::Float4 &normal )
|
|
|
|
{
|
2014-01-14 10:34:22 +01:00
|
|
|
::Oyster::Math::Float4 offset = at - this->centerPos;
|
|
|
|
::Oyster::Math::Float4 deltaAngularImpulse = ::Oyster::Physics3D::Formula::AngularMomentum( j, offset );
|
|
|
|
this->linearImpulse += j - ::Oyster::Physics3D::Formula::TangentialLinearMomentum( deltaAngularImpulse, offset );
|
|
|
|
this->angularImpulse += deltaAngularImpulse;
|
2013-12-18 08:57:27 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
this->isDisturbed = true;
|
|
|
|
}
|
2013-12-18 08:57:27 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline void CustomBodyState::ApplyForwarding( const ::Oyster::Math::Float4 &deltaPos, const ::Oyster::Math::Float4 &deltaAxis )
|
|
|
|
{
|
|
|
|
this->deltaPos += deltaPos;
|
|
|
|
this->deltaAxis += deltaAxis;
|
|
|
|
this->isDisturbed = this->isForwarded = true;
|
2013-12-19 14:30:16 +01:00
|
|
|
}
|
2013-12-20 11:13:44 +01:00
|
|
|
|
2013-12-19 14:30:16 +01:00
|
|
|
inline bool CustomBodyState::IsSpatiallyAltered() const
|
|
|
|
{
|
|
|
|
return this->isSpatiallyAltered;
|
|
|
|
}
|
2013-12-06 09:46:30 +01:00
|
|
|
|
2013-12-19 14:30:16 +01:00
|
|
|
inline bool CustomBodyState::IsDisturbed() const
|
|
|
|
{
|
|
|
|
return this->isDisturbed;
|
2014-01-09 11:36:55 +01:00
|
|
|
}
|
2013-12-20 11:13:44 +01:00
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline bool CustomBodyState::IsForwarded() const
|
|
|
|
{
|
|
|
|
return this->isForwarded;
|
2013-12-19 14:30:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
inline GravityWell::GravityWell( )
|
|
|
|
{
|
|
|
|
this->position = ::Oyster::Math::Float3::null;
|
|
|
|
this->mass = 0.0f;
|
|
|
|
}
|
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline GravityWell::GravityWell( const GravityWell &gravityWell )
|
2013-12-19 14:30:16 +01:00
|
|
|
{
|
|
|
|
this->position = gravityWell.position;
|
|
|
|
this->mass = gravityWell.mass;
|
|
|
|
}
|
|
|
|
|
2014-01-09 11:48:21 +01:00
|
|
|
inline GravityWell & GravityWell::operator = ( const GravityWell &gravityWell )
|
2013-12-19 14:30:16 +01:00
|
|
|
{
|
|
|
|
this->position = gravityWell.position;
|
|
|
|
this->mass = gravityWell.mass;
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2014-01-15 10:44:20 +01:00
|
|
|
inline bool GravityWell::operator == ( const GravityWell &gravity ) const
|
|
|
|
{
|
|
|
|
if( this->position == gravity.position )
|
|
|
|
if( this->mass == gravity.mass )
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool GravityWell::operator != ( const GravityWell &gravity ) const
|
|
|
|
{
|
|
|
|
if( this->position == gravity.position )
|
|
|
|
if( this->mass == gravity.mass )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-12-19 14:30:16 +01:00
|
|
|
inline GravityDirected::GravityDirected( )
|
|
|
|
{
|
|
|
|
this->impulse = ::Oyster::Math::Float3::null;
|
|
|
|
}
|
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline GravityDirected::GravityDirected( const GravityDirected &gravityDirected )
|
2013-12-19 14:30:16 +01:00
|
|
|
{
|
|
|
|
this->impulse = gravityDirected.impulse;
|
|
|
|
}
|
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline GravityDirected & GravityDirected::operator = ( const GravityDirected &gravityDirected )
|
2013-12-19 14:30:16 +01:00
|
|
|
{
|
|
|
|
this->impulse = gravityDirected.impulse;
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2014-01-15 10:44:20 +01:00
|
|
|
inline bool GravityDirected::operator == ( const GravityDirected &gravity ) const
|
|
|
|
{
|
|
|
|
return this->impulse == gravity.impulse;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool GravityDirected::operator != ( const GravityDirected &gravity ) const
|
|
|
|
{
|
|
|
|
return this->impulse != gravity.impulse;
|
|
|
|
}
|
|
|
|
|
2013-12-19 14:30:16 +01:00
|
|
|
inline GravityDirectedField::GravityDirectedField( )
|
|
|
|
{
|
|
|
|
this->normalizedDirection = ::Oyster::Math::Float3::null;
|
|
|
|
this->mass = 0.0f;
|
|
|
|
this->magnitude = 0.0f;
|
|
|
|
}
|
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline GravityDirectedField::GravityDirectedField( const GravityDirectedField &gravityDirectedField )
|
2013-12-19 14:30:16 +01:00
|
|
|
{
|
|
|
|
this->normalizedDirection = gravityDirectedField.normalizedDirection;
|
|
|
|
this->mass = gravityDirectedField.mass;
|
|
|
|
this->magnitude = gravityDirectedField.magnitude;
|
|
|
|
}
|
2014-01-09 11:36:55 +01:00
|
|
|
|
2014-01-09 11:48:21 +01:00
|
|
|
inline GravityDirectedField & GravityDirectedField::operator = ( const GravityDirectedField &gravityDirectedField )
|
2013-12-19 14:30:16 +01:00
|
|
|
{
|
|
|
|
this->normalizedDirection = gravityDirectedField.normalizedDirection;
|
|
|
|
this->mass = gravityDirectedField.mass;
|
|
|
|
this->magnitude = gravityDirectedField.magnitude;
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2014-01-15 10:44:20 +01:00
|
|
|
inline bool GravityDirectedField::operator == ( const GravityDirectedField &gravity ) const
|
|
|
|
{
|
|
|
|
if( this->normalizedDirection == gravity.normalizedDirection )
|
|
|
|
if( this->mass == gravity.mass )
|
|
|
|
if( this->magnitude == gravity.magnitude )
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool GravityDirectedField::operator != ( const GravityDirectedField &gravity ) const
|
|
|
|
{
|
|
|
|
if( this->normalizedDirection == gravity.normalizedDirection )
|
|
|
|
if( this->mass == gravity.mass )
|
|
|
|
if( this->magnitude == gravity.magnitude )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-12-19 14:30:16 +01:00
|
|
|
inline Gravity::Gravity()
|
|
|
|
{
|
|
|
|
this->gravityType = GravityType_Undefined;
|
|
|
|
}
|
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline Gravity::Gravity( const Gravity &gravity )
|
2013-12-19 14:30:16 +01:00
|
|
|
{
|
2014-01-09 11:48:21 +01:00
|
|
|
this->gravityType = gravity.gravityType;
|
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
switch( gravity.gravityType )
|
2013-12-19 14:30:16 +01:00
|
|
|
{
|
|
|
|
case GravityType_Well:
|
2014-01-09 11:36:55 +01:00
|
|
|
this->well = gravity.well;
|
2013-12-19 14:30:16 +01:00
|
|
|
break;
|
|
|
|
case GravityType_Directed:
|
2014-01-09 11:36:55 +01:00
|
|
|
this->directed = gravity.directed;
|
2013-12-19 14:30:16 +01:00
|
|
|
break;
|
|
|
|
case GravityType_DirectedField:
|
2014-01-09 11:36:55 +01:00
|
|
|
this->directedField = gravity.directedField;
|
2013-12-19 14:30:16 +01:00
|
|
|
break;
|
2014-01-09 11:48:21 +01:00
|
|
|
default: break;
|
2013-12-19 14:30:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
inline Gravity & Gravity::operator = ( const Gravity &gravity )
|
2013-12-19 14:30:16 +01:00
|
|
|
{
|
2014-01-09 11:48:21 +01:00
|
|
|
this->gravityType = gravity.gravityType;
|
|
|
|
|
2014-01-09 11:36:55 +01:00
|
|
|
switch( gravity.gravityType )
|
2013-12-19 14:30:16 +01:00
|
|
|
{
|
|
|
|
case GravityType_Well:
|
2014-01-09 11:36:55 +01:00
|
|
|
this->well = gravity.well;
|
2013-12-19 14:30:16 +01:00
|
|
|
break;
|
|
|
|
case GravityType_Directed:
|
2014-01-09 11:36:55 +01:00
|
|
|
this->directed = gravity.directed;
|
2013-12-19 14:30:16 +01:00
|
|
|
break;
|
|
|
|
case GravityType_DirectedField:
|
2014-01-09 11:36:55 +01:00
|
|
|
this->directedField = gravity.directedField;
|
2013-12-19 14:30:16 +01:00
|
|
|
break;
|
2014-01-09 11:48:21 +01:00
|
|
|
default: break;
|
2013-12-19 14:30:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
2014-01-15 10:44:20 +01:00
|
|
|
|
|
|
|
inline bool Gravity::operator == ( const Gravity &gravity ) const
|
|
|
|
{
|
|
|
|
if( this->gravityType == gravity.gravityType )
|
|
|
|
{
|
|
|
|
switch( this->gravityType )
|
|
|
|
{
|
|
|
|
case GravityType_Well: return this->well == gravity.well;
|
|
|
|
case GravityType_Directed: return this->directed == gravity.directed;
|
|
|
|
case GravityType_DirectedField: return this->directedField == gravity.directedField;
|
|
|
|
default: return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool Gravity::operator != ( const Gravity &gravity ) const
|
|
|
|
{
|
|
|
|
if( this->gravityType == gravity.gravityType )
|
|
|
|
{
|
|
|
|
switch( this->gravityType )
|
|
|
|
{
|
|
|
|
case GravityType_Well: return this->well != gravity.well;
|
|
|
|
case GravityType_Directed: return this->directed != gravity.directed;
|
|
|
|
case GravityType_DirectedField: return this->directedField != gravity.directedField;
|
|
|
|
default: return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2013-12-20 11:13:44 +01:00
|
|
|
}
|
2013-12-19 14:30:16 +01:00
|
|
|
}
|
|
|
|
}
|
2013-12-06 09:46:30 +01:00
|
|
|
|
|
|
|
#endif
|