Fix warnings on MSVC

This commit is contained in:
Daniel Chappuis 2021-11-02 17:09:09 +01:00
parent 97cb72502d
commit 39aa39e385
9 changed files with 23 additions and 24 deletions

View File

@ -34,7 +34,7 @@ namespace reactphysics3d {
// Class declarations
class ContactManifold;
class ContactManifoldInfo;
struct ContactManifoldInfo;
struct ContactPointInfo;
class CollisionBody;
class ContactPoint;

View File

@ -34,7 +34,7 @@
namespace reactphysics3d {
// Declarations
class ContactManifoldInfo;
struct ContactManifoldInfo;
struct NarrowPhaseInfoBatch;
class ConvexShape;
class Profiler;

View File

@ -33,7 +33,7 @@
namespace reactphysics3d {
class CollisionDetectionSystem;
class ContactManifoldInfo;
struct ContactManifoldInfo;
class DefaultPoolAllocator;
class OverlappingPair;
struct NarrowPhaseInfoBatch;

View File

@ -37,7 +37,7 @@ namespace reactphysics3d {
// Declarations
class CollisionShape;
struct LastFrameCollisionInfo;
class ContactManifoldInfo;
struct ContactManifoldInfo;
struct ContactPointInfo;
// Struct NarrowPhaseInfoBatch

View File

@ -36,7 +36,7 @@ namespace reactphysics3d {
// Declarations
class CapsuleShape;
class SphereShape;
class ContactManifoldInfo;
struct ContactManifoldInfo;
struct NarrowPhaseInfoBatch;
class ConvexPolyhedronShape;
class MemoryAllocator;

View File

@ -302,7 +302,7 @@ RP3D_FORCE_INLINE bool AABB::raycast(const Ray& ray, Vector3& hitPoint) const {
decimal tMin = decimal(0.0);
decimal tMax = DECIMAL_LARGEST;
const decimal epsilon = 0.00001;
const decimal epsilon = decimal(0.00001);
const Vector3 rayDirection = ray.point2 - ray.point1;

View File

@ -117,9 +117,6 @@ class HeightFieldShape : public ConcaveShape {
void getTriangleVerticesWithIndexPointer(int32 subPart, int32 triangleIndex,
Vector3* outTriangleVertices) const;
/// Return the closest inside integer grid value of a given floating grid value
int computeIntegerGridValue(decimal value) const;
/// Compute the min/max grid coords corresponding to the intersection of the AABB of the height field and the AABB to collide
void computeMinMaxGridCoordinates(int* minCoords, int* maxCoords, const AABB& aabbToCollide) const;
@ -200,18 +197,13 @@ RP3D_FORCE_INLINE decimal HeightFieldShape::getHeightAt(int x, int y) const {
assert(y >= 0 && y < mNbRows);
switch(mHeightDataType) {
case HeightDataType::HEIGHT_FLOAT_TYPE : return ((float*)mHeightFieldData)[y * mNbColumns + x];
case HeightDataType::HEIGHT_DOUBLE_TYPE : return ((double*)mHeightFieldData)[y * mNbColumns + x];
case HeightDataType::HEIGHT_INT_TYPE : return ((int*)mHeightFieldData)[y * mNbColumns + x] * mIntegerHeightScale;
case HeightDataType::HEIGHT_FLOAT_TYPE : return decimal(((float*)mHeightFieldData)[y * mNbColumns + x]);
case HeightDataType::HEIGHT_DOUBLE_TYPE : return decimal(((double*)mHeightFieldData)[y * mNbColumns + x]);
case HeightDataType::HEIGHT_INT_TYPE : return decimal(((int*)mHeightFieldData)[y * mNbColumns + x] * mIntegerHeightScale);
default: assert(false); return 0;
}
}
// Return the closest inside integer grid value of a given floating grid value
RP3D_FORCE_INLINE int HeightFieldShape::computeIntegerGridValue(decimal value) const {
return (value < decimal(0.0)) ? value - decimal(0.5) : value + decimal(0.5);
}
// Compute the shape Id for a given triangle
RP3D_FORCE_INLINE uint32 HeightFieldShape::computeTriangleShapeId(uint32 iIndex, uint32 jIndex, uint32 secondTriangleIncrement) const {

View File

@ -211,16 +211,23 @@ void HeightFieldShape::computeMinMaxGridCoordinates(int* minCoords, int* maxCoor
minPoint += translateVec;
maxPoint += translateVec;
assert(minPoint.x >= 0);
assert(minPoint.y >= 0);
assert(minPoint.z >= 0);
assert(maxPoint.x >= 0);
assert(maxPoint.y >= 0);
assert(maxPoint.z >= 0);
// Convert the floating min/max coords of the AABB into closest integer
// grid values (note that we use the closest grid coordinate that is out
// of the AABB)
minCoords[0] = computeIntegerGridValue(minPoint.x) - 1;
minCoords[1] = computeIntegerGridValue(minPoint.y) - 1;
minCoords[2] = computeIntegerGridValue(minPoint.z) - 1;
minCoords[0] = static_cast<int>(minPoint.x + 0.5) - 1;
minCoords[1] = static_cast<int>(minPoint.y + 0.5) - 1;
minCoords[2] = static_cast<int>(minPoint.z + 0.5) - 1;
maxCoords[0] = computeIntegerGridValue(maxPoint.x) + 1;
maxCoords[1] = computeIntegerGridValue(maxPoint.y) + 1;
maxCoords[2] = computeIntegerGridValue(maxPoint.z) + 1;
maxCoords[0] = static_cast<int>(maxPoint.x + 0.5) + 1;
maxCoords[1] = static_cast<int>(maxPoint.y + 0.5) + 1;
maxCoords[2] = static_cast<int>(maxPoint.z + 0.5) + 1;
}
// Raycast method with feedback information

View File

@ -450,7 +450,7 @@ void CollisionDetectionSystem::computeConvexVsConcaveMiddlePhase(OverlappingPair
assert(!concaveShape->isConvex());
assert(overlappingPair.narrowPhaseAlgorithmType != NarrowPhaseAlgorithmType::None);
// Compute the convex shape AABB in the local-space of the convex shape
// Compute the convex shape AABB in the local-space of the concave shape
AABB aabb;
convexShape->computeAABB(aabb, convexToConcaveTransform);