2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* collision_solver_sw.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
2017-01-01 22:01:57 +01:00
|
|
|
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
|
2017-04-08 00:11:42 +02:00
|
|
|
/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
|
2014-02-10 02:10:30 +01:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
|
|
|
#include "collision_solver_sw.h"
|
|
|
|
#include "collision_solver_sat.h"
|
|
|
|
|
|
|
|
#include "collision_solver_sat.h"
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "gjk_epa.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
#define collision_solver sat_calculate_penetration
|
|
|
|
//#define collision_solver gjk_epa_calculate_penetration
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool CollisionSolverSW::solve_static_plane(const ShapeSW *p_shape_A, const Transform &p_transform_A, const ShapeSW *p_shape_B, const Transform &p_transform_B, CallbackResult p_result_callback, void *p_userdata, bool p_swap_result) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
const PlaneShapeSW *plane = static_cast<const PlaneShapeSW *>(p_shape_A);
|
|
|
|
if (p_shape_B->get_type() == PhysicsServer::SHAPE_PLANE)
|
2014-02-10 02:10:30 +01:00
|
|
|
return false;
|
|
|
|
Plane p = p_transform_A.xform(plane->get_plane());
|
|
|
|
|
|
|
|
static const int max_supports = 16;
|
|
|
|
Vector3 supports[max_supports];
|
|
|
|
int support_count;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
p_shape_B->get_supports(p_transform_B.basis.xform_inv(-p.normal).normalized(), max_supports, supports, support_count);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool found = false;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int i = 0; i < support_count; i++) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
supports[i] = p_transform_B.xform(supports[i]);
|
|
|
|
if (p.distance_to(supports[i]) >= 0)
|
2014-02-10 02:10:30 +01:00
|
|
|
continue;
|
2017-03-05 16:44:50 +01:00
|
|
|
found = true;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
Vector3 support_A = p.project(supports[i]);
|
|
|
|
|
|
|
|
if (p_result_callback) {
|
|
|
|
if (p_swap_result)
|
2017-03-05 16:44:50 +01:00
|
|
|
p_result_callback(supports[i], support_A, p_userdata);
|
2014-02-10 02:10:30 +01:00
|
|
|
else
|
2017-03-05 16:44:50 +01:00
|
|
|
p_result_callback(support_A, supports[i], p_userdata);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return found;
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool CollisionSolverSW::solve_ray(const ShapeSW *p_shape_A, const Transform &p_transform_A, const ShapeSW *p_shape_B, const Transform &p_transform_B, CallbackResult p_result_callback, void *p_userdata, bool p_swap_result) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
const RayShapeSW *ray = static_cast<const RayShapeSW *>(p_shape_A);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
Vector3 from = p_transform_A.origin;
|
2017-03-05 16:44:50 +01:00
|
|
|
Vector3 to = from + p_transform_A.basis.get_axis(2) * ray->get_length();
|
|
|
|
Vector3 support_A = to;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
Transform ai = p_transform_B.affine_inverse();
|
|
|
|
|
|
|
|
from = ai.xform(from);
|
|
|
|
to = ai.xform(to);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Vector3 p, n;
|
|
|
|
if (!p_shape_B->intersect_segment(from, to, p, n))
|
2014-02-10 02:10:30 +01:00
|
|
|
return false;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Vector3 support_B = p_transform_B.xform(p);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
if (p_result_callback) {
|
|
|
|
if (p_swap_result)
|
2017-03-05 16:44:50 +01:00
|
|
|
p_result_callback(support_B, support_A, p_userdata);
|
2014-02-10 02:10:30 +01:00
|
|
|
else
|
2017-03-05 16:44:50 +01:00
|
|
|
p_result_callback(support_A, support_B, p_userdata);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct _ConcaveCollisionInfo {
|
|
|
|
|
|
|
|
const Transform *transform_A;
|
|
|
|
const ShapeSW *shape_A;
|
|
|
|
const Transform *transform_B;
|
|
|
|
CollisionSolverSW::CallbackResult result_callback;
|
|
|
|
void *userdata;
|
|
|
|
bool swap_result;
|
|
|
|
bool collided;
|
|
|
|
int aabb_tests;
|
|
|
|
int collisions;
|
2014-09-03 04:13:40 +02:00
|
|
|
bool tested;
|
2017-02-14 00:25:05 +01:00
|
|
|
real_t margin_A;
|
|
|
|
real_t margin_B;
|
2017-03-05 16:44:50 +01:00
|
|
|
Vector3 close_A, close_B;
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
void CollisionSolverSW::concave_callback(void *p_userdata, ShapeSW *p_convex) {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
_ConcaveCollisionInfo &cinfo = *(_ConcaveCollisionInfo *)(p_userdata);
|
2014-02-10 02:10:30 +01:00
|
|
|
cinfo.aabb_tests++;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool collided = collision_solver(cinfo.shape_A, *cinfo.transform_A, p_convex, *cinfo.transform_B, cinfo.result_callback, cinfo.userdata, cinfo.swap_result, NULL, cinfo.margin_A, cinfo.margin_B);
|
2014-02-10 02:10:30 +01:00
|
|
|
if (!collided)
|
|
|
|
return;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
cinfo.collided = true;
|
2014-02-10 02:10:30 +01:00
|
|
|
cinfo.collisions++;
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool CollisionSolverSW::solve_concave(const ShapeSW *p_shape_A, const Transform &p_transform_A, const ShapeSW *p_shape_B, const Transform &p_transform_B, CallbackResult p_result_callback, void *p_userdata, bool p_swap_result, real_t p_margin_A, real_t p_margin_B) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
const ConcaveShapeSW *concave_B = static_cast<const ConcaveShapeSW *>(p_shape_B);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
_ConcaveCollisionInfo cinfo;
|
2017-03-05 16:44:50 +01:00
|
|
|
cinfo.transform_A = &p_transform_A;
|
|
|
|
cinfo.shape_A = p_shape_A;
|
|
|
|
cinfo.transform_B = &p_transform_B;
|
|
|
|
cinfo.result_callback = p_result_callback;
|
|
|
|
cinfo.userdata = p_userdata;
|
|
|
|
cinfo.swap_result = p_swap_result;
|
|
|
|
cinfo.collided = false;
|
|
|
|
cinfo.collisions = 0;
|
|
|
|
cinfo.margin_A = p_margin_A;
|
|
|
|
cinfo.margin_B = p_margin_B;
|
|
|
|
|
|
|
|
cinfo.aabb_tests = 0;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
Transform rel_transform = p_transform_A;
|
2017-03-05 16:44:50 +01:00
|
|
|
rel_transform.origin -= p_transform_B.origin;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
//quickly compute a local AABB
|
|
|
|
|
2017-01-11 04:52:51 +01:00
|
|
|
Rect3 local_aabb;
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int i = 0; i < 3; i++) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Vector3 axis(p_transform_B.basis.get_axis(i));
|
|
|
|
real_t axis_scale = 1.0 / axis.length();
|
|
|
|
axis *= axis_scale;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
real_t smin, smax;
|
|
|
|
p_shape_A->project_range(axis, rel_transform, smin, smax);
|
|
|
|
smin -= p_margin_A;
|
|
|
|
smax += p_margin_A;
|
|
|
|
smin *= axis_scale;
|
|
|
|
smax *= axis_scale;
|
2014-09-03 04:13:40 +02:00
|
|
|
|
2017-06-06 20:33:51 +02:00
|
|
|
local_aabb.position[i] = smin;
|
2017-03-05 16:44:50 +01:00
|
|
|
local_aabb.size[i] = smax - smin;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
concave_B->cull(local_aabb, concave_callback, &cinfo);
|
2014-09-19 23:39:50 +02:00
|
|
|
//print_line("COL AABB TESTS: "+itos(cinfo.aabb_tests));
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
return cinfo.collided;
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool CollisionSolverSW::solve_static(const ShapeSW *p_shape_A, const Transform &p_transform_A, const ShapeSW *p_shape_B, const Transform &p_transform_B, CallbackResult p_result_callback, void *p_userdata, Vector3 *r_sep_axis, real_t p_margin_A, real_t p_margin_B) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
PhysicsServer::ShapeType type_A = p_shape_A->get_type();
|
|
|
|
PhysicsServer::ShapeType type_B = p_shape_B->get_type();
|
|
|
|
bool concave_A = p_shape_A->is_concave();
|
|
|
|
bool concave_B = p_shape_B->is_concave();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
bool swap = false;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (type_A > type_B) {
|
|
|
|
SWAP(type_A, type_B);
|
|
|
|
SWAP(concave_A, concave_B);
|
|
|
|
swap = true;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (type_A == PhysicsServer::SHAPE_PLANE) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (type_B == PhysicsServer::SHAPE_PLANE)
|
2014-02-10 02:10:30 +01:00
|
|
|
return false;
|
2017-03-05 16:44:50 +01:00
|
|
|
if (type_B == PhysicsServer::SHAPE_RAY) {
|
2014-02-10 02:10:30 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (swap) {
|
2017-03-05 16:44:50 +01:00
|
|
|
return solve_static_plane(p_shape_B, p_transform_B, p_shape_A, p_transform_A, p_result_callback, p_userdata, true);
|
2014-02-10 02:10:30 +01:00
|
|
|
} else {
|
2017-03-05 16:44:50 +01:00
|
|
|
return solve_static_plane(p_shape_A, p_transform_A, p_shape_B, p_transform_B, p_result_callback, p_userdata, false);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
} else if (type_A == PhysicsServer::SHAPE_RAY) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (type_B == PhysicsServer::SHAPE_RAY)
|
2014-02-10 02:10:30 +01:00
|
|
|
return false;
|
|
|
|
|
|
|
|
if (swap) {
|
2017-03-05 16:44:50 +01:00
|
|
|
return solve_ray(p_shape_B, p_transform_B, p_shape_A, p_transform_A, p_result_callback, p_userdata, true);
|
2014-02-10 02:10:30 +01:00
|
|
|
} else {
|
2017-03-05 16:44:50 +01:00
|
|
|
return solve_ray(p_shape_A, p_transform_A, p_shape_B, p_transform_B, p_result_callback, p_userdata, false);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} else if (concave_B) {
|
|
|
|
|
|
|
|
if (concave_A)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!swap)
|
2017-03-05 16:44:50 +01:00
|
|
|
return solve_concave(p_shape_A, p_transform_A, p_shape_B, p_transform_B, p_result_callback, p_userdata, false, p_margin_A, p_margin_B);
|
2014-02-10 02:10:30 +01:00
|
|
|
else
|
2017-03-05 16:44:50 +01:00
|
|
|
return solve_concave(p_shape_B, p_transform_B, p_shape_A, p_transform_A, p_result_callback, p_userdata, true, p_margin_A, p_margin_B);
|
2014-09-03 04:13:40 +02:00
|
|
|
|
|
|
|
} else {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
return collision_solver(p_shape_A, p_transform_A, p_shape_B, p_transform_B, p_result_callback, p_userdata, false, r_sep_axis, p_margin_A, p_margin_B);
|
2014-09-03 04:13:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CollisionSolverSW::concave_distance_callback(void *p_userdata, ShapeSW *p_convex) {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
_ConcaveCollisionInfo &cinfo = *(_ConcaveCollisionInfo *)(p_userdata);
|
2014-09-03 04:13:40 +02:00
|
|
|
cinfo.aabb_tests++;
|
|
|
|
if (cinfo.collided)
|
|
|
|
return;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Vector3 close_A, close_B;
|
|
|
|
cinfo.collided = !gjk_epa_calculate_distance(cinfo.shape_A, *cinfo.transform_A, p_convex, *cinfo.transform_B, close_A, close_B);
|
2014-09-03 04:13:40 +02:00
|
|
|
|
|
|
|
if (cinfo.collided)
|
|
|
|
return;
|
|
|
|
if (!cinfo.tested || close_A.distance_squared_to(close_B) < cinfo.close_A.distance_squared_to(cinfo.close_B)) {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
cinfo.close_A = close_A;
|
|
|
|
cinfo.close_B = close_B;
|
|
|
|
cinfo.tested = true;
|
2014-09-03 04:13:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
cinfo.collisions++;
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool CollisionSolverSW::solve_distance_plane(const ShapeSW *p_shape_A, const Transform &p_transform_A, const ShapeSW *p_shape_B, const Transform &p_transform_B, Vector3 &r_point_A, Vector3 &r_point_B) {
|
2014-09-03 04:13:40 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
const PlaneShapeSW *plane = static_cast<const PlaneShapeSW *>(p_shape_A);
|
|
|
|
if (p_shape_B->get_type() == PhysicsServer::SHAPE_PLANE)
|
2014-12-07 06:04:20 +01:00
|
|
|
return false;
|
|
|
|
Plane p = p_transform_A.xform(plane->get_plane());
|
|
|
|
|
|
|
|
static const int max_supports = 16;
|
|
|
|
Vector3 supports[max_supports];
|
|
|
|
int support_count;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
p_shape_B->get_supports(p_transform_B.basis.xform_inv(-p.normal).normalized(), max_supports, supports, support_count);
|
2014-12-07 06:04:20 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool collided = false;
|
2014-12-07 06:04:20 +01:00
|
|
|
Vector3 closest;
|
2017-02-14 00:25:05 +01:00
|
|
|
real_t closest_d;
|
2014-12-07 06:04:20 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int i = 0; i < support_count; i++) {
|
2014-12-07 06:04:20 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
supports[i] = p_transform_B.xform(supports[i]);
|
2014-12-07 06:04:20 +01:00
|
|
|
real_t d = p.distance_to(supports[i]);
|
2017-03-05 16:44:50 +01:00
|
|
|
if (i == 0 || d < closest_d) {
|
|
|
|
closest = supports[i];
|
|
|
|
closest_d = d;
|
|
|
|
if (d <= 0)
|
|
|
|
collided = true;
|
2014-12-07 06:04:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
r_point_A = p.project(closest);
|
|
|
|
r_point_B = closest;
|
2014-12-07 06:04:20 +01:00
|
|
|
|
|
|
|
return collided;
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool CollisionSolverSW::solve_distance(const ShapeSW *p_shape_A, const Transform &p_transform_A, const ShapeSW *p_shape_B, const Transform &p_transform_B, Vector3 &r_point_A, Vector3 &r_point_B, const Rect3 &p_concave_hint, Vector3 *r_sep_axis) {
|
2014-09-03 04:13:40 +02:00
|
|
|
|
|
|
|
if (p_shape_A->is_concave())
|
|
|
|
return false;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (p_shape_B->get_type() == PhysicsServer::SHAPE_PLANE) {
|
2014-09-03 04:13:40 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Vector3 a, b;
|
|
|
|
bool col = solve_distance_plane(p_shape_B, p_transform_B, p_shape_A, p_transform_A, a, b);
|
|
|
|
r_point_A = b;
|
|
|
|
r_point_B = a;
|
2014-12-07 06:04:20 +01:00
|
|
|
return !col;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2014-09-03 04:13:40 +02:00
|
|
|
} else if (p_shape_B->is_concave()) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2014-09-03 04:13:40 +02:00
|
|
|
if (p_shape_A->is_concave())
|
|
|
|
return false;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
const ConcaveShapeSW *concave_B = static_cast<const ConcaveShapeSW *>(p_shape_B);
|
2014-09-03 04:13:40 +02:00
|
|
|
|
|
|
|
_ConcaveCollisionInfo cinfo;
|
2017-03-05 16:44:50 +01:00
|
|
|
cinfo.transform_A = &p_transform_A;
|
|
|
|
cinfo.shape_A = p_shape_A;
|
|
|
|
cinfo.transform_B = &p_transform_B;
|
|
|
|
cinfo.result_callback = NULL;
|
|
|
|
cinfo.userdata = NULL;
|
|
|
|
cinfo.swap_result = false;
|
|
|
|
cinfo.collided = false;
|
|
|
|
cinfo.collisions = 0;
|
|
|
|
cinfo.aabb_tests = 0;
|
|
|
|
cinfo.tested = false;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2014-09-03 04:13:40 +02:00
|
|
|
Transform rel_transform = p_transform_A;
|
2017-03-05 16:44:50 +01:00
|
|
|
rel_transform.origin -= p_transform_B.origin;
|
2014-09-03 04:13:40 +02:00
|
|
|
|
|
|
|
//quickly compute a local AABB
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool use_cc_hint = p_concave_hint != Rect3();
|
2017-01-11 04:52:51 +01:00
|
|
|
Rect3 cc_hint_aabb;
|
2014-09-03 04:13:40 +02:00
|
|
|
if (use_cc_hint) {
|
2017-03-05 16:44:50 +01:00
|
|
|
cc_hint_aabb = p_concave_hint;
|
2017-06-06 20:33:51 +02:00
|
|
|
cc_hint_aabb.position -= p_transform_B.origin;
|
2014-09-03 04:13:40 +02:00
|
|
|
}
|
|
|
|
|
2017-01-11 04:52:51 +01:00
|
|
|
Rect3 local_aabb;
|
2017-03-05 16:44:50 +01:00
|
|
|
for (int i = 0; i < 3; i++) {
|
2014-09-03 04:13:40 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Vector3 axis(p_transform_B.basis.get_axis(i));
|
|
|
|
real_t axis_scale = ((real_t)1.0) / axis.length();
|
|
|
|
axis *= axis_scale;
|
2014-09-03 04:13:40 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
real_t smin, smax;
|
2014-09-03 04:13:40 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (use_cc_hint) {
|
|
|
|
cc_hint_aabb.project_range_in_plane(Plane(axis, 0), smin, smax);
|
|
|
|
} else {
|
|
|
|
p_shape_A->project_range(axis, rel_transform, smin, smax);
|
|
|
|
}
|
2014-09-03 04:13:40 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
smin *= axis_scale;
|
|
|
|
smax *= axis_scale;
|
2014-09-03 04:13:40 +02:00
|
|
|
|
2017-06-06 20:33:51 +02:00
|
|
|
local_aabb.position[i] = smin;
|
2017-03-05 16:44:50 +01:00
|
|
|
local_aabb.size[i] = smax - smin;
|
2014-09-03 04:13:40 +02:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
concave_B->cull(local_aabb, concave_distance_callback, &cinfo);
|
2014-09-03 04:13:40 +02:00
|
|
|
if (!cinfo.collided) {
|
2017-01-14 12:26:56 +01:00
|
|
|
//print_line(itos(cinfo.tested));
|
2017-03-05 16:44:50 +01:00
|
|
|
r_point_A = cinfo.close_A;
|
|
|
|
r_point_B = cinfo.close_B;
|
2014-09-03 04:13:40 +02:00
|
|
|
}
|
|
|
|
|
2014-09-19 23:39:50 +02:00
|
|
|
//print_line("DIST AABB TESTS: "+itos(cinfo.aabb_tests));
|
|
|
|
|
2014-09-03 04:13:40 +02:00
|
|
|
return !cinfo.collided;
|
2014-02-10 02:10:30 +01:00
|
|
|
} else {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
return gjk_epa_calculate_distance(p_shape_A, p_transform_A, p_shape_B, p_transform_B, r_point_A, r_point_B); //should pass sepaxis..
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|