2014-02-09 22:10:30 -03:00
|
|
|
/**************************************************************************/
|
|
|
|
/* grid_map.cpp */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* 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-05 00:50:27 +01:00
|
|
|
|
2014-02-09 22:10:30 -03:00
|
|
|
#include "grid_map.h"
|
2017-02-15 08:29:46 -03:00
|
|
|
|
2018-09-11 18:13:45 +02:00
|
|
|
#include "core/io/marshalls.h"
|
2025-04-19 13:45:43 +02:00
|
|
|
#include "core/templates/a_hash_map.h"
|
2025-07-12 17:12:05 +03:00
|
|
|
#include "scene/resources/3d/mesh_library.h"
|
|
|
|
#include "scene/resources/3d/primitive_meshes.h"
|
|
|
|
#include "scene/resources/surface_tool.h"
|
|
|
|
#include "servers/rendering_server.h"
|
|
|
|
|
|
|
|
#ifndef PHYSICS_3D_DISABLED
|
|
|
|
#include "core/math/convex_hull.h"
|
2024-12-28 01:33:40 +01:00
|
|
|
#include "scene/resources/3d/box_shape_3d.h"
|
|
|
|
#include "scene/resources/3d/capsule_shape_3d.h"
|
|
|
|
#include "scene/resources/3d/concave_polygon_shape_3d.h"
|
|
|
|
#include "scene/resources/3d/convex_polygon_shape_3d.h"
|
|
|
|
#include "scene/resources/3d/cylinder_shape_3d.h"
|
|
|
|
#include "scene/resources/3d/height_map_shape_3d.h"
|
|
|
|
#include "scene/resources/3d/shape_3d.h"
|
|
|
|
#include "scene/resources/3d/sphere_shape_3d.h"
|
2021-12-17 01:47:17 +01:00
|
|
|
#include "scene/resources/physics_material.h"
|
2025-07-12 17:12:05 +03:00
|
|
|
#endif // PHYSICS_3D_DISABLED
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2025-03-30 13:20:04 -03:00
|
|
|
#ifndef NAVIGATION_3D_DISABLED
|
2025-07-12 17:12:05 +03:00
|
|
|
#include "scene/resources/3d/navigation_mesh_source_geometry_data_3d.h"
|
2025-03-30 13:20:04 -03:00
|
|
|
#include "servers/navigation_server_3d.h"
|
|
|
|
|
2024-12-28 01:33:40 +01:00
|
|
|
Callable GridMap::_navmesh_source_geometry_parsing_callback;
|
|
|
|
RID GridMap::_navmesh_source_geometry_parser;
|
2025-03-30 13:20:04 -03:00
|
|
|
#endif // NAVIGATION_3D_DISABLED
|
2024-12-28 01:33:40 +01:00
|
|
|
|
2014-02-09 22:10:30 -03:00
|
|
|
bool GridMap::_set(const StringName &p_name, const Variant &p_value) {
|
|
|
|
String name = p_name;
|
|
|
|
|
2018-01-12 00:35:12 +02:00
|
|
|
if (name == "data") {
|
2014-02-09 22:10:30 -03:00
|
|
|
Dictionary d = p_value;
|
|
|
|
|
|
|
|
if (d.has("cells")) {
|
2020-02-17 18:06:54 -03:00
|
|
|
Vector<int> cells = d["cells"];
|
2014-02-09 22:10:30 -03:00
|
|
|
int amount = cells.size();
|
2020-02-17 18:06:54 -03:00
|
|
|
const int *r = cells.ptr();
|
2014-02-09 22:10:30 -03:00
|
|
|
ERR_FAIL_COND_V(amount % 3, false); // not even
|
2017-01-14 18:03:38 +01:00
|
|
|
cell_map.clear();
|
2014-02-09 22:10:30 -03:00
|
|
|
for (int i = 0; i < amount / 3; i++) {
|
|
|
|
IndexKey ik;
|
|
|
|
ik.key = decode_uint64((const uint8_t *)&r[i * 3]);
|
|
|
|
Cell cell;
|
|
|
|
cell.cell = decode_uint32((const uint8_t *)&r[i * 3 + 2]);
|
|
|
|
cell_map[ik] = cell;
|
|
|
|
}
|
|
|
|
}
|
2018-09-27 11:24:41 +02:00
|
|
|
|
2014-02-09 22:10:30 -03:00
|
|
|
_recreate_octant_data();
|
2018-09-27 11:24:41 +02:00
|
|
|
|
2017-12-18 00:34:48 -03:00
|
|
|
} else if (name == "baked_meshes") {
|
|
|
|
clear_baked_meshes();
|
|
|
|
|
|
|
|
Array meshes = p_value;
|
|
|
|
|
2025-05-15 23:49:42 +02:00
|
|
|
RID scenario;
|
|
|
|
if (is_inside_tree()) {
|
|
|
|
scenario = get_world_3d()->get_scenario();
|
|
|
|
}
|
2025-04-19 13:05:40 +02:00
|
|
|
|
2017-12-18 00:34:48 -03:00
|
|
|
for (int i = 0; i < meshes.size(); i++) {
|
|
|
|
BakedMesh bm;
|
|
|
|
bm.mesh = meshes[i];
|
2024-08-25 14:15:10 +02:00
|
|
|
ERR_CONTINUE(bm.mesh.is_null());
|
2020-03-27 15:21:27 -03:00
|
|
|
bm.instance = RS::get_singleton()->instance_create();
|
2022-12-20 14:23:47 -05:00
|
|
|
RS::get_singleton()->instance_set_base(bm.instance, bm.mesh->get_rid());
|
2020-03-27 15:21:27 -03:00
|
|
|
RS::get_singleton()->instance_attach_object_instance_id(bm.instance, get_instance_id());
|
2017-12-18 00:34:48 -03:00
|
|
|
if (is_inside_tree()) {
|
2025-04-19 13:05:40 +02:00
|
|
|
RS::get_singleton()->instance_set_scenario(bm.instance, scenario);
|
2020-03-27 15:21:27 -03:00
|
|
|
RS::get_singleton()->instance_set_transform(bm.instance, get_global_transform());
|
2017-12-18 00:34:48 -03:00
|
|
|
}
|
|
|
|
baked_meshes.push_back(bm);
|
|
|
|
}
|
|
|
|
|
|
|
|
_recreate_octant_data();
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2018-09-27 11:24:41 +02:00
|
|
|
} else {
|
2014-02-09 22:10:30 -03:00
|
|
|
return false;
|
2018-09-27 11:24:41 +02:00
|
|
|
}
|
2014-02-09 22:10:30 -03:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GridMap::_get(const StringName &p_name, Variant &r_ret) const {
|
|
|
|
String name = p_name;
|
2017-03-05 16:44:50 +01:00
|
|
|
|
2018-01-12 00:35:12 +02:00
|
|
|
if (name == "data") {
|
2014-02-09 22:10:30 -03:00
|
|
|
Dictionary d;
|
|
|
|
|
2020-02-17 18:06:54 -03:00
|
|
|
Vector<int> cells;
|
2014-02-09 22:10:30 -03:00
|
|
|
cells.resize(cell_map.size() * 3);
|
|
|
|
{
|
2020-02-17 18:06:54 -03:00
|
|
|
int *w = cells.ptrw();
|
2014-02-09 22:10:30 -03:00
|
|
|
int i = 0;
|
2022-05-13 15:04:37 +02:00
|
|
|
for (const KeyValue<IndexKey, Cell> &E : cell_map) {
|
|
|
|
encode_uint64(E.key.key, (uint8_t *)&w[i * 3]);
|
|
|
|
encode_uint32(E.value.cell, (uint8_t *)&w[i * 3 + 2]);
|
|
|
|
i++;
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
d["cells"] = cells;
|
|
|
|
|
|
|
|
r_ret = d;
|
2017-12-18 00:34:48 -03:00
|
|
|
} else if (name == "baked_meshes") {
|
|
|
|
Array ret;
|
|
|
|
ret.resize(baked_meshes.size());
|
|
|
|
for (int i = 0; i < baked_meshes.size(); i++) {
|
2020-01-15 14:30:17 +00:00
|
|
|
ret[i] = baked_meshes[i].mesh;
|
2017-12-18 00:34:48 -03:00
|
|
|
}
|
|
|
|
r_ret = ret;
|
|
|
|
|
2020-05-14 16:41:43 +02:00
|
|
|
} else {
|
2014-02-09 22:10:30 -03:00
|
|
|
return false;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2014-02-09 22:10:30 -03:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GridMap::_get_property_list(List<PropertyInfo> *p_list) const {
|
2017-12-18 00:34:48 -03:00
|
|
|
if (baked_meshes.size()) {
|
|
|
|
p_list->push_back(PropertyInfo(Variant::ARRAY, "baked_meshes", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_STORAGE));
|
|
|
|
}
|
2014-02-09 22:10:30 -03:00
|
|
|
|
|
|
|
p_list->push_back(PropertyInfo(Variant::DICTIONARY, "data", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_STORAGE));
|
|
|
|
}
|
|
|
|
|
2025-02-27 19:01:23 -03:00
|
|
|
#ifndef PHYSICS_3D_DISABLED
|
2017-12-28 16:13:45 +01:00
|
|
|
void GridMap::set_collision_layer(uint32_t p_layer) {
|
|
|
|
collision_layer = p_layer;
|
2022-12-19 19:01:27 +01:00
|
|
|
_update_physics_bodies_collision_properties();
|
2017-12-28 16:13:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t GridMap::get_collision_layer() const {
|
|
|
|
return collision_layer;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GridMap::set_collision_mask(uint32_t p_mask) {
|
|
|
|
collision_mask = p_mask;
|
2022-12-19 19:01:27 +01:00
|
|
|
_update_physics_bodies_collision_properties();
|
2017-12-28 16:13:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t GridMap::get_collision_mask() const {
|
|
|
|
return collision_mask;
|
|
|
|
}
|
|
|
|
|
2021-08-11 16:01:38 -07:00
|
|
|
void GridMap::set_collision_layer_value(int p_layer_number, bool p_value) {
|
|
|
|
ERR_FAIL_COND_MSG(p_layer_number < 1, "Collision layer number must be between 1 and 32 inclusive.");
|
|
|
|
ERR_FAIL_COND_MSG(p_layer_number > 32, "Collision layer number must be between 1 and 32 inclusive.");
|
2022-09-29 12:53:28 +03:00
|
|
|
uint32_t collision_layer_new = get_collision_layer();
|
2020-05-14 16:41:43 +02:00
|
|
|
if (p_value) {
|
2022-09-29 12:53:28 +03:00
|
|
|
collision_layer_new |= 1 << (p_layer_number - 1);
|
2020-05-14 16:41:43 +02:00
|
|
|
} else {
|
2022-09-29 12:53:28 +03:00
|
|
|
collision_layer_new &= ~(1 << (p_layer_number - 1));
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2022-09-29 12:53:28 +03:00
|
|
|
set_collision_layer(collision_layer_new);
|
2017-12-28 16:13:45 +01:00
|
|
|
}
|
|
|
|
|
2021-08-11 16:01:38 -07:00
|
|
|
bool GridMap::get_collision_layer_value(int p_layer_number) const {
|
|
|
|
ERR_FAIL_COND_V_MSG(p_layer_number < 1, false, "Collision layer number must be between 1 and 32 inclusive.");
|
|
|
|
ERR_FAIL_COND_V_MSG(p_layer_number > 32, false, "Collision layer number must be between 1 and 32 inclusive.");
|
|
|
|
return get_collision_layer() & (1 << (p_layer_number - 1));
|
2017-12-28 16:13:45 +01:00
|
|
|
}
|
|
|
|
|
2021-08-11 16:01:38 -07:00
|
|
|
void GridMap::set_collision_mask_value(int p_layer_number, bool p_value) {
|
|
|
|
ERR_FAIL_COND_MSG(p_layer_number < 1, "Collision layer number must be between 1 and 32 inclusive.");
|
|
|
|
ERR_FAIL_COND_MSG(p_layer_number > 32, "Collision layer number must be between 1 and 32 inclusive.");
|
|
|
|
uint32_t mask = get_collision_mask();
|
2020-05-14 16:41:43 +02:00
|
|
|
if (p_value) {
|
2021-08-11 16:01:38 -07:00
|
|
|
mask |= 1 << (p_layer_number - 1);
|
2020-05-14 16:41:43 +02:00
|
|
|
} else {
|
2021-08-11 16:01:38 -07:00
|
|
|
mask &= ~(1 << (p_layer_number - 1));
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2021-08-11 16:01:38 -07:00
|
|
|
set_collision_mask(mask);
|
2017-12-28 16:13:45 +01:00
|
|
|
}
|
|
|
|
|
2022-12-19 19:01:27 +01:00
|
|
|
void GridMap::set_collision_priority(real_t p_priority) {
|
|
|
|
collision_priority = p_priority;
|
|
|
|
_update_physics_bodies_collision_properties();
|
|
|
|
}
|
|
|
|
|
|
|
|
real_t GridMap::get_collision_priority() const {
|
|
|
|
return collision_priority;
|
|
|
|
}
|
|
|
|
|
2021-12-17 01:47:17 +01:00
|
|
|
void GridMap::set_physics_material(Ref<PhysicsMaterial> p_material) {
|
|
|
|
physics_material = p_material;
|
2024-04-10 21:44:46 +02:00
|
|
|
_update_physics_bodies_characteristics();
|
2021-12-17 01:47:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Ref<PhysicsMaterial> GridMap::get_physics_material() const {
|
|
|
|
return physics_material;
|
|
|
|
}
|
|
|
|
|
2021-08-11 16:01:38 -07:00
|
|
|
bool GridMap::get_collision_mask_value(int p_layer_number) const {
|
|
|
|
ERR_FAIL_COND_V_MSG(p_layer_number < 1, false, "Collision layer number must be between 1 and 32 inclusive.");
|
|
|
|
ERR_FAIL_COND_V_MSG(p_layer_number > 32, false, "Collision layer number must be between 1 and 32 inclusive.");
|
|
|
|
return get_collision_mask() & (1 << (p_layer_number - 1));
|
2017-12-28 16:13:45 +01:00
|
|
|
}
|
|
|
|
|
2022-01-14 09:36:59 -06:00
|
|
|
Array GridMap::get_collision_shapes() const {
|
|
|
|
Array shapes;
|
|
|
|
for (const KeyValue<OctantKey, Octant *> &E : octant_map) {
|
|
|
|
Octant *g = E.value;
|
|
|
|
RID body = g->static_body;
|
|
|
|
Transform3D body_xform = PhysicsServer3D::get_singleton()->body_get_state(body, PhysicsServer3D::BODY_STATE_TRANSFORM);
|
|
|
|
int nshapes = PhysicsServer3D::get_singleton()->body_get_shape_count(body);
|
|
|
|
for (int i = 0; i < nshapes; i++) {
|
|
|
|
RID shape = PhysicsServer3D::get_singleton()->body_get_shape(body, i);
|
|
|
|
Transform3D xform = PhysicsServer3D::get_singleton()->body_get_shape_transform(body, i);
|
|
|
|
shapes.push_back(body_xform * xform);
|
|
|
|
shapes.push_back(shape);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return shapes;
|
|
|
|
}
|
2025-02-27 19:01:23 -03:00
|
|
|
#endif // PHYSICS_3D_DISABLED
|
2022-01-14 09:36:59 -06:00
|
|
|
|
2021-03-08 09:47:18 +01:00
|
|
|
void GridMap::set_bake_navigation(bool p_bake_navigation) {
|
|
|
|
bake_navigation = p_bake_navigation;
|
|
|
|
_recreate_octant_data();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GridMap::is_baking_navigation() {
|
|
|
|
return bake_navigation;
|
|
|
|
}
|
|
|
|
|
2025-03-30 13:20:04 -03:00
|
|
|
#ifndef NAVIGATION_3D_DISABLED
|
2022-09-07 13:51:32 +02:00
|
|
|
void GridMap::set_navigation_map(RID p_navigation_map) {
|
|
|
|
map_override = p_navigation_map;
|
|
|
|
for (const KeyValue<OctantKey, Octant *> &E : octant_map) {
|
|
|
|
Octant &g = *octant_map[E.key];
|
2022-12-11 18:02:35 +01:00
|
|
|
for (KeyValue<IndexKey, Octant::NavigationCell> &F : g.navigation_cell_ids) {
|
2022-09-07 13:51:32 +02:00
|
|
|
if (F.value.region.is_valid()) {
|
|
|
|
NavigationServer3D::get_singleton()->region_set_map(F.value.region, map_override);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
RID GridMap::get_navigation_map() const {
|
|
|
|
if (map_override.is_valid()) {
|
|
|
|
return map_override;
|
|
|
|
} else if (is_inside_tree()) {
|
|
|
|
return get_world_3d()->get_navigation_map();
|
|
|
|
}
|
|
|
|
return RID();
|
|
|
|
}
|
2025-03-30 13:20:04 -03:00
|
|
|
#endif // NAVIGATION_3D_DISABLED
|
2022-09-07 13:51:32 +02:00
|
|
|
|
2018-08-22 03:10:54 -03:00
|
|
|
void GridMap::set_mesh_library(const Ref<MeshLibrary> &p_mesh_library) {
|
2024-08-25 14:15:10 +02:00
|
|
|
if (mesh_library.is_valid()) {
|
2023-07-03 21:29:37 +02:00
|
|
|
mesh_library->disconnect_changed(callable_mp(this, &GridMap::_recreate_octant_data));
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2018-08-22 03:10:54 -03:00
|
|
|
mesh_library = p_mesh_library;
|
2024-08-25 14:15:10 +02:00
|
|
|
if (mesh_library.is_valid()) {
|
2023-07-03 21:29:37 +02:00
|
|
|
mesh_library->connect_changed(callable_mp(this, &GridMap::_recreate_octant_data));
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2014-02-09 22:10:30 -03:00
|
|
|
|
|
|
|
_recreate_octant_data();
|
2023-09-04 17:01:33 +02:00
|
|
|
emit_signal(CoreStringName(changed));
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
|
|
|
|
2018-08-22 03:10:54 -03:00
|
|
|
Ref<MeshLibrary> GridMap::get_mesh_library() const {
|
|
|
|
return mesh_library;
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
|
|
|
|
2017-08-27 16:00:59 -03:00
|
|
|
void GridMap::set_cell_size(const Vector3 &p_size) {
|
2017-08-29 08:47:29 -03:00
|
|
|
ERR_FAIL_COND(p_size.x < 0.001 || p_size.y < 0.001 || p_size.z < 0.001);
|
2014-02-09 22:10:30 -03:00
|
|
|
cell_size = p_size;
|
|
|
|
_recreate_octant_data();
|
2021-07-17 18:22:52 -03:00
|
|
|
emit_signal(SNAME("cell_size_changed"), cell_size);
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2017-08-27 16:00:59 -03:00
|
|
|
Vector3 GridMap::get_cell_size() const {
|
2014-02-09 22:10:30 -03:00
|
|
|
return cell_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GridMap::set_octant_size(int p_size) {
|
2019-06-21 11:34:32 +02:00
|
|
|
ERR_FAIL_COND(p_size == 0);
|
2014-02-09 22:10:30 -03:00
|
|
|
octant_size = p_size;
|
|
|
|
_recreate_octant_data();
|
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2014-02-09 22:10:30 -03:00
|
|
|
int GridMap::get_octant_size() const {
|
|
|
|
return octant_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GridMap::set_center_x(bool p_enable) {
|
|
|
|
center_x = p_enable;
|
|
|
|
_recreate_octant_data();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GridMap::get_center_x() const {
|
|
|
|
return center_x;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GridMap::set_center_y(bool p_enable) {
|
|
|
|
center_y = p_enable;
|
|
|
|
_recreate_octant_data();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GridMap::get_center_y() const {
|
|
|
|
return center_y;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GridMap::set_center_z(bool p_enable) {
|
|
|
|
center_z = p_enable;
|
|
|
|
_recreate_octant_data();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GridMap::get_center_z() const {
|
|
|
|
return center_z;
|
|
|
|
}
|
|
|
|
|
2020-06-29 04:52:01 -04:00
|
|
|
void GridMap::set_cell_item(const Vector3i &p_position, int p_item, int p_rot) {
|
2017-12-18 00:34:48 -03:00
|
|
|
if (baked_meshes.size() && !recreating_octants) {
|
|
|
|
//if you set a cell item, baked meshes go good bye
|
|
|
|
clear_baked_meshes();
|
|
|
|
_recreate_octant_data();
|
|
|
|
}
|
|
|
|
|
2022-11-30 17:56:32 +01:00
|
|
|
ERR_FAIL_INDEX(Math::abs(p_position.x), 1 << 20);
|
|
|
|
ERR_FAIL_INDEX(Math::abs(p_position.y), 1 << 20);
|
|
|
|
ERR_FAIL_INDEX(Math::abs(p_position.z), 1 << 20);
|
2014-02-09 22:10:30 -03:00
|
|
|
|
|
|
|
IndexKey key;
|
2020-06-29 04:52:01 -04:00
|
|
|
key.x = p_position.x;
|
|
|
|
key.y = p_position.y;
|
|
|
|
key.z = p_position.z;
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2025-04-12 22:54:51 +02:00
|
|
|
const OctantKey ok = get_octant_key_from_cell_coords(p_position);
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2017-08-27 16:00:59 -03:00
|
|
|
if (p_item < 0) {
|
|
|
|
//erase
|
|
|
|
if (cell_map.has(key)) {
|
|
|
|
OctantKey octantkey = ok;
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2017-08-27 16:00:59 -03:00
|
|
|
ERR_FAIL_COND(!octant_map.has(octantkey));
|
|
|
|
Octant &g = *octant_map[octantkey];
|
|
|
|
g.cells.erase(key);
|
2014-02-09 22:10:30 -03:00
|
|
|
g.dirty = true;
|
2017-08-27 16:00:59 -03:00
|
|
|
cell_map.erase(key);
|
|
|
|
_queue_octants_dirty();
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
|
|
|
return;
|
2017-08-27 16:00:59 -03:00
|
|
|
}
|
2014-02-09 22:10:30 -03:00
|
|
|
|
|
|
|
OctantKey octantkey = ok;
|
|
|
|
|
|
|
|
if (!octant_map.has(octantkey)) {
|
2017-08-27 16:00:59 -03:00
|
|
|
//create octant because it does not exist
|
2014-02-09 22:10:30 -03:00
|
|
|
Octant *g = memnew(Octant);
|
|
|
|
g->dirty = true;
|
2025-02-27 19:01:23 -03:00
|
|
|
#ifndef PHYSICS_3D_DISABLED
|
2021-02-09 13:19:03 -03:00
|
|
|
g->static_body = PhysicsServer3D::get_singleton()->body_create();
|
|
|
|
PhysicsServer3D::get_singleton()->body_set_mode(g->static_body, PhysicsServer3D::BODY_MODE_STATIC);
|
2020-03-27 15:21:27 -03:00
|
|
|
PhysicsServer3D::get_singleton()->body_attach_object_instance_id(g->static_body, get_instance_id());
|
|
|
|
PhysicsServer3D::get_singleton()->body_set_collision_layer(g->static_body, collision_layer);
|
|
|
|
PhysicsServer3D::get_singleton()->body_set_collision_mask(g->static_body, collision_mask);
|
2022-12-19 19:01:27 +01:00
|
|
|
PhysicsServer3D::get_singleton()->body_set_collision_priority(g->static_body, collision_priority);
|
2021-12-17 01:47:17 +01:00
|
|
|
if (physics_material.is_valid()) {
|
2024-04-10 21:44:46 +02:00
|
|
|
PhysicsServer3D::get_singleton()->body_set_param(g->static_body, PhysicsServer3D::BODY_PARAM_FRICTION, physics_material->computed_friction());
|
|
|
|
PhysicsServer3D::get_singleton()->body_set_param(g->static_body, PhysicsServer3D::BODY_PARAM_BOUNCE, physics_material->computed_bounce());
|
2021-12-17 01:47:17 +01:00
|
|
|
}
|
2025-02-27 19:01:23 -03:00
|
|
|
#endif // PHYSICS_3D_DISABLED
|
2015-09-20 13:03:46 -03:00
|
|
|
SceneTree *st = SceneTree::get_singleton();
|
|
|
|
|
|
|
|
if (st && st->is_debugging_collisions_hint()) {
|
2020-03-27 15:21:27 -03:00
|
|
|
g->collision_debug = RenderingServer::get_singleton()->mesh_create();
|
|
|
|
g->collision_debug_instance = RenderingServer::get_singleton()->instance_create();
|
|
|
|
RenderingServer::get_singleton()->instance_set_base(g->collision_debug_instance, g->collision_debug);
|
2015-09-20 13:03:46 -03:00
|
|
|
}
|
|
|
|
|
2014-02-09 22:10:30 -03:00
|
|
|
octant_map[octantkey] = g;
|
|
|
|
|
2017-08-27 16:00:59 -03:00
|
|
|
if (is_inside_world()) {
|
|
|
|
_octant_enter_world(octantkey);
|
|
|
|
_octant_transform(octantkey);
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-27 16:00:59 -03:00
|
|
|
Octant &g = *octant_map[octantkey];
|
|
|
|
g.cells.insert(key);
|
2014-02-09 22:10:30 -03:00
|
|
|
g.dirty = true;
|
2017-08-27 16:00:59 -03:00
|
|
|
_queue_octants_dirty();
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2017-08-27 16:00:59 -03:00
|
|
|
Cell c;
|
2014-02-09 22:10:30 -03:00
|
|
|
c.item = p_item;
|
|
|
|
c.rot = p_rot;
|
2017-08-27 16:00:59 -03:00
|
|
|
|
|
|
|
cell_map[key] = c;
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
|
|
|
|
2020-06-29 04:52:01 -04:00
|
|
|
int GridMap::get_cell_item(const Vector3i &p_position) const {
|
2022-11-30 17:56:32 +01:00
|
|
|
ERR_FAIL_INDEX_V(Math::abs(p_position.x), 1 << 20, INVALID_CELL_ITEM);
|
|
|
|
ERR_FAIL_INDEX_V(Math::abs(p_position.y), 1 << 20, INVALID_CELL_ITEM);
|
|
|
|
ERR_FAIL_INDEX_V(Math::abs(p_position.z), 1 << 20, INVALID_CELL_ITEM);
|
2014-02-09 22:10:30 -03:00
|
|
|
|
|
|
|
IndexKey key;
|
2020-06-29 04:52:01 -04:00
|
|
|
key.x = p_position.x;
|
|
|
|
key.y = p_position.y;
|
|
|
|
key.z = p_position.z;
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2020-05-14 16:41:43 +02:00
|
|
|
if (!cell_map.has(key)) {
|
2014-02-09 22:10:30 -03:00
|
|
|
return INVALID_CELL_ITEM;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2014-02-09 22:10:30 -03:00
|
|
|
return cell_map[key].item;
|
|
|
|
}
|
|
|
|
|
2020-06-29 04:52:01 -04:00
|
|
|
int GridMap::get_cell_item_orientation(const Vector3i &p_position) const {
|
2022-11-30 17:56:32 +01:00
|
|
|
ERR_FAIL_INDEX_V(Math::abs(p_position.x), 1 << 20, -1);
|
|
|
|
ERR_FAIL_INDEX_V(Math::abs(p_position.y), 1 << 20, -1);
|
|
|
|
ERR_FAIL_INDEX_V(Math::abs(p_position.z), 1 << 20, -1);
|
2014-02-09 22:10:30 -03:00
|
|
|
|
|
|
|
IndexKey key;
|
2020-06-29 04:52:01 -04:00
|
|
|
key.x = p_position.x;
|
|
|
|
key.y = p_position.y;
|
|
|
|
key.z = p_position.z;
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2020-05-14 16:41:43 +02:00
|
|
|
if (!cell_map.has(key)) {
|
2014-02-09 22:10:30 -03:00
|
|
|
return -1;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2014-02-09 22:10:30 -03:00
|
|
|
return cell_map[key].rot;
|
|
|
|
}
|
|
|
|
|
2022-01-26 23:44:36 -06:00
|
|
|
static const Basis _ortho_bases[24] = {
|
|
|
|
Basis(1, 0, 0, 0, 1, 0, 0, 0, 1),
|
|
|
|
Basis(0, -1, 0, 1, 0, 0, 0, 0, 1),
|
|
|
|
Basis(-1, 0, 0, 0, -1, 0, 0, 0, 1),
|
|
|
|
Basis(0, 1, 0, -1, 0, 0, 0, 0, 1),
|
|
|
|
Basis(1, 0, 0, 0, 0, -1, 0, 1, 0),
|
|
|
|
Basis(0, 0, 1, 1, 0, 0, 0, 1, 0),
|
|
|
|
Basis(-1, 0, 0, 0, 0, 1, 0, 1, 0),
|
|
|
|
Basis(0, 0, -1, -1, 0, 0, 0, 1, 0),
|
|
|
|
Basis(1, 0, 0, 0, -1, 0, 0, 0, -1),
|
|
|
|
Basis(0, 1, 0, 1, 0, 0, 0, 0, -1),
|
|
|
|
Basis(-1, 0, 0, 0, 1, 0, 0, 0, -1),
|
|
|
|
Basis(0, -1, 0, -1, 0, 0, 0, 0, -1),
|
|
|
|
Basis(1, 0, 0, 0, 0, 1, 0, -1, 0),
|
|
|
|
Basis(0, 0, -1, 1, 0, 0, 0, -1, 0),
|
|
|
|
Basis(-1, 0, 0, 0, 0, -1, 0, -1, 0),
|
|
|
|
Basis(0, 0, 1, -1, 0, 0, 0, -1, 0),
|
|
|
|
Basis(0, 0, 1, 0, 1, 0, -1, 0, 0),
|
|
|
|
Basis(0, -1, 0, 0, 0, 1, -1, 0, 0),
|
|
|
|
Basis(0, 0, -1, 0, -1, 0, -1, 0, 0),
|
|
|
|
Basis(0, 1, 0, 0, 0, -1, -1, 0, 0),
|
|
|
|
Basis(0, 0, 1, 0, -1, 0, 1, 0, 0),
|
|
|
|
Basis(0, 1, 0, 0, 0, 1, 1, 0, 0),
|
|
|
|
Basis(0, 0, -1, 0, 1, 0, 1, 0, 0),
|
|
|
|
Basis(0, -1, 0, 0, 0, -1, 1, 0, 0)
|
|
|
|
};
|
|
|
|
|
|
|
|
Basis GridMap::get_cell_item_basis(const Vector3i &p_position) const {
|
|
|
|
int orientation = get_cell_item_orientation(p_position);
|
|
|
|
|
|
|
|
if (orientation == -1) {
|
|
|
|
return Basis();
|
|
|
|
}
|
|
|
|
|
|
|
|
return get_basis_with_orthogonal_index(orientation);
|
|
|
|
}
|
|
|
|
|
|
|
|
Basis GridMap::get_basis_with_orthogonal_index(int p_index) const {
|
|
|
|
ERR_FAIL_INDEX_V(p_index, 24, Basis());
|
|
|
|
|
|
|
|
return _ortho_bases[p_index];
|
|
|
|
}
|
|
|
|
|
|
|
|
int GridMap::get_orthogonal_index_from_basis(const Basis &p_basis) const {
|
|
|
|
Basis orth = p_basis;
|
|
|
|
for (int i = 0; i < 3; i++) {
|
|
|
|
for (int j = 0; j < 3; j++) {
|
|
|
|
real_t v = orth[i][j];
|
|
|
|
if (v > 0.5) {
|
|
|
|
v = 1.0;
|
|
|
|
} else if (v < -0.5) {
|
|
|
|
v = -1.0;
|
|
|
|
} else {
|
|
|
|
v = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
orth[i][j] = v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < 24; i++) {
|
|
|
|
if (_ortho_bases[i] == orth) {
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2025-04-12 22:54:51 +02:00
|
|
|
GridMap::OctantKey GridMap::get_octant_key_from_index_key(const IndexKey &p_index_key) const {
|
|
|
|
const int x = p_index_key.x > 0 ? p_index_key.x / octant_size : (p_index_key.x - (octant_size - 1)) / octant_size;
|
|
|
|
const int y = p_index_key.y > 0 ? p_index_key.y / octant_size : (p_index_key.y - (octant_size - 1)) / octant_size;
|
|
|
|
const int z = p_index_key.z > 0 ? p_index_key.z / octant_size : (p_index_key.z - (octant_size - 1)) / octant_size;
|
|
|
|
|
|
|
|
OctantKey ok;
|
|
|
|
ok.key = 0;
|
|
|
|
ok.x = x;
|
|
|
|
ok.y = y;
|
|
|
|
ok.z = z;
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
GridMap::OctantKey GridMap::get_octant_key_from_cell_coords(const Vector3i &p_cell_coords) const {
|
|
|
|
const int x = p_cell_coords.x > 0 ? p_cell_coords.x / octant_size : (p_cell_coords.x - (octant_size - 1)) / octant_size;
|
|
|
|
const int y = p_cell_coords.y > 0 ? p_cell_coords.y / octant_size : (p_cell_coords.y - (octant_size - 1)) / octant_size;
|
|
|
|
const int z = p_cell_coords.z > 0 ? p_cell_coords.z / octant_size : (p_cell_coords.z - (octant_size - 1)) / octant_size;
|
|
|
|
|
|
|
|
OctantKey ok;
|
|
|
|
ok.key = 0;
|
|
|
|
ok.x = x;
|
|
|
|
ok.y = y;
|
|
|
|
ok.z = z;
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
2022-08-20 18:39:05 +02:00
|
|
|
Vector3i GridMap::local_to_map(const Vector3 &p_world_position) const {
|
2021-09-29 09:36:34 +05:45
|
|
|
Vector3 map_position = (p_world_position / cell_size).floor();
|
2020-06-29 04:52:01 -04:00
|
|
|
return Vector3i(map_position);
|
2017-10-07 12:30:58 +01:00
|
|
|
}
|
|
|
|
|
2022-08-20 18:39:05 +02:00
|
|
|
Vector3 GridMap::map_to_local(const Vector3i &p_map_position) const {
|
2017-10-07 12:30:58 +01:00
|
|
|
Vector3 offset = _get_offset();
|
2022-08-20 18:39:05 +02:00
|
|
|
Vector3 local_position(
|
2020-06-29 04:52:01 -04:00
|
|
|
p_map_position.x * cell_size.x + offset.x,
|
|
|
|
p_map_position.y * cell_size.y + offset.y,
|
|
|
|
p_map_position.z * cell_size.z + offset.z);
|
2022-08-20 18:39:05 +02:00
|
|
|
return local_position;
|
2017-10-07 12:30:58 +01:00
|
|
|
}
|
|
|
|
|
2017-08-27 16:00:59 -03:00
|
|
|
void GridMap::_octant_transform(const OctantKey &p_key) {
|
2014-02-09 22:10:30 -03:00
|
|
|
ERR_FAIL_COND(!octant_map.has(p_key));
|
|
|
|
Octant &g = *octant_map[p_key];
|
2025-02-27 19:01:23 -03:00
|
|
|
#ifndef PHYSICS_3D_DISABLED
|
2020-03-27 15:21:27 -03:00
|
|
|
PhysicsServer3D::get_singleton()->body_set_state(g.static_body, PhysicsServer3D::BODY_STATE_TRANSFORM, get_global_transform());
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2015-09-20 13:03:46 -03:00
|
|
|
if (g.collision_debug_instance.is_valid()) {
|
2020-03-27 15:21:27 -03:00
|
|
|
RS::get_singleton()->instance_set_transform(g.collision_debug_instance, get_global_transform());
|
2015-09-20 13:03:46 -03:00
|
|
|
}
|
2025-02-27 19:01:23 -03:00
|
|
|
#endif // PHYSICS_3D_DISABLED
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2025-03-30 13:20:04 -03:00
|
|
|
#ifndef NAVIGATION_3D_DISABLED
|
2022-06-08 11:19:15 +02:00
|
|
|
// update transform for NavigationServer regions and navigation debugmesh instances
|
2022-12-11 18:02:35 +01:00
|
|
|
for (const KeyValue<IndexKey, Octant::NavigationCell> &E : g.navigation_cell_ids) {
|
2022-06-08 11:19:15 +02:00
|
|
|
if (bake_navigation) {
|
|
|
|
if (E.value.region.is_valid()) {
|
|
|
|
NavigationServer3D::get_singleton()->region_set_transform(E.value.region, get_global_transform() * E.value.xform);
|
|
|
|
}
|
2022-12-11 18:02:35 +01:00
|
|
|
if (E.value.navigation_mesh_debug_instance.is_valid()) {
|
|
|
|
RS::get_singleton()->instance_set_transform(E.value.navigation_mesh_debug_instance, get_global_transform() * E.value.xform);
|
2022-06-08 11:19:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2025-03-30 13:20:04 -03:00
|
|
|
#endif // NAVIGATION_3D_DISABLED
|
2022-06-08 11:19:15 +02:00
|
|
|
|
2017-08-27 16:00:59 -03:00
|
|
|
for (int i = 0; i < g.multimesh_instances.size(); i++) {
|
2020-03-27 15:21:27 -03:00
|
|
|
RS::get_singleton()->instance_set_transform(g.multimesh_instances[i].instance, get_global_transform());
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-27 16:00:59 -03:00
|
|
|
bool GridMap::_octant_update(const OctantKey &p_key) {
|
|
|
|
ERR_FAIL_COND_V(!octant_map.has(p_key), false);
|
2014-02-09 22:10:30 -03:00
|
|
|
Octant &g = *octant_map[p_key];
|
2020-05-14 16:41:43 +02:00
|
|
|
if (!g.dirty) {
|
2017-08-27 16:00:59 -03:00
|
|
|
return false;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2025-02-27 19:01:23 -03:00
|
|
|
#ifndef PHYSICS_3D_DISABLED
|
2017-08-27 16:00:59 -03:00
|
|
|
//erase body shapes
|
2020-03-27 15:21:27 -03:00
|
|
|
PhysicsServer3D::get_singleton()->body_clear_shapes(g.static_body);
|
2015-09-20 13:03:46 -03:00
|
|
|
|
2017-08-27 16:00:59 -03:00
|
|
|
//erase body shapes debug
|
|
|
|
if (g.collision_debug.is_valid()) {
|
2020-03-27 15:21:27 -03:00
|
|
|
RS::get_singleton()->mesh_clear(g.collision_debug);
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
2025-02-27 19:01:23 -03:00
|
|
|
#endif // PHYSICS_3D_DISABLED
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2025-03-30 13:20:04 -03:00
|
|
|
#ifndef NAVIGATION_3D_DISABLED
|
2017-08-27 16:00:59 -03:00
|
|
|
//erase navigation
|
2023-03-14 04:07:37 +01:00
|
|
|
for (KeyValue<IndexKey, Octant::NavigationCell> &E : g.navigation_cell_ids) {
|
|
|
|
if (E.value.region.is_valid()) {
|
|
|
|
NavigationServer3D::get_singleton()->free(E.value.region);
|
|
|
|
E.value.region = RID();
|
|
|
|
}
|
2022-12-11 18:02:35 +01:00
|
|
|
if (E.value.navigation_mesh_debug_instance.is_valid()) {
|
|
|
|
RS::get_singleton()->free(E.value.navigation_mesh_debug_instance);
|
2023-03-14 04:07:37 +01:00
|
|
|
E.value.navigation_mesh_debug_instance = RID();
|
2022-06-08 11:19:15 +02:00
|
|
|
}
|
2016-04-20 21:19:05 +03:00
|
|
|
}
|
2022-12-11 18:02:35 +01:00
|
|
|
g.navigation_cell_ids.clear();
|
2025-03-30 13:20:04 -03:00
|
|
|
#endif // NAVIGATION_3D_DISABLED
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2017-08-27 16:00:59 -03:00
|
|
|
//erase multimeshes
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2017-08-27 16:00:59 -03:00
|
|
|
for (int i = 0; i < g.multimesh_instances.size(); i++) {
|
2020-03-27 15:21:27 -03:00
|
|
|
RS::get_singleton()->free(g.multimesh_instances[i].instance);
|
|
|
|
RS::get_singleton()->free(g.multimesh_instances[i].multimesh);
|
2017-08-27 16:00:59 -03:00
|
|
|
}
|
|
|
|
g.multimesh_instances.clear();
|
2015-09-20 13:03:46 -03:00
|
|
|
|
2025-03-20 00:07:31 +08:00
|
|
|
if (g.cells.is_empty()) {
|
2017-08-27 16:00:59 -03:00
|
|
|
//octant no longer needed
|
|
|
|
_octant_clean_up(p_key);
|
|
|
|
return true;
|
2015-09-20 13:03:46 -03:00
|
|
|
}
|
|
|
|
|
2020-02-17 18:06:54 -03:00
|
|
|
Vector<Vector3> col_debug;
|
2015-09-20 13:03:46 -03:00
|
|
|
|
2016-04-20 21:19:05 +03:00
|
|
|
/*
|
|
|
|
* foreach item in this octant,
|
|
|
|
* set item's multimesh's instance count to number of cells which have this item
|
|
|
|
* and set said multimesh bounding box to one containing all cells which have this item
|
|
|
|
*/
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2025-04-19 13:45:43 +02:00
|
|
|
struct MultiMeshItemPlacement {
|
|
|
|
Transform3D transform;
|
|
|
|
IndexKey index_key;
|
|
|
|
};
|
|
|
|
AHashMap<int, LocalVector<MultiMeshItemPlacement>> item_id_to_multimesh_item_placements;
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2025-04-19 13:05:40 +02:00
|
|
|
RID scenario;
|
|
|
|
#ifndef NAVIGATION_3D_DISABLED
|
|
|
|
RID navigation_map;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (is_inside_tree()) {
|
|
|
|
scenario = get_world_3d()->get_scenario();
|
|
|
|
#ifndef NAVIGATION_3D_DISABLED
|
|
|
|
navigation_map = get_world_3d()->get_navigation_map();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2022-05-18 17:43:40 -06:00
|
|
|
for (const IndexKey &E : g.cells) {
|
|
|
|
ERR_CONTINUE(!cell_map.has(E));
|
|
|
|
const Cell &c = cell_map[E];
|
2017-08-27 16:00:59 -03:00
|
|
|
|
2024-08-25 14:15:10 +02:00
|
|
|
if (mesh_library.is_null() || !mesh_library->has_item(c.item)) {
|
2017-08-27 16:00:59 -03:00
|
|
|
continue;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2022-05-18 17:43:40 -06:00
|
|
|
Vector3 cellpos = Vector3(E.x, E.y, E.z);
|
2017-10-07 12:30:58 +01:00
|
|
|
Vector3 ofs = _get_offset();
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2020-10-17 01:08:21 -04:00
|
|
|
Transform3D xform;
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2022-01-26 23:44:36 -06:00
|
|
|
xform.basis = _ortho_bases[c.rot];
|
2017-08-27 16:00:59 -03:00
|
|
|
xform.set_origin(cellpos * cell_size + ofs);
|
|
|
|
xform.basis.scale(Vector3(cell_scale, cell_scale, cell_scale));
|
2025-03-20 00:07:31 +08:00
|
|
|
if (baked_meshes.is_empty()) {
|
2018-08-22 03:10:54 -03:00
|
|
|
if (mesh_library->get_item_mesh(c.item).is_valid()) {
|
2025-04-19 13:45:43 +02:00
|
|
|
if (!item_id_to_multimesh_item_placements.has(c.item)) {
|
|
|
|
item_id_to_multimesh_item_placements[c.item] = LocalVector<MultiMeshItemPlacement>();
|
2017-12-19 09:55:01 -03:00
|
|
|
}
|
|
|
|
|
2025-04-19 13:45:43 +02:00
|
|
|
MultiMeshItemPlacement p;
|
|
|
|
p.transform = xform * mesh_library->get_item_mesh_transform(c.item);
|
|
|
|
p.index_key = E;
|
|
|
|
item_id_to_multimesh_item_placements[c.item].push_back(p);
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
2017-08-27 16:00:59 -03:00
|
|
|
}
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2025-02-27 19:01:23 -03:00
|
|
|
#ifndef PHYSICS_3D_DISABLED
|
2018-08-22 03:10:54 -03:00
|
|
|
Vector<MeshLibrary::ShapeData> shapes = mesh_library->get_item_shapes(c.item);
|
2017-08-27 16:00:59 -03:00
|
|
|
// add the item's shape at given xform to octant's static_body
|
|
|
|
for (int i = 0; i < shapes.size(); i++) {
|
|
|
|
// add the item's shape
|
2024-08-25 14:15:10 +02:00
|
|
|
if (shapes[i].shape.is_null()) {
|
2017-08-27 16:00:59 -03:00
|
|
|
continue;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2020-03-27 15:21:27 -03:00
|
|
|
PhysicsServer3D::get_singleton()->body_add_shape(g.static_body, shapes[i].shape->get_rid(), xform * shapes[i].local_transform);
|
2017-08-27 16:00:59 -03:00
|
|
|
if (g.collision_debug.is_valid()) {
|
2018-07-25 03:11:03 +02:00
|
|
|
shapes.write[i].shape->add_vertices_to_array(col_debug, xform * shapes[i].local_transform);
|
2017-08-27 16:00:59 -03:00
|
|
|
}
|
|
|
|
}
|
2025-02-27 19:01:23 -03:00
|
|
|
#endif // PHYSICS_3D_DISABLED
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2025-03-30 13:20:04 -03:00
|
|
|
#ifndef NAVIGATION_3D_DISABLED
|
2022-12-11 18:02:35 +01:00
|
|
|
// add the item's navigation_mesh at given xform to GridMap's Navigation ancestor
|
|
|
|
Ref<NavigationMesh> navigation_mesh = mesh_library->get_item_navigation_mesh(c.item);
|
|
|
|
if (navigation_mesh.is_valid()) {
|
|
|
|
Octant::NavigationCell nm;
|
|
|
|
nm.xform = xform * mesh_library->get_item_navigation_mesh_transform(c.item);
|
2022-11-29 20:01:31 +01:00
|
|
|
nm.navigation_layers = mesh_library->get_item_navigation_layers(c.item);
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2021-03-08 09:47:18 +01:00
|
|
|
if (bake_navigation) {
|
2020-03-27 15:21:27 -03:00
|
|
|
RID region = NavigationServer3D::get_singleton()->region_create();
|
2022-09-30 23:49:39 -06:00
|
|
|
NavigationServer3D::get_singleton()->region_set_owner_id(region, get_instance_id());
|
2022-11-29 20:01:31 +01:00
|
|
|
NavigationServer3D::get_singleton()->region_set_navigation_layers(region, nm.navigation_layers);
|
2022-12-11 18:02:35 +01:00
|
|
|
NavigationServer3D::get_singleton()->region_set_navigation_mesh(region, navigation_mesh);
|
2022-06-08 03:30:19 +02:00
|
|
|
NavigationServer3D::get_singleton()->region_set_transform(region, get_global_transform() * nm.xform);
|
2022-08-09 20:13:47 +02:00
|
|
|
if (is_inside_tree()) {
|
2022-09-07 13:51:32 +02:00
|
|
|
if (map_override.is_valid()) {
|
|
|
|
NavigationServer3D::get_singleton()->region_set_map(region, map_override);
|
|
|
|
} else {
|
2025-04-19 13:05:40 +02:00
|
|
|
NavigationServer3D::get_singleton()->region_set_map(region, navigation_map);
|
2022-09-07 13:51:32 +02:00
|
|
|
}
|
2022-08-09 20:13:47 +02:00
|
|
|
}
|
2020-01-10 12:22:34 +01:00
|
|
|
nm.region = region;
|
2022-06-08 11:19:15 +02:00
|
|
|
|
2022-08-04 13:40:05 +02:00
|
|
|
#ifdef DEBUG_ENABLED
|
2022-06-08 11:19:15 +02:00
|
|
|
// add navigation debugmesh visual instances if debug is enabled
|
|
|
|
SceneTree *st = SceneTree::get_singleton();
|
|
|
|
if (st && st->is_debugging_navigation_hint()) {
|
2022-12-11 18:02:35 +01:00
|
|
|
if (!nm.navigation_mesh_debug_instance.is_valid()) {
|
|
|
|
RID navigation_mesh_debug_rid = navigation_mesh->get_debug_mesh()->get_rid();
|
|
|
|
nm.navigation_mesh_debug_instance = RS::get_singleton()->instance_create();
|
|
|
|
RS::get_singleton()->instance_set_base(nm.navigation_mesh_debug_instance, navigation_mesh_debug_rid);
|
2022-06-08 11:19:15 +02:00
|
|
|
}
|
|
|
|
if (is_inside_tree()) {
|
2025-04-19 13:05:40 +02:00
|
|
|
RS::get_singleton()->instance_set_scenario(nm.navigation_mesh_debug_instance, scenario);
|
2022-12-11 18:02:35 +01:00
|
|
|
RS::get_singleton()->instance_set_transform(nm.navigation_mesh_debug_instance, get_global_transform() * nm.xform);
|
2022-06-08 11:19:15 +02:00
|
|
|
}
|
|
|
|
}
|
2022-08-04 13:40:05 +02:00
|
|
|
#endif // DEBUG_ENABLED
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
2022-12-11 18:02:35 +01:00
|
|
|
g.navigation_cell_ids[E] = nm;
|
2017-08-27 16:00:59 -03:00
|
|
|
}
|
2025-03-30 13:20:04 -03:00
|
|
|
#endif // NAVIGATION_3D_DISABLED
|
2017-08-27 16:00:59 -03:00
|
|
|
}
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2025-03-30 13:20:04 -03:00
|
|
|
#if defined(DEBUG_ENABLED) && !defined(NAVIGATION_3D_DISABLED)
|
2022-08-09 20:13:47 +02:00
|
|
|
if (bake_navigation) {
|
|
|
|
_update_octant_navigation_debug_edge_connections_mesh(p_key);
|
|
|
|
}
|
2025-03-30 13:20:04 -03:00
|
|
|
#endif // defined(DEBUG_ENABLED) && !defined(NAVIGATION_3D_DISABLED)
|
2022-08-09 20:13:47 +02:00
|
|
|
|
2017-12-18 00:34:48 -03:00
|
|
|
//update multimeshes, only if not baked
|
2025-03-20 00:07:31 +08:00
|
|
|
if (baked_meshes.is_empty()) {
|
2025-04-19 13:45:43 +02:00
|
|
|
for (const KeyValue<int, LocalVector<MultiMeshItemPlacement>> &E : item_id_to_multimesh_item_placements) {
|
2017-12-18 00:34:48 -03:00
|
|
|
Octant::MultimeshInstance mmi;
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2020-03-27 15:21:27 -03:00
|
|
|
RID mm = RS::get_singleton()->multimesh_create();
|
2021-08-09 14:13:42 -06:00
|
|
|
RS::get_singleton()->multimesh_allocate_data(mm, E.value.size(), RS::MULTIMESH_TRANSFORM_3D);
|
|
|
|
RS::get_singleton()->multimesh_set_mesh(mm, mesh_library->get_item_mesh(E.key)->get_rid());
|
2017-12-18 00:34:48 -03:00
|
|
|
|
|
|
|
int idx = 0;
|
2025-04-19 13:45:43 +02:00
|
|
|
const LocalVector<MultiMeshItemPlacement> &mm_item_placements = E.value;
|
|
|
|
for (const MultiMeshItemPlacement &mm_item_placement : mm_item_placements) {
|
|
|
|
RS::get_singleton()->multimesh_instance_set_transform(mm, idx, mm_item_placement.transform);
|
2017-08-27 16:00:59 -03:00
|
|
|
#ifdef TOOLS_ENABLED
|
|
|
|
|
2017-12-18 00:34:48 -03:00
|
|
|
Octant::MultimeshInstance::Item it;
|
|
|
|
it.index = idx;
|
2025-04-19 13:45:43 +02:00
|
|
|
it.transform = mm_item_placement.transform;
|
|
|
|
it.key = mm_item_placement.index_key;
|
2017-12-18 00:34:48 -03:00
|
|
|
mmi.items.push_back(it);
|
2017-08-27 16:00:59 -03:00
|
|
|
#endif
|
2016-04-20 21:19:05 +03:00
|
|
|
|
2017-12-18 00:34:48 -03:00
|
|
|
idx++;
|
|
|
|
}
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2020-03-27 15:21:27 -03:00
|
|
|
RID instance = RS::get_singleton()->instance_create();
|
|
|
|
RS::get_singleton()->instance_set_base(instance, mm);
|
2017-08-27 16:00:59 -03:00
|
|
|
|
2017-12-18 00:34:48 -03:00
|
|
|
if (is_inside_tree()) {
|
2025-04-19 13:05:40 +02:00
|
|
|
RS::get_singleton()->instance_set_scenario(instance, scenario);
|
2020-03-27 15:21:27 -03:00
|
|
|
RS::get_singleton()->instance_set_transform(instance, get_global_transform());
|
2017-12-18 00:34:48 -03:00
|
|
|
}
|
2017-08-27 16:00:59 -03:00
|
|
|
|
2023-11-27 19:37:52 +01:00
|
|
|
RS::ShadowCastingSetting cast_shadows = (RS::ShadowCastingSetting)mesh_library->get_item_mesh_cast_shadow(E.key);
|
|
|
|
RS::get_singleton()->instance_geometry_set_cast_shadows_setting(instance, cast_shadows);
|
|
|
|
|
2017-12-18 00:34:48 -03:00
|
|
|
mmi.multimesh = mm;
|
|
|
|
mmi.instance = instance;
|
2017-08-27 16:00:59 -03:00
|
|
|
|
2017-12-18 00:34:48 -03:00
|
|
|
g.multimesh_instances.push_back(mmi);
|
|
|
|
}
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
|
|
|
|
2025-02-27 19:01:23 -03:00
|
|
|
#ifndef PHYSICS_3D_DISABLED
|
2015-09-20 13:03:46 -03:00
|
|
|
if (col_debug.size()) {
|
2025-07-11 19:41:17 +02:00
|
|
|
SceneTree *st = SceneTree::get_singleton();
|
|
|
|
|
|
|
|
Vector<Color> colors;
|
|
|
|
colors.resize(col_debug.size());
|
|
|
|
if (st) {
|
|
|
|
colors.fill(st->get_debug_collisions_color());
|
|
|
|
}
|
|
|
|
|
2015-09-20 13:03:46 -03:00
|
|
|
Array arr;
|
2020-03-27 15:21:27 -03:00
|
|
|
arr.resize(RS::ARRAY_MAX);
|
|
|
|
arr[RS::ARRAY_VERTEX] = col_debug;
|
2025-07-11 19:41:17 +02:00
|
|
|
arr[RS::ARRAY_COLOR] = colors;
|
2015-09-20 13:03:46 -03:00
|
|
|
|
2020-03-27 15:21:27 -03:00
|
|
|
RS::get_singleton()->mesh_add_surface_from_arrays(g.collision_debug, RS::PRIMITIVE_LINES, arr);
|
2015-09-20 13:03:46 -03:00
|
|
|
if (st) {
|
2020-03-27 15:21:27 -03:00
|
|
|
RS::get_singleton()->mesh_surface_set_material(g.collision_debug, 0, st->get_debug_collision_material()->get_rid());
|
2015-09-20 13:03:46 -03:00
|
|
|
}
|
|
|
|
}
|
2025-02-27 19:01:23 -03:00
|
|
|
#endif // PHYSICS_3D_DISABLED
|
2015-09-20 13:03:46 -03:00
|
|
|
|
2014-02-09 22:10:30 -03:00
|
|
|
g.dirty = false;
|
2017-08-27 16:00:59 -03:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2025-02-27 19:01:23 -03:00
|
|
|
#ifndef PHYSICS_3D_DISABLED
|
2022-12-19 19:01:27 +01:00
|
|
|
void GridMap::_update_physics_bodies_collision_properties() {
|
2021-08-09 14:13:42 -06:00
|
|
|
for (const KeyValue<OctantKey, Octant *> &E : octant_map) {
|
|
|
|
PhysicsServer3D::get_singleton()->body_set_collision_layer(E.value->static_body, collision_layer);
|
|
|
|
PhysicsServer3D::get_singleton()->body_set_collision_mask(E.value->static_body, collision_mask);
|
2022-12-19 19:01:27 +01:00
|
|
|
PhysicsServer3D::get_singleton()->body_set_collision_priority(E.value->static_body, collision_priority);
|
2017-12-28 16:13:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-10 21:44:46 +02:00
|
|
|
void GridMap::_update_physics_bodies_characteristics() {
|
|
|
|
real_t friction = 1.0;
|
|
|
|
real_t bounce = 0.0;
|
|
|
|
if (physics_material.is_valid()) {
|
|
|
|
friction = physics_material->computed_friction();
|
|
|
|
bounce = physics_material->computed_bounce();
|
|
|
|
}
|
|
|
|
for (const KeyValue<OctantKey, Octant *> &E : octant_map) {
|
|
|
|
PhysicsServer3D::get_singleton()->body_set_param(E.value->static_body, PhysicsServer3D::BODY_PARAM_FRICTION, friction);
|
|
|
|
PhysicsServer3D::get_singleton()->body_set_param(E.value->static_body, PhysicsServer3D::BODY_PARAM_BOUNCE, bounce);
|
|
|
|
}
|
|
|
|
}
|
2025-02-27 19:01:23 -03:00
|
|
|
#endif // PHYSICS_3D_DISABLED
|
2024-04-10 21:44:46 +02:00
|
|
|
|
2017-08-27 16:00:59 -03:00
|
|
|
void GridMap::_octant_enter_world(const OctantKey &p_key) {
|
|
|
|
ERR_FAIL_COND(!octant_map.has(p_key));
|
|
|
|
Octant &g = *octant_map[p_key];
|
2025-04-19 13:05:40 +02:00
|
|
|
|
|
|
|
const RID scenario = get_world_3d()->get_scenario();
|
|
|
|
|
2025-02-27 19:01:23 -03:00
|
|
|
#ifndef PHYSICS_3D_DISABLED
|
2020-03-27 15:21:27 -03:00
|
|
|
PhysicsServer3D::get_singleton()->body_set_state(g.static_body, PhysicsServer3D::BODY_STATE_TRANSFORM, get_global_transform());
|
2020-04-18 11:00:51 +02:00
|
|
|
PhysicsServer3D::get_singleton()->body_set_space(g.static_body, get_world_3d()->get_space());
|
2017-08-27 16:00:59 -03:00
|
|
|
|
|
|
|
if (g.collision_debug_instance.is_valid()) {
|
2025-04-19 13:05:40 +02:00
|
|
|
RS::get_singleton()->instance_set_scenario(g.collision_debug_instance, scenario);
|
2020-03-27 15:21:27 -03:00
|
|
|
RS::get_singleton()->instance_set_transform(g.collision_debug_instance, get_global_transform());
|
2017-08-27 16:00:59 -03:00
|
|
|
}
|
2025-02-27 19:01:23 -03:00
|
|
|
#endif // PHYSICS_3D_DISABLED
|
2017-08-27 16:00:59 -03:00
|
|
|
|
|
|
|
for (int i = 0; i < g.multimesh_instances.size(); i++) {
|
2025-04-19 13:05:40 +02:00
|
|
|
RS::get_singleton()->instance_set_scenario(g.multimesh_instances[i].instance, scenario);
|
2020-03-27 15:21:27 -03:00
|
|
|
RS::get_singleton()->instance_set_transform(g.multimesh_instances[i].instance, get_global_transform());
|
2017-08-27 16:00:59 -03:00
|
|
|
}
|
|
|
|
|
2025-03-30 13:20:04 -03:00
|
|
|
#ifndef NAVIGATION_3D_DISABLED
|
2025-04-19 13:05:40 +02:00
|
|
|
const RID navigation_map = get_world_3d()->get_navigation_map();
|
|
|
|
|
2021-03-08 09:47:18 +01:00
|
|
|
if (bake_navigation && mesh_library.is_valid()) {
|
2022-12-11 18:02:35 +01:00
|
|
|
for (KeyValue<IndexKey, Octant::NavigationCell> &F : g.navigation_cell_ids) {
|
2021-08-09 14:13:42 -06:00
|
|
|
if (cell_map.has(F.key) && F.value.region.is_valid() == false) {
|
2022-12-11 18:02:35 +01:00
|
|
|
Ref<NavigationMesh> navigation_mesh = mesh_library->get_item_navigation_mesh(cell_map[F.key].item);
|
|
|
|
if (navigation_mesh.is_valid()) {
|
2020-03-27 15:21:27 -03:00
|
|
|
RID region = NavigationServer3D::get_singleton()->region_create();
|
2022-09-30 23:49:39 -06:00
|
|
|
NavigationServer3D::get_singleton()->region_set_owner_id(region, get_instance_id());
|
2022-11-29 20:01:31 +01:00
|
|
|
NavigationServer3D::get_singleton()->region_set_navigation_layers(region, F.value.navigation_layers);
|
2022-12-11 18:02:35 +01:00
|
|
|
NavigationServer3D::get_singleton()->region_set_navigation_mesh(region, navigation_mesh);
|
2021-08-09 14:13:42 -06:00
|
|
|
NavigationServer3D::get_singleton()->region_set_transform(region, get_global_transform() * F.value.xform);
|
2022-09-07 13:51:32 +02:00
|
|
|
if (map_override.is_valid()) {
|
|
|
|
NavigationServer3D::get_singleton()->region_set_map(region, map_override);
|
|
|
|
} else {
|
2025-04-19 13:05:40 +02:00
|
|
|
NavigationServer3D::get_singleton()->region_set_map(region, navigation_map);
|
2022-09-07 13:51:32 +02:00
|
|
|
}
|
2021-03-08 09:47:18 +01:00
|
|
|
|
2021-08-09 14:13:42 -06:00
|
|
|
F.value.region = region;
|
2017-08-27 16:00:59 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-08-09 20:13:47 +02:00
|
|
|
|
|
|
|
#ifdef DEBUG_ENABLED
|
|
|
|
if (bake_navigation) {
|
|
|
|
if (!g.navigation_debug_edge_connections_instance.is_valid()) {
|
|
|
|
g.navigation_debug_edge_connections_instance = RenderingServer::get_singleton()->instance_create();
|
|
|
|
}
|
2024-06-09 15:21:41 -05:00
|
|
|
if (g.navigation_debug_edge_connections_mesh.is_null()) {
|
|
|
|
g.navigation_debug_edge_connections_mesh.instantiate();
|
2022-08-09 20:13:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
_update_octant_navigation_debug_edge_connections_mesh(p_key);
|
|
|
|
}
|
|
|
|
#endif // DEBUG_ENABLED
|
2017-08-27 16:00:59 -03:00
|
|
|
}
|
2025-03-30 13:20:04 -03:00
|
|
|
#endif // NAVIGATION_3D_DISABLED
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
void GridMap::_octant_exit_world(const OctantKey &p_key) {
|
2022-12-12 12:42:37 -05:00
|
|
|
ERR_FAIL_NULL(RenderingServer::get_singleton());
|
2025-02-27 19:01:23 -03:00
|
|
|
#ifndef PHYSICS_3D_DISABLED
|
2022-12-12 12:42:37 -05:00
|
|
|
ERR_FAIL_NULL(PhysicsServer3D::get_singleton());
|
2025-02-27 19:01:23 -03:00
|
|
|
#endif // PHYSICS_3D_DISABLED
|
2025-03-30 13:20:04 -03:00
|
|
|
#ifndef NAVIGATION_3D_DISABLED
|
2022-12-12 12:42:37 -05:00
|
|
|
ERR_FAIL_NULL(NavigationServer3D::get_singleton());
|
2025-03-30 13:20:04 -03:00
|
|
|
#endif // NAVIGATION_3D_DISABLED
|
2022-12-12 12:42:37 -05:00
|
|
|
|
2014-02-09 22:10:30 -03:00
|
|
|
ERR_FAIL_COND(!octant_map.has(p_key));
|
|
|
|
Octant &g = *octant_map[p_key];
|
2025-02-27 19:01:23 -03:00
|
|
|
|
|
|
|
#ifndef PHYSICS_3D_DISABLED
|
2020-03-27 15:21:27 -03:00
|
|
|
PhysicsServer3D::get_singleton()->body_set_state(g.static_body, PhysicsServer3D::BODY_STATE_TRANSFORM, get_global_transform());
|
|
|
|
PhysicsServer3D::get_singleton()->body_set_space(g.static_body, RID());
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2015-09-20 13:03:46 -03:00
|
|
|
if (g.collision_debug_instance.is_valid()) {
|
2020-03-27 15:21:27 -03:00
|
|
|
RS::get_singleton()->instance_set_scenario(g.collision_debug_instance, RID());
|
2015-09-20 13:03:46 -03:00
|
|
|
}
|
2025-02-27 19:01:23 -03:00
|
|
|
#endif // PHYSICS_3D_DISABLED
|
2015-09-20 13:03:46 -03:00
|
|
|
|
2017-08-27 16:00:59 -03:00
|
|
|
for (int i = 0; i < g.multimesh_instances.size(); i++) {
|
2020-03-27 15:21:27 -03:00
|
|
|
RS::get_singleton()->instance_set_scenario(g.multimesh_instances[i].instance, RID());
|
2017-08-27 16:00:59 -03:00
|
|
|
}
|
|
|
|
|
2025-03-30 13:20:04 -03:00
|
|
|
#ifndef NAVIGATION_3D_DISABLED
|
2022-12-11 18:02:35 +01:00
|
|
|
for (KeyValue<IndexKey, Octant::NavigationCell> &F : g.navigation_cell_ids) {
|
2021-08-09 14:13:42 -06:00
|
|
|
if (F.value.region.is_valid()) {
|
|
|
|
NavigationServer3D::get_singleton()->free(F.value.region);
|
|
|
|
F.value.region = RID();
|
2017-08-27 16:00:59 -03:00
|
|
|
}
|
2022-12-11 18:02:35 +01:00
|
|
|
if (F.value.navigation_mesh_debug_instance.is_valid()) {
|
|
|
|
RS::get_singleton()->free(F.value.navigation_mesh_debug_instance);
|
|
|
|
F.value.navigation_mesh_debug_instance = RID();
|
2022-06-08 11:19:15 +02:00
|
|
|
}
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
2025-03-30 13:20:04 -03:00
|
|
|
#endif // NAVIGATION_3D_DISABLED
|
2022-08-09 20:13:47 +02:00
|
|
|
|
|
|
|
#ifdef DEBUG_ENABLED
|
|
|
|
if (bake_navigation) {
|
|
|
|
if (g.navigation_debug_edge_connections_instance.is_valid()) {
|
|
|
|
RenderingServer::get_singleton()->free(g.navigation_debug_edge_connections_instance);
|
|
|
|
g.navigation_debug_edge_connections_instance = RID();
|
|
|
|
}
|
|
|
|
if (g.navigation_debug_edge_connections_mesh.is_valid()) {
|
2024-12-14 18:15:28 +01:00
|
|
|
g.navigation_debug_edge_connections_mesh.unref();
|
2022-08-09 20:13:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif // DEBUG_ENABLED
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
|
|
|
|
2017-08-27 16:00:59 -03:00
|
|
|
void GridMap::_octant_clean_up(const OctantKey &p_key) {
|
2022-12-12 12:42:37 -05:00
|
|
|
ERR_FAIL_NULL(RenderingServer::get_singleton());
|
2025-02-27 19:01:23 -03:00
|
|
|
#ifndef PHYSICS_3D_DISABLED
|
2022-12-12 12:42:37 -05:00
|
|
|
ERR_FAIL_NULL(PhysicsServer3D::get_singleton());
|
2025-02-27 19:01:23 -03:00
|
|
|
#endif // PHYSICS_3D_DISABLED
|
2025-03-30 13:20:04 -03:00
|
|
|
#ifndef NAVIGATION_3D_DISABLED
|
2022-12-12 12:42:37 -05:00
|
|
|
ERR_FAIL_NULL(NavigationServer3D::get_singleton());
|
2025-03-30 13:20:04 -03:00
|
|
|
#endif // NAVIGATION_3D_DISABLED
|
2022-12-12 12:42:37 -05:00
|
|
|
|
2017-08-27 16:00:59 -03:00
|
|
|
ERR_FAIL_COND(!octant_map.has(p_key));
|
|
|
|
Octant &g = *octant_map[p_key];
|
|
|
|
|
2025-02-27 19:01:23 -03:00
|
|
|
#ifndef PHYSICS_3D_DISABLED
|
2020-05-14 16:41:43 +02:00
|
|
|
if (g.collision_debug.is_valid()) {
|
2020-03-27 15:21:27 -03:00
|
|
|
RS::get_singleton()->free(g.collision_debug);
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
|
|
|
if (g.collision_debug_instance.is_valid()) {
|
2020-03-27 15:21:27 -03:00
|
|
|
RS::get_singleton()->free(g.collision_debug_instance);
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2017-08-27 16:00:59 -03:00
|
|
|
|
2020-03-27 15:21:27 -03:00
|
|
|
PhysicsServer3D::get_singleton()->free(g.static_body);
|
2025-02-27 19:01:23 -03:00
|
|
|
#endif // PHYSICS_3D_DISABLED
|
2017-08-27 16:00:59 -03:00
|
|
|
|
2025-03-30 13:20:04 -03:00
|
|
|
#ifndef NAVIGATION_3D_DISABLED
|
2020-01-10 12:22:34 +01:00
|
|
|
// Erase navigation
|
2022-12-11 18:02:35 +01:00
|
|
|
for (const KeyValue<IndexKey, Octant::NavigationCell> &E : g.navigation_cell_ids) {
|
2022-06-08 11:19:15 +02:00
|
|
|
if (E.value.region.is_valid()) {
|
|
|
|
NavigationServer3D::get_singleton()->free(E.value.region);
|
|
|
|
}
|
2022-12-11 18:02:35 +01:00
|
|
|
if (E.value.navigation_mesh_debug_instance.is_valid()) {
|
|
|
|
RS::get_singleton()->free(E.value.navigation_mesh_debug_instance);
|
2022-06-08 11:19:15 +02:00
|
|
|
}
|
2017-08-27 16:00:59 -03:00
|
|
|
}
|
2022-12-11 18:02:35 +01:00
|
|
|
g.navigation_cell_ids.clear();
|
2025-03-30 13:20:04 -03:00
|
|
|
#endif // NAVIGATION_3D_DISABLED
|
2017-08-27 16:00:59 -03:00
|
|
|
|
2022-08-09 20:13:47 +02:00
|
|
|
#ifdef DEBUG_ENABLED
|
|
|
|
if (bake_navigation) {
|
|
|
|
if (g.navigation_debug_edge_connections_instance.is_valid()) {
|
|
|
|
RenderingServer::get_singleton()->free(g.navigation_debug_edge_connections_instance);
|
|
|
|
g.navigation_debug_edge_connections_instance = RID();
|
|
|
|
}
|
|
|
|
if (g.navigation_debug_edge_connections_mesh.is_valid()) {
|
2024-12-14 18:15:28 +01:00
|
|
|
g.navigation_debug_edge_connections_mesh.unref();
|
2022-08-09 20:13:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif // DEBUG_ENABLED
|
|
|
|
|
2017-08-27 16:00:59 -03:00
|
|
|
//erase multimeshes
|
|
|
|
|
|
|
|
for (int i = 0; i < g.multimesh_instances.size(); i++) {
|
2020-03-27 15:21:27 -03:00
|
|
|
RS::get_singleton()->free(g.multimesh_instances[i].instance);
|
|
|
|
RS::get_singleton()->free(g.multimesh_instances[i].multimesh);
|
2017-08-27 16:00:59 -03:00
|
|
|
}
|
|
|
|
g.multimesh_instances.clear();
|
|
|
|
}
|
|
|
|
|
2014-02-09 22:10:30 -03:00
|
|
|
void GridMap::_notification(int p_what) {
|
|
|
|
switch (p_what) {
|
|
|
|
case NOTIFICATION_ENTER_WORLD: {
|
|
|
|
last_transform = get_global_transform();
|
2014-06-11 10:41:03 -03:00
|
|
|
|
2021-08-09 14:13:42 -06:00
|
|
|
for (const KeyValue<OctantKey, Octant *> &E : octant_map) {
|
|
|
|
_octant_enter_world(E.key);
|
2017-08-27 16:00:59 -03:00
|
|
|
}
|
|
|
|
|
2017-12-18 00:34:48 -03:00
|
|
|
for (int i = 0; i < baked_meshes.size(); i++) {
|
2020-04-18 11:00:51 +02:00
|
|
|
RS::get_singleton()->instance_set_scenario(baked_meshes[i].instance, get_world_3d()->get_scenario());
|
2020-03-27 15:21:27 -03:00
|
|
|
RS::get_singleton()->instance_set_transform(baked_meshes[i].instance, get_global_transform());
|
2017-12-18 00:34:48 -03:00
|
|
|
}
|
2014-02-09 22:10:30 -03:00
|
|
|
} break;
|
2022-02-16 09:17:55 -05:00
|
|
|
|
2022-08-09 20:13:47 +02:00
|
|
|
case NOTIFICATION_ENTER_TREE: {
|
2025-03-30 13:20:04 -03:00
|
|
|
#if defined(DEBUG_ENABLED) && !defined(NAVIGATION_3D_DISABLED)
|
2023-01-10 07:14:16 +01:00
|
|
|
if (bake_navigation && NavigationServer3D::get_singleton()->get_debug_navigation_enabled()) {
|
2022-08-09 20:13:47 +02:00
|
|
|
_update_navigation_debug_edge_connections();
|
|
|
|
}
|
2025-03-30 13:20:04 -03:00
|
|
|
#endif // defined(DEBUG_ENABLED) && !defined(NAVIGATION_3D_DISABLED)
|
2023-08-29 15:11:57 +08:00
|
|
|
_update_visibility();
|
|
|
|
} break;
|
2022-08-09 20:13:47 +02:00
|
|
|
|
2014-02-09 22:10:30 -03:00
|
|
|
case NOTIFICATION_TRANSFORM_CHANGED: {
|
2020-10-17 01:08:21 -04:00
|
|
|
Transform3D new_xform = get_global_transform();
|
2020-05-14 16:41:43 +02:00
|
|
|
if (new_xform == last_transform) {
|
2014-02-09 22:10:30 -03:00
|
|
|
break;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2014-02-09 22:10:30 -03:00
|
|
|
//update run
|
2021-08-09 14:13:42 -06:00
|
|
|
for (const KeyValue<OctantKey, Octant *> &E : octant_map) {
|
|
|
|
_octant_transform(E.key);
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
last_transform = new_xform;
|
|
|
|
|
2017-12-18 00:34:48 -03:00
|
|
|
for (int i = 0; i < baked_meshes.size(); i++) {
|
2020-03-27 15:21:27 -03:00
|
|
|
RS::get_singleton()->instance_set_transform(baked_meshes[i].instance, get_global_transform());
|
2017-12-18 00:34:48 -03:00
|
|
|
}
|
2014-02-09 22:10:30 -03:00
|
|
|
} break;
|
2022-02-16 09:17:55 -05:00
|
|
|
|
2014-02-09 22:10:30 -03:00
|
|
|
case NOTIFICATION_EXIT_WORLD: {
|
2021-08-09 14:13:42 -06:00
|
|
|
for (const KeyValue<OctantKey, Octant *> &E : octant_map) {
|
|
|
|
_octant_exit_world(E.key);
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
|
|
|
|
2017-08-27 16:00:59 -03:00
|
|
|
//_queue_octants_dirty(MAP_DIRTY_INSTANCES|MAP_DIRTY_TRANSFORMS);
|
|
|
|
//_update_octants_callback();
|
|
|
|
//_update_area_instances();
|
2017-12-18 00:34:48 -03:00
|
|
|
for (int i = 0; i < baked_meshes.size(); i++) {
|
2020-03-27 15:21:27 -03:00
|
|
|
RS::get_singleton()->instance_set_scenario(baked_meshes[i].instance, RID());
|
2017-12-18 00:34:48 -03:00
|
|
|
}
|
2016-04-20 21:19:05 +03:00
|
|
|
} break;
|
2022-02-16 09:17:55 -05:00
|
|
|
|
2017-09-04 21:52:44 +01:00
|
|
|
case NOTIFICATION_VISIBILITY_CHANGED: {
|
|
|
|
_update_visibility();
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void GridMap::_update_visibility() {
|
2020-05-14 16:41:43 +02:00
|
|
|
if (!is_inside_tree()) {
|
2017-09-04 21:52:44 +01:00
|
|
|
return;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2017-09-04 21:52:44 +01:00
|
|
|
|
2021-08-09 14:13:42 -06:00
|
|
|
for (KeyValue<OctantKey, Octant *> &e : octant_map) {
|
|
|
|
Octant *octant = e.value;
|
2017-09-04 21:52:44 +01:00
|
|
|
for (int i = 0; i < octant->multimesh_instances.size(); i++) {
|
2018-07-25 03:11:03 +02:00
|
|
|
const Octant::MultimeshInstance &mi = octant->multimesh_instances[i];
|
2020-10-16 14:04:24 +03:00
|
|
|
RS::get_singleton()->instance_set_visible(mi.instance, is_visible_in_tree());
|
2017-09-04 21:52:44 +01:00
|
|
|
}
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
2021-03-12 12:57:04 +01:00
|
|
|
|
|
|
|
for (int i = 0; i < baked_meshes.size(); i++) {
|
|
|
|
RS::get_singleton()->instance_set_visible(baked_meshes[i].instance, is_visible_in_tree());
|
|
|
|
}
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
|
|
|
|
2017-08-27 16:00:59 -03:00
|
|
|
void GridMap::_queue_octants_dirty() {
|
2020-05-14 16:41:43 +02:00
|
|
|
if (awaiting_update) {
|
2016-03-09 00:00:52 +01:00
|
|
|
return;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2023-12-18 15:46:56 +01:00
|
|
|
callable_mp(this, &GridMap::_update_octants_callback).call_deferred();
|
2017-08-27 16:00:59 -03:00
|
|
|
awaiting_update = true;
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
void GridMap::_recreate_octant_data() {
|
2017-12-18 00:34:48 -03:00
|
|
|
recreating_octants = true;
|
2022-05-13 15:04:37 +02:00
|
|
|
HashMap<IndexKey, Cell, IndexKey> cell_copy = cell_map;
|
2017-08-26 00:40:45 -03:00
|
|
|
_clear_internal();
|
2021-08-09 14:13:42 -06:00
|
|
|
for (const KeyValue<IndexKey, Cell> &E : cell_copy) {
|
|
|
|
set_cell_item(Vector3i(E.key), E.value.item, E.value.rot);
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
2017-12-18 00:34:48 -03:00
|
|
|
recreating_octants = false;
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
|
|
|
|
2017-08-26 00:40:45 -03:00
|
|
|
void GridMap::_clear_internal() {
|
2021-08-09 14:13:42 -06:00
|
|
|
for (const KeyValue<OctantKey, Octant *> &E : octant_map) {
|
2020-05-14 16:41:43 +02:00
|
|
|
if (is_inside_world()) {
|
2021-08-09 14:13:42 -06:00
|
|
|
_octant_exit_world(E.key);
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2021-08-09 14:13:42 -06:00
|
|
|
_octant_clean_up(E.key);
|
|
|
|
memdelete(E.value);
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
octant_map.clear();
|
|
|
|
cell_map.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GridMap::clear() {
|
|
|
|
_clear_internal();
|
2017-12-18 00:34:48 -03:00
|
|
|
clear_baked_meshes();
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
|
|
|
|
2023-07-03 21:29:37 +02:00
|
|
|
#ifndef DISABLE_DEPRECATED
|
2022-05-03 01:43:50 +02:00
|
|
|
void GridMap::resource_changed(const Ref<Resource> &p_res) {
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
2023-07-03 21:29:37 +02:00
|
|
|
#endif
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2017-08-27 16:00:59 -03:00
|
|
|
void GridMap::_update_octants_callback() {
|
2020-05-14 16:41:43 +02:00
|
|
|
if (!awaiting_update) {
|
2014-02-09 22:10:30 -03:00
|
|
|
return;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2025-04-19 13:45:43 +02:00
|
|
|
LocalVector<OctantKey> to_delete;
|
|
|
|
to_delete.reserve(octant_map.size());
|
2021-08-09 14:13:42 -06:00
|
|
|
for (const KeyValue<OctantKey, Octant *> &E : octant_map) {
|
|
|
|
if (_octant_update(E.key)) {
|
|
|
|
to_delete.push_back(E.key);
|
2017-08-27 16:00:59 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-04-19 13:45:43 +02:00
|
|
|
while (!to_delete.is_empty()) {
|
|
|
|
const OctantKey &octantkey = to_delete[0];
|
|
|
|
memdelete(octant_map[octantkey]);
|
|
|
|
octant_map.erase(octantkey);
|
|
|
|
to_delete.remove_at_unordered(0);
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
|
|
|
|
2017-09-04 21:52:44 +01:00
|
|
|
_update_visibility();
|
2014-02-09 22:10:30 -03:00
|
|
|
awaiting_update = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GridMap::_bind_methods() {
|
2025-02-27 19:01:23 -03:00
|
|
|
#ifndef PHYSICS_3D_DISABLED
|
2017-12-28 16:13:45 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("set_collision_layer", "layer"), &GridMap::set_collision_layer);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_collision_layer"), &GridMap::get_collision_layer);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("set_collision_mask", "mask"), &GridMap::set_collision_mask);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_collision_mask"), &GridMap::get_collision_mask);
|
|
|
|
|
2021-08-11 16:01:38 -07:00
|
|
|
ClassDB::bind_method(D_METHOD("set_collision_mask_value", "layer_number", "value"), &GridMap::set_collision_mask_value);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_collision_mask_value", "layer_number"), &GridMap::get_collision_mask_value);
|
2017-12-28 16:13:45 +01:00
|
|
|
|
2021-08-11 16:01:38 -07:00
|
|
|
ClassDB::bind_method(D_METHOD("set_collision_layer_value", "layer_number", "value"), &GridMap::set_collision_layer_value);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_collision_layer_value", "layer_number"), &GridMap::get_collision_layer_value);
|
2017-12-28 16:13:45 +01:00
|
|
|
|
2022-12-19 19:01:27 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("set_collision_priority", "priority"), &GridMap::set_collision_priority);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_collision_priority"), &GridMap::get_collision_priority);
|
|
|
|
|
2021-12-17 01:47:17 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("set_physics_material", "material"), &GridMap::set_physics_material);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_physics_material"), &GridMap::get_physics_material);
|
2025-02-27 19:01:23 -03:00
|
|
|
#endif // PHYSICS_3D_DISABLED
|
2021-12-17 01:47:17 +01:00
|
|
|
|
2021-03-08 09:47:18 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("set_bake_navigation", "bake_navigation"), &GridMap::set_bake_navigation);
|
|
|
|
ClassDB::bind_method(D_METHOD("is_baking_navigation"), &GridMap::is_baking_navigation);
|
|
|
|
|
2025-03-30 13:20:04 -03:00
|
|
|
#ifndef NAVIGATION_3D_DISABLED
|
2022-09-07 13:51:32 +02:00
|
|
|
ClassDB::bind_method(D_METHOD("set_navigation_map", "navigation_map"), &GridMap::set_navigation_map);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_navigation_map"), &GridMap::get_navigation_map);
|
2025-03-30 13:20:04 -03:00
|
|
|
#endif // NAVIGATION_3D_DISABLED
|
2022-09-07 13:51:32 +02:00
|
|
|
|
2018-08-22 03:10:54 -03:00
|
|
|
ClassDB::bind_method(D_METHOD("set_mesh_library", "mesh_library"), &GridMap::set_mesh_library);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_mesh_library"), &GridMap::get_mesh_library);
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2017-02-13 12:47:24 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("set_cell_size", "size"), &GridMap::set_cell_size);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_cell_size"), &GridMap::get_cell_size);
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2018-01-12 00:35:12 +02:00
|
|
|
ClassDB::bind_method(D_METHOD("set_cell_scale", "scale"), &GridMap::set_cell_scale);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_cell_scale"), &GridMap::get_cell_scale);
|
|
|
|
|
2017-02-13 12:47:24 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("set_octant_size", "size"), &GridMap::set_octant_size);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_octant_size"), &GridMap::get_octant_size);
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2020-06-29 04:52:01 -04:00
|
|
|
ClassDB::bind_method(D_METHOD("set_cell_item", "position", "item", "orientation"), &GridMap::set_cell_item, DEFVAL(0));
|
|
|
|
ClassDB::bind_method(D_METHOD("get_cell_item", "position"), &GridMap::get_cell_item);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_cell_item_orientation", "position"), &GridMap::get_cell_item_orientation);
|
2022-01-26 23:44:36 -06:00
|
|
|
ClassDB::bind_method(D_METHOD("get_cell_item_basis", "position"), &GridMap::get_cell_item_basis);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_basis_with_orthogonal_index", "index"), &GridMap::get_basis_with_orthogonal_index);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_orthogonal_index_from_basis", "basis"), &GridMap::get_orthogonal_index_from_basis);
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2022-08-20 18:39:05 +02:00
|
|
|
ClassDB::bind_method(D_METHOD("local_to_map", "local_position"), &GridMap::local_to_map);
|
|
|
|
ClassDB::bind_method(D_METHOD("map_to_local", "map_position"), &GridMap::map_to_local);
|
2017-10-07 12:30:58 +01:00
|
|
|
|
2023-07-03 21:29:37 +02:00
|
|
|
#ifndef DISABLE_DEPRECATED
|
2017-02-13 12:47:24 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("resource_changed", "resource"), &GridMap::resource_changed);
|
2023-07-03 21:29:37 +02:00
|
|
|
#endif
|
2017-03-05 16:44:50 +01:00
|
|
|
|
2017-02-13 12:47:24 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("set_center_x", "enable"), &GridMap::set_center_x);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_center_x"), &GridMap::get_center_x);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_center_y", "enable"), &GridMap::set_center_y);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_center_y"), &GridMap::get_center_y);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_center_z", "enable"), &GridMap::set_center_z);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_center_z"), &GridMap::get_center_z);
|
2017-03-05 16:44:50 +01:00
|
|
|
|
2017-02-13 12:47:24 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("clear"), &GridMap::clear);
|
2017-03-05 16:44:50 +01:00
|
|
|
|
2017-10-05 15:34:34 +02:00
|
|
|
ClassDB::bind_method(D_METHOD("get_used_cells"), &GridMap::get_used_cells);
|
2022-02-16 13:04:31 +08:00
|
|
|
ClassDB::bind_method(D_METHOD("get_used_cells_by_item", "item"), &GridMap::get_used_cells_by_item);
|
2017-10-05 15:34:34 +02:00
|
|
|
|
2017-02-15 08:29:46 -03:00
|
|
|
ClassDB::bind_method(D_METHOD("get_meshes"), &GridMap::get_meshes);
|
2017-12-18 00:34:48 -03:00
|
|
|
ClassDB::bind_method(D_METHOD("get_bake_meshes"), &GridMap::get_bake_meshes);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_bake_mesh_instance", "idx"), &GridMap::get_bake_mesh_instance);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("clear_baked_meshes"), &GridMap::clear_baked_meshes);
|
|
|
|
ClassDB::bind_method(D_METHOD("make_baked_meshes", "gen_lightmap_uv", "lightmap_uv_texel_size"), &GridMap::make_baked_meshes, DEFVAL(false), DEFVAL(0.1));
|
2017-03-05 16:44:50 +01:00
|
|
|
|
2018-08-22 03:10:54 -03:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "mesh_library", PROPERTY_HINT_RESOURCE_TYPE, "MeshLibrary"), "set_mesh_library", "get_mesh_library");
|
2025-07-12 17:12:05 +03:00
|
|
|
#ifndef PHYSICS_3D_DISABLED
|
2021-12-17 01:47:17 +01:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "physics_material", PROPERTY_HINT_RESOURCE_TYPE, "PhysicsMaterial"), "set_physics_material", "get_physics_material");
|
2025-07-12 17:12:05 +03:00
|
|
|
#endif // PHYSICS_3D_DISABLED
|
2018-01-12 00:35:12 +02:00
|
|
|
ADD_GROUP("Cell", "cell_");
|
2022-05-20 00:24:41 -05:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::VECTOR3, "cell_size", PROPERTY_HINT_NONE, "suffix:m"), "set_cell_size", "get_cell_size");
|
2018-01-12 00:35:12 +02:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "cell_octant_size", PROPERTY_HINT_RANGE, "1,1024,1"), "set_octant_size", "get_octant_size");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "cell_center_x"), "set_center_x", "get_center_x");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "cell_center_y"), "set_center_y", "get_center_y");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "cell_center_z"), "set_center_z", "get_center_z");
|
Variant: Added 64-bit packed arrays, renamed Variant::REAL to FLOAT.
- Renames PackedIntArray to PackedInt32Array.
- Renames PackedFloatArray to PackedFloat32Array.
- Adds PackedInt64Array and PackedFloat64Array.
- Renames Variant::REAL to Variant::FLOAT for consistency.
Packed arrays are for storing large amount of data and creating stuff like
meshes, buffers. textures, etc. Forcing them to be 64 is a huge waste of
memory. That said, many users requested the ability to have 64 bits packed
arrays for their games, so this is just an optional added type.
For Variant, the float datatype is always 64 bits, and exposed as `float`.
We still have `real_t` which is the datatype that can change from 32 to 64
bits depending on a compile flag (not entirely working right now, but that's
the idea). It affects math related datatypes and code only.
Neither Variant nor PackedArray make use of real_t, which is only intended
for math precision, so the term is removed from there to keep only float.
2020-02-24 15:20:53 -03:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "cell_scale"), "set_cell_scale", "get_cell_scale");
|
2025-02-27 19:01:23 -03:00
|
|
|
#ifndef PHYSICS_3D_DISABLED
|
2017-12-28 16:13:45 +01:00
|
|
|
ADD_GROUP("Collision", "collision_");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "collision_layer", PROPERTY_HINT_LAYERS_3D_PHYSICS), "set_collision_layer", "get_collision_layer");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "collision_mask", PROPERTY_HINT_LAYERS_3D_PHYSICS), "set_collision_mask", "get_collision_mask");
|
2022-12-19 19:01:27 +01:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "collision_priority"), "set_collision_priority", "get_collision_priority");
|
2025-02-27 19:01:23 -03:00
|
|
|
#endif // PHYSICS_3D_DISABLED
|
2021-03-08 09:47:18 +01:00
|
|
|
ADD_GROUP("Navigation", "");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "bake_navigation"), "set_bake_navigation", "is_baking_navigation");
|
2017-12-28 16:13:45 +01:00
|
|
|
|
2014-02-09 22:10:30 -03:00
|
|
|
BIND_CONSTANT(INVALID_CELL_ITEM);
|
2019-10-19 01:15:39 +02:00
|
|
|
|
|
|
|
ADD_SIGNAL(MethodInfo("cell_size_changed", PropertyInfo(Variant::VECTOR3, "cell_size")));
|
2023-09-04 17:01:33 +02:00
|
|
|
ADD_SIGNAL(MethodInfo(CoreStringName(changed)));
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
void GridMap::set_cell_scale(float p_scale) {
|
|
|
|
cell_scale = p_scale;
|
2017-10-07 12:30:58 +01:00
|
|
|
_recreate_octant_data();
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
float GridMap::get_cell_scale() const {
|
|
|
|
return cell_scale;
|
|
|
|
}
|
|
|
|
|
2022-08-05 20:35:08 +02:00
|
|
|
TypedArray<Vector3i> GridMap::get_used_cells() const {
|
|
|
|
TypedArray<Vector3i> a;
|
2017-10-05 15:34:34 +02:00
|
|
|
a.resize(cell_map.size());
|
|
|
|
int i = 0;
|
2021-08-09 14:13:42 -06:00
|
|
|
for (const KeyValue<IndexKey, Cell> &E : cell_map) {
|
2022-08-05 20:35:08 +02:00
|
|
|
Vector3i p(E.key.x, E.key.y, E.key.z);
|
2017-10-05 15:34:34 +02:00
|
|
|
a[i++] = p;
|
|
|
|
}
|
|
|
|
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
2022-08-05 20:35:08 +02:00
|
|
|
TypedArray<Vector3i> GridMap::get_used_cells_by_item(int p_item) const {
|
|
|
|
TypedArray<Vector3i> a;
|
2022-02-16 13:04:31 +08:00
|
|
|
for (const KeyValue<IndexKey, Cell> &E : cell_map) {
|
2022-09-28 16:43:09 +02:00
|
|
|
if ((int)E.value.item == p_item) {
|
2022-08-05 20:35:08 +02:00
|
|
|
Vector3i p(E.key.x, E.key.y, E.key.z);
|
2022-02-16 13:04:31 +08:00
|
|
|
a.push_back(p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
2022-01-14 09:36:59 -06:00
|
|
|
Array GridMap::get_meshes() const {
|
2020-05-14 16:41:43 +02:00
|
|
|
if (mesh_library.is_null()) {
|
2014-06-11 10:41:03 -03:00
|
|
|
return Array();
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2014-06-11 10:41:03 -03:00
|
|
|
|
2017-10-07 12:30:58 +01:00
|
|
|
Vector3 ofs = _get_offset();
|
2014-06-11 10:41:03 -03:00
|
|
|
Array meshes;
|
|
|
|
|
2022-01-14 09:36:59 -06:00
|
|
|
for (const KeyValue<IndexKey, Cell> &E : cell_map) {
|
2021-08-09 14:13:42 -06:00
|
|
|
int id = E.value.item;
|
2020-05-14 16:41:43 +02:00
|
|
|
if (!mesh_library->has_item(id)) {
|
2014-06-11 10:41:03 -03:00
|
|
|
continue;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2018-08-22 03:10:54 -03:00
|
|
|
Ref<Mesh> mesh = mesh_library->get_item_mesh(id);
|
2020-05-14 16:41:43 +02:00
|
|
|
if (mesh.is_null()) {
|
2014-06-11 10:41:03 -03:00
|
|
|
continue;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2014-06-11 10:41:03 -03:00
|
|
|
|
2021-08-09 14:13:42 -06:00
|
|
|
IndexKey ik = E.key;
|
2014-06-11 10:41:03 -03:00
|
|
|
|
|
|
|
Vector3 cellpos = Vector3(ik.x, ik.y, ik.z);
|
|
|
|
|
2020-10-17 01:08:21 -04:00
|
|
|
Transform3D xform;
|
2014-06-11 10:41:03 -03:00
|
|
|
|
2022-01-26 23:44:36 -06:00
|
|
|
xform.basis = _ortho_bases[E.value.rot];
|
2014-06-11 10:41:03 -03:00
|
|
|
|
|
|
|
xform.set_origin(cellpos * cell_size + ofs);
|
|
|
|
xform.basis.scale(Vector3(cell_scale, cell_scale, cell_scale));
|
|
|
|
|
2022-05-24 19:50:57 +02:00
|
|
|
meshes.push_back(xform * mesh_library->get_item_mesh_transform(id));
|
2014-06-11 10:41:03 -03:00
|
|
|
meshes.push_back(mesh);
|
|
|
|
}
|
|
|
|
|
|
|
|
return meshes;
|
|
|
|
}
|
|
|
|
|
2017-10-07 12:30:58 +01:00
|
|
|
Vector3 GridMap::_get_offset() const {
|
|
|
|
return Vector3(
|
|
|
|
cell_size.x * 0.5 * int(center_x),
|
|
|
|
cell_size.y * 0.5 * int(center_y),
|
|
|
|
cell_size.z * 0.5 * int(center_z));
|
|
|
|
}
|
|
|
|
|
2017-12-18 00:34:48 -03:00
|
|
|
void GridMap::clear_baked_meshes() {
|
2022-12-12 12:42:37 -05:00
|
|
|
ERR_FAIL_NULL(RenderingServer::get_singleton());
|
2017-12-18 00:34:48 -03:00
|
|
|
for (int i = 0; i < baked_meshes.size(); i++) {
|
2020-03-27 15:21:27 -03:00
|
|
|
RS::get_singleton()->free(baked_meshes[i].instance);
|
2017-12-18 00:34:48 -03:00
|
|
|
}
|
|
|
|
baked_meshes.clear();
|
|
|
|
|
|
|
|
_recreate_octant_data();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GridMap::make_baked_meshes(bool p_gen_lightmap_uv, float p_lightmap_uv_texel_size) {
|
2024-08-25 14:15:10 +02:00
|
|
|
if (mesh_library.is_null()) {
|
2017-12-18 00:34:48 -03:00
|
|
|
return;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2017-12-18 00:34:48 -03:00
|
|
|
|
|
|
|
//generate
|
2022-05-13 15:04:37 +02:00
|
|
|
HashMap<OctantKey, HashMap<Ref<Material>, Ref<SurfaceTool>>, OctantKey> surface_map;
|
2017-12-18 00:34:48 -03:00
|
|
|
|
2021-08-09 14:13:42 -06:00
|
|
|
for (KeyValue<IndexKey, Cell> &E : cell_map) {
|
|
|
|
IndexKey key = E.key;
|
2017-12-18 00:34:48 -03:00
|
|
|
|
2021-08-09 14:13:42 -06:00
|
|
|
int item = E.value.item;
|
2020-05-14 16:41:43 +02:00
|
|
|
if (!mesh_library->has_item(item)) {
|
2017-12-18 00:34:48 -03:00
|
|
|
continue;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2017-12-18 00:34:48 -03:00
|
|
|
|
2018-08-22 03:10:54 -03:00
|
|
|
Ref<Mesh> mesh = mesh_library->get_item_mesh(item);
|
2024-08-25 14:15:10 +02:00
|
|
|
if (mesh.is_null()) {
|
2017-12-18 00:34:48 -03:00
|
|
|
continue;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2017-12-18 00:34:48 -03:00
|
|
|
|
|
|
|
Vector3 cellpos = Vector3(key.x, key.y, key.z);
|
|
|
|
Vector3 ofs = _get_offset();
|
|
|
|
|
2020-10-17 01:08:21 -04:00
|
|
|
Transform3D xform;
|
2017-12-18 00:34:48 -03:00
|
|
|
|
2022-01-26 23:44:36 -06:00
|
|
|
xform.basis = _ortho_bases[E.value.rot];
|
2017-12-18 00:34:48 -03:00
|
|
|
xform.set_origin(cellpos * cell_size + ofs);
|
|
|
|
xform.basis.scale(Vector3(cell_scale, cell_scale, cell_scale));
|
|
|
|
|
2025-04-12 22:54:51 +02:00
|
|
|
const OctantKey ok = get_octant_key_from_index_key(key);
|
2017-12-18 00:34:48 -03:00
|
|
|
|
|
|
|
if (!surface_map.has(ok)) {
|
2022-05-13 15:04:37 +02:00
|
|
|
surface_map[ok] = HashMap<Ref<Material>, Ref<SurfaceTool>>();
|
2017-12-18 00:34:48 -03:00
|
|
|
}
|
|
|
|
|
2022-05-13 15:04:37 +02:00
|
|
|
HashMap<Ref<Material>, Ref<SurfaceTool>> &mat_map = surface_map[ok];
|
2017-12-18 00:34:48 -03:00
|
|
|
|
|
|
|
for (int i = 0; i < mesh->get_surface_count(); i++) {
|
2020-05-14 16:41:43 +02:00
|
|
|
if (mesh->surface_get_primitive_type(i) != Mesh::PRIMITIVE_TRIANGLES) {
|
2017-12-18 00:34:48 -03:00
|
|
|
continue;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2017-12-18 00:34:48 -03:00
|
|
|
|
|
|
|
Ref<Material> surf_mat = mesh->surface_get_material(i);
|
|
|
|
if (!mat_map.has(surf_mat)) {
|
|
|
|
Ref<SurfaceTool> st;
|
2021-06-17 16:03:09 -06:00
|
|
|
st.instantiate();
|
2017-12-18 00:34:48 -03:00
|
|
|
st->begin(Mesh::PRIMITIVE_TRIANGLES);
|
|
|
|
st->set_material(surf_mat);
|
|
|
|
mat_map[surf_mat] = st;
|
|
|
|
}
|
|
|
|
|
|
|
|
mat_map[surf_mat]->append_from(mesh, i, xform);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-13 15:04:37 +02:00
|
|
|
for (KeyValue<OctantKey, HashMap<Ref<Material>, Ref<SurfaceTool>>> &E : surface_map) {
|
2017-12-18 00:34:48 -03:00
|
|
|
Ref<ArrayMesh> mesh;
|
2021-06-17 16:03:09 -06:00
|
|
|
mesh.instantiate();
|
2021-08-09 14:13:42 -06:00
|
|
|
for (KeyValue<Ref<Material>, Ref<SurfaceTool>> &F : E.value) {
|
|
|
|
F.value->commit(mesh);
|
2017-12-18 00:34:48 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
BakedMesh bm;
|
|
|
|
bm.mesh = mesh;
|
2020-03-27 15:21:27 -03:00
|
|
|
bm.instance = RS::get_singleton()->instance_create();
|
2022-12-20 14:23:47 -05:00
|
|
|
RS::get_singleton()->instance_set_base(bm.instance, bm.mesh->get_rid());
|
2020-03-27 15:21:27 -03:00
|
|
|
RS::get_singleton()->instance_attach_object_instance_id(bm.instance, get_instance_id());
|
2017-12-18 00:34:48 -03:00
|
|
|
if (is_inside_tree()) {
|
2020-04-18 11:00:51 +02:00
|
|
|
RS::get_singleton()->instance_set_scenario(bm.instance, get_world_3d()->get_scenario());
|
2020-03-27 15:21:27 -03:00
|
|
|
RS::get_singleton()->instance_set_transform(bm.instance, get_global_transform());
|
2017-12-18 00:34:48 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (p_gen_lightmap_uv) {
|
|
|
|
mesh->lightmap_unwrap(get_global_transform(), p_lightmap_uv_texel_size);
|
|
|
|
}
|
|
|
|
baked_meshes.push_back(bm);
|
|
|
|
}
|
|
|
|
|
|
|
|
_recreate_octant_data();
|
|
|
|
}
|
|
|
|
|
|
|
|
Array GridMap::get_bake_meshes() {
|
|
|
|
if (!baked_meshes.size()) {
|
|
|
|
make_baked_meshes(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
Array arr;
|
|
|
|
for (int i = 0; i < baked_meshes.size(); i++) {
|
|
|
|
arr.push_back(baked_meshes[i].mesh);
|
2020-10-17 01:08:21 -04:00
|
|
|
arr.push_back(Transform3D());
|
2017-12-18 00:34:48 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
return arr;
|
|
|
|
}
|
|
|
|
|
|
|
|
RID GridMap::get_bake_mesh_instance(int p_idx) {
|
|
|
|
ERR_FAIL_INDEX_V(p_idx, baked_meshes.size(), RID());
|
|
|
|
return baked_meshes[p_idx].instance;
|
|
|
|
}
|
|
|
|
|
2014-02-09 22:10:30 -03:00
|
|
|
GridMap::GridMap() {
|
2017-01-12 20:35:46 -03:00
|
|
|
set_notify_transform(true);
|
2025-03-30 13:20:04 -03:00
|
|
|
#if defined(DEBUG_ENABLED) && !defined(NAVIGATION_3D_DISABLED)
|
2022-12-21 14:21:43 -08:00
|
|
|
NavigationServer3D::get_singleton()->connect("map_changed", callable_mp(this, &GridMap::_navigation_map_changed));
|
|
|
|
NavigationServer3D::get_singleton()->connect("navigation_debug_changed", callable_mp(this, &GridMap::_update_navigation_debug_edge_connections));
|
2025-03-30 13:20:04 -03:00
|
|
|
#endif // defined(DEBUG_ENABLED) && !defined(NAVIGATION_3D_DISABLED)
|
2022-08-09 20:13:47 +02:00
|
|
|
}
|
|
|
|
|
2025-03-30 13:20:04 -03:00
|
|
|
#ifndef NAVIGATION_3D_DISABLED
|
2024-12-28 01:33:40 +01:00
|
|
|
void GridMap::navmesh_parse_init() {
|
|
|
|
ERR_FAIL_NULL(NavigationServer3D::get_singleton());
|
|
|
|
if (!_navmesh_source_geometry_parser.is_valid()) {
|
|
|
|
_navmesh_source_geometry_parsing_callback = callable_mp_static(&GridMap::navmesh_parse_source_geometry);
|
|
|
|
_navmesh_source_geometry_parser = NavigationServer3D::get_singleton()->source_geometry_parser_create();
|
|
|
|
NavigationServer3D::get_singleton()->source_geometry_parser_set_callback(_navmesh_source_geometry_parser, _navmesh_source_geometry_parsing_callback);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void GridMap::navmesh_parse_source_geometry(const Ref<NavigationMesh> &p_navigation_mesh, Ref<NavigationMeshSourceGeometryData3D> p_source_geometry_data, Node *p_node) {
|
|
|
|
GridMap *gridmap = Object::cast_to<GridMap>(p_node);
|
|
|
|
|
|
|
|
if (gridmap == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
NavigationMesh::ParsedGeometryType parsed_geometry_type = p_navigation_mesh->get_parsed_geometry_type();
|
2025-02-27 19:01:23 -03:00
|
|
|
#ifndef PHYSICS_3D_DISABLED
|
2024-12-28 01:33:40 +01:00
|
|
|
uint32_t parsed_collision_mask = p_navigation_mesh->get_collision_mask();
|
2025-02-27 19:01:23 -03:00
|
|
|
#endif // PHYSICS_3D_DISABLED
|
2024-12-28 01:33:40 +01:00
|
|
|
|
|
|
|
if (parsed_geometry_type == NavigationMesh::PARSED_GEOMETRY_MESH_INSTANCES || parsed_geometry_type == NavigationMesh::PARSED_GEOMETRY_BOTH) {
|
|
|
|
Array meshes = gridmap->get_meshes();
|
|
|
|
Transform3D xform = gridmap->get_global_transform();
|
|
|
|
for (int i = 0; i < meshes.size(); i += 2) {
|
|
|
|
Ref<Mesh> mesh = meshes[i + 1];
|
|
|
|
if (mesh.is_valid()) {
|
|
|
|
p_source_geometry_data->add_mesh(mesh, xform * (Transform3D)meshes[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2025-02-27 19:01:23 -03:00
|
|
|
#ifndef PHYSICS_3D_DISABLED
|
2024-12-28 01:33:40 +01:00
|
|
|
else if ((parsed_geometry_type == NavigationMesh::PARSED_GEOMETRY_STATIC_COLLIDERS || parsed_geometry_type == NavigationMesh::PARSED_GEOMETRY_BOTH) && (gridmap->get_collision_layer() & parsed_collision_mask)) {
|
|
|
|
Array shapes = gridmap->get_collision_shapes();
|
|
|
|
for (int i = 0; i < shapes.size(); i += 2) {
|
|
|
|
RID shape = shapes[i + 1];
|
|
|
|
PhysicsServer3D::ShapeType type = PhysicsServer3D::get_singleton()->shape_get_type(shape);
|
|
|
|
Variant data = PhysicsServer3D::get_singleton()->shape_get_data(shape);
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case PhysicsServer3D::SHAPE_SPHERE: {
|
|
|
|
real_t radius = data;
|
|
|
|
Array arr;
|
|
|
|
arr.resize(RS::ARRAY_MAX);
|
|
|
|
SphereMesh::create_mesh_array(arr, radius, radius * 2.0);
|
|
|
|
p_source_geometry_data->add_mesh_array(arr, shapes[i]);
|
|
|
|
} break;
|
|
|
|
case PhysicsServer3D::SHAPE_BOX: {
|
|
|
|
Vector3 extents = data;
|
|
|
|
Array arr;
|
|
|
|
arr.resize(RS::ARRAY_MAX);
|
|
|
|
BoxMesh::create_mesh_array(arr, extents * 2.0);
|
|
|
|
p_source_geometry_data->add_mesh_array(arr, shapes[i]);
|
|
|
|
} break;
|
|
|
|
case PhysicsServer3D::SHAPE_CAPSULE: {
|
|
|
|
Dictionary dict = data;
|
|
|
|
real_t radius = dict["radius"];
|
|
|
|
real_t height = dict["height"];
|
|
|
|
Array arr;
|
|
|
|
arr.resize(RS::ARRAY_MAX);
|
|
|
|
CapsuleMesh::create_mesh_array(arr, radius, height);
|
|
|
|
p_source_geometry_data->add_mesh_array(arr, shapes[i]);
|
|
|
|
} break;
|
|
|
|
case PhysicsServer3D::SHAPE_CYLINDER: {
|
|
|
|
Dictionary dict = data;
|
|
|
|
real_t radius = dict["radius"];
|
|
|
|
real_t height = dict["height"];
|
|
|
|
Array arr;
|
|
|
|
arr.resize(RS::ARRAY_MAX);
|
|
|
|
CylinderMesh::create_mesh_array(arr, radius, radius, height);
|
|
|
|
p_source_geometry_data->add_mesh_array(arr, shapes[i]);
|
|
|
|
} break;
|
|
|
|
case PhysicsServer3D::SHAPE_CONVEX_POLYGON: {
|
|
|
|
PackedVector3Array vertices = data;
|
|
|
|
Geometry3D::MeshData md;
|
|
|
|
|
|
|
|
Error err = ConvexHullComputer::convex_hull(vertices, md);
|
|
|
|
|
|
|
|
if (err == OK) {
|
|
|
|
PackedVector3Array faces;
|
|
|
|
|
|
|
|
for (const Geometry3D::MeshData::Face &face : md.faces) {
|
|
|
|
for (uint32_t k = 2; k < face.indices.size(); ++k) {
|
|
|
|
faces.push_back(md.vertices[face.indices[0]]);
|
|
|
|
faces.push_back(md.vertices[face.indices[k - 1]]);
|
|
|
|
faces.push_back(md.vertices[face.indices[k]]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
p_source_geometry_data->add_faces(faces, shapes[i]);
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
case PhysicsServer3D::SHAPE_CONCAVE_POLYGON: {
|
|
|
|
Dictionary dict = data;
|
|
|
|
PackedVector3Array faces = Variant(dict["faces"]);
|
|
|
|
p_source_geometry_data->add_faces(faces, shapes[i]);
|
|
|
|
} break;
|
|
|
|
case PhysicsServer3D::SHAPE_HEIGHTMAP: {
|
|
|
|
Dictionary dict = data;
|
|
|
|
///< dict( int:"width", int:"depth",float:"cell_size", float_array:"heights"
|
|
|
|
int heightmap_depth = dict["depth"];
|
|
|
|
int heightmap_width = dict["width"];
|
|
|
|
|
|
|
|
if (heightmap_depth >= 2 && heightmap_width >= 2) {
|
|
|
|
const Vector<real_t> &map_data = dict["heights"];
|
|
|
|
|
|
|
|
Vector2 heightmap_gridsize(heightmap_width - 1, heightmap_depth - 1);
|
|
|
|
Vector3 start = Vector3(heightmap_gridsize.x, 0, heightmap_gridsize.y) * -0.5;
|
|
|
|
|
|
|
|
Vector<Vector3> vertex_array;
|
|
|
|
vertex_array.resize((heightmap_depth - 1) * (heightmap_width - 1) * 6);
|
|
|
|
Vector3 *vertex_array_ptrw = vertex_array.ptrw();
|
|
|
|
const real_t *map_data_ptr = map_data.ptr();
|
|
|
|
int vertex_index = 0;
|
|
|
|
|
|
|
|
for (int d = 0; d < heightmap_depth - 1; d++) {
|
|
|
|
for (int w = 0; w < heightmap_width - 1; w++) {
|
|
|
|
vertex_array_ptrw[vertex_index] = start + Vector3(w, map_data_ptr[(heightmap_width * d) + w], d);
|
|
|
|
vertex_array_ptrw[vertex_index + 1] = start + Vector3(w + 1, map_data_ptr[(heightmap_width * d) + w + 1], d);
|
|
|
|
vertex_array_ptrw[vertex_index + 2] = start + Vector3(w, map_data_ptr[(heightmap_width * d) + heightmap_width + w], d + 1);
|
|
|
|
vertex_array_ptrw[vertex_index + 3] = start + Vector3(w + 1, map_data_ptr[(heightmap_width * d) + w + 1], d);
|
|
|
|
vertex_array_ptrw[vertex_index + 4] = start + Vector3(w + 1, map_data_ptr[(heightmap_width * d) + heightmap_width + w + 1], d + 1);
|
|
|
|
vertex_array_ptrw[vertex_index + 5] = start + Vector3(w, map_data_ptr[(heightmap_width * d) + heightmap_width + w], d + 1);
|
|
|
|
vertex_index += 6;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (vertex_array.size() > 0) {
|
|
|
|
p_source_geometry_data->add_faces(vertex_array, shapes[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
default: {
|
|
|
|
WARN_PRINT("Unsupported collision shape type.");
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2025-02-27 19:01:23 -03:00
|
|
|
#endif // PHYSICS_3D_DISABLED
|
2024-12-28 01:33:40 +01:00
|
|
|
}
|
2025-03-30 13:20:04 -03:00
|
|
|
#endif // NAVIGATION_3D_DISABLED
|
2024-12-28 01:33:40 +01:00
|
|
|
|
2025-03-30 13:20:04 -03:00
|
|
|
#if defined(DEBUG_ENABLED) && !defined(NAVIGATION_3D_DISABLED)
|
2022-08-09 20:13:47 +02:00
|
|
|
void GridMap::_update_navigation_debug_edge_connections() {
|
|
|
|
if (bake_navigation) {
|
|
|
|
for (const KeyValue<OctantKey, Octant *> &E : octant_map) {
|
|
|
|
_update_octant_navigation_debug_edge_connections_mesh(E.key);
|
|
|
|
}
|
|
|
|
}
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
|
|
|
|
2022-08-09 20:13:47 +02:00
|
|
|
void GridMap::_navigation_map_changed(RID p_map) {
|
|
|
|
if (bake_navigation && is_inside_tree() && p_map == get_world_3d()->get_navigation_map()) {
|
|
|
|
_update_navigation_debug_edge_connections();
|
|
|
|
}
|
|
|
|
}
|
2025-03-30 13:20:04 -03:00
|
|
|
#endif // defined(DEBUG_ENABLED) && !defined(NAVIGATION_3D_DISABLED)
|
2022-08-09 20:13:47 +02:00
|
|
|
|
2014-02-09 22:10:30 -03:00
|
|
|
GridMap::~GridMap() {
|
|
|
|
clear();
|
2025-03-30 13:20:04 -03:00
|
|
|
#if defined(DEBUG_ENABLED) && !defined(NAVIGATION_3D_DISABLED)
|
2022-12-21 14:21:43 -08:00
|
|
|
NavigationServer3D::get_singleton()->disconnect("map_changed", callable_mp(this, &GridMap::_navigation_map_changed));
|
|
|
|
NavigationServer3D::get_singleton()->disconnect("navigation_debug_changed", callable_mp(this, &GridMap::_update_navigation_debug_edge_connections));
|
2025-03-30 13:20:04 -03:00
|
|
|
#endif // defined(DEBUG_ENABLED) && !defined(NAVIGATION_3D_DISABLED)
|
2022-08-09 20:13:47 +02:00
|
|
|
}
|
|
|
|
|
2025-03-30 13:20:04 -03:00
|
|
|
#if defined(DEBUG_ENABLED) && !defined(NAVIGATION_3D_DISABLED)
|
2022-08-09 20:13:47 +02:00
|
|
|
void GridMap::_update_octant_navigation_debug_edge_connections_mesh(const OctantKey &p_key) {
|
|
|
|
ERR_FAIL_COND(!octant_map.has(p_key));
|
|
|
|
Octant &g = *octant_map[p_key];
|
|
|
|
|
2023-01-10 07:14:16 +01:00
|
|
|
if (!NavigationServer3D::get_singleton()->get_debug_navigation_enabled()) {
|
2022-08-09 20:13:47 +02:00
|
|
|
if (g.navigation_debug_edge_connections_instance.is_valid()) {
|
|
|
|
RS::get_singleton()->instance_set_visible(g.navigation_debug_edge_connections_instance, false);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!is_inside_tree()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!bake_navigation) {
|
|
|
|
if (g.navigation_debug_edge_connections_instance.is_valid()) {
|
|
|
|
RS::get_singleton()->instance_set_visible(g.navigation_debug_edge_connections_instance, false);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!g.navigation_debug_edge_connections_instance.is_valid()) {
|
|
|
|
g.navigation_debug_edge_connections_instance = RenderingServer::get_singleton()->instance_create();
|
|
|
|
}
|
|
|
|
|
2024-06-09 15:21:41 -05:00
|
|
|
if (g.navigation_debug_edge_connections_mesh.is_null()) {
|
|
|
|
g.navigation_debug_edge_connections_mesh.instantiate();
|
2022-08-09 20:13:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
g.navigation_debug_edge_connections_mesh->clear_surfaces();
|
|
|
|
|
|
|
|
float edge_connection_margin = NavigationServer3D::get_singleton()->map_get_edge_connection_margin(get_world_3d()->get_navigation_map());
|
|
|
|
float half_edge_connection_margin = edge_connection_margin * 0.5;
|
|
|
|
|
|
|
|
Vector<Vector3> vertex_array;
|
|
|
|
|
2022-12-11 18:02:35 +01:00
|
|
|
for (KeyValue<IndexKey, Octant::NavigationCell> &F : g.navigation_cell_ids) {
|
2022-08-09 20:13:47 +02:00
|
|
|
if (cell_map.has(F.key) && F.value.region.is_valid()) {
|
|
|
|
int connections_count = NavigationServer3D::get_singleton()->region_get_connections_count(F.value.region);
|
|
|
|
if (connections_count == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < connections_count; i++) {
|
|
|
|
Vector3 connection_pathway_start = NavigationServer3D::get_singleton()->region_get_connection_pathway_start(F.value.region, i);
|
|
|
|
Vector3 connection_pathway_end = NavigationServer3D::get_singleton()->region_get_connection_pathway_end(F.value.region, i);
|
|
|
|
|
|
|
|
Vector3 direction_start_end = connection_pathway_start.direction_to(connection_pathway_end);
|
|
|
|
Vector3 direction_end_start = connection_pathway_end.direction_to(connection_pathway_start);
|
|
|
|
|
|
|
|
Vector3 start_right_dir = direction_start_end.cross(Vector3(0, 1, 0));
|
|
|
|
Vector3 start_left_dir = -start_right_dir;
|
|
|
|
|
|
|
|
Vector3 end_right_dir = direction_end_start.cross(Vector3(0, 1, 0));
|
|
|
|
Vector3 end_left_dir = -end_right_dir;
|
|
|
|
|
|
|
|
Vector3 left_start_pos = connection_pathway_start + (start_left_dir * half_edge_connection_margin);
|
|
|
|
Vector3 right_start_pos = connection_pathway_start + (start_right_dir * half_edge_connection_margin);
|
|
|
|
Vector3 left_end_pos = connection_pathway_end + (end_right_dir * half_edge_connection_margin);
|
|
|
|
Vector3 right_end_pos = connection_pathway_end + (end_left_dir * half_edge_connection_margin);
|
|
|
|
|
|
|
|
vertex_array.push_back(right_end_pos);
|
|
|
|
vertex_array.push_back(left_start_pos);
|
|
|
|
vertex_array.push_back(right_start_pos);
|
|
|
|
|
|
|
|
vertex_array.push_back(left_end_pos);
|
|
|
|
vertex_array.push_back(right_end_pos);
|
|
|
|
vertex_array.push_back(right_start_pos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-03-20 00:07:31 +08:00
|
|
|
if (vertex_array.is_empty()) {
|
2022-08-09 20:13:47 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-12-21 14:21:43 -08:00
|
|
|
Ref<StandardMaterial3D> edge_connections_material = NavigationServer3D::get_singleton()->get_debug_navigation_edge_connections_material();
|
2022-08-09 20:13:47 +02:00
|
|
|
|
|
|
|
Array mesh_array;
|
|
|
|
mesh_array.resize(Mesh::ARRAY_MAX);
|
|
|
|
mesh_array[Mesh::ARRAY_VERTEX] = vertex_array;
|
|
|
|
|
|
|
|
g.navigation_debug_edge_connections_mesh->add_surface_from_arrays(Mesh::PRIMITIVE_TRIANGLES, mesh_array);
|
|
|
|
g.navigation_debug_edge_connections_mesh->surface_set_material(0, edge_connections_material);
|
|
|
|
|
|
|
|
RS::get_singleton()->instance_set_base(g.navigation_debug_edge_connections_instance, g.navigation_debug_edge_connections_mesh->get_rid());
|
|
|
|
RS::get_singleton()->instance_set_visible(g.navigation_debug_edge_connections_instance, is_visible_in_tree());
|
|
|
|
if (is_inside_tree()) {
|
|
|
|
RS::get_singleton()->instance_set_scenario(g.navigation_debug_edge_connections_instance, get_world_3d()->get_scenario());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool enable_edge_connections = NavigationServer3D::get_singleton()->get_debug_navigation_enable_edge_connections();
|
|
|
|
if (!enable_edge_connections) {
|
|
|
|
RS::get_singleton()->instance_set_visible(g.navigation_debug_edge_connections_instance, false);
|
|
|
|
}
|
2014-02-09 22:10:30 -03:00
|
|
|
}
|
2025-03-30 13:20:04 -03:00
|
|
|
#endif // defined(DEBUG_ENABLED) && !defined(NAVIGATION_3D_DISABLED)
|