2017-02-28 13:10:29 +01:00
|
|
|
/*************************************************************************/
|
2020-02-11 14:01:43 +01:00
|
|
|
/* nav_region.h */
|
2017-02-28 13:10:29 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/*************************************************************************/
|
2022-01-03 21:27:34 +01:00
|
|
|
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
|
2017-02-28 13:10:29 +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. */
|
|
|
|
/*************************************************************************/
|
|
|
|
|
2020-01-10 12:22:34 +01:00
|
|
|
#ifndef NAV_REGION_H
|
|
|
|
#define NAV_REGION_H
|
2017-02-28 13:10:29 +01:00
|
|
|
|
2021-03-08 09:47:18 +01:00
|
|
|
#include "scene/resources/navigation_mesh.h"
|
2018-05-30 15:59:42 +02:00
|
|
|
|
2021-03-08 09:47:18 +01:00
|
|
|
#include "nav_rid.h"
|
2020-01-10 12:22:34 +01:00
|
|
|
#include "nav_utils.h"
|
2019-05-23 08:37:58 +02:00
|
|
|
|
2022-01-04 20:26:22 +01:00
|
|
|
#include <vector>
|
2019-07-09 23:33:29 +02:00
|
|
|
|
2020-01-10 12:22:34 +01:00
|
|
|
class NavMap;
|
|
|
|
class NavRegion;
|
2019-07-09 23:33:29 +02:00
|
|
|
|
2020-01-10 12:22:34 +01:00
|
|
|
class NavRegion : public NavRid {
|
2020-05-12 17:01:17 +02:00
|
|
|
NavMap *map = nullptr;
|
2020-10-17 07:08:21 +02:00
|
|
|
Transform3D transform;
|
2020-01-10 12:22:34 +01:00
|
|
|
Ref<NavigationMesh> mesh;
|
2022-06-14 23:34:43 +02:00
|
|
|
uint32_t navigation_layers = 1;
|
2022-06-06 05:24:11 +02:00
|
|
|
float enter_cost = 0.0;
|
|
|
|
float travel_cost = 1.0;
|
2021-03-15 12:45:28 +01:00
|
|
|
Vector<gd::Edge::Connection> connections;
|
2019-07-09 23:33:29 +02:00
|
|
|
|
2020-05-12 17:01:17 +02:00
|
|
|
bool polygons_dirty = true;
|
2020-01-19 20:02:40 +01:00
|
|
|
|
2020-01-10 12:22:34 +01:00
|
|
|
/// Cache
|
2022-07-28 19:24:14 +02:00
|
|
|
LocalVector<gd::Polygon> polygons;
|
2018-05-30 15:59:42 +02:00
|
|
|
|
2020-01-10 12:22:34 +01:00
|
|
|
public:
|
2020-05-12 17:01:17 +02:00
|
|
|
NavRegion() {}
|
2020-01-10 12:22:34 +01:00
|
|
|
|
|
|
|
void scratch_polygons() {
|
|
|
|
polygons_dirty = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_map(NavMap *p_map);
|
|
|
|
NavMap *get_map() const {
|
|
|
|
return map;
|
|
|
|
}
|
|
|
|
|
2022-06-06 05:24:11 +02:00
|
|
|
void set_enter_cost(float p_enter_cost) { enter_cost = MAX(p_enter_cost, 0.0); }
|
|
|
|
float get_enter_cost() const { return enter_cost; }
|
|
|
|
|
|
|
|
void set_travel_cost(float p_travel_cost) { travel_cost = MAX(p_travel_cost, 0.0); }
|
|
|
|
float get_travel_cost() const { return travel_cost; }
|
|
|
|
|
2022-06-14 23:34:43 +02:00
|
|
|
void set_navigation_layers(uint32_t p_navigation_layers);
|
|
|
|
uint32_t get_navigation_layers() const;
|
2021-03-08 20:56:33 +01:00
|
|
|
|
2020-10-17 07:08:21 +02:00
|
|
|
void set_transform(Transform3D transform);
|
|
|
|
const Transform3D &get_transform() const {
|
2020-01-10 12:22:34 +01:00
|
|
|
return transform;
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_mesh(Ref<NavigationMesh> p_mesh);
|
|
|
|
const Ref<NavigationMesh> get_mesh() const {
|
|
|
|
return mesh;
|
|
|
|
}
|
|
|
|
|
2021-03-15 12:45:28 +01:00
|
|
|
Vector<gd::Edge::Connection> &get_connections() {
|
|
|
|
return connections;
|
|
|
|
}
|
|
|
|
int get_connections_count() const;
|
|
|
|
Vector3 get_connection_pathway_start(int p_connection_id) const;
|
|
|
|
Vector3 get_connection_pathway_end(int p_connection_id) const;
|
|
|
|
|
2022-07-28 19:24:14 +02:00
|
|
|
LocalVector<gd::Polygon> const &get_polygons() const {
|
2020-01-10 12:22:34 +01:00
|
|
|
return polygons;
|
2019-05-23 08:37:58 +02:00
|
|
|
}
|
2020-01-10 12:22:34 +01:00
|
|
|
|
|
|
|
bool sync();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void update_polygons();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // NAV_REGION_H
|