Fixed going through flat large triangles. Velocity affected by collision.

This commit is contained in:
William Moberg
2016-02-01 13:34:39 +01:00
parent 90f05442aa
commit 76274c326e
6 changed files with 267 additions and 112 deletions
+1 -1
View File
@@ -66,7 +66,7 @@ bool AABBvsTriangles(const AABB& box,
const std::vector<RawModel::Vertex>& modelVertices, const std::vector<RawModel::Vertex>& modelVertices,
const std::vector<unsigned int>& modelIndices, const std::vector<unsigned int>& modelIndices,
const glm::mat4& modelMatrix, const glm::mat4& modelMatrix,
const glm::vec3& boxVelocity, glm::vec3& boxVelocity,
glm::vec3& outResolutionVector); glm::vec3& outResolutionVector);
//Return true if the boxes are intersecting. //Return true if the boxes are intersecting.
@@ -0,0 +1,164 @@
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<Entity xmlns:c="components" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../Types/Entity.xsd">
<Components>
<c:Transform/>
</Components>
<Children>
<Entity>
<Components>
<c:AABB/>
<c:Collidable/>
<c:Model>
<Resource>../assets/Models/Test/ObstacleCourse.mesh</Resource>
</c:Model>
<c:Transform>
<Position X="0" Y="0" Z="0.00638055196"/>
</c:Transform>
</Components>
<Children/>
</Entity>
<Entity>
<Components>
<c:DirectionalLight>
<Intensity>0.46000027656555176</Intensity>
</c:DirectionalLight>
<c:Transform>
<Orientation X="0" Y="2.59000015" Z="0.799000025"/>
</c:Transform>
</Components>
<Children/>
</Entity>
<Entity>
<Components>
<c:AABB/>
<c:Collidable/>
<c:Model>
<Resource>../assets/Models/Core/UnitCube.mesh</Resource>
</c:Model>
<c:Transform>
<Position X="-1.52309108" Y="5.72108126" Z="0"/>
<Scale X="5" Y="5" Z="5"/>
</c:Transform>
</Components>
<Children/>
</Entity>
<Entity name="BluSpawn">
<Components>
<c:PlayerSpawn/>
<c:Model>
<Resource>Models/Core/UnitCube.mesh</Resource>
<Visible>false</Visible>
</c:Model>
<c:Spawner>
<EntityFile>Schema/Entities/Player.xml</EntityFile>
</c:Spawner>
<c:Team>
<Team>
<Blue/>
</Team>
</c:Team>
<c:Transform>
<Position X="1" Y="1.60000002" Z="1"/>
</c:Transform>
</Components>
<Children>
<Entity>
<Components>
<c:SpawnPoint/>
<c:Transform/>
</Components>
<Children/>
</Entity>
<Entity>
<Components>
<c:SpawnPoint/>
<c:Transform>
<Position X="-2.05988312" Y="0" Z="2.79573512"/>
</c:Transform>
</Components>
<Children/>
</Entity>
<Entity>
<Components>
<c:Transform>
<Position X="1.85022807" Y="0" Z="-2.08909845"/>
</c:Transform>
</Components>
<Children/>
</Entity>
<Entity>
<Components>
<c:Transform>
<Position X="2.98651481" Y="0" Z="-4.67667246"/>
</c:Transform>
</Components>
<Children/>
</Entity>
<Entity>
<Components>
<c:Transform>
<Position X="-5.16323137" Y="0" Z="3.62892342"/>
</c:Transform>
</Components>
<Children/>
</Entity>
</Children>
</Entity>
<Entity name="RedSpawn">
<Components>
<c:PlayerSpawn/>
<c:Model>
<Resource>Models/Core/UnitCube.mesh</Resource>
<Visible>false</Visible>
</c:Model>
<c:Spawner>
<EntityFile>Schema/Entities/Player.xml</EntityFile>
</c:Spawner>
<c:Team>
<Team>
<Red/>
</Team>
</c:Team>
<c:Transform>
<Position X="-1.20000005" Y="1.60000002" Z="-8.40000057"/>
</c:Transform>
</Components>
<Children>
<Entity>
<Components>
<c:SpawnPoint/>
<c:Transform/>
</Components>
<Children/>
</Entity>
<Entity>
<Components>
<c:Transform>
<Position X="0" Y="0" Z="2.24403"/>
</c:Transform>
</Components>
<Children/>
</Entity>
<Entity>
<Components>
<c:Transform>
<Position X="2.20245028" Y="0" Z="-1.97843659"/>
</c:Transform>
</Components>
<Children/>
</Entity>
<Entity>
<Components>
<c:Transform>
<Position X="4.79769945" Y="0" Z="-5.2088728"/>
</c:Transform>
</Components>
<Children/>
</Entity>
</Children>
</Entity>
</Children>
</Entity>
+1
View File
@@ -8,6 +8,7 @@
<Children> <Children>
<Entity name="Scenemesh"> <Entity name="Scenemesh">
<Components> <Components>
<c:Collidable/>
<c:Model> <c:Model>
<Resource>Models\MapVersion1.mesh</Resource> <Resource>Models\MapVersion1.mesh</Resource>
</c:Model> </c:Model>
@@ -4,7 +4,7 @@
<Components> <Components>
<c:Collidable/> <c:Collidable/>
<c:Model> <c:Model>
<Resource>../assets\Models/MapVersion1.obj</Resource> <Resource>../assets/Models/MapVersion1.mesh</Resource>
</c:Model> </c:Model>
<c:Transform/> <c:Transform/>
</Components> </Components>
@@ -15,7 +15,7 @@
<c:AABB/> <c:AABB/>
<c:Collidable/> <c:Collidable/>
<c:Model> <c:Model>
<Resource>../assets/Models/Core/UnitCube.obj</Resource> <Resource>../assets/Models/Core/UnitCube.mesh</Resource>
</c:Model> </c:Model>
<c:Physics> <c:Physics>
<Gravity>false</Gravity> <Gravity>false</Gravity>
+96 -107
View File
@@ -253,8 +253,10 @@ bool rectangleVsTriangle(const glm::vec2& boxMin,
const glm::vec2& boxMax, const glm::vec2& boxMax,
const std::array<glm::vec2, 3>& triPos, const std::array<glm::vec2, 3>& triPos,
glm::vec2& resolutionDirection, glm::vec2& resolutionDirection,
float& resolutionDistance) float& resolutionDistance,
bool& pushedFromTriNormal)
{ {
pushedFromTriNormal = false;
resolutionDistance = INFINITY; resolutionDistance = INFINITY;
//Project along box normals (coordinate axes, since it's axis-aligned). //Project along box normals (coordinate axes, since it's axis-aligned).
for (int ax = 0; ax < 2; ++ax) { for (int ax = 0; ax < 2; ++ax) {
@@ -264,14 +266,20 @@ bool rectangleVsTriangle(const glm::vec2& boxMin,
minTri = std::min(t[ax], minTri); minTri = std::min(t[ax], minTri);
maxTri = std::max(t[ax], maxTri); maxTri = std::max(t[ax], maxTri);
} }
if (minTri > boxMax[ax] || maxTri < boxMin[ax]) { if (boxMax[ax] <= minTri || maxTri <= boxMin[ax]) {
return false; return false;
} }
float push = std::min(maxTri - boxMin[ax], boxMax[ax] - minTri);
if (push < resolutionDistance) { //Here: maxBox > minTri && minBox < maxTri
resolutionDistance = push; //Left is negative.
float leftRes = minTri - boxMax[ax];
float rightRes = maxTri - boxMin[ax];
float push = rightRes < -leftRes ? rightRes : leftRes;
float absPush = abs(push);
if (absPush < resolutionDistance) {
resolutionDistance = absPush;
resolutionDirection[1 - ax] = 0.f; resolutionDirection[1 - ax] = 0.f;
resolutionDirection[ax] = resolutionDistance; resolutionDirection[ax] = push;
} }
} }
//Project along triangle normals. //Project along triangle normals.
@@ -292,7 +300,7 @@ bool rectangleVsTriangle(const glm::vec2& boxMin,
continue; continue;
} }
//Rotate edge to a normal. //Rotate edge to a normal.
normal = glm::vec2(-normal.y, normal.x); normal = glm::normalize(glm::vec2(-normal.y, normal.x));
//Project triangle onto the normal. //Project triangle onto the normal.
float minTri = INFINITY; float minTri = INFINITY;
float maxTri = -INFINITY; float maxTri = -INFINITY;
@@ -309,14 +317,20 @@ bool rectangleVsTriangle(const glm::vec2& boxMin,
minBox = std::min(dot, minBox); minBox = std::min(dot, minBox);
maxBox = std::max(dot, maxBox); maxBox = std::max(dot, maxBox);
} }
if (maxBox < minTri || minBox > maxTri) { if (maxBox <= minTri || maxTri <= minBox) {
return false; return false;
} }
//Here: maxBox > minTri && minBox < maxTri //Here: maxBox > minTri && minBox < maxTri
float push = std::min(maxTri - minBox, maxBox - minTri); //Left is negative.
if (push < resolutionDistance) { float leftRes = minTri - maxBox;
resolutionDistance = push; float rightRes = maxTri - minBox;
resolutionDirection = resolutionDistance * glm::normalize(normal); float push = rightRes < -leftRes ? rightRes : leftRes;
float absPush = abs(push);
if (absPush < resolutionDistance) {
resolutionDistance = absPush;
resolutionDirection = push * normal;
pushedFromTriNormal = true;
} }
} }
return true; return true;
@@ -326,18 +340,26 @@ bool rectangleVsTriangle(const glm::vec2& boxMin,
constexpr std::array<std::pair<int, int>, 3> dimensionPairs({ std::pair<int, int>(0, 2), std::pair<int, int>(0, 1), std::pair<int, int>(1, 2) }); constexpr std::array<std::pair<int, int>, 3> dimensionPairs({ std::pair<int, int>(0, 2), std::pair<int, int>(0, 1), std::pair<int, int>(1, 2) });
bool AABBvsTriangle(const AABB& box, bool AABBvsTriangle(const AABB& box,
const std::array<glm::vec3, 3>& triPos, const std::array<glm::vec3, 3>& triPos,
const glm::vec3& boxVelocity, const glm::vec3& wantDirection,
glm::vec3& boxVelocity,
glm::vec3& outVector) glm::vec3& outVector)
{ {
//Check so we don't have a zero area triangle when calculating the normal. //Check so we don't have a zero area triangle when calculating the normal.
//Also, don't check a triangle facing away from the player. //Also, don't check a triangle facing away from the player.
//Less checks, and we should be able to walk out from models if we are trapped inside. //Less checks, and we should be able to walk out from models if we are trapped inside.
glm::vec3 triNormal = glm::cross(triPos[1] - triPos[0], triPos[2] - triPos[0]); glm::vec3 triNormal = glm::cross(triPos[1] - triPos[0], triPos[2] - triPos[0]);
if (!vectorHasLength(triNormal) || glm::dot(triNormal, boxVelocity) > 0) { if (!vectorHasLength(triNormal) || (glm::dot(triNormal, boxVelocity) > 0) && vectorHasLength(boxVelocity)) {
return false; return false;
} }
enum BoxTriResolveCase
{
Vertex,
Line,
Corner
} resolveCase;
const glm::vec3& origin = box.Origin(); const glm::vec3& origin = box.Origin();
const glm::vec3& half = box.HalfSize(); const glm::vec3& half = box.HalfSize();
const glm::vec3& min = box.MinCorner(); const glm::vec3& min = box.MinCorner();
@@ -358,14 +380,16 @@ bool AABBvsTriangle(const AABB& box,
glm::vec2 boxMax(max[dim.first], max[dim.second]); glm::vec2 boxMax(max[dim.first], max[dim.second]);
glm::vec2 resolutionVector; glm::vec2 resolutionVector;
float resolutionDist; float resolutionDist;
bool pushedFromTriangleLine;
//if projections don't overlap, return false. //if projections don't overlap, return false.
if (!rectangleVsTriangle(boxMin, boxMax, t2D, resolutionVector, resolutionDist)) { if (!rectangleVsTriangle(boxMin, boxMax, t2D, resolutionVector, resolutionDist, pushedFromTriangleLine)) {
return false; return false;
} else if (resolutionDist < minimumTranslation) { } else if (resolutionDist < minimumTranslation) {
outVector = glm::vec3(0.f); outVector = glm::vec3(0.f);
outVector[dim.first] = resolutionVector.x; outVector[dim.first] = resolutionVector.x;
outVector[dim.second] = resolutionVector.y; outVector[dim.second] = resolutionVector.y;
minimumTranslation = resolutionDist; minimumTranslation = resolutionDist;
resolveCase = pushedFromTriangleLine ? Line : Vertex;
} }
} }
@@ -384,6 +408,56 @@ bool AABBvsTriangle(const AABB& box,
glm::vec3 cornerResolution = (1+t) * diagonal; glm::vec3 cornerResolution = (1+t) * diagonal;
if (glm::length(cornerResolution) < minimumTranslation) { if (glm::length(cornerResolution) < minimumTranslation) {
outVector = cornerResolution; outVector = cornerResolution;
resolveCase = Corner;
}
bool groundCollision = triNormal.y > 0.5f;
//ImGui::Text(groundCollision ? "Ground" : "Slope");
glm::vec3 projNorm;
switch (resolveCase) {
case Vertex:
{
int maxD = 0;
float maxResolution = 0.f;
for (int d = 0; d < 3; ++d) {
float resolve = glm::abs(outVector[d]);
if (resolve > maxResolution) {
maxResolution = resolve;
maxD = d;
}
}
boxVelocity[maxD] = 0.f;
return true;
}
case Line:
projNorm = glm::normalize(outVector);
break;
case Corner:
projNorm = triNormal;
break;
default:
break;
}
//Project the velocity onto the normal of the hit line/face.
//w = v - <v,n>*n, |n|==1.
boxVelocity = boxVelocity - glm::dot(boxVelocity, projNorm) * projNorm;
if (groundCollision) {
float len = glm::length2(boxVelocity);
if (len > 0.0001f) {
len = glm::sqrt(len);
boxVelocity = len * glm::normalize(wantDirection);
}
len = glm::length(outVector);
float ang = glm::half_pi<float>() - glm::acos(outVector.y / len);
if (len > 0.0000001f && ang > 0.0000001f) {
//ImGui::Text("ang=%f, len=%f, acos=%f, outY=%f", ang, len, glm::acos(outVector.y / len), outVector.y);
outVector.x = 0;
outVector.y = len / glm::sin(ang);
outVector.z = 0;
}
} }
return true; return true;
} }
@@ -392,15 +466,16 @@ bool AABBvsTriangles(const AABB& box,
const std::vector<RawModel::Vertex>& modelVertices, const std::vector<RawModel::Vertex>& modelVertices,
const std::vector<unsigned int>& modelIndices, const std::vector<unsigned int>& modelIndices,
const glm::mat4& modelMatrix, const glm::mat4& modelMatrix,
const glm::vec3& boxVelocity, glm::vec3& boxVelocity,
glm::vec3& outResolutionVector, glm::vec3& outResolutionVector)
int startIndex,
int recursiveDepth)
{ {
bool hit = false; bool hit = false;
AABB newBox = box; AABB newBox = box;
outResolutionVector = glm::vec3(0.f); outResolutionVector = glm::vec3(0.f);
glm::vec3 wantDirection(boxVelocity);
wantDirection.y = 0;
wantDirection = glm::normalize(wantDirection);
for (int i = 0; i < modelIndices.size(); ) { for (int i = 0; i < modelIndices.size(); ) {
std::array<glm::vec3, 3> triVertices = { std::array<glm::vec3, 3> triVertices = {
Transform::TransformPoint(modelVertices[modelIndices[i++]].Position, modelMatrix), Transform::TransformPoint(modelVertices[modelIndices[i++]].Position, modelMatrix),
@@ -408,101 +483,15 @@ bool AABBvsTriangles(const AABB& box,
Transform::TransformPoint(modelVertices[modelIndices[i++]].Position, modelMatrix) Transform::TransformPoint(modelVertices[modelIndices[i++]].Position, modelMatrix)
}; };
glm::vec3 outVec; glm::vec3 outVec;
if (AABBvsTriangle(newBox, triVertices, boxVelocity, outVec)) { if (AABBvsTriangle(newBox, triVertices, wantDirection, boxVelocity, outVec)) {
hit = true; hit = true;
outResolutionVector += outVec; outResolutionVector += outVec;
newBox = AABB::FromOriginSize(newBox.Origin() + outVec, newBox.Size()); newBox = AABB::FromOriginSize(newBox.Origin() + outVec, newBox.Size());
} }
} }
//outResolutionVector = glm::vec3(INFINITY);
//if (recursiveDepth > 2) {
// return true;
//}
//for (int i = startIndex; i < modelIndices.size(); ) {
// std::array<glm::vec3, 3> triVertices = {
// Transform::TransformPoint(modelVertices[modelIndices[i++]].Position, modelMatrix),
// Transform::TransformPoint(modelVertices[modelIndices[i++]].Position, modelMatrix),
// Transform::TransformPoint(modelVertices[modelIndices[i++]].Position, modelMatrix)
// };
// glm::vec3 outVec;
// if (AABBvsTriangle(box, triVertices, boxVelocity, outVec) && glm::length2(outVec) < glm::length2(outResolutionVector)) {
// hit = true;
// glm::vec3 potentialResolution = outVec;
// const AABB& resolvedBox = AABB::FromOriginSize(box.Origin() + potentialResolution, box.Size());
// if (AABBvsTriangles(resolvedBox, modelVertices, modelIndices, modelMatrix, boxVelocity, outVec, i, recursiveDepth+1)) {
// potentialResolution += outVec;
// if (glm::length2(potentialResolution) > glm::length2(outResolutionVector)) {
// continue;
// }
// }
// outResolutionVector = potentialResolution;
// }
//}
//outResolutionVector = glm::vec3(INFINITY);
//std::stack<AABB> testBoxes;
//std::stack<int> resolveIndices;
//std::stack<glm::vec3> resolveVectors;
//resolveVectors.push(glm::vec3(0.f));
//resolveIndices.push(0);
//testBoxes.push(box);
//do {
// int i = resolveIndices.top();
// resolveIndices.pop();
// while (i < modelIndices.size()) {
// std::array<glm::vec3, 3> triVertices = {
// Transform::TransformPoint(modelVertices[modelIndices[i++]].Position, modelMatrix),
// Transform::TransformPoint(modelVertices[modelIndices[i++]].Position, modelMatrix),
// Transform::TransformPoint(modelVertices[modelIndices[i++]].Position, modelMatrix)
// };
// glm::vec3 outVec;
// bool test = AABBvsTriangle(testBoxes.top(), triVertices, outVec);
// if (test) {
// hit = true;
// //emplace?
// resolveIndices.push(i);
// testBoxes.push(AABB::FromOriginSize(box.Origin() + outVec, box.Size()));
// resolveVectors.top() += outVec;
// }
// }
// testBoxes.pop();
// resolveVectors.push(glm::vec3(0.f));
//} while (!resolveIndices.empty());
//if (hit) {
// if (!resolveVectors.empty()) {
// while (!resolveVectors.empty()) {
// if (glm::length2(resolveVectors.top()) < glm::length2(outResolutionVector)) {
// outResolutionVector = resolveVectors.top();
// }
// resolveVectors.pop();
// }
// } else {
// //TODO: This won't happen.
// ImGui::Text("Collision, but not resolved.");
// }
// return true;
//}
return hit; return hit;
} }
bool AABBvsTriangles(const AABB& box,
const std::vector<RawModel::Vertex>& modelVertices,
const std::vector<unsigned int>& modelIndices,
const glm::mat4& modelMatrix,
const glm::vec3& boxVelocity,
glm::vec3& outResolutionVector)
{
return AABBvsTriangles(
box,
modelVertices,
modelIndices,
modelMatrix,
boxVelocity,
outResolutionVector,
0,
0
);
}
bool IsSameBoxProbably(const AABB& first, const AABB& second, const float epsilon) bool IsSameBoxProbably(const AABB& first, const AABB& second, const float epsilon)
{ {
+3 -2
View File
@@ -54,9 +54,10 @@ void CollisionSystem::UpdateComponent(EntityWrapper& entity, ComponentWrapper& c
glm::mat4 modelMatrix = glm::translate(absPosition) * glm::toMat4(absOrientation) * glm::scale(absScale); glm::mat4 modelMatrix = glm::translate(absPosition) * glm::toMat4(absOrientation) * glm::scale(absScale);
glm::vec3 resolutionVector; glm::vec3 resolutionVector;
if (Collision::AABBvsTriangles(boxA, model->m_Vertices, model->m_Indices, modelMatrix, (glm::vec3&)cPhysics["Velocity"], resolutionVector)) { glm::vec3 newVelocity = (glm::vec3)cPhysics["Velocity"];
if (Collision::AABBvsTriangles(boxA, model->m_Vertices, model->m_Indices, modelMatrix, newVelocity, resolutionVector)) {
(glm::vec3&)cTransform["Position"] += resolutionVector; (glm::vec3&)cTransform["Position"] += resolutionVector;
cPhysics["Velocity"] = glm::vec3(0, 0, 0); cPhysics["Velocity"] = newVelocity;
} }
} }
} }