summaryrefslogtreecommitdiffstats
path: root/modules/navigation
diff options
context:
space:
mode:
authorsmix8 <52464204+smix8@users.noreply.github.com>2024-06-22 21:55:48 +0200
committersmix8 <52464204+smix8@users.noreply.github.com>2024-06-22 21:55:48 +0200
commit40fc299aa331955e0bf25d26b1e08ae8731c638e (patch)
tree5f35156ed3322768923081bf24f0b5de016fec2b /modules/navigation
parent04bf7d4cade645a5923cc80d87ac1c6109e2cdfe (diff)
downloadredot-engine-40fc299aa331955e0bf25d26b1e08ae8731c638e.tar.gz
Remove unused navigation polygon properties
Removes unused navigation polygon properties, a leftover from the old Godot 3 days that used polygon center to polygon center distance for (rather inaccurate) pathfinding cost calculation.
Diffstat (limited to 'modules/navigation')
-rw-r--r--modules/navigation/nav_map.cpp7
-rw-r--r--modules/navigation/nav_region.cpp17
-rw-r--r--modules/navigation/nav_utils.h6
3 files changed, 0 insertions, 30 deletions
diff --git a/modules/navigation/nav_map.cpp b/modules/navigation/nav_map.cpp
index f0184a155b..8a7da64eb5 100644
--- a/modules/navigation/nav_map.cpp
+++ b/modules/navigation/nav_map.cpp
@@ -1127,13 +1127,6 @@ void NavMap::sync() {
new_polygon.points.push_back({ closest_end_point, get_point_key(closest_end_point) });
new_polygon.points.push_back({ closest_end_point, get_point_key(closest_end_point) });
- Vector3 center;
- for (int p = 0; p < 4; ++p) {
- center += new_polygon.points[p].pos;
- }
- new_polygon.center = center / real_t(new_polygon.points.size());
- new_polygon.clockwise = true;
-
// Setup connections to go forward in the link.
{
gd::Edge::Connection entry_connection;
diff --git a/modules/navigation/nav_region.cpp b/modules/navigation/nav_region.cpp
index c91071a3ab..f30855d697 100644
--- a/modules/navigation/nav_region.cpp
+++ b/modules/navigation/nav_region.cpp
@@ -277,9 +277,6 @@ void NavRegion::update_polygons() {
polygon.surface_area = _new_polygon_surface_area;
_new_region_surface_area += _new_polygon_surface_area;
- Vector3 polygon_center;
- real_t sum(0);
-
for (int j(0); j < navigation_mesh_polygon_size; j++) {
int idx = indices[j];
if (idx < 0 || idx >= len) {
@@ -290,25 +287,11 @@ void NavRegion::update_polygons() {
Vector3 point_position = transform.xform(vertices_r[idx]);
polygon.points[j].pos = point_position;
polygon.points[j].key = map->get_point_key(point_position);
-
- polygon_center += point_position; // Composing the center of the polygon
-
- if (j >= 2) {
- Vector3 epa = transform.xform(vertices_r[indices[j - 2]]);
- Vector3 epb = transform.xform(vertices_r[indices[j - 1]]);
-
- sum += map->get_up().dot((epb - epa).cross(point_position - epa));
- }
}
if (!valid) {
ERR_BREAK_MSG(!valid, "The navigation mesh set in this region is not valid!");
}
-
- polygon.clockwise = sum > 0;
- if (!navigation_mesh_polygon.is_empty()) {
- polygon.center = polygon_center / real_t(navigation_mesh_polygon.size());
- }
}
surface_area = _new_region_surface_area;
diff --git a/modules/navigation/nav_utils.h b/modules/navigation/nav_utils.h
index 175d08ca6d..c3939e9979 100644
--- a/modules/navigation/nav_utils.h
+++ b/modules/navigation/nav_utils.h
@@ -104,15 +104,9 @@ struct Polygon {
/// The points of this `Polygon`
LocalVector<Point> points;
- /// Are the points clockwise?
- bool clockwise;
-
/// The edges of this `Polygon`
LocalVector<Edge> edges;
- /// The center of this `Polygon`
- Vector3 center;
-
real_t surface_area = 0.0;
};