| 
									
										
										
										
											2023-01-05 13:25:55 +01:00
										 |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*  path_3d.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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | #include "path_3d.h"
 | 
					
						
							| 
									
										
										
										
											2017-08-19 01:02:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-15 23:24:06 +02:00
										 |  |  | Path3D::Path3D() { | 
					
						
							|  |  |  | 	SceneTree *st = SceneTree::get_singleton(); | 
					
						
							|  |  |  | 	if (st && st->is_debugging_paths_hint()) { | 
					
						
							|  |  |  | 		debug_instance = RS::get_singleton()->instance_create(); | 
					
						
							|  |  |  | 		set_notify_transform(true); | 
					
						
							|  |  |  | 		_update_debug_mesh(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Path3D::~Path3D() { | 
					
						
							|  |  |  | 	if (debug_instance.is_valid()) { | 
					
						
							| 
									
										
										
										
											2023-05-09 15:50:48 +02:00
										 |  |  | 		ERR_FAIL_NULL(RenderingServer::get_singleton()); | 
					
						
							| 
									
										
										
										
											2022-06-15 23:24:06 +02:00
										 |  |  | 		RS::get_singleton()->free(debug_instance); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (debug_mesh.is_valid()) { | 
					
						
							| 
									
										
										
										
											2023-05-09 15:50:48 +02:00
										 |  |  | 		ERR_FAIL_NULL(RenderingServer::get_singleton()); | 
					
						
							| 
									
										
										
										
											2022-06-15 23:24:06 +02:00
										 |  |  | 		RS::get_singleton()->free(debug_mesh->get_rid()); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Path3D::_notification(int p_what) { | 
					
						
							|  |  |  | 	switch (p_what) { | 
					
						
							|  |  |  | 		case NOTIFICATION_ENTER_TREE: { | 
					
						
							|  |  |  | 			SceneTree *st = SceneTree::get_singleton(); | 
					
						
							|  |  |  | 			if (st && st->is_debugging_paths_hint()) { | 
					
						
							|  |  |  | 				_update_debug_mesh(); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case NOTIFICATION_EXIT_TREE: { | 
					
						
							|  |  |  | 			SceneTree *st = SceneTree::get_singleton(); | 
					
						
							|  |  |  | 			if (st && st->is_debugging_paths_hint()) { | 
					
						
							|  |  |  | 				RS::get_singleton()->instance_set_visible(debug_instance, false); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case NOTIFICATION_TRANSFORM_CHANGED: { | 
					
						
							|  |  |  | 			if (is_inside_tree() && debug_instance.is_valid()) { | 
					
						
							|  |  |  | 				RS::get_singleton()->instance_set_transform(debug_instance, get_global_transform()); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Path3D::_update_debug_mesh() { | 
					
						
							|  |  |  | 	SceneTree *st = SceneTree::get_singleton(); | 
					
						
							|  |  |  | 	if (!(st && st->is_debugging_paths_hint())) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!debug_mesh.is_valid()) { | 
					
						
							|  |  |  | 		debug_mesh = Ref<ArrayMesh>(memnew(ArrayMesh)); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!(curve.is_valid())) { | 
					
						
							|  |  |  | 		RS::get_singleton()->instance_set_visible(debug_instance, false); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (curve->get_point_count() < 2) { | 
					
						
							|  |  |  | 		RS::get_singleton()->instance_set_visible(debug_instance, false); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Vector<Vector3> vertex_array; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 1; i < curve->get_point_count(); i++) { | 
					
						
							|  |  |  | 		Vector3 line_end = curve->get_point_position(i); | 
					
						
							|  |  |  | 		Vector3 line_start = curve->get_point_position(i - 1); | 
					
						
							|  |  |  | 		vertex_array.push_back(line_start); | 
					
						
							|  |  |  | 		vertex_array.push_back(line_end); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Array mesh_array; | 
					
						
							|  |  |  | 	mesh_array.resize(Mesh::ARRAY_MAX); | 
					
						
							|  |  |  | 	mesh_array[Mesh::ARRAY_VERTEX] = vertex_array; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	debug_mesh->clear_surfaces(); | 
					
						
							|  |  |  | 	debug_mesh->add_surface_from_arrays(Mesh::PRIMITIVE_LINES, mesh_array); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	RS::get_singleton()->instance_set_base(debug_instance, debug_mesh->get_rid()); | 
					
						
							|  |  |  | 	RS::get_singleton()->mesh_surface_set_material(debug_mesh->get_rid(), 0, st->get_debug_paths_material()->get_rid()); | 
					
						
							|  |  |  | 	if (is_inside_tree()) { | 
					
						
							|  |  |  | 		RS::get_singleton()->instance_set_scenario(debug_instance, get_world_3d()->get_scenario()); | 
					
						
							|  |  |  | 		RS::get_singleton()->instance_set_transform(debug_instance, get_global_transform()); | 
					
						
							|  |  |  | 		RS::get_singleton()->instance_set_visible(debug_instance, is_visible_in_tree()); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | void Path3D::_curve_changed() { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (is_inside_tree() && Engine::get_singleton()->is_editor_hint()) { | 
					
						
							| 
									
										
										
										
											2021-06-23 16:49:50 +02:00
										 |  |  | 		update_gizmos(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 	if (is_inside_tree()) { | 
					
						
							| 
									
										
										
										
											2021-07-17 18:22:52 -03:00
										 |  |  | 		emit_signal(SNAME("curve_changed")); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-10-17 14:45:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-11 17:03:12 -02:00
										 |  |  | 	// update the configuration warnings of all children of type PathFollow
 | 
					
						
							|  |  |  | 	// previously used for PathFollowOriented (now enforced orientation is done in PathFollow)
 | 
					
						
							| 
									
										
										
										
											2018-10-17 14:45:51 +02:00
										 |  |  | 	if (is_inside_tree()) { | 
					
						
							|  |  |  | 		for (int i = 0; i < get_child_count(); i++) { | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 			PathFollow3D *child = Object::cast_to<PathFollow3D>(get_child(i)); | 
					
						
							| 
									
										
										
										
											2018-10-17 14:45:51 +02:00
										 |  |  | 			if (child) { | 
					
						
							| 
									
										
										
										
											2020-10-29 05:01:28 -05:00
										 |  |  | 				child->update_configuration_warnings(); | 
					
						
							| 
									
										
										
										
											2018-10-17 14:45:51 +02:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-06-15 23:24:06 +02:00
										 |  |  | 	SceneTree *st = SceneTree::get_singleton(); | 
					
						
							|  |  |  | 	if (st && st->is_debugging_paths_hint()) { | 
					
						
							|  |  |  | 		_update_debug_mesh(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | void Path3D::set_curve(const Ref<Curve3D> &p_curve) { | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 	if (curve.is_valid()) { | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 		curve->disconnect("changed", callable_mp(this, &Path3D::_curve_changed)); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	curve = p_curve; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (curve.is_valid()) { | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 		curve->connect("changed", callable_mp(this, &Path3D::_curve_changed)); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	_curve_changed(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | Ref<Curve3D> Path3D::get_curve() const { | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 	return curve; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | void Path3D::_bind_methods() { | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_curve", "curve"), &Path3D::set_curve); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_curve"), &Path3D::get_curve); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-12 13:16:14 +02:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "curve", PROPERTY_HINT_RESOURCE_TYPE, "Curve3D", PROPERTY_USAGE_DEFAULT | PROPERTY_USAGE_EDITOR_INSTANTIATE_OBJECT), "set_curve", "get_curve"); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ADD_SIGNAL(MethodInfo("curve_changed")); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-08 10:06:02 +08:00
										 |  |  | void PathFollow3D::_update_transform(bool p_update_xyz_rot) { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!path) { | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Ref<Curve3D> c = path->get_curve(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!c.is_valid()) { | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-29 19:55:54 -05:00
										 |  |  | 	real_t bl = c->get_baked_length(); | 
					
						
							| 
									
										
										
										
											2019-02-23 20:20:54 -03:00
										 |  |  | 	if (bl == 0.0) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-01-11 17:03:12 -02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-07 18:29:12 +08:00
										 |  |  | 	Transform3D t; | 
					
						
							| 
									
										
										
										
											2017-05-22 17:06:42 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-07 18:29:12 +08:00
										 |  |  | 	if (rotation_mode == ROTATION_NONE) { | 
					
						
							|  |  |  | 		Vector3 pos = c->sample_baked(progress, cubic); | 
					
						
							| 
									
										
										
										
											2019-01-11 17:03:12 -02:00
										 |  |  | 		t.origin = pos; | 
					
						
							| 
									
										
										
										
											2022-08-07 18:29:12 +08:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		t = c->sample_baked_with_rotation(progress, cubic, false); | 
					
						
							|  |  |  | 		Vector3 forward = t.basis.get_column(2); // Retain tangent for applying tilt
 | 
					
						
							|  |  |  | 		t = PathFollow3D::correct_posture(t, rotation_mode); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-07 18:29:12 +08:00
										 |  |  | 		// Apply tilt *after* correct_posture
 | 
					
						
							|  |  |  | 		if (tilt_enabled) { | 
					
						
							|  |  |  | 			const real_t tilt = c->sample_baked_tilt(progress); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-07 18:29:12 +08:00
										 |  |  | 			const Basis twist(forward, tilt); | 
					
						
							|  |  |  | 			t.basis = twist * t.basis; | 
					
						
							| 
									
										
										
										
											2017-05-22 17:06:42 -05:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-07 18:29:12 +08:00
										 |  |  | 	Vector3 scale = get_transform().basis.get_scale(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	t.translate_local(Vector3(h_offset, v_offset, 0)); | 
					
						
							|  |  |  | 	t.basis.scale_local(scale); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 	set_transform(t); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | void PathFollow3D::_notification(int p_what) { | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 	switch (p_what) { | 
					
						
							|  |  |  | 		case NOTIFICATION_ENTER_TREE: { | 
					
						
							|  |  |  | 			Node *parent = get_parent(); | 
					
						
							|  |  |  | 			if (parent) { | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 				path = Object::cast_to<Path3D>(parent); | 
					
						
							| 
									
										
										
										
											2017-09-06 23:50:18 +02:00
										 |  |  | 				if (path) { | 
					
						
							| 
									
										
										
										
											2020-07-08 10:06:02 +08:00
										 |  |  | 					_update_transform(false); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2022-02-15 18:06:48 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 		case NOTIFICATION_EXIT_TREE: { | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 			path = nullptr; | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | void PathFollow3D::set_cubic_interpolation(bool p_enable) { | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 	cubic = p_enable; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | bool PathFollow3D::get_cubic_interpolation() const { | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 	return cubic; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-12 23:57:11 +03:00
										 |  |  | void PathFollow3D::_validate_property(PropertyInfo &p_property) const { | 
					
						
							|  |  |  | 	if (p_property.name == "offset") { | 
					
						
							| 
									
										
										
										
											2021-01-29 19:55:54 -05:00
										 |  |  | 		real_t max = 10000; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (path && path->get_curve().is_valid()) { | 
					
						
							| 
									
										
										
										
											2018-01-12 00:35:12 +02:00
										 |  |  | 			max = path->get_curve()->get_baked_length(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-01-12 00:35:12 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-27 19:16:03 +02:00
										 |  |  | 		p_property.hint_string = "0," + rtos(max) + ",0.01,or_less,or_greater"; | 
					
						
							| 
									
										
										
										
											2018-01-12 00:35:12 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-19 16:43:15 +01:00
										 |  |  | PackedStringArray PathFollow3D::get_configuration_warnings() const { | 
					
						
							|  |  |  | 	PackedStringArray warnings = Node::get_configuration_warnings(); | 
					
						
							| 
									
										
										
										
											2020-05-14 23:59:27 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-29 05:01:28 -05:00
										 |  |  | 	if (is_visible_in_tree() && is_inside_tree()) { | 
					
						
							|  |  |  | 		if (!Object::cast_to<Path3D>(get_parent())) { | 
					
						
							| 
									
										
										
										
											2022-03-28 15:24:14 +02:00
										 |  |  | 			warnings.push_back(RTR("PathFollow3D only works when set as a child of a Path3D node.")); | 
					
						
							| 
									
										
										
										
											2020-10-29 05:01:28 -05:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 			Path3D *p = Object::cast_to<Path3D>(get_parent()); | 
					
						
							|  |  |  | 			if (p->get_curve().is_valid() && !p->get_curve()->is_up_vector_enabled() && rotation_mode == ROTATION_ORIENTED) { | 
					
						
							| 
									
										
										
										
											2022-03-28 15:24:14 +02:00
										 |  |  | 				warnings.push_back(RTR("PathFollow3D's ROTATION_ORIENTED requires \"Up Vector\" to be enabled in its parent Path3D's Curve resource.")); | 
					
						
							| 
									
										
										
										
											2020-05-14 23:59:27 +03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2019-01-11 17:03:12 -02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-10-17 14:45:51 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-29 05:01:28 -05:00
										 |  |  | 	return warnings; | 
					
						
							| 
									
										
										
										
											2018-10-17 14:45:51 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-07 18:29:12 +08:00
										 |  |  | Transform3D PathFollow3D::correct_posture(Transform3D p_transform, PathFollow3D::RotationMode p_rotation_mode) { | 
					
						
							|  |  |  | 	Transform3D t = p_transform; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Modify frame according to rotation mode.
 | 
					
						
							|  |  |  | 	if (p_rotation_mode == PathFollow3D::ROTATION_NONE) { | 
					
						
							|  |  |  | 		// Clear rotation.
 | 
					
						
							|  |  |  | 		t.basis = Basis(); | 
					
						
							|  |  |  | 	} else if (p_rotation_mode == PathFollow3D::ROTATION_ORIENTED) { | 
					
						
							|  |  |  | 		// Y-axis always straight up.
 | 
					
						
							|  |  |  | 		Vector3 up(0.0, 1.0, 0.0); | 
					
						
							|  |  |  | 		Vector3 forward = t.basis.get_column(2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		t.basis = Basis::looking_at(-forward, up); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		// Lock some euler axes.
 | 
					
						
							|  |  |  | 		Vector3 euler = t.basis.get_euler_normalized(EulerOrder::YXZ); | 
					
						
							|  |  |  | 		if (p_rotation_mode == PathFollow3D::ROTATION_Y) { | 
					
						
							|  |  |  | 			// Only Y-axis allowed.
 | 
					
						
							|  |  |  | 			euler[0] = 0; | 
					
						
							|  |  |  | 			euler[2] = 0; | 
					
						
							|  |  |  | 		} else if (p_rotation_mode == PathFollow3D::ROTATION_XY) { | 
					
						
							|  |  |  | 			// XY allowed.
 | 
					
						
							|  |  |  | 			euler[2] = 0; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Basis locked = Basis::from_euler(euler, EulerOrder::YXZ); | 
					
						
							|  |  |  | 		t.basis = locked; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return t; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | void PathFollow3D::_bind_methods() { | 
					
						
							| 
									
										
										
										
											2022-08-23 23:41:41 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_progress", "progress"), &PathFollow3D::set_progress); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_progress"), &PathFollow3D::get_progress); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_h_offset", "h_offset"), &PathFollow3D::set_h_offset); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_h_offset"), &PathFollow3D::get_h_offset); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_v_offset", "v_offset"), &PathFollow3D::set_v_offset); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_v_offset"), &PathFollow3D::get_v_offset); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-23 23:41:41 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_progress_ratio", "ratio"), &PathFollow3D::set_progress_ratio); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_progress_ratio"), &PathFollow3D::get_progress_ratio); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_rotation_mode", "rotation_mode"), &PathFollow3D::set_rotation_mode); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_rotation_mode"), &PathFollow3D::get_rotation_mode); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_cubic_interpolation", "enable"), &PathFollow3D::set_cubic_interpolation); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_cubic_interpolation"), &PathFollow3D::get_cubic_interpolation); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_loop", "loop"), &PathFollow3D::set_loop); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("has_loop"), &PathFollow3D::has_loop); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-07 18:29:12 +08:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_tilt_enabled", "enabled"), &PathFollow3D::set_tilt_enabled); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_tilt_enabled"), &PathFollow3D::is_tilt_enabled); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_static_method("PathFollow3D", D_METHOD("correct_posture", "transform", "rotation_mode"), &PathFollow3D::correct_posture); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-27 19:16:03 +02:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "progress", PROPERTY_HINT_RANGE, "0,10000,0.01,or_less,or_greater,suffix:m"), "set_progress", "get_progress"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "progress_ratio", PROPERTY_HINT_RANGE, "0,1,0.0001,or_less,or_greater", PROPERTY_USAGE_EDITOR), "set_progress_ratio", "get_progress_ratio"); | 
					
						
							| 
									
										
										
										
											2021-12-02 18:09:19 -06:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "h_offset", PROPERTY_HINT_NONE, "suffix:m"), "set_h_offset", "get_h_offset"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "v_offset", PROPERTY_HINT_NONE, "suffix:m"), "set_v_offset", "get_v_offset"); | 
					
						
							| 
									
										
										
										
											2019-01-11 17:03:12 -02:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::INT, "rotation_mode", PROPERTY_HINT_ENUM, "None,Y,XY,XYZ,Oriented"), "set_rotation_mode", "get_rotation_mode"); | 
					
						
							| 
									
										
										
										
											2018-01-12 00:35:12 +02:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "cubic_interp"), "set_cubic_interpolation", "get_cubic_interpolation"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "loop"), "set_loop", "has_loop"); | 
					
						
							| 
									
										
										
										
											2022-08-07 18:29:12 +08:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "tilt_enabled"), "set_tilt_enabled", "is_tilt_enabled"); | 
					
						
							| 
									
										
										
										
											2018-01-12 00:35:12 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-20 17:45:01 +02:00
										 |  |  | 	BIND_ENUM_CONSTANT(ROTATION_NONE); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(ROTATION_Y); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(ROTATION_XY); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(ROTATION_XYZ); | 
					
						
							| 
									
										
										
										
											2019-01-11 17:03:12 -02:00
										 |  |  | 	BIND_ENUM_CONSTANT(ROTATION_ORIENTED); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-23 23:41:41 +02:00
										 |  |  | void PathFollow3D::set_progress(real_t p_progress) { | 
					
						
							|  |  |  | 	ERR_FAIL_COND(!isfinite(p_progress)); | 
					
						
							|  |  |  | 	progress = p_progress; | 
					
						
							| 
									
										
										
										
											2017-10-21 11:26:55 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-30 12:43:34 +01:00
										 |  |  | 	if (path) { | 
					
						
							| 
									
										
										
										
											2020-04-13 07:42:47 +02:00
										 |  |  | 		if (path->get_curve().is_valid()) { | 
					
						
							| 
									
										
										
										
											2021-01-29 19:55:54 -05:00
										 |  |  | 			real_t path_length = path->get_curve()->get_baked_length(); | 
					
						
							| 
									
										
										
										
											2019-11-30 12:43:34 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-17 17:26:05 +02:00
										 |  |  | 			if (loop && path_length) { | 
					
						
							| 
									
										
										
										
											2022-08-23 23:41:41 +02:00
										 |  |  | 				progress = Math::fposmod(progress, path_length); | 
					
						
							|  |  |  | 				if (!Math::is_zero_approx(p_progress) && Math::is_zero_approx(progress)) { | 
					
						
							|  |  |  | 					progress = path_length; | 
					
						
							| 
									
										
										
										
											2020-04-13 07:42:47 +02:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2019-11-30 12:43:34 +01:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 		_update_transform(); | 
					
						
							| 
									
										
										
										
											2019-11-30 12:43:34 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-29 19:55:54 -05:00
										 |  |  | void PathFollow3D::set_h_offset(real_t p_h_offset) { | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 	h_offset = p_h_offset; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (path) { | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 		_update_transform(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-29 19:55:54 -05:00
										 |  |  | real_t PathFollow3D::get_h_offset() const { | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 	return h_offset; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-29 19:55:54 -05:00
										 |  |  | void PathFollow3D::set_v_offset(real_t p_v_offset) { | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 	v_offset = p_v_offset; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (path) { | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 		_update_transform(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-29 19:55:54 -05:00
										 |  |  | real_t PathFollow3D::get_v_offset() const { | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 	return v_offset; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-23 23:41:41 +02:00
										 |  |  | real_t PathFollow3D::get_progress() const { | 
					
						
							|  |  |  | 	return progress; | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-23 23:41:41 +02:00
										 |  |  | void PathFollow3D::set_progress_ratio(real_t p_ratio) { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (path && path->get_curve().is_valid() && path->get_curve()->get_baked_length()) { | 
					
						
							| 
									
										
										
										
											2022-08-23 23:41:41 +02:00
										 |  |  | 		set_progress(p_ratio * path->get_curve()->get_baked_length()); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-23 23:41:41 +02:00
										 |  |  | real_t PathFollow3D::get_progress_ratio() const { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (path && path->get_curve().is_valid() && path->get_curve()->get_baked_length()) { | 
					
						
							| 
									
										
										
										
											2022-08-23 23:41:41 +02:00
										 |  |  | 		return get_progress() / path->get_curve()->get_baked_length(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | void PathFollow3D::set_rotation_mode(RotationMode p_rotation_mode) { | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 	rotation_mode = p_rotation_mode; | 
					
						
							| 
									
										
										
										
											2019-01-11 17:03:12 -02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-29 05:01:28 -05:00
										 |  |  | 	update_configuration_warnings(); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 	_update_transform(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | PathFollow3D::RotationMode PathFollow3D::get_rotation_mode() const { | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 	return rotation_mode; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | void PathFollow3D::set_loop(bool p_loop) { | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 	loop = p_loop; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | bool PathFollow3D::has_loop() const { | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 	return loop; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2022-08-07 18:29:12 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | void PathFollow3D::set_tilt_enabled(bool p_enable) { | 
					
						
							|  |  |  | 	tilt_enabled = p_enable; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool PathFollow3D::is_tilt_enabled() const { | 
					
						
							|  |  |  | 	return tilt_enabled; | 
					
						
							|  |  |  | } |