| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /**************************************************************************/ | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | /*  sprite_2d.cpp                                                         */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*                         This file is part of:                          */ | 
					
						
							|  |  |  | /*                             GODOT ENGINE                               */ | 
					
						
							|  |  |  | /*                        https://godotengine.org                         */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ | 
					
						
							|  |  |  | /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur.                  */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining  */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the        */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including    */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,    */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to     */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to  */ | 
					
						
							|  |  |  | /* the following conditions:                                              */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be         */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.        */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,        */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF     */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY   */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,   */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE      */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                 */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-05 00:50:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | #include "sprite_2d.h"
 | 
					
						
							| 
									
										
										
										
											2020-02-21 23:26:13 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-04-28 22:43:41 +08:00
										 |  |  | #include "core/input/input.h"
 | 
					
						
							| 
									
										
										
										
											2024-12-20 22:05:53 +08:00
										 |  |  | #include "scene/main/viewport.h"
 | 
					
						
							| 
									
										
										
										
											2014-04-10 00:18:27 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-21 23:37:07 +02:00
										 |  |  | #ifdef TOOLS_ENABLED
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | Dictionary Sprite2D::_edit_get_state() const { | 
					
						
							| 
									
										
										
										
											2017-11-07 08:58:35 +01:00
										 |  |  | 	Dictionary state = Node2D::_edit_get_state(); | 
					
						
							|  |  |  | 	state["offset"] = offset; | 
					
						
							| 
									
										
										
										
											2025-04-28 22:43:41 +08:00
										 |  |  | 	state["region_rect"] = region_rect; | 
					
						
							| 
									
										
										
										
											2017-11-07 08:58:35 +01:00
										 |  |  | 	return state; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | void Sprite2D::_edit_set_state(const Dictionary &p_state) { | 
					
						
							| 
									
										
										
										
											2017-11-07 08:58:35 +01:00
										 |  |  | 	Node2D::_edit_set_state(p_state); | 
					
						
							|  |  |  | 	set_offset(p_state["offset"]); | 
					
						
							| 
									
										
										
										
											2025-04-28 22:43:41 +08:00
										 |  |  | 	set_region_rect(p_state["region_rect"]); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | void Sprite2D::_edit_set_pivot(const Point2 &p_pivot) { | 
					
						
							| 
									
										
										
										
											2017-11-07 08:58:35 +01:00
										 |  |  | 	set_offset(get_offset() - p_pivot); | 
					
						
							|  |  |  | 	set_position(get_transform().xform(p_pivot)); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | Point2 Sprite2D::_edit_get_pivot() const { | 
					
						
							| 
									
										
										
										
											2017-11-07 08:58:35 +01:00
										 |  |  | 	return Vector2(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | bool Sprite2D::_edit_use_pivot() const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return true; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2025-04-28 22:43:41 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | void Sprite2D::_edit_set_rect(const Rect2 &p_rect) { | 
					
						
							|  |  |  | 	if (texture.is_null()) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (!(region_enabled && hframes <= 1 && vframes <= 1 && Input::get_singleton()->is_key_label_pressed(Key::CTRL))) { | 
					
						
							|  |  |  | 		Node2D::_edit_set_rect(p_rect); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	Point2 delta = p_rect.position - (centered ? _get_rect_offset(p_rect.size) : Vector2()); | 
					
						
							|  |  |  | 	set_region_rect(Rect2(region_rect.position, p_rect.size)); | 
					
						
							|  |  |  | 	set_position(get_position() + get_transform().basis_xform(delta)); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2024-11-01 18:40:25 -03:00
										 |  |  | #endif // TOOLS_ENABLED
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-01 18:40:25 -03:00
										 |  |  | #ifdef DEBUG_ENABLED
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | bool Sprite2D::_edit_is_selected_on_click(const Point2 &p_point, double p_tolerance) const { | 
					
						
							| 
									
										
										
										
											2019-10-21 23:37:07 +02:00
										 |  |  | 	return is_pixel_opaque(p_point); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | Rect2 Sprite2D::_edit_get_rect() const { | 
					
						
							| 
									
										
										
										
											2018-03-08 21:35:41 +01:00
										 |  |  | 	return get_rect(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | bool Sprite2D::_edit_use_rect() const { | 
					
						
							| 
									
										
										
										
											2019-06-26 15:08:25 +02:00
										 |  |  | 	return texture.is_valid(); | 
					
						
							| 
									
										
										
										
											2018-03-08 21:35:41 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2024-11-01 18:40:25 -03:00
										 |  |  | #endif // DEBUG_ENABLED
 | 
					
						
							| 
									
										
										
										
											2018-03-08 21:35:41 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | Rect2 Sprite2D::get_anchorable_rect() const { | 
					
						
							| 
									
										
										
										
											2018-05-05 16:59:00 +02:00
										 |  |  | 	return get_rect(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-14 13:43:43 +00:00
										 |  |  | void Sprite2D::_get_rects(Rect2 &r_src_rect, Rect2 &r_dst_rect, bool &r_filter_clip_enabled) const { | 
					
						
							| 
									
										
										
										
											2018-01-27 20:14:08 +00:00
										 |  |  | 	Rect2 base_rect; | 
					
						
							| 
									
										
										
										
											2017-12-27 09:28:02 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-14 13:43:43 +00:00
										 |  |  | 	if (region_enabled) { | 
					
						
							|  |  |  | 		r_filter_clip_enabled = region_filter_clip_enabled; | 
					
						
							| 
									
										
										
										
											2018-01-27 20:14:08 +00:00
										 |  |  | 		base_rect = region_rect; | 
					
						
							| 
									
										
										
										
											2017-12-27 09:28:02 +01:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2021-03-14 13:43:43 +00:00
										 |  |  | 		r_filter_clip_enabled = false; | 
					
						
							| 
									
										
										
										
											2018-01-27 20:14:08 +00:00
										 |  |  | 		base_rect = Rect2(0, 0, texture->get_width(), texture->get_height()); | 
					
						
							| 
									
										
										
										
											2017-12-27 09:28:02 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-27 20:14:08 +00:00
										 |  |  | 	Size2 frame_size = base_rect.size / Size2(hframes, vframes); | 
					
						
							|  |  |  | 	Point2 frame_offset = Point2(frame % hframes, frame / hframes); | 
					
						
							|  |  |  | 	frame_offset *= frame_size; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	r_src_rect.size = frame_size; | 
					
						
							|  |  |  | 	r_src_rect.position = base_rect.position + frame_offset; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Point2 dest_offset = offset; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (centered) { | 
					
						
							| 
									
										
										
										
											2018-01-27 20:14:08 +00:00
										 |  |  | 		dest_offset -= frame_size / 2; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-10-29 18:09:16 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (get_viewport() && get_viewport()->is_snap_2d_transforms_to_pixel_enabled()) { | 
					
						
							| 
									
										
										
										
											2024-06-29 09:58:59 -04:00
										 |  |  | 		dest_offset = (dest_offset + Point2(0.5, 0.5)).floor(); | 
					
						
							| 
									
										
										
										
											2017-12-27 09:28:02 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-27 20:14:08 +00:00
										 |  |  | 	r_dst_rect = Rect2(dest_offset, frame_size); | 
					
						
							| 
									
										
										
										
											2017-12-27 09:28:02 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (hflip) { | 
					
						
							| 
									
										
										
										
											2017-12-27 09:28:02 +01:00
										 |  |  | 		r_dst_rect.size.x = -r_dst_rect.size.x; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if (vflip) { | 
					
						
							| 
									
										
										
										
											2017-12-27 09:28:02 +01:00
										 |  |  | 		r_dst_rect.size.y = -r_dst_rect.size.y; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-12-27 09:28:02 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-04-28 22:43:41 +08:00
										 |  |  | Point2 Sprite2D::_get_rect_offset(const Size2i &p_size) const { | 
					
						
							|  |  |  | 	Point2 ofs = offset; | 
					
						
							|  |  |  | 	if (centered) { | 
					
						
							|  |  |  | 		ofs -= Size2(p_size) / 2; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (get_viewport() && get_viewport()->is_snap_2d_transforms_to_pixel_enabled()) { | 
					
						
							|  |  |  | 		ofs = (ofs + Point2(0.5, 0.5)).floor(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ofs; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | void Sprite2D::_notification(int p_what) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	switch (p_what) { | 
					
						
							| 
									
										
										
										
											2025-03-21 16:42:23 +02:00
										 |  |  | 		case NOTIFICATION_ACCESSIBILITY_UPDATE: { | 
					
						
							|  |  |  | 			RID ae = get_accessibility_element(); | 
					
						
							|  |  |  | 			ERR_FAIL_COND(ae.is_null()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			Rect2 dst_rect = get_rect(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			DisplayServer::get_singleton()->accessibility_update_set_role(ae, DisplayServer::AccessibilityRole::ROLE_IMAGE); | 
					
						
							|  |  |  | 			DisplayServer::get_singleton()->accessibility_update_set_transform(ae, get_transform()); | 
					
						
							|  |  |  | 			DisplayServer::get_singleton()->accessibility_update_set_bounds(ae, dst_rect); | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		case NOTIFICATION_DRAW: { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			if (texture.is_null()) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			RID ci = get_canvas_item(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-27 09:28:02 +01:00
										 |  |  | 			Rect2 src_rect, dst_rect; | 
					
						
							| 
									
										
										
										
											2021-03-14 13:43:43 +00:00
										 |  |  | 			bool filter_clip_enabled; | 
					
						
							|  |  |  | 			_get_rects(src_rect, dst_rect, filter_clip_enabled); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-14 13:43:43 +00:00
										 |  |  | 			texture->draw_rect_region(ci, dst_rect, src_rect, Color(1, 1, 1), false, filter_clip_enabled); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | void Sprite2D::set_texture(const Ref<Texture2D> &p_texture) { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (p_texture == texture) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-03-10 17:01:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (texture.is_valid()) { | 
					
						
							| 
									
										
										
										
											2023-07-03 21:29:37 +02:00
										 |  |  | 		texture->disconnect_changed(callable_mp(this, &Sprite2D::_texture_changed)); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-03-10 17:01:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	texture = p_texture; | 
					
						
							| 
									
										
										
										
											2018-03-10 17:01:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (texture.is_valid()) { | 
					
						
							| 
									
										
										
										
											2023-07-03 21:29:37 +02:00
										 |  |  | 		texture->connect_changed(callable_mp(this, &Sprite2D::_texture_changed)); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-03-10 17:01:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-13 23:21:24 +02:00
										 |  |  | 	queue_redraw(); | 
					
						
							| 
									
										
										
										
											2023-09-04 17:01:33 +02:00
										 |  |  | 	emit_signal(SceneStringName(texture_changed)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	item_rect_changed(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | Ref<Texture2D> Sprite2D::get_texture() const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return texture; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | void Sprite2D::set_centered(bool p_center) { | 
					
						
							| 
									
										
										
										
											2023-11-24 16:33:23 +02:00
										 |  |  | 	if (centered == p_center) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	centered = p_center; | 
					
						
							| 
									
										
										
										
											2022-08-13 23:21:24 +02:00
										 |  |  | 	queue_redraw(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	item_rect_changed(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | bool Sprite2D::is_centered() const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return centered; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | void Sprite2D::set_offset(const Point2 &p_offset) { | 
					
						
							| 
									
										
										
										
											2023-11-24 16:33:23 +02:00
										 |  |  | 	if (offset == p_offset) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	offset = p_offset; | 
					
						
							| 
									
										
										
										
											2022-08-13 23:21:24 +02:00
										 |  |  | 	queue_redraw(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	item_rect_changed(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | Point2 Sprite2D::get_offset() const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return offset; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | void Sprite2D::set_flip_h(bool p_flip) { | 
					
						
							| 
									
										
										
										
											2023-11-24 16:33:23 +02:00
										 |  |  | 	if (hflip == p_flip) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	hflip = p_flip; | 
					
						
							| 
									
										
										
										
											2022-08-13 23:21:24 +02:00
										 |  |  | 	queue_redraw(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | bool Sprite2D::is_flipped_h() const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return hflip; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | void Sprite2D::set_flip_v(bool p_flip) { | 
					
						
							| 
									
										
										
										
											2023-11-24 16:33:23 +02:00
										 |  |  | 	if (vflip == p_flip) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	vflip = p_flip; | 
					
						
							| 
									
										
										
										
											2022-08-13 23:21:24 +02:00
										 |  |  | 	queue_redraw(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | bool Sprite2D::is_flipped_v() const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return vflip; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-14 13:43:43 +00:00
										 |  |  | void Sprite2D::set_region_enabled(bool p_region_enabled) { | 
					
						
							| 
									
										
										
										
											2023-11-24 16:33:23 +02:00
										 |  |  | 	if (region_enabled == p_region_enabled) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-14 13:43:43 +00:00
										 |  |  | 	region_enabled = p_region_enabled; | 
					
						
							| 
									
										
										
										
											2025-04-28 22:43:41 +08:00
										 |  |  | 	_emit_region_rect_enabled(); | 
					
						
							| 
									
										
										
										
											2022-08-13 23:21:24 +02:00
										 |  |  | 	queue_redraw(); | 
					
						
							| 
									
										
										
										
											2020-02-13 23:34:59 -03:00
										 |  |  | 	notify_property_list_changed(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-14 13:43:43 +00:00
										 |  |  | bool Sprite2D::is_region_enabled() const { | 
					
						
							|  |  |  | 	return region_enabled; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | void Sprite2D::set_region_rect(const Rect2 &p_region_rect) { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (region_rect == p_region_rect) { | 
					
						
							| 
									
										
										
										
											2016-03-05 12:30:09 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-03-05 12:30:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	region_rect = p_region_rect; | 
					
						
							| 
									
										
										
										
											2016-03-05 12:30:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-14 13:43:43 +00:00
										 |  |  | 	if (region_enabled) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		item_rect_changed(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | Rect2 Sprite2D::get_region_rect() const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return region_rect; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-14 13:43:43 +00:00
										 |  |  | void Sprite2D::set_region_filter_clip_enabled(bool p_region_filter_clip_enabled) { | 
					
						
							| 
									
										
										
										
											2023-11-24 16:33:23 +02:00
										 |  |  | 	if (region_filter_clip_enabled == p_region_filter_clip_enabled) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-14 13:43:43 +00:00
										 |  |  | 	region_filter_clip_enabled = p_region_filter_clip_enabled; | 
					
						
							| 
									
										
										
										
											2022-08-13 23:21:24 +02:00
										 |  |  | 	queue_redraw(); | 
					
						
							| 
									
										
										
										
											2017-06-18 22:55:02 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | bool Sprite2D::is_region_filter_clip_enabled() const { | 
					
						
							| 
									
										
										
										
											2021-03-14 13:43:43 +00:00
										 |  |  | 	return region_filter_clip_enabled; | 
					
						
							| 
									
										
										
										
											2017-06-18 22:55:02 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | void Sprite2D::set_frame(int p_frame) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	ERR_FAIL_INDEX(p_frame, vframes * hframes); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-24 16:33:23 +02:00
										 |  |  | 	if (frame == p_frame) { | 
					
						
							|  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	frame = p_frame; | 
					
						
							| 
									
										
										
										
											2023-11-24 16:33:23 +02:00
										 |  |  | 	item_rect_changed(); | 
					
						
							| 
									
										
										
										
											2023-09-04 17:01:33 +02:00
										 |  |  | 	emit_signal(SceneStringName(frame_changed)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | int Sprite2D::get_frame() const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return frame; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-23 18:46:39 +02:00
										 |  |  | void Sprite2D::set_frame_coords(const Vector2i &p_coord) { | 
					
						
							|  |  |  | 	ERR_FAIL_INDEX(p_coord.x, hframes); | 
					
						
							|  |  |  | 	ERR_FAIL_INDEX(p_coord.y, vframes); | 
					
						
							| 
									
										
										
										
											2019-01-25 19:21:23 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-23 18:46:39 +02:00
										 |  |  | 	set_frame(p_coord.y * hframes + p_coord.x); | 
					
						
							| 
									
										
										
										
											2019-01-25 19:21:23 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-23 18:46:39 +02:00
										 |  |  | Vector2i Sprite2D::get_frame_coords() const { | 
					
						
							|  |  |  | 	return Vector2i(frame % hframes, frame / hframes); | 
					
						
							| 
									
										
										
										
											2019-01-25 19:21:23 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | void Sprite2D::set_vframes(int p_amount) { | 
					
						
							| 
									
										
										
										
											2019-09-25 10:28:50 +02:00
										 |  |  | 	ERR_FAIL_COND_MSG(p_amount < 1, "Amount of vframes cannot be smaller than 1."); | 
					
						
							| 
									
										
										
										
											2023-11-24 16:33:23 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (vframes == p_amount) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	vframes = p_amount; | 
					
						
							| 
									
										
										
										
											2023-11-24 18:47:55 +02:00
										 |  |  | 	if (frame >= vframes * hframes) { | 
					
						
							|  |  |  | 		frame = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2025-04-28 22:43:41 +08:00
										 |  |  | 	_emit_region_rect_enabled(); | 
					
						
							| 
									
										
										
										
											2022-08-13 23:21:24 +02:00
										 |  |  | 	queue_redraw(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	item_rect_changed(); | 
					
						
							| 
									
										
										
										
											2021-02-10 17:18:45 -03:00
										 |  |  | 	notify_property_list_changed(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | int Sprite2D::get_vframes() const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return vframes; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | void Sprite2D::set_hframes(int p_amount) { | 
					
						
							| 
									
										
										
										
											2019-09-25 10:28:50 +02:00
										 |  |  | 	ERR_FAIL_COND_MSG(p_amount < 1, "Amount of hframes cannot be smaller than 1."); | 
					
						
							| 
									
										
										
										
											2023-11-24 16:33:23 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (hframes == p_amount) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-24 18:47:55 +02:00
										 |  |  | 	if (vframes > 1) { | 
					
						
							|  |  |  | 		// Adjust the frame to fit new sheet dimensions.
 | 
					
						
							|  |  |  | 		int original_column = frame % hframes; | 
					
						
							|  |  |  | 		if (original_column >= p_amount) { | 
					
						
							|  |  |  | 			// Frame's column was dropped, reset.
 | 
					
						
							|  |  |  | 			frame = 0; | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			int original_row = frame / hframes; | 
					
						
							|  |  |  | 			frame = original_row * p_amount + original_column; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	hframes = p_amount; | 
					
						
							| 
									
										
										
										
											2023-11-24 18:47:55 +02:00
										 |  |  | 	if (frame >= vframes * hframes) { | 
					
						
							|  |  |  | 		frame = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2025-04-28 22:43:41 +08:00
										 |  |  | 	_emit_region_rect_enabled(); | 
					
						
							| 
									
										
										
										
											2022-08-13 23:21:24 +02:00
										 |  |  | 	queue_redraw(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	item_rect_changed(); | 
					
						
							| 
									
										
										
										
											2021-02-10 17:18:45 -03:00
										 |  |  | 	notify_property_list_changed(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | int Sprite2D::get_hframes() const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return hframes; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | bool Sprite2D::is_pixel_opaque(const Point2 &p_point) const { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (texture.is_null()) { | 
					
						
							| 
									
										
										
										
											2017-12-27 09:28:02 +01:00
										 |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-12-27 09:28:02 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (texture->get_size().width == 0 || texture->get_size().height == 0) { | 
					
						
							| 
									
										
										
										
											2019-12-10 11:23:30 -05:00
										 |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-12-10 11:23:30 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-27 09:28:02 +01:00
										 |  |  | 	Rect2 src_rect, dst_rect; | 
					
						
							| 
									
										
										
										
											2021-03-14 13:43:43 +00:00
										 |  |  | 	bool filter_clip_enabled; | 
					
						
							|  |  |  | 	_get_rects(src_rect, dst_rect, filter_clip_enabled); | 
					
						
							| 
									
										
										
										
											2018-03-07 18:58:45 +01:00
										 |  |  | 	dst_rect.size = dst_rect.size.abs(); | 
					
						
							| 
									
										
										
										
											2017-12-27 09:28:02 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!dst_rect.has_point(p_point)) { | 
					
						
							| 
									
										
										
										
											2017-12-27 09:28:02 +01:00
										 |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-12-27 09:28:02 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-07 18:58:45 +01:00
										 |  |  | 	Vector2 q = (p_point - dst_rect.position) / dst_rect.size; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (hflip) { | 
					
						
							| 
									
										
										
										
											2018-03-07 18:58:45 +01:00
										 |  |  | 		q.x = 1.0f - q.x; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if (vflip) { | 
					
						
							| 
									
										
										
										
											2018-03-07 18:58:45 +01:00
										 |  |  | 		q.y = 1.0f - q.y; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-03-07 18:58:45 +01:00
										 |  |  | 	q = q * src_rect.size + src_rect.position; | 
					
						
							| 
									
										
										
										
											2023-06-22 16:23:15 +02:00
										 |  |  | 	TextureRepeat repeat_mode = get_texture_repeat_in_tree(); | 
					
						
							|  |  |  | 	bool is_repeat = repeat_mode == TEXTURE_REPEAT_ENABLED || repeat_mode == TEXTURE_REPEAT_MIRROR; | 
					
						
							|  |  |  | 	bool is_mirrored_repeat = repeat_mode == TEXTURE_REPEAT_MIRROR; | 
					
						
							| 
									
										
										
										
											2018-04-16 20:21:08 +09:00
										 |  |  | 	if (is_repeat) { | 
					
						
							|  |  |  | 		int mirror_x = 0; | 
					
						
							|  |  |  | 		int mirror_y = 0; | 
					
						
							|  |  |  | 		if (is_mirrored_repeat) { | 
					
						
							|  |  |  | 			mirror_x = (int)(q.x / texture->get_size().width); | 
					
						
							|  |  |  | 			mirror_y = (int)(q.y / texture->get_size().height); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		q.x = Math::fmod(q.x, texture->get_size().width); | 
					
						
							|  |  |  | 		q.y = Math::fmod(q.y, texture->get_size().height); | 
					
						
							|  |  |  | 		if (mirror_x % 2 == 1) { | 
					
						
							|  |  |  | 			q.x = texture->get_size().width - q.x - 1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (mirror_y % 2 == 1) { | 
					
						
							|  |  |  | 			q.y = texture->get_size().height - q.y - 1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2024-03-03 12:49:08 +01:00
										 |  |  | 		q = q.min(texture->get_size() - Vector2(1, 1)); | 
					
						
							| 
									
										
										
										
											2018-04-16 20:21:08 +09:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-12-27 09:28:02 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-23 22:10:15 -03:00
										 |  |  | 	return texture->is_pixel_opaque((int)q.x, (int)q.y); | 
					
						
							| 
									
										
										
										
											2017-12-27 09:28:02 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-04-28 22:43:41 +08:00
										 |  |  | bool Sprite2D::is_editor_region_rect_draggable() const { | 
					
						
							|  |  |  | 	return hframes <= 1 && vframes <= 1 && region_enabled; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | Rect2 Sprite2D::get_rect() const { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (texture.is_null()) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return Rect2(0, 0, 1, 1); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Size2i s; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-14 13:43:43 +00:00
										 |  |  | 	if (region_enabled) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		s = region_rect.size; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		s = texture->get_size(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-27 20:14:08 +00:00
										 |  |  | 	s = s / Point2(hframes, vframes); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-04-28 22:43:41 +08:00
										 |  |  | 	Point2 ofs = _get_rect_offset(s); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (s == Size2(0, 0)) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		s = Size2(1, 1); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return Rect2(ofs, s); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-12 23:57:11 +03:00
										 |  |  | void Sprite2D::_validate_property(PropertyInfo &p_property) const { | 
					
						
							|  |  |  | 	if (p_property.name == "frame") { | 
					
						
							|  |  |  | 		p_property.hint = PROPERTY_HINT_RANGE; | 
					
						
							|  |  |  | 		p_property.hint_string = "0," + itos(vframes * hframes - 1) + ",1"; | 
					
						
							|  |  |  | 		p_property.usage |= PROPERTY_USAGE_KEYING_INCREMENTS; | 
					
						
							| 
									
										
										
										
											2016-07-06 23:46:04 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-10-22 19:01:23 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-12 23:57:11 +03:00
										 |  |  | 	if (p_property.name == "frame_coords") { | 
					
						
							|  |  |  | 		p_property.usage |= PROPERTY_USAGE_KEYING_INCREMENTS; | 
					
						
							| 
									
										
										
										
											2019-10-22 19:01:23 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-13 23:34:59 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-02-13 10:06:30 +11:00
										 |  |  | 	if (!region_enabled && (p_property.name == "region_rect" || p_property.name == "region_filter_clip_enabled")) { | 
					
						
							| 
									
										
										
										
											2022-08-12 23:57:11 +03:00
										 |  |  | 		p_property.usage = PROPERTY_USAGE_NO_EDITOR; | 
					
						
							| 
									
										
										
										
											2020-02-13 23:34:59 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-07-06 23:46:04 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | void Sprite2D::_texture_changed() { | 
					
						
							| 
									
										
										
										
											2018-03-10 17:01:46 +01:00
										 |  |  | 	// Changes to the texture need to trigger an update to make
 | 
					
						
							|  |  |  | 	// the editor redraw the sprite with the updated texture.
 | 
					
						
							| 
									
										
										
										
											2019-09-25 20:48:48 +02:00
										 |  |  | 	if (texture.is_valid()) { | 
					
						
							| 
									
										
										
										
											2022-08-13 23:21:24 +02:00
										 |  |  | 		queue_redraw(); | 
					
						
							| 
									
										
										
										
											2018-03-10 17:01:46 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-04-28 22:43:41 +08:00
										 |  |  | void Sprite2D::_emit_region_rect_enabled() { | 
					
						
							|  |  |  | 	emit_signal("_editor_region_rect_enabled", is_editor_region_rect_draggable()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | void Sprite2D::_bind_methods() { | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_texture", "texture"), &Sprite2D::set_texture); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_texture"), &Sprite2D::get_texture); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_centered", "centered"), &Sprite2D::set_centered); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_centered"), &Sprite2D::is_centered); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_offset", "offset"), &Sprite2D::set_offset); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_offset"), &Sprite2D::get_offset); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_flip_h", "flip_h"), &Sprite2D::set_flip_h); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_flipped_h"), &Sprite2D::is_flipped_h); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_flip_v", "flip_v"), &Sprite2D::set_flip_v); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_flipped_v"), &Sprite2D::is_flipped_v); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-14 13:43:43 +00:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_region_enabled", "enabled"), &Sprite2D::set_region_enabled); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_region_enabled"), &Sprite2D::is_region_enabled); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("is_pixel_opaque", "pos"), &Sprite2D::is_pixel_opaque); | 
					
						
							| 
									
										
										
										
											2018-08-23 22:10:15 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_region_rect", "rect"), &Sprite2D::set_region_rect); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_region_rect"), &Sprite2D::get_region_rect); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-14 13:43:43 +00:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_region_filter_clip_enabled", "enabled"), &Sprite2D::set_region_filter_clip_enabled); | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("is_region_filter_clip_enabled"), &Sprite2D::is_region_filter_clip_enabled); | 
					
						
							| 
									
										
										
										
											2017-06-18 22:55:02 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_frame", "frame"), &Sprite2D::set_frame); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_frame"), &Sprite2D::get_frame); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_frame_coords", "coords"), &Sprite2D::set_frame_coords); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_frame_coords"), &Sprite2D::get_frame_coords); | 
					
						
							| 
									
										
										
										
											2019-01-25 19:21:23 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_vframes", "vframes"), &Sprite2D::set_vframes); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_vframes"), &Sprite2D::get_vframes); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_hframes", "hframes"), &Sprite2D::set_hframes); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_hframes"), &Sprite2D::get_hframes); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("get_rect"), &Sprite2D::get_rect); | 
					
						
							| 
									
										
										
										
											2018-02-16 11:58:27 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-07 02:04:20 -03:00
										 |  |  | 	ADD_SIGNAL(MethodInfo("frame_changed")); | 
					
						
							| 
									
										
										
										
											2016-06-19 22:16:41 -03:00
										 |  |  | 	ADD_SIGNAL(MethodInfo("texture_changed")); | 
					
						
							| 
									
										
										
										
											2014-12-07 02:04:20 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-11 15:43:37 -03:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "texture", PROPERTY_HINT_RESOURCE_TYPE, "Texture2D"), "set_texture", "get_texture"); | 
					
						
							| 
									
										
										
										
											2017-06-25 18:57:28 -03:00
										 |  |  | 	ADD_GROUP("Offset", ""); | 
					
						
							| 
									
										
										
										
											2018-11-08 11:30:02 -03:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "centered"), "set_centered", "is_centered"); | 
					
						
							| 
									
										
										
										
											2021-12-02 18:09:19 -06:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "offset", PROPERTY_HINT_NONE, "suffix:px"), "set_offset", "get_offset"); | 
					
						
							| 
									
										
										
										
											2018-11-08 11:30:02 -03:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "flip_h"), "set_flip_h", "is_flipped_h"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "flip_v"), "set_flip_v", "is_flipped_v"); | 
					
						
							| 
									
										
										
										
											2017-06-25 18:57:28 -03:00
										 |  |  | 	ADD_GROUP("Animation", ""); | 
					
						
							| 
									
										
										
										
											2018-11-08 11:30:02 -03:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::INT, "hframes", PROPERTY_HINT_RANGE, "1,16384,1"), "set_hframes", "get_hframes"); | 
					
						
							| 
									
										
										
										
											2020-08-22 01:56:14 +02:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::INT, "vframes", PROPERTY_HINT_RANGE, "1,16384,1"), "set_vframes", "get_vframes"); | 
					
						
							| 
									
										
										
										
											2019-07-25 09:11:41 +02:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::INT, "frame"), "set_frame", "get_frame"); | 
					
						
							| 
									
										
										
										
											2022-10-10 14:42:54 +02:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::VECTOR2I, "frame_coords", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_EDITOR), "set_frame_coords", "get_frame_coords"); | 
					
						
							| 
									
										
										
										
											2017-06-18 22:55:02 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ADD_GROUP("Region", "region_"); | 
					
						
							| 
									
										
										
										
											2023-09-14 00:02:17 +02:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "region_enabled", PROPERTY_HINT_GROUP_ENABLE), "set_region_enabled", "is_region_enabled"); | 
					
						
							| 
									
										
										
										
											2018-11-08 11:30:02 -03:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::RECT2, "region_rect"), "set_region_rect", "get_region_rect"); | 
					
						
							| 
									
										
										
										
											2021-03-14 13:43:43 +00:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "region_filter_clip_enabled"), "set_region_filter_clip_enabled", "is_region_filter_clip_enabled"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | Sprite2D::Sprite2D() { | 
					
						
							| 
									
										
										
										
											2025-04-28 22:43:41 +08:00
										 |  |  | #ifdef TOOLS_ENABLED
 | 
					
						
							|  |  |  | 	add_user_signal(MethodInfo("_editor_region_rect_enabled", PropertyInfo(Variant::BOOL, "enabled"))); // Sprite2DEditorPlugin listens to this.
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-03-10 17:01:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 18:49:16 -03:00
										 |  |  | Sprite2D::~Sprite2D() { | 
					
						
							| 
									
										
										
										
											2018-03-10 17:01:46 +01:00
										 |  |  | } |