| 
									
										
										
										
											2023-01-05 13:25:55 +01:00
										 |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*  csg_gizmos.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-05-16 14:19:33 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | #include "csg_gizmos.h"
 | 
					
						
							| 
									
										
										
										
											2022-02-12 02:46:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-28 14:10:28 +02:00
										 |  |  | #ifdef TOOLS_ENABLED
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-25 18:06:46 +01:00
										 |  |  | #include "editor/editor_node.h"
 | 
					
						
							| 
									
										
										
										
											2022-02-12 02:46:22 +01:00
										 |  |  | #include "editor/editor_settings.h"
 | 
					
						
							| 
									
										
										
										
											2022-03-25 18:06:46 +01:00
										 |  |  | #include "editor/editor_undo_redo_manager.h"
 | 
					
						
							| 
									
										
										
										
											2023-08-04 22:21:09 +02:00
										 |  |  | #include "editor/plugins/gizmos/gizmo_3d_helper.h"
 | 
					
						
							| 
									
										
										
										
											2021-06-23 16:49:50 +02:00
										 |  |  | #include "editor/plugins/node_3d_editor_plugin.h"
 | 
					
						
							|  |  |  | #include "scene/3d/camera_3d.h"
 | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | ///////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 12:40:52 +02:00
										 |  |  | CSGShape3DGizmoPlugin::CSGShape3DGizmoPlugin() { | 
					
						
							| 
									
										
										
										
											2023-08-04 22:21:09 +02:00
										 |  |  | 	helper.instantiate(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-05 08:13:12 +02:00
										 |  |  | 	Color gizmo_color = EDITOR_DEF("editors/3d_gizmos/gizmo_colors/csg", Color(0.0, 0.4, 1, 0.15)); | 
					
						
							|  |  |  | 	create_material("shape_union_material", gizmo_color); | 
					
						
							|  |  |  | 	create_material("shape_union_solid_material", gizmo_color); | 
					
						
							|  |  |  | 	gizmo_color.invert(); | 
					
						
							|  |  |  | 	create_material("shape_subtraction_material", gizmo_color); | 
					
						
							|  |  |  | 	create_material("shape_subtraction_solid_material", gizmo_color); | 
					
						
							|  |  |  | 	gizmo_color.r = 0.95; | 
					
						
							|  |  |  | 	gizmo_color.g = 0.95; | 
					
						
							|  |  |  | 	gizmo_color.b = 0.95; | 
					
						
							|  |  |  | 	create_material("shape_intersection_material", gizmo_color); | 
					
						
							|  |  |  | 	create_material("shape_intersection_solid_material", gizmo_color); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-25 00:08:49 +02:00
										 |  |  | 	create_handle_material("handles"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-04 22:21:09 +02:00
										 |  |  | CSGShape3DGizmoPlugin::~CSGShape3DGizmoPlugin() { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-11 12:33:37 +01:00
										 |  |  | String CSGShape3DGizmoPlugin::get_handle_name(const EditorNode3DGizmo *p_gizmo, int p_id, bool p_secondary) const { | 
					
						
							| 
									
										
										
										
											2022-09-08 18:38:33 +02:00
										 |  |  | 	CSGShape3D *cs = Object::cast_to<CSGShape3D>(p_gizmo->get_node_3d()); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	if (Object::cast_to<CSGSphere3D>(cs)) { | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 		return "Radius"; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	if (Object::cast_to<CSGBox3D>(cs)) { | 
					
						
							| 
									
										
										
										
											2023-08-04 22:21:09 +02:00
										 |  |  | 		return helper->box_get_handle_name(p_id); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	if (Object::cast_to<CSGCylinder3D>(cs)) { | 
					
						
							| 
									
										
										
										
											2021-06-23 16:49:50 +02:00
										 |  |  | 		return p_id == 0 ? "Radius" : "Height"; | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	if (Object::cast_to<CSGTorus3D>(cs)) { | 
					
						
							| 
									
										
										
										
											2021-06-23 16:49:50 +02:00
										 |  |  | 		return p_id == 0 ? "InnerRadius" : "OuterRadius"; | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ""; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-11 12:33:37 +01:00
										 |  |  | Variant CSGShape3DGizmoPlugin::get_handle_value(const EditorNode3DGizmo *p_gizmo, int p_id, bool p_secondary) const { | 
					
						
							| 
									
										
										
										
											2022-09-08 18:38:33 +02:00
										 |  |  | 	CSGShape3D *cs = Object::cast_to<CSGShape3D>(p_gizmo->get_node_3d()); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	if (Object::cast_to<CSGSphere3D>(cs)) { | 
					
						
							|  |  |  | 		CSGSphere3D *s = Object::cast_to<CSGSphere3D>(cs); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 		return s->get_radius(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	if (Object::cast_to<CSGBox3D>(cs)) { | 
					
						
							|  |  |  | 		CSGBox3D *s = Object::cast_to<CSGBox3D>(cs); | 
					
						
							| 
									
										
										
										
											2020-12-07 18:54:12 +00:00
										 |  |  | 		return s->get_size(); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	if (Object::cast_to<CSGCylinder3D>(cs)) { | 
					
						
							|  |  |  | 		CSGCylinder3D *s = Object::cast_to<CSGCylinder3D>(cs); | 
					
						
							| 
									
										
										
										
											2021-06-23 16:49:50 +02:00
										 |  |  | 		return p_id == 0 ? s->get_radius() : s->get_height(); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	if (Object::cast_to<CSGTorus3D>(cs)) { | 
					
						
							|  |  |  | 		CSGTorus3D *s = Object::cast_to<CSGTorus3D>(cs); | 
					
						
							| 
									
										
										
										
											2021-06-23 16:49:50 +02:00
										 |  |  | 		return p_id == 0 ? s->get_inner_radius() : s->get_outer_radius(); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return Variant(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-04 22:21:09 +02:00
										 |  |  | void CSGShape3DGizmoPlugin::begin_handle_action(const EditorNode3DGizmo *p_gizmo, int p_id, bool p_secondary) { | 
					
						
							|  |  |  | 	helper->initialize_handle_action(get_handle_value(p_gizmo, p_id, p_secondary), p_gizmo->get_node_3d()->get_global_transform()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-11 12:33:37 +01:00
										 |  |  | void CSGShape3DGizmoPlugin::set_handle(const EditorNode3DGizmo *p_gizmo, int p_id, bool p_secondary, Camera3D *p_camera, const Point2 &p_point) { | 
					
						
							| 
									
										
										
										
											2022-09-08 18:38:33 +02:00
										 |  |  | 	CSGShape3D *cs = Object::cast_to<CSGShape3D>(p_gizmo->get_node_3d()); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-04 22:21:09 +02:00
										 |  |  | 	Vector3 sg[2]; | 
					
						
							|  |  |  | 	helper->get_segment(p_camera, p_point, sg); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	if (Object::cast_to<CSGSphere3D>(cs)) { | 
					
						
							|  |  |  | 		CSGSphere3D *s = Object::cast_to<CSGSphere3D>(cs); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		Vector3 ra, rb; | 
					
						
							| 
									
										
										
										
											2020-05-25 20:20:45 +03:00
										 |  |  | 		Geometry3D::get_closest_points_between_segments(Vector3(), Vector3(4096, 0, 0), sg[0], sg[1], ra, rb); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 		float d = ra.x; | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 		if (Node3DEditor::get_singleton()->is_snap_enabled()) { | 
					
						
							| 
									
										
										
										
											2020-12-21 18:02:57 +00:00
										 |  |  | 			d = Math::snapped(d, Node3DEditor::get_singleton()->get_translate_snap()); | 
					
						
							| 
									
										
										
										
											2019-07-02 20:00:00 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (d < 0.001) { | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 			d = 0.001; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		s->set_radius(d); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	if (Object::cast_to<CSGBox3D>(cs)) { | 
					
						
							|  |  |  | 		CSGBox3D *s = Object::cast_to<CSGBox3D>(cs); | 
					
						
							| 
									
										
										
										
											2023-08-04 22:21:09 +02:00
										 |  |  | 		Vector3 size = s->get_size(); | 
					
						
							|  |  |  | 		Vector3 position; | 
					
						
							|  |  |  | 		helper->box_set_handle(sg, p_id, size, position); | 
					
						
							|  |  |  | 		s->set_size(size); | 
					
						
							|  |  |  | 		s->set_global_position(position); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	if (Object::cast_to<CSGCylinder3D>(cs)) { | 
					
						
							|  |  |  | 		CSGCylinder3D *s = Object::cast_to<CSGCylinder3D>(cs); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		Vector3 axis; | 
					
						
							| 
									
										
										
										
											2021-06-23 16:49:50 +02:00
										 |  |  | 		axis[p_id == 0 ? 0 : 1] = 1.0; | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 		Vector3 ra, rb; | 
					
						
							| 
									
										
										
										
											2020-05-25 20:20:45 +03:00
										 |  |  | 		Geometry3D::get_closest_points_between_segments(Vector3(), axis * 4096, sg[0], sg[1], ra, rb); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 		float d = axis.dot(ra); | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 		if (Node3DEditor::get_singleton()->is_snap_enabled()) { | 
					
						
							| 
									
										
										
										
											2020-12-21 18:02:57 +00:00
										 |  |  | 			d = Math::snapped(d, Node3DEditor::get_singleton()->get_translate_snap()); | 
					
						
							| 
									
										
										
										
											2019-07-02 20:00:00 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (d < 0.001) { | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 			d = 0.001; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-23 16:49:50 +02:00
										 |  |  | 		if (p_id == 0) { | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 			s->set_radius(d); | 
					
						
							| 
									
										
										
										
											2021-06-23 16:49:50 +02:00
										 |  |  | 		} else if (p_id == 1) { | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 			s->set_height(d * 2.0); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	if (Object::cast_to<CSGTorus3D>(cs)) { | 
					
						
							|  |  |  | 		CSGTorus3D *s = Object::cast_to<CSGTorus3D>(cs); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		Vector3 axis; | 
					
						
							|  |  |  | 		axis[0] = 1.0; | 
					
						
							|  |  |  | 		Vector3 ra, rb; | 
					
						
							| 
									
										
										
										
											2020-05-25 20:20:45 +03:00
										 |  |  | 		Geometry3D::get_closest_points_between_segments(Vector3(), axis * 4096, sg[0], sg[1], ra, rb); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 		float d = axis.dot(ra); | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 		if (Node3DEditor::get_singleton()->is_snap_enabled()) { | 
					
						
							| 
									
										
										
										
											2020-12-21 18:02:57 +00:00
										 |  |  | 			d = Math::snapped(d, Node3DEditor::get_singleton()->get_translate_snap()); | 
					
						
							| 
									
										
										
										
											2019-07-02 20:00:00 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (d < 0.001) { | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 			d = 0.001; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-23 16:49:50 +02:00
										 |  |  | 		if (p_id == 0) { | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 			s->set_inner_radius(d); | 
					
						
							| 
									
										
										
										
											2021-06-23 16:49:50 +02:00
										 |  |  | 		} else if (p_id == 1) { | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 			s->set_outer_radius(d); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-11 12:33:37 +01:00
										 |  |  | void CSGShape3DGizmoPlugin::commit_handle(const EditorNode3DGizmo *p_gizmo, int p_id, bool p_secondary, const Variant &p_restore, bool p_cancel) { | 
					
						
							| 
									
										
										
										
											2022-09-08 18:38:33 +02:00
										 |  |  | 	CSGShape3D *cs = Object::cast_to<CSGShape3D>(p_gizmo->get_node_3d()); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	if (Object::cast_to<CSGSphere3D>(cs)) { | 
					
						
							|  |  |  | 		CSGSphere3D *s = Object::cast_to<CSGSphere3D>(cs); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 		if (p_cancel) { | 
					
						
							|  |  |  | 			s->set_radius(p_restore); | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-23 23:53:16 +01:00
										 |  |  | 		EditorUndoRedoManager *ur = EditorUndoRedoManager::get_singleton(); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 		ur->create_action(TTR("Change Sphere Shape Radius")); | 
					
						
							|  |  |  | 		ur->add_do_method(s, "set_radius", s->get_radius()); | 
					
						
							|  |  |  | 		ur->add_undo_method(s, "set_radius", p_restore); | 
					
						
							|  |  |  | 		ur->commit_action(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	if (Object::cast_to<CSGBox3D>(cs)) { | 
					
						
							| 
									
										
										
										
											2023-08-04 22:21:09 +02:00
										 |  |  | 		helper->box_commit_handle(TTR("Change Box Shape Size"), p_cancel, cs); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	if (Object::cast_to<CSGCylinder3D>(cs)) { | 
					
						
							|  |  |  | 		CSGCylinder3D *s = Object::cast_to<CSGCylinder3D>(cs); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 		if (p_cancel) { | 
					
						
							| 
									
										
										
										
											2021-06-23 16:49:50 +02:00
										 |  |  | 			if (p_id == 0) { | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 				s->set_radius(p_restore); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 				s->set_height(p_restore); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-23 23:53:16 +01:00
										 |  |  | 		EditorUndoRedoManager *ur = EditorUndoRedoManager::get_singleton(); | 
					
						
							| 
									
										
										
										
											2021-06-23 16:49:50 +02:00
										 |  |  | 		if (p_id == 0) { | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 			ur->create_action(TTR("Change Cylinder Radius")); | 
					
						
							|  |  |  | 			ur->add_do_method(s, "set_radius", s->get_radius()); | 
					
						
							|  |  |  | 			ur->add_undo_method(s, "set_radius", p_restore); | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			ur->create_action(TTR("Change Cylinder Height")); | 
					
						
							|  |  |  | 			ur->add_do_method(s, "set_height", s->get_height()); | 
					
						
							|  |  |  | 			ur->add_undo_method(s, "set_height", p_restore); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ur->commit_action(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	if (Object::cast_to<CSGTorus3D>(cs)) { | 
					
						
							|  |  |  | 		CSGTorus3D *s = Object::cast_to<CSGTorus3D>(cs); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 		if (p_cancel) { | 
					
						
							| 
									
										
										
										
											2021-06-23 16:49:50 +02:00
										 |  |  | 			if (p_id == 0) { | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 				s->set_inner_radius(p_restore); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 				s->set_outer_radius(p_restore); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-23 23:53:16 +01:00
										 |  |  | 		EditorUndoRedoManager *ur = EditorUndoRedoManager::get_singleton(); | 
					
						
							| 
									
										
										
										
											2021-06-23 16:49:50 +02:00
										 |  |  | 		if (p_id == 0) { | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 			ur->create_action(TTR("Change Torus Inner Radius")); | 
					
						
							|  |  |  | 			ur->add_do_method(s, "set_inner_radius", s->get_inner_radius()); | 
					
						
							|  |  |  | 			ur->add_undo_method(s, "set_inner_radius", p_restore); | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			ur->create_action(TTR("Change Torus Outer Radius")); | 
					
						
							|  |  |  | 			ur->add_do_method(s, "set_outer_radius", s->get_outer_radius()); | 
					
						
							|  |  |  | 			ur->add_undo_method(s, "set_outer_radius", p_restore); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ur->commit_action(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 12:40:52 +02:00
										 |  |  | bool CSGShape3DGizmoPlugin::has_gizmo(Node3D *p_spatial) { | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	return Object::cast_to<CSGSphere3D>(p_spatial) || Object::cast_to<CSGBox3D>(p_spatial) || Object::cast_to<CSGCylinder3D>(p_spatial) || Object::cast_to<CSGTorus3D>(p_spatial) || Object::cast_to<CSGMesh3D>(p_spatial) || Object::cast_to<CSGPolygon3D>(p_spatial); | 
					
						
							| 
									
										
										
										
											2018-07-25 00:08:49 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-22 18:39:21 -04:00
										 |  |  | String CSGShape3DGizmoPlugin::get_gizmo_name() const { | 
					
						
							| 
									
										
										
										
											2020-04-06 12:40:52 +02:00
										 |  |  | 	return "CSGShape3D"; | 
					
						
							| 
									
										
										
										
											2018-07-25 00:08:49 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 12:40:52 +02:00
										 |  |  | int CSGShape3DGizmoPlugin::get_priority() const { | 
					
						
							| 
									
										
										
										
											2019-03-12 00:30:50 +01:00
										 |  |  | 	return -1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 12:40:52 +02:00
										 |  |  | bool CSGShape3DGizmoPlugin::is_selectable_when_hidden() const { | 
					
						
							| 
									
										
										
										
											2018-07-25 00:08:49 +02:00
										 |  |  | 	return true; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 12:40:52 +02:00
										 |  |  | void CSGShape3DGizmoPlugin::redraw(EditorNode3DGizmo *p_gizmo) { | 
					
						
							| 
									
										
										
										
											2018-07-25 00:08:49 +02:00
										 |  |  | 	p_gizmo->clear(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-08 18:38:33 +02:00
										 |  |  | 	CSGShape3D *cs = Object::cast_to<CSGShape3D>(p_gizmo->get_node_3d()); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-17 18:06:54 -03:00
										 |  |  | 	Vector<Vector3> faces = cs->get_brush_faces(); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-25 08:01:14 +01:00
										 |  |  | 	if (faces.size() == 0) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 	Vector<Vector3> lines; | 
					
						
							|  |  |  | 	lines.resize(faces.size() * 2); | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2020-02-17 18:06:54 -03:00
										 |  |  | 		const Vector3 *r = faces.ptr(); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		for (int i = 0; i < lines.size(); i += 6) { | 
					
						
							|  |  |  | 			int f = i / 6; | 
					
						
							|  |  |  | 			for (int j = 0; j < 3; j++) { | 
					
						
							|  |  |  | 				int j_n = (j + 1) % 3; | 
					
						
							| 
									
										
										
										
											2018-07-25 03:11:03 +02:00
										 |  |  | 				lines.write[i + j * 2 + 0] = r[f * 3 + j]; | 
					
						
							|  |  |  | 				lines.write[i + j * 2 + 1] = r[f * 3 + j_n]; | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-25 08:01:14 +01:00
										 |  |  | 	Ref<Material> material; | 
					
						
							|  |  |  | 	switch (cs->get_operation()) { | 
					
						
							|  |  |  | 		case CSGShape3D::OPERATION_UNION: | 
					
						
							|  |  |  | 			material = get_material("shape_union_material", p_gizmo); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case CSGShape3D::OPERATION_INTERSECTION: | 
					
						
							|  |  |  | 			material = get_material("shape_intersection_material", p_gizmo); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case CSGShape3D::OPERATION_SUBTRACTION: | 
					
						
							|  |  |  | 			material = get_material("shape_subtraction_material", p_gizmo); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Ref<Material> handles_material = get_material("handles"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-25 00:08:49 +02:00
										 |  |  | 	p_gizmo->add_lines(lines, material); | 
					
						
							|  |  |  | 	p_gizmo->add_collision_segments(lines); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-21 11:43:46 +02:00
										 |  |  | 	if (cs->is_root_shape()) { | 
					
						
							|  |  |  | 		Array csg_meshes = cs->get_meshes(); | 
					
						
							| 
									
										
										
										
											2022-05-20 10:47:29 +08:00
										 |  |  | 		if (csg_meshes.size() == 2) { | 
					
						
							|  |  |  | 			Ref<Mesh> csg_mesh = csg_meshes[1]; | 
					
						
							|  |  |  | 			if (csg_mesh.is_valid()) { | 
					
						
							|  |  |  | 				p_gizmo->add_collision_triangles(csg_mesh->generate_triangle_mesh()); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2022-03-21 11:43:46 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2022-01-07 19:49:42 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-05 08:13:12 +02:00
										 |  |  | 	if (p_gizmo->is_selected()) { | 
					
						
							|  |  |  | 		// Draw a translucent representation of the CSG node
 | 
					
						
							|  |  |  | 		Ref<ArrayMesh> mesh = memnew(ArrayMesh); | 
					
						
							|  |  |  | 		Array array; | 
					
						
							|  |  |  | 		array.resize(Mesh::ARRAY_MAX); | 
					
						
							|  |  |  | 		array[Mesh::ARRAY_VERTEX] = faces; | 
					
						
							|  |  |  | 		mesh->add_surface_from_arrays(Mesh::PRIMITIVE_TRIANGLES, array); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Ref<Material> solid_material; | 
					
						
							|  |  |  | 		switch (cs->get_operation()) { | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 			case CSGShape3D::OPERATION_UNION: | 
					
						
							| 
									
										
										
										
											2019-07-05 08:13:12 +02:00
										 |  |  | 				solid_material = get_material("shape_union_solid_material", p_gizmo); | 
					
						
							|  |  |  | 				break; | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 			case CSGShape3D::OPERATION_INTERSECTION: | 
					
						
							| 
									
										
										
										
											2019-07-05 08:13:12 +02:00
										 |  |  | 				solid_material = get_material("shape_intersection_solid_material", p_gizmo); | 
					
						
							|  |  |  | 				break; | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 			case CSGShape3D::OPERATION_SUBTRACTION: | 
					
						
							| 
									
										
										
										
											2019-07-05 08:13:12 +02:00
										 |  |  | 				solid_material = get_material("shape_subtraction_solid_material", p_gizmo); | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-23 16:49:50 +02:00
										 |  |  | 		p_gizmo->add_mesh(mesh, solid_material); | 
					
						
							| 
									
										
										
										
											2019-07-05 08:13:12 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	if (Object::cast_to<CSGSphere3D>(cs)) { | 
					
						
							|  |  |  | 		CSGSphere3D *s = Object::cast_to<CSGSphere3D>(cs); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		float r = s->get_radius(); | 
					
						
							|  |  |  | 		Vector<Vector3> handles; | 
					
						
							|  |  |  | 		handles.push_back(Vector3(r, 0, 0)); | 
					
						
							| 
									
										
										
										
											2018-07-25 00:08:49 +02:00
										 |  |  | 		p_gizmo->add_handles(handles, handles_material); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	if (Object::cast_to<CSGBox3D>(cs)) { | 
					
						
							|  |  |  | 		CSGBox3D *s = Object::cast_to<CSGBox3D>(cs); | 
					
						
							| 
									
										
										
										
											2023-08-04 22:21:09 +02:00
										 |  |  | 		Vector<Vector3> handles = helper->box_get_handles(s->get_size()); | 
					
						
							| 
									
										
										
										
											2018-07-25 00:08:49 +02:00
										 |  |  | 		p_gizmo->add_handles(handles, handles_material); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	if (Object::cast_to<CSGCylinder3D>(cs)) { | 
					
						
							|  |  |  | 		CSGCylinder3D *s = Object::cast_to<CSGCylinder3D>(cs); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		Vector<Vector3> handles; | 
					
						
							|  |  |  | 		handles.push_back(Vector3(s->get_radius(), 0, 0)); | 
					
						
							|  |  |  | 		handles.push_back(Vector3(0, s->get_height() * 0.5, 0)); | 
					
						
							| 
									
										
										
										
											2018-07-25 00:08:49 +02:00
										 |  |  | 		p_gizmo->add_handles(handles, handles_material); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	if (Object::cast_to<CSGTorus3D>(cs)) { | 
					
						
							|  |  |  | 		CSGTorus3D *s = Object::cast_to<CSGTorus3D>(cs); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		Vector<Vector3> handles; | 
					
						
							|  |  |  | 		handles.push_back(Vector3(s->get_inner_radius(), 0, 0)); | 
					
						
							|  |  |  | 		handles.push_back(Vector3(s->get_outer_radius(), 0, 0)); | 
					
						
							| 
									
										
										
										
											2018-07-25 00:08:49 +02:00
										 |  |  | 		p_gizmo->add_handles(handles, handles_material); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-14 17:59:06 +01:00
										 |  |  | EditorPluginCSG::EditorPluginCSG() { | 
					
						
							| 
									
										
										
										
											2020-04-06 12:40:52 +02:00
										 |  |  | 	Ref<CSGShape3DGizmoPlugin> gizmo_plugin = Ref<CSGShape3DGizmoPlugin>(memnew(CSGShape3DGizmoPlugin)); | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	Node3DEditor::get_singleton()->add_gizmo_plugin(gizmo_plugin); | 
					
						
							| 
									
										
										
										
											2018-04-27 21:52:15 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2022-03-28 14:10:28 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif // TOOLS_ENABLED
 |