| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  path.cpp                                                             */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2020-01-01 11:16:22 +01:00
										 |  |  | /* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md).   */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the       */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including   */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,   */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to    */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to */ | 
					
						
							|  |  |  | /* the following conditions:                                             */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be        */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.       */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,       */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF    */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY  */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,  */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE     */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-05 00:50:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | #include "path.h"
 | 
					
						
							| 
									
										
										
										
											2017-08-19 01:02:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-11 18:13:45 +02:00
										 |  |  | #include "core/engine.h"
 | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | #include "scene/scene_string_names.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Path::_notification(int p_what) { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Path::_curve_changed() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-19 01:02:56 +02:00
										 |  |  | 	if (is_inside_tree() && Engine::get_singleton()->is_editor_hint()) | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 		update_gizmo(); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 	if (is_inside_tree()) { | 
					
						
							|  |  |  | 		emit_signal("curve_changed"); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											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++) { | 
					
						
							| 
									
										
										
										
											2019-01-11 17:03:12 -02:00
										 |  |  | 			PathFollow *child = Object::cast_to<PathFollow>(get_child(i)); | 
					
						
							| 
									
										
										
										
											2018-10-17 14:45:51 +02:00
										 |  |  | 			if (child) { | 
					
						
							|  |  |  | 				child->update_configuration_warning(); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Path::set_curve(const Ref<Curve3D> &p_curve) { | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (curve.is_valid()) { | 
					
						
							| 
									
										
										
										
											2020-02-19 16:27:19 -03:00
										 |  |  | 		curve->disconnect_compat("changed", this, "_curve_changed"); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	curve = p_curve; | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (curve.is_valid()) { | 
					
						
							| 
									
										
										
										
											2020-02-19 16:27:19 -03:00
										 |  |  | 		curve->connect_compat("changed", this, "_curve_changed"); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	_curve_changed(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Ref<Curve3D> Path::get_curve() const { | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return curve; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Path::_bind_methods() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-09 13:19:41 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_curve", "curve"), &Path::set_curve); | 
					
						
							| 
									
										
										
										
											2017-08-09 13:54:55 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("get_curve"), &Path::get_curve); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("_curve_changed"), &Path::_curve_changed); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "curve", PROPERTY_HINT_RESOURCE_TYPE, "Curve3D"), "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
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Path::Path() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	set_curve(Ref<Curve3D>(memnew(Curve3D))); //create one by default
 | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PathFollow::_update_transform() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!path) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	Ref<Curve3D> c = path->get_curve(); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 	if (!c.is_valid()) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 11:26:55 -04:00
										 |  |  | 	if (delta_offset == 0) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-11 17:03:12 -02:00
										 |  |  | 	float 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
										 |  |  | 	float bi = c->get_bake_interval(); | 
					
						
							|  |  |  | 	float o_next = offset + bi; | 
					
						
							| 
									
										
										
										
											2017-10-21 11:26:55 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (loop) { | 
					
						
							| 
									
										
										
										
											2019-01-11 17:03:12 -02:00
										 |  |  | 		o_next = Math::fposmod(o_next, bl); | 
					
						
							|  |  |  | 	} else if (rotation_mode == ROTATION_ORIENTED && o_next >= bl) { | 
					
						
							|  |  |  | 		o_next = bl; | 
					
						
							| 
									
										
										
										
											2017-10-21 11:26:55 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-30 12:43:34 +01:00
										 |  |  | 	Vector3 pos = c->interpolate_baked(offset, cubic); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	Transform t = get_transform(); | 
					
						
							| 
									
										
										
										
											2019-01-11 17:03:12 -02:00
										 |  |  | 	// Vector3 pos_offset = Vector3(h_offset, v_offset, 0); not used in all cases
 | 
					
						
							| 
									
										
										
										
											2019-02-13 09:23:29 +01:00
										 |  |  | 	// will be replaced by "Vector3(h_offset, v_offset, 0)" where it was formerly used
 | 
					
						
							| 
									
										
										
										
											2019-01-11 17:03:12 -02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (rotation_mode == ROTATION_ORIENTED) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Vector3 forward = c->interpolate_baked(o_next, cubic) - pos; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (forward.length_squared() < CMP_EPSILON2) | 
					
						
							|  |  |  | 			forward = Vector3(0, 0, 1); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			forward.normalize(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-30 12:43:34 +01:00
										 |  |  | 		Vector3 up = c->interpolate_baked_up_vector(offset, true); | 
					
						
							| 
									
										
										
										
											2019-01-11 17:03:12 -02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-30 12:43:34 +01:00
										 |  |  | 		if (o_next < offset) { | 
					
						
							| 
									
										
										
										
											2019-01-11 17:03:12 -02:00
										 |  |  | 			Vector3 up1 = c->interpolate_baked_up_vector(o_next, true); | 
					
						
							|  |  |  | 			Vector3 axis = up.cross(up1); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-11 17:03:12 -02:00
										 |  |  | 			if (axis.length_squared() < CMP_EPSILON2) | 
					
						
							|  |  |  | 				axis = forward; | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				axis.normalize(); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-11 17:03:12 -02:00
										 |  |  | 			up.rotate(axis, up.angle_to(up1) * 0.5f); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Vector3 scale = t.basis.get_scale(); | 
					
						
							|  |  |  | 		Vector3 sideways = up.cross(forward).normalized(); | 
					
						
							|  |  |  | 		up = forward.cross(sideways).normalized(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		t.basis.set(sideways, up, forward); | 
					
						
							|  |  |  | 		t.basis.scale_local(scale); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		t.origin = pos + sideways * h_offset + up * v_offset; | 
					
						
							|  |  |  | 	} else if (rotation_mode != ROTATION_NONE) { | 
					
						
							| 
									
										
										
										
											2017-05-22 17:06:42 -05:00
										 |  |  | 		// perform parallel transport
 | 
					
						
							|  |  |  | 		//
 | 
					
						
							|  |  |  | 		// see C. Dougan, The Parallel Transport Frame, Game Programming Gems 2 for example
 | 
					
						
							|  |  |  | 		// for a discussion about why not Frenet frame.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-11 17:03:12 -02:00
										 |  |  | 		t.origin = pos; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-30 12:43:34 +01:00
										 |  |  | 		Vector3 t_prev = (pos - c->interpolate_baked(offset - delta_offset, cubic)).normalized(); | 
					
						
							|  |  |  | 		Vector3 t_cur = (c->interpolate_baked(offset + delta_offset, cubic) - pos).normalized(); | 
					
						
							| 
									
										
										
										
											2017-05-22 17:06:42 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		Vector3 axis = t_prev.cross(t_cur); | 
					
						
							| 
									
										
										
										
											2017-10-21 11:26:55 -04:00
										 |  |  | 		float dot = t_prev.dot(t_cur); | 
					
						
							| 
									
										
										
										
											2017-05-22 17:06:42 -05:00
										 |  |  | 		float angle = Math::acos(CLAMP(dot, -1, 1)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-16 10:42:53 -05:00
										 |  |  | 		if (likely(!Math::is_zero_approx(angle))) { | 
					
						
							| 
									
										
										
										
											2017-05-22 17:06:42 -05:00
										 |  |  | 			if (rotation_mode == ROTATION_Y) { | 
					
						
							|  |  |  | 				// assuming we're referring to global Y-axis. is this correct?
 | 
					
						
							|  |  |  | 				axis.x = 0; | 
					
						
							|  |  |  | 				axis.z = 0; | 
					
						
							|  |  |  | 			} else if (rotation_mode == ROTATION_XY) { | 
					
						
							|  |  |  | 				axis.z = 0; | 
					
						
							|  |  |  | 			} else if (rotation_mode == ROTATION_XYZ) { | 
					
						
							| 
									
										
										
										
											2017-10-21 11:26:55 -04:00
										 |  |  | 				// all components are allowed
 | 
					
						
							| 
									
										
										
										
											2017-05-22 17:06:42 -05:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-16 10:42:53 -05:00
										 |  |  | 			if (likely(!Math::is_zero_approx(axis.length()))) { | 
					
						
							| 
									
										
										
										
											2017-10-21 11:26:55 -04:00
										 |  |  | 				t.rotate_basis(axis.normalized(), angle); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-22 17:06:42 -05:00
										 |  |  | 		// do the additional tilting
 | 
					
						
							| 
									
										
										
										
											2019-11-30 12:43:34 +01:00
										 |  |  | 		float tilt_angle = c->interpolate_baked_tilt(offset); | 
					
						
							| 
									
										
										
										
											2017-10-21 11:26:55 -04:00
										 |  |  | 		Vector3 tilt_axis = t_cur; // not sure what tilt is supposed to do, is this correct??
 | 
					
						
							| 
									
										
										
										
											2017-05-22 17:06:42 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-16 10:42:53 -05:00
										 |  |  | 		if (likely(!Math::is_zero_approx(Math::abs(tilt_angle)))) { | 
					
						
							| 
									
										
										
										
											2017-05-22 17:06:42 -05:00
										 |  |  | 			if (rotation_mode == ROTATION_Y) { | 
					
						
							|  |  |  | 				tilt_axis.x = 0; | 
					
						
							|  |  |  | 				tilt_axis.z = 0; | 
					
						
							|  |  |  | 			} else if (rotation_mode == ROTATION_XY) { | 
					
						
							|  |  |  | 				tilt_axis.z = 0; | 
					
						
							|  |  |  | 			} else if (rotation_mode == ROTATION_XYZ) { | 
					
						
							| 
									
										
										
										
											2017-10-21 11:26:55 -04:00
										 |  |  | 				// all components are allowed
 | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-16 10:42:53 -05:00
										 |  |  | 			if (likely(!Math::is_zero_approx(tilt_axis.length()))) { | 
					
						
							| 
									
										
										
										
											2017-10-21 11:26:55 -04:00
										 |  |  | 				t.rotate_basis(tilt_axis.normalized(), tilt_angle); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-05-22 17:06:42 -05:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-11 17:03:12 -02:00
										 |  |  | 		t.translate(Vector3(h_offset, v_offset, 0)); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2019-01-11 17:03:12 -02:00
										 |  |  | 		t.origin = pos + Vector3(h_offset, v_offset, 0); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	set_transform(t); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PathFollow::_notification(int p_what) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	switch (p_what) { | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		case NOTIFICATION_ENTER_TREE: { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			Node *parent = get_parent(); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 			if (parent) { | 
					
						
							| 
									
										
										
										
											2017-09-06 23:50:18 +02:00
										 |  |  | 				path = Object::cast_to<Path>(parent); | 
					
						
							|  |  |  | 				if (path) { | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 					_update_transform(); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 		case NOTIFICATION_EXIT_TREE: { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			path = NULL; | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PathFollow::set_cubic_interpolation(bool p_enable) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	cubic = p_enable; | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool PathFollow::get_cubic_interpolation() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return cubic; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-12 00:35:12 +02:00
										 |  |  | void PathFollow::_validate_property(PropertyInfo &property) const { | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-12 00:35:12 +02:00
										 |  |  | 	if (property.name == "offset") { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		float max = 10000; | 
					
						
							|  |  |  | 		if (path && path->get_curve().is_valid()) | 
					
						
							|  |  |  | 			max = path->get_curve()->get_baked_length(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-24 14:40:33 +01:00
										 |  |  | 		property.hint_string = "0," + rtos(max) + ",0.01,or_lesser,or_greater"; | 
					
						
							| 
									
										
										
										
											2018-01-12 00:35:12 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-17 14:45:51 +02:00
										 |  |  | String PathFollow::get_configuration_warning() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!is_visible_in_tree() || !is_inside_tree()) | 
					
						
							|  |  |  | 		return String(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!Object::cast_to<Path>(get_parent())) { | 
					
						
							|  |  |  | 		return TTR("PathFollow only works when set as a child of a Path node."); | 
					
						
							| 
									
										
										
										
											2019-01-11 17:03:12 -02:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		Path *path = Object::cast_to<Path>(get_parent()); | 
					
						
							|  |  |  | 		if (path->get_curve().is_valid() && !path->get_curve()->is_up_vector_enabled() && rotation_mode == ROTATION_ORIENTED) { | 
					
						
							| 
									
										
										
										
											2019-07-09 00:17:04 +02:00
										 |  |  | 			return TTR("PathFollow's ROTATION_ORIENTED requires \"Up Vector\" to be enabled in its parent Path's Curve resource."); | 
					
						
							| 
									
										
										
										
											2019-01-11 17:03:12 -02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-10-17 14:45:51 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return String(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | void PathFollow::_bind_methods() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_offset", "offset"), &PathFollow::set_offset); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_offset"), &PathFollow::get_offset); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_h_offset", "h_offset"), &PathFollow::set_h_offset); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_h_offset"), &PathFollow::get_h_offset); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_v_offset", "v_offset"), &PathFollow::set_v_offset); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_v_offset"), &PathFollow::get_v_offset); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_unit_offset", "unit_offset"), &PathFollow::set_unit_offset); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_unit_offset"), &PathFollow::get_unit_offset); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_rotation_mode", "rotation_mode"), &PathFollow::set_rotation_mode); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_rotation_mode"), &PathFollow::get_rotation_mode); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_cubic_interpolation", "enable"), &PathFollow::set_cubic_interpolation); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_cubic_interpolation"), &PathFollow::get_cubic_interpolation); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_loop", "loop"), &PathFollow::set_loop); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("has_loop"), &PathFollow::has_loop); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-24 14:40:33 +01:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "offset", PROPERTY_HINT_RANGE, "0,10000,0.01,or_lesser,or_greater"), "set_offset", "get_offset"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "unit_offset", PROPERTY_HINT_RANGE, "0,1,0.0001,or_lesser,or_greater", PROPERTY_USAGE_EDITOR), "set_unit_offset", "get_unit_offset"); | 
					
						
							| 
									
										
										
										
											2018-01-12 00:35:12 +02:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "h_offset"), "set_h_offset", "get_h_offset"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "v_offset"), "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"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PathFollow::set_offset(float p_offset) { | 
					
						
							| 
									
										
										
										
											2017-10-21 11:26:55 -04:00
										 |  |  | 	delta_offset = p_offset - offset; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	offset = p_offset; | 
					
						
							| 
									
										
										
										
											2017-10-21 11:26:55 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-30 12:43:34 +01:00
										 |  |  | 	if (path) { | 
					
						
							|  |  |  | 		if (path->get_curve().is_valid() && path->get_curve()->get_baked_length()) { | 
					
						
							|  |  |  | 			float path_length = path->get_curve()->get_baked_length(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (loop) { | 
					
						
							|  |  |  | 				while (offset > path_length) | 
					
						
							|  |  |  | 					offset -= path_length; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				while (offset < 0) | 
					
						
							|  |  |  | 					offset += path_length; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				offset = CLAMP(offset, 0, path_length); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 	_change_notify("offset"); | 
					
						
							|  |  |  | 	_change_notify("unit_offset"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PathFollow::set_h_offset(float p_h_offset) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	h_offset = p_h_offset; | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 	if (path) | 
					
						
							|  |  |  | 		_update_transform(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | float PathFollow::get_h_offset() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return h_offset; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PathFollow::set_v_offset(float p_v_offset) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	v_offset = p_v_offset; | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 	if (path) | 
					
						
							|  |  |  | 		_update_transform(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | float PathFollow::get_v_offset() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return v_offset; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | float PathFollow::get_offset() const { | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return offset; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PathFollow::set_unit_offset(float p_unit_offset) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (path && path->get_curve().is_valid() && path->get_curve()->get_baked_length()) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		set_offset(p_unit_offset * path->get_curve()->get_baked_length()); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | float PathFollow::get_unit_offset() const { | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (path && path->get_curve().is_valid() && path->get_curve()->get_baked_length()) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		return get_offset() / path->get_curve()->get_baked_length(); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 	else | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PathFollow::set_rotation_mode(RotationMode p_rotation_mode) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	rotation_mode = p_rotation_mode; | 
					
						
							| 
									
										
										
										
											2019-01-11 17:03:12 -02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	update_configuration_warning(); | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 	_update_transform(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PathFollow::RotationMode PathFollow::get_rotation_mode() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return rotation_mode; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PathFollow::set_loop(bool p_loop) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	loop = p_loop; | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | bool PathFollow::has_loop() const { | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return loop; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PathFollow::PathFollow() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	offset = 0; | 
					
						
							| 
									
										
										
										
											2017-10-21 11:26:55 -04:00
										 |  |  | 	delta_offset = 0; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	h_offset = 0; | 
					
						
							|  |  |  | 	v_offset = 0; | 
					
						
							|  |  |  | 	path = NULL; | 
					
						
							|  |  |  | 	rotation_mode = ROTATION_XYZ; | 
					
						
							|  |  |  | 	cubic = true; | 
					
						
							|  |  |  | 	loop = true; | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | } |