| 
									
										
										
										
											2017-03-05 15:47:28 +01:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2020-05-10 12:53:46 +02:00
										 |  |  | /*  subviewport_container.cpp                                            */ | 
					
						
							| 
									
										
										
										
											2017-03-05 15:47:28 +01:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2017-03-05 15:47:28 +01:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2021-01-01 20:13:46 +01:00
										 |  |  | /* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md).   */ | 
					
						
							| 
									
										
										
										
											2017-03-05 15:47:28 +01: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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-01 15:28:09 -03:00
										 |  |  | #include "subviewport_container.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 15:47:28 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-07 19:33:38 -03:00
										 |  |  | #include "core/config/engine.h"
 | 
					
						
							| 
									
										
										
										
											2016-10-05 01:26:35 -03:00
										 |  |  | #include "scene/main/viewport.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-01 15:28:09 -03:00
										 |  |  | Size2 SubViewportContainer::get_minimum_size() const { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (stretch) { | 
					
						
							| 
									
										
										
										
											2016-10-05 01:26:35 -03:00
										 |  |  | 		return Size2(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-10-05 01:26:35 -03:00
										 |  |  | 	Size2 ms; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	for (int i = 0; i < get_child_count(); i++) { | 
					
						
							| 
									
										
										
										
											2020-03-03 22:51:12 -03:00
										 |  |  | 		SubViewport *c = Object::cast_to<SubViewport>(get_child(i)); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!c) { | 
					
						
							| 
									
										
										
										
											2016-10-05 01:26:35 -03:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-10-05 01:26:35 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		Size2 minsize = c->get_size(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		ms.width = MAX(ms.width, minsize.width); | 
					
						
							|  |  |  | 		ms.height = MAX(ms.height, minsize.height); | 
					
						
							| 
									
										
										
										
											2016-10-05 01:26:35 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ms; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-01 15:28:09 -03:00
										 |  |  | void SubViewportContainer::set_stretch(bool p_enable) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	stretch = p_enable; | 
					
						
							| 
									
										
										
										
											2016-10-05 01:26:35 -03:00
										 |  |  | 	queue_sort(); | 
					
						
							|  |  |  | 	update(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-01 15:28:09 -03:00
										 |  |  | bool SubViewportContainer::is_stretch_enabled() const { | 
					
						
							| 
									
										
										
										
											2016-10-05 01:26:35 -03:00
										 |  |  | 	return stretch; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-01 15:28:09 -03:00
										 |  |  | void SubViewportContainer::set_stretch_shrink(int p_shrink) { | 
					
						
							| 
									
										
										
										
											2017-10-31 14:23:25 -03:00
										 |  |  | 	ERR_FAIL_COND(p_shrink < 1); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (shrink == p_shrink) { | 
					
						
							| 
									
										
										
										
											2017-10-31 14:23:25 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-10-31 14:23:25 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	shrink = p_shrink; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!stretch) { | 
					
						
							| 
									
										
										
										
											2017-10-31 14:23:25 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-10-31 14:23:25 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < get_child_count(); i++) { | 
					
						
							| 
									
										
										
										
											2020-03-03 22:51:12 -03:00
										 |  |  | 		SubViewport *c = Object::cast_to<SubViewport>(get_child(i)); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!c) { | 
					
						
							| 
									
										
										
										
											2017-10-31 14:23:25 -03:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-10-31 14:23:25 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		c->set_size(get_size() / shrink); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	update(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-01 15:28:09 -03:00
										 |  |  | int SubViewportContainer::get_stretch_shrink() const { | 
					
						
							| 
									
										
										
										
											2017-10-31 14:23:25 -03:00
										 |  |  | 	return shrink; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-01 15:28:09 -03:00
										 |  |  | void SubViewportContainer::_notification(int p_what) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (p_what == NOTIFICATION_RESIZED) { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!stretch) { | 
					
						
							| 
									
										
										
										
											2016-10-05 01:26:35 -03:00
										 |  |  | 			return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-10-05 01:26:35 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		for (int i = 0; i < get_child_count(); i++) { | 
					
						
							| 
									
										
										
										
											2020-03-03 22:51:12 -03:00
										 |  |  | 			SubViewport *c = Object::cast_to<SubViewport>(get_child(i)); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			if (!c) { | 
					
						
							| 
									
										
										
										
											2016-10-05 01:26:35 -03:00
										 |  |  | 				continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-10-05 01:26:35 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-31 14:23:25 -03:00
										 |  |  | 			c->set_size(get_size() / shrink); | 
					
						
							| 
									
										
										
										
											2016-10-05 01:26:35 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (p_what == NOTIFICATION_ENTER_TREE || p_what == NOTIFICATION_VISIBILITY_CHANGED) { | 
					
						
							|  |  |  | 		for (int i = 0; i < get_child_count(); i++) { | 
					
						
							| 
									
										
										
										
											2020-03-03 22:51:12 -03:00
										 |  |  | 			SubViewport *c = Object::cast_to<SubViewport>(get_child(i)); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			if (!c) { | 
					
						
							| 
									
										
										
										
											2016-10-05 01:26:35 -03:00
										 |  |  | 				continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-10-05 01:26:35 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			if (is_visible_in_tree()) { | 
					
						
							| 
									
										
										
										
											2020-03-03 22:51:12 -03:00
										 |  |  | 				c->set_update_mode(SubViewport::UPDATE_ALWAYS); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2020-03-03 22:51:12 -03:00
										 |  |  | 				c->set_update_mode(SubViewport::UPDATE_DISABLED); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-11-15 13:54:26 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			c->set_handle_input_locally(false); //do not handle input locally here
 | 
					
						
							| 
									
										
										
										
											2016-10-05 01:26:35 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (p_what == NOTIFICATION_DRAW) { | 
					
						
							|  |  |  | 		for (int i = 0; i < get_child_count(); i++) { | 
					
						
							| 
									
										
										
										
											2020-03-03 22:51:12 -03:00
										 |  |  | 			SubViewport *c = Object::cast_to<SubViewport>(get_child(i)); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			if (!c) { | 
					
						
							| 
									
										
										
										
											2016-10-05 01:26:35 -03:00
										 |  |  | 				continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-10-05 01:26:35 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			if (stretch) { | 
					
						
							| 
									
										
										
										
											2019-06-24 16:13:06 -03:00
										 |  |  | 				draw_texture_rect(c->get_texture(), Rect2(Vector2(), get_size())); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2019-06-24 16:13:06 -03:00
										 |  |  | 				draw_texture_rect(c->get_texture(), Rect2(Vector2(), c->get_size())); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-10-05 01:26:35 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-01 15:28:09 -03:00
										 |  |  | void SubViewportContainer::_input(const Ref<InputEvent> &p_event) { | 
					
						
							| 
									
										
										
										
											2021-04-05 08:52:21 +02:00
										 |  |  | 	ERR_FAIL_COND(p_event.is_null()); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (Engine::get_singleton()->is_editor_hint()) { | 
					
						
							| 
									
										
										
										
											2018-01-15 00:36:57 +01:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-01-15 00:36:57 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Transform2D xform = get_global_transform(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (stretch) { | 
					
						
							|  |  |  | 		Transform2D scale_xf; | 
					
						
							|  |  |  | 		scale_xf.scale(Vector2(shrink, shrink)); | 
					
						
							|  |  |  | 		xform *= scale_xf; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Ref<InputEvent> ev = p_event->xformed_by(xform.affine_inverse()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < get_child_count(); i++) { | 
					
						
							| 
									
										
										
										
											2020-03-03 22:51:12 -03:00
										 |  |  | 		SubViewport *c = Object::cast_to<SubViewport>(get_child(i)); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!c || c->is_input_disabled()) { | 
					
						
							| 
									
										
										
										
											2018-01-15 00:36:57 +01:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-01-15 00:36:57 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		c->input(ev); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-01 15:28:09 -03:00
										 |  |  | void SubViewportContainer::_unhandled_input(const Ref<InputEvent> &p_event) { | 
					
						
							| 
									
										
										
										
											2021-04-05 08:52:21 +02:00
										 |  |  | 	ERR_FAIL_COND(p_event.is_null()); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (Engine::get_singleton()->is_editor_hint()) { | 
					
						
							| 
									
										
										
										
											2018-11-15 17:29:55 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-11-15 17:29:55 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Transform2D xform = get_global_transform(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (stretch) { | 
					
						
							|  |  |  | 		Transform2D scale_xf; | 
					
						
							|  |  |  | 		scale_xf.scale(Vector2(shrink, shrink)); | 
					
						
							|  |  |  | 		xform *= scale_xf; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Ref<InputEvent> ev = p_event->xformed_by(xform.affine_inverse()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < get_child_count(); i++) { | 
					
						
							| 
									
										
										
										
											2020-03-03 22:51:12 -03:00
										 |  |  | 		SubViewport *c = Object::cast_to<SubViewport>(get_child(i)); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!c || c->is_input_disabled()) { | 
					
						
							| 
									
										
										
										
											2018-11-15 17:29:55 -03:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-11-15 17:29:55 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		c->unhandled_input(ev); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-01 15:28:09 -03:00
										 |  |  | void SubViewportContainer::_bind_methods() { | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("_unhandled_input", "event"), &SubViewportContainer::_unhandled_input); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("_input", "event"), &SubViewportContainer::_input); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_stretch", "enable"), &SubViewportContainer::set_stretch); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_stretch_enabled"), &SubViewportContainer::is_stretch_enabled); | 
					
						
							| 
									
										
										
										
											2016-10-05 01:26:35 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-01 15:28:09 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_stretch_shrink", "amount"), &SubViewportContainer::set_stretch_shrink); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_stretch_shrink"), &SubViewportContainer::get_stretch_shrink); | 
					
						
							| 
									
										
										
										
											2017-10-31 14:23:25 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "stretch"), "set_stretch", "is_stretch_enabled"); | 
					
						
							| 
									
										
										
										
											2017-10-31 14:23:25 -03:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::INT, "stretch_shrink"), "set_stretch_shrink", "get_stretch_shrink"); | 
					
						
							| 
									
										
										
										
											2016-10-05 01:26:35 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-01 15:28:09 -03:00
										 |  |  | SubViewportContainer::SubViewportContainer() { | 
					
						
							| 
									
										
										
										
											2018-01-15 00:36:57 +01:00
										 |  |  | 	set_process_input(true); | 
					
						
							| 
									
										
										
										
											2019-08-31 14:51:16 +02:00
										 |  |  | 	set_process_unhandled_input(true); | 
					
						
							| 
									
										
										
										
											2016-10-05 01:26:35 -03:00
										 |  |  | } |