2010-09-09 22:06:57 +00:00
|
|
|
/********************************************************************************
|
2015-02-15 20:56:45 +00:00
|
|
|
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
|
2016-04-11 18:15:20 +00:00
|
|
|
* Copyright (c) 2010-2016 Daniel Chappuis *
|
2010-09-09 22:06:57 +00:00
|
|
|
*********************************************************************************
|
|
|
|
* *
|
2011-11-13 17:49:03 +00:00
|
|
|
* This software is provided 'as-is', without any express or implied warranty. *
|
|
|
|
* In no event will the authors be held liable for any damages arising from the *
|
|
|
|
* use of this software. *
|
2010-09-09 22:06:57 +00:00
|
|
|
* *
|
2011-11-13 17:49:03 +00:00
|
|
|
* Permission is granted to anyone to use this software for any purpose, *
|
|
|
|
* including commercial applications, and to alter it and redistribute it *
|
|
|
|
* freely, subject to the following restrictions: *
|
|
|
|
* *
|
|
|
|
* 1. The origin of this software must not be misrepresented; you must not claim *
|
|
|
|
* that you wrote the original software. If you use this software in a *
|
|
|
|
* product, an acknowledgment in the product documentation would be *
|
|
|
|
* appreciated but is not required. *
|
|
|
|
* *
|
|
|
|
* 2. Altered source versions must be plainly marked as such, and must not be *
|
|
|
|
* misrepresented as being the original software. *
|
|
|
|
* *
|
|
|
|
* 3. This notice may not be removed or altered from any source distribution. *
|
2010-09-09 22:06:57 +00:00
|
|
|
* *
|
|
|
|
********************************************************************************/
|
|
|
|
|
2013-04-18 20:54:36 +00:00
|
|
|
#ifndef REACTPHYSICS3D_CONTACT_POINT_H
|
|
|
|
#define REACTPHYSICS3D_CONTACT_POINT_H
|
2010-09-09 22:06:57 +00:00
|
|
|
|
|
|
|
// Libraries
|
2014-08-07 19:38:31 +00:00
|
|
|
#include "body/CollisionBody.h"
|
2017-01-08 18:56:59 +00:00
|
|
|
#include "collision/NarrowPhaseInfo.h"
|
2017-02-26 11:48:50 +00:00
|
|
|
#include "collision/ContactPointInfo.h"
|
2014-08-07 19:38:31 +00:00
|
|
|
#include "configuration.h"
|
|
|
|
#include "mathematics/mathematics.h"
|
2011-12-11 00:40:04 +00:00
|
|
|
|
2013-03-05 22:09:50 +00:00
|
|
|
/// ReactPhysics3D namespace
|
2010-09-09 22:06:57 +00:00
|
|
|
namespace reactphysics3d {
|
|
|
|
|
2013-03-05 22:09:50 +00:00
|
|
|
// Class ContactPoint
|
|
|
|
/**
|
|
|
|
* This class represents a collision contact point between two
|
2013-09-07 08:57:58 +00:00
|
|
|
* bodies in the physics engine.
|
2013-03-05 22:09:50 +00:00
|
|
|
*/
|
2013-09-07 08:57:58 +00:00
|
|
|
class ContactPoint {
|
2012-09-18 20:09:49 +00:00
|
|
|
|
2013-09-07 08:57:58 +00:00
|
|
|
private :
|
2012-10-09 20:21:02 +00:00
|
|
|
|
|
|
|
// -------------------- Attributes -------------------- //
|
|
|
|
|
2016-01-05 17:39:22 +00:00
|
|
|
/// Normalized normal vector of the contact (from body1 toward body2) in world space
|
2017-02-26 11:48:50 +00:00
|
|
|
Vector3 mNormal;
|
2012-10-09 20:21:02 +00:00
|
|
|
|
2013-03-05 22:09:50 +00:00
|
|
|
/// Penetration depth
|
2012-10-09 20:21:02 +00:00
|
|
|
decimal mPenetrationDepth;
|
|
|
|
|
2013-03-05 22:09:50 +00:00
|
|
|
/// Contact point on body 1 in local space of body 1
|
2017-02-26 11:48:50 +00:00
|
|
|
Vector3 mLocalPointOnBody1;
|
2012-10-09 20:21:02 +00:00
|
|
|
|
2013-03-05 22:09:50 +00:00
|
|
|
/// Contact point on body 2 in local space of body 2
|
2017-02-26 11:48:50 +00:00
|
|
|
Vector3 mLocalPointOnBody2;
|
2012-10-09 20:21:02 +00:00
|
|
|
|
2013-03-05 22:09:50 +00:00
|
|
|
/// Contact point on body 1 in world space
|
2012-10-09 20:21:02 +00:00
|
|
|
Vector3 mWorldPointOnBody1;
|
|
|
|
|
2013-03-05 22:09:50 +00:00
|
|
|
/// Contact point on body 2 in world space
|
2012-10-09 20:21:02 +00:00
|
|
|
Vector3 mWorldPointOnBody2;
|
|
|
|
|
2013-03-05 22:09:50 +00:00
|
|
|
/// True if the contact is a resting contact (exists for more than one time step)
|
2013-01-27 09:38:41 +00:00
|
|
|
bool mIsRestingContact;
|
|
|
|
|
2013-04-22 21:32:52 +00:00
|
|
|
/// Cached penetration impulse
|
|
|
|
decimal mPenetrationImpulse;
|
|
|
|
|
2010-09-09 22:06:57 +00:00
|
|
|
public :
|
2012-10-09 20:21:02 +00:00
|
|
|
|
|
|
|
// -------------------- Methods -------------------- //
|
|
|
|
|
2013-03-05 22:09:50 +00:00
|
|
|
/// Constructor
|
2017-02-26 11:48:50 +00:00
|
|
|
ContactPoint(const ContactPointInfo* contactInfo, const Transform& body1Transform,
|
|
|
|
const Transform& body2Transform);
|
2012-10-09 20:21:02 +00:00
|
|
|
|
2013-03-05 22:09:50 +00:00
|
|
|
/// Destructor
|
2016-07-19 04:52:18 +00:00
|
|
|
~ContactPoint() = default;
|
2013-09-07 08:57:58 +00:00
|
|
|
|
2016-07-08 05:25:37 +00:00
|
|
|
/// Deleted copy-constructor
|
|
|
|
ContactPoint(const ContactPoint& contact) = delete;
|
|
|
|
|
|
|
|
/// Deleted assignment operator
|
|
|
|
ContactPoint& operator=(const ContactPoint& contact) = delete;
|
|
|
|
|
2017-02-26 11:48:50 +00:00
|
|
|
/// Update the contact point with a new one that is similar (very close)
|
|
|
|
void update(const ContactPointInfo* contactInfo, const Transform& body1Transform,
|
|
|
|
const Transform& body2Transform);
|
2016-11-05 18:20:54 +00:00
|
|
|
|
2013-03-05 22:09:50 +00:00
|
|
|
/// Return the normal vector of the contact
|
2012-10-09 20:21:02 +00:00
|
|
|
Vector3 getNormal() const;
|
|
|
|
|
2013-03-05 22:09:50 +00:00
|
|
|
/// Return the contact local point on body 1
|
2012-10-09 20:21:02 +00:00
|
|
|
Vector3 getLocalPointOnBody1() const;
|
|
|
|
|
2013-03-05 22:09:50 +00:00
|
|
|
/// Return the contact local point on body 2
|
2012-10-09 20:21:02 +00:00
|
|
|
Vector3 getLocalPointOnBody2() const;
|
|
|
|
|
2013-03-05 22:09:50 +00:00
|
|
|
/// Return the contact world point on body 1
|
2012-10-09 20:21:02 +00:00
|
|
|
Vector3 getWorldPointOnBody1() const;
|
|
|
|
|
2013-03-05 22:09:50 +00:00
|
|
|
/// Return the contact world point on body 2
|
2012-10-09 20:21:02 +00:00
|
|
|
Vector3 getWorldPointOnBody2() const;
|
|
|
|
|
2013-04-22 21:32:52 +00:00
|
|
|
/// Return the cached penetration impulse
|
|
|
|
decimal getPenetrationImpulse() const;
|
|
|
|
|
2017-02-26 11:48:50 +00:00
|
|
|
/// Return true if the contact point is similar (close enougth) to another given contact point
|
|
|
|
bool isSimilarWithContactPoint(const ContactPointInfo* contactPoint) const;
|
|
|
|
|
2013-04-22 21:32:52 +00:00
|
|
|
/// Set the cached penetration impulse
|
|
|
|
void setPenetrationImpulse(decimal impulse);
|
|
|
|
|
2013-03-05 22:09:50 +00:00
|
|
|
/// Return true if the contact is a resting contact
|
2013-01-27 09:38:41 +00:00
|
|
|
bool getIsRestingContact() const;
|
|
|
|
|
2013-03-05 22:09:50 +00:00
|
|
|
/// Set the mIsRestingContact variable
|
2013-01-27 09:38:41 +00:00
|
|
|
void setIsRestingContact(bool isRestingContact);
|
|
|
|
|
2013-03-05 22:09:50 +00:00
|
|
|
/// Return the penetration depth
|
2012-10-09 20:21:02 +00:00
|
|
|
decimal getPenetrationDepth() const;
|
|
|
|
|
2013-04-24 17:24:28 +00:00
|
|
|
/// Return the number of bytes used by the contact point
|
2013-09-07 08:57:58 +00:00
|
|
|
size_t getSizeInBytes() const;
|
|
|
|
};
|
2013-05-12 10:43:07 +00:00
|
|
|
|
2010-09-09 22:06:57 +00:00
|
|
|
// Return the normal vector of the contact
|
2013-02-26 21:43:45 +00:00
|
|
|
inline Vector3 ContactPoint::getNormal() const {
|
2012-10-09 20:21:02 +00:00
|
|
|
return mNormal;
|
2010-09-09 22:06:57 +00:00
|
|
|
}
|
|
|
|
|
2011-08-10 16:49:38 +00:00
|
|
|
// Return the contact point on body 1
|
2013-02-26 21:43:45 +00:00
|
|
|
inline Vector3 ContactPoint::getLocalPointOnBody1() const {
|
2012-10-09 20:21:02 +00:00
|
|
|
return mLocalPointOnBody1;
|
2010-09-11 16:25:43 +00:00
|
|
|
}
|
|
|
|
|
2011-08-10 16:49:38 +00:00
|
|
|
// Return the contact point on body 2
|
2013-02-26 21:43:45 +00:00
|
|
|
inline Vector3 ContactPoint::getLocalPointOnBody2() const {
|
2012-10-09 20:21:02 +00:00
|
|
|
return mLocalPointOnBody2;
|
2011-09-03 11:58:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Return the contact world point on body 1
|
2013-02-26 21:43:45 +00:00
|
|
|
inline Vector3 ContactPoint::getWorldPointOnBody1() const {
|
2012-10-09 20:21:02 +00:00
|
|
|
return mWorldPointOnBody1;
|
2011-09-03 11:58:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Return the contact world point on body 2
|
2013-02-26 21:43:45 +00:00
|
|
|
inline Vector3 ContactPoint::getWorldPointOnBody2() const {
|
2012-10-09 20:21:02 +00:00
|
|
|
return mWorldPointOnBody2;
|
2011-09-03 11:58:42 +00:00
|
|
|
}
|
|
|
|
|
2013-04-22 21:32:52 +00:00
|
|
|
// Return the cached penetration impulse
|
|
|
|
inline decimal ContactPoint::getPenetrationImpulse() const {
|
|
|
|
return mPenetrationImpulse;
|
|
|
|
}
|
|
|
|
|
2017-02-26 11:48:50 +00:00
|
|
|
// Return true if the contact point is similar (close enougth) to another given contact point
|
|
|
|
inline bool ContactPoint::isSimilarWithContactPoint(const ContactPointInfo* localContactPointBody1) const {
|
|
|
|
return (localContactPointBody1->localPoint1 - mLocalPointOnBody1).lengthSquare() <= (PERSISTENT_CONTACT_DIST_THRESHOLD *
|
|
|
|
PERSISTENT_CONTACT_DIST_THRESHOLD);
|
|
|
|
}
|
|
|
|
|
2013-04-22 21:32:52 +00:00
|
|
|
// Set the cached penetration impulse
|
|
|
|
inline void ContactPoint::setPenetrationImpulse(decimal impulse) {
|
|
|
|
mPenetrationImpulse = impulse;
|
|
|
|
}
|
|
|
|
|
2013-01-27 09:38:41 +00:00
|
|
|
// Return true if the contact is a resting contact
|
2013-02-26 21:43:45 +00:00
|
|
|
inline bool ContactPoint::getIsRestingContact() const {
|
2013-01-27 09:38:41 +00:00
|
|
|
return mIsRestingContact;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the mIsRestingContact variable
|
2013-02-26 21:43:45 +00:00
|
|
|
inline void ContactPoint::setIsRestingContact(bool isRestingContact) {
|
2013-01-27 09:38:41 +00:00
|
|
|
mIsRestingContact = isRestingContact;
|
|
|
|
}
|
|
|
|
|
2010-09-09 22:06:57 +00:00
|
|
|
// Return the penetration depth of the contact
|
2013-02-26 21:43:45 +00:00
|
|
|
inline decimal ContactPoint::getPenetrationDepth() const {
|
2012-10-09 20:21:02 +00:00
|
|
|
return mPenetrationDepth;
|
2010-09-09 22:06:57 +00:00
|
|
|
}
|
|
|
|
|
2013-04-24 17:24:28 +00:00
|
|
|
// Return the number of bytes used by the contact point
|
|
|
|
inline size_t ContactPoint::getSizeInBytes() const {
|
|
|
|
return sizeof(ContactPoint);
|
|
|
|
}
|
2011-10-18 22:03:05 +00:00
|
|
|
|
2013-02-19 22:16:20 +00:00
|
|
|
}
|
2010-09-09 22:06:57 +00:00
|
|
|
|
|
|
|
#endif
|