2016-06-18 12:46:12 +00:00
|
|
|
/**************************************************************************/
|
2020-03-27 07:44:44 +00:00
|
|
|
/* navigation_region_2d.h */
|
2016-06-18 12:46:12 +00:00
|
|
|
/**************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
|
|
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* */
|
|
|
|
/* 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. */
|
|
|
|
/**************************************************************************/
|
2018-01-04 23:50:27 +00:00
|
|
|
|
2020-03-27 07:44:44 +00:00
|
|
|
#ifndef NAVIGATION_REGION_2D_H
|
|
|
|
#define NAVIGATION_REGION_2D_H
|
2015-02-14 15:09:52 +00:00
|
|
|
|
2024-04-15 20:17:44 +00:00
|
|
|
#include "scene/resources/2d/navigation_polygon.h"
|
2015-02-14 15:09:52 +00:00
|
|
|
|
2020-02-28 07:05:04 +00:00
|
|
|
class NavigationRegion2D : public Node2D {
|
|
|
|
GDCLASS(NavigationRegion2D, Node2D);
|
2015-02-14 15:09:52 +00:00
|
|
|
|
2020-05-12 15:01:17 +00:00
|
|
|
bool enabled = true;
|
2023-03-31 23:49:43 +00:00
|
|
|
bool use_edge_connections = true;
|
|
|
|
|
2020-01-10 11:22:34 +00:00
|
|
|
RID region;
|
2023-05-17 14:24:09 +00:00
|
|
|
RID map_override;
|
2022-08-21 02:21:01 +00:00
|
|
|
uint32_t navigation_layers = 1;
|
2022-06-06 03:24:11 +00:00
|
|
|
real_t enter_cost = 0.0;
|
|
|
|
real_t travel_cost = 1.0;
|
2022-12-11 17:02:35 +00:00
|
|
|
Ref<NavigationPolygon> navigation_polygon;
|
2022-06-06 03:24:11 +00:00
|
|
|
|
2023-04-05 00:15:25 +00:00
|
|
|
Transform2D current_global_transform;
|
|
|
|
|
2022-12-11 17:02:35 +00:00
|
|
|
void _navigation_polygon_changed();
|
2023-05-17 17:50:01 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG_ENABLED
|
|
|
|
private:
|
2024-05-25 20:14:27 +00:00
|
|
|
RID debug_mesh_rid;
|
|
|
|
RID debug_instance_rid;
|
|
|
|
|
|
|
|
bool debug_mesh_dirty = true;
|
|
|
|
|
|
|
|
void _free_debug();
|
2023-05-17 17:50:01 +00:00
|
|
|
void _update_debug_mesh();
|
|
|
|
void _update_debug_edge_connections_mesh();
|
2024-02-23 10:22:29 +00:00
|
|
|
void _update_debug_baking_rect();
|
2023-05-17 17:50:01 +00:00
|
|
|
void _navigation_map_changed(RID p_map);
|
2024-02-10 01:47:00 +00:00
|
|
|
void _navigation_debug_changed();
|
2023-05-17 17:50:01 +00:00
|
|
|
#endif // DEBUG_ENABLED
|
2015-02-14 15:09:52 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void _notification(int p_what);
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2022-12-18 04:07:10 +00:00
|
|
|
#ifndef DISABLE_DEPRECATED
|
|
|
|
bool _set(const StringName &p_name, const Variant &p_value);
|
|
|
|
bool _get(const StringName &p_name, Variant &r_ret) const;
|
|
|
|
#endif // DISABLE_DEPRECATED
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
public:
|
2019-10-21 21:37:07 +00:00
|
|
|
#ifdef TOOLS_ENABLED
|
2020-07-10 10:34:39 +00:00
|
|
|
virtual Rect2 _edit_get_rect() const override;
|
|
|
|
virtual bool _edit_is_selected_on_click(const Point2 &p_point, double p_tolerance) const override;
|
2019-10-21 21:37:07 +00:00
|
|
|
#endif
|
2023-10-23 01:55:35 +00:00
|
|
|
RID get_rid() const;
|
2017-12-27 08:28:02 +00:00
|
|
|
|
2015-02-14 15:09:52 +00:00
|
|
|
void set_enabled(bool p_enabled);
|
|
|
|
bool is_enabled() const;
|
|
|
|
|
2023-05-17 14:24:09 +00:00
|
|
|
void set_navigation_map(RID p_navigation_map);
|
|
|
|
RID get_navigation_map() const;
|
|
|
|
|
2023-03-31 23:49:43 +00:00
|
|
|
void set_use_edge_connections(bool p_enabled);
|
|
|
|
bool get_use_edge_connections() const;
|
|
|
|
|
2022-06-14 21:34:43 +00:00
|
|
|
void set_navigation_layers(uint32_t p_navigation_layers);
|
|
|
|
uint32_t get_navigation_layers() const;
|
2021-03-08 19:56:33 +00:00
|
|
|
|
2022-06-19 11:23:13 +00:00
|
|
|
void set_navigation_layer_value(int p_layer_number, bool p_value);
|
|
|
|
bool get_navigation_layer_value(int p_layer_number) const;
|
|
|
|
|
2022-04-30 11:27:30 +00:00
|
|
|
RID get_region_rid() const;
|
|
|
|
|
2022-06-06 03:24:11 +00:00
|
|
|
void set_enter_cost(real_t p_enter_cost);
|
|
|
|
real_t get_enter_cost() const;
|
|
|
|
|
|
|
|
void set_travel_cost(real_t p_travel_cost);
|
|
|
|
real_t get_travel_cost() const;
|
|
|
|
|
2022-12-11 17:02:35 +00:00
|
|
|
void set_navigation_polygon(const Ref<NavigationPolygon> &p_navigation_polygon);
|
2015-02-14 15:09:52 +00:00
|
|
|
Ref<NavigationPolygon> get_navigation_polygon() const;
|
|
|
|
|
2024-02-17 18:03:21 +00:00
|
|
|
PackedStringArray get_configuration_warnings() const override;
|
2016-05-17 21:27:15 +00:00
|
|
|
|
2023-08-17 16:32:30 +00:00
|
|
|
void bake_navigation_polygon(bool p_on_thread);
|
|
|
|
void _bake_finished(Ref<NavigationPolygon> p_navigation_polygon);
|
2024-01-29 21:28:01 +00:00
|
|
|
bool is_baking() const;
|
2023-08-17 16:32:30 +00:00
|
|
|
|
2020-02-28 07:05:04 +00:00
|
|
|
NavigationRegion2D();
|
|
|
|
~NavigationRegion2D();
|
2023-01-10 06:14:16 +00:00
|
|
|
|
|
|
|
private:
|
2023-05-17 14:24:09 +00:00
|
|
|
void _region_enter_navigation_map();
|
|
|
|
void _region_exit_navigation_map();
|
|
|
|
void _region_update_transform();
|
2015-02-14 15:09:52 +00:00
|
|
|
};
|
|
|
|
|
2020-03-27 07:44:44 +00:00
|
|
|
#endif // NAVIGATION_REGION_2D_H
|