| 
									
										
										
										
											2023-01-05 13:25:55 +01:00
										 |  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  |  | /*  texture_editor_plugin.cpp                                             */ | 
					
						
							|  |  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  |  | /*                         This file is part of:                          */ | 
					
						
							|  |  |  |  | /*                             GODOT ENGINE                               */ | 
					
						
							|  |  |  |  | /*                        https://godotengine.org                         */ | 
					
						
							|  |  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  |  | /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ | 
					
						
							|  |  |  |  | /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur.                  */ | 
					
						
							|  |  |  |  | /*                                                                        */ | 
					
						
							|  |  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining  */ | 
					
						
							|  |  |  |  | /* a copy of this software and associated documentation files (the        */ | 
					
						
							|  |  |  |  | /* "Software"), to deal in the Software without restriction, including    */ | 
					
						
							|  |  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,    */ | 
					
						
							|  |  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to     */ | 
					
						
							|  |  |  |  | /* permit persons to whom the Software is furnished to do so, subject to  */ | 
					
						
							|  |  |  |  | /* the following conditions:                                              */ | 
					
						
							|  |  |  |  | /*                                                                        */ | 
					
						
							|  |  |  |  | /* The above copyright notice and this permission notice shall be         */ | 
					
						
							|  |  |  |  | /* included in all copies or substantial portions of the Software.        */ | 
					
						
							|  |  |  |  | /*                                                                        */ | 
					
						
							|  |  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,        */ | 
					
						
							|  |  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF     */ | 
					
						
							|  |  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */ | 
					
						
							|  |  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY   */ | 
					
						
							|  |  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,   */ | 
					
						
							|  |  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE      */ | 
					
						
							|  |  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                 */ | 
					
						
							|  |  |  |  | /**************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-05 00:50:27 +01:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  |  | #include "texture_editor_plugin.h"
 | 
					
						
							| 
									
										
										
										
											2021-03-21 15:33:17 -06:00
										 |  |  |  | #include "editor/editor_scale.h"
 | 
					
						
							| 
									
										
										
										
											2022-11-19 12:45:49 +01:00
										 |  |  |  | #include "scene/gui/label.h"
 | 
					
						
							|  |  |  |  | #include "scene/gui/texture_rect.h"
 | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-21 15:33:17 -06:00
										 |  |  |  | TextureRect *TexturePreview::get_texture_display() { | 
					
						
							|  |  |  |  | 	return texture_display; | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-21 15:10:03 -06:00
										 |  |  |  | void TexturePreview::_notification(int p_what) { | 
					
						
							|  |  |  |  | 	switch (p_what) { | 
					
						
							| 
									
										
										
										
											2022-08-29 11:04:31 +02:00
										 |  |  |  | 		case NOTIFICATION_ENTER_TREE: | 
					
						
							| 
									
										
										
										
											2021-07-21 15:10:03 -06:00
										 |  |  |  | 		case NOTIFICATION_THEME_CHANGED: { | 
					
						
							| 
									
										
										
										
											2022-08-29 11:04:31 +02:00
										 |  |  |  | 			if (!is_inside_tree()) { | 
					
						
							|  |  |  |  | 				// TODO: This is a workaround because `NOTIFICATION_THEME_CHANGED`
 | 
					
						
							|  |  |  |  | 				// is getting called for some reason when the `TexturePreview` is
 | 
					
						
							|  |  |  |  | 				// getting destroyed, which causes `get_theme_font()` to return `nullptr`.
 | 
					
						
							|  |  |  |  | 				// See https://github.com/godotengine/godot/issues/50743.
 | 
					
						
							|  |  |  |  | 				break; | 
					
						
							|  |  |  |  | 			} | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-23 16:29:49 +02:00
										 |  |  |  | 			if (metadata_label) { | 
					
						
							|  |  |  |  | 				Ref<Font> metadata_label_font = get_theme_font(SNAME("expression"), SNAME("EditorFonts")); | 
					
						
							| 
									
										
										
										
											2022-02-08 10:14:58 +01:00
										 |  |  |  | 				metadata_label->add_theme_font_override("font", metadata_label_font); | 
					
						
							| 
									
										
										
										
											2021-07-23 16:29:49 +02:00
										 |  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2021-07-21 15:10:03 -06:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 			checkerboard->set_texture(get_theme_icon(SNAME("Checkerboard"), SNAME("EditorIcons"))); | 
					
						
							|  |  |  |  | 		} break; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-24 19:02:48 +02:00
										 |  |  |  | void TexturePreview::_update_metadata_label_text() { | 
					
						
							| 
									
										
										
										
											2022-06-22 08:24:39 +02:00
										 |  |  |  | 	const Ref<Texture2D> texture = texture_display->get_texture(); | 
					
						
							| 
									
										
										
										
											2021-09-24 19:02:48 +02:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 	String format; | 
					
						
							|  |  |  |  | 	if (Object::cast_to<ImageTexture>(*texture)) { | 
					
						
							|  |  |  |  | 		format = Image::get_format_name(Object::cast_to<ImageTexture>(*texture)->get_format()); | 
					
						
							| 
									
										
										
										
											2022-03-05 16:43:38 +01:00
										 |  |  |  | 	} else if (Object::cast_to<CompressedTexture2D>(*texture)) { | 
					
						
							|  |  |  |  | 		format = Image::get_format_name(Object::cast_to<CompressedTexture2D>(*texture)->get_format()); | 
					
						
							| 
									
										
										
										
											2021-09-24 19:02:48 +02:00
										 |  |  |  | 	} else { | 
					
						
							|  |  |  |  | 		format = texture->get_class(); | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-22 08:24:39 +02:00
										 |  |  |  | 	const Ref<Image> image = texture->get_image(); | 
					
						
							|  |  |  |  | 	if (image.is_valid()) { | 
					
						
							|  |  |  |  | 		const int mipmaps = image->get_mipmap_count(); | 
					
						
							|  |  |  |  | 		// Avoid signed integer overflow that could occur with huge texture sizes by casting everything to uint64_t.
 | 
					
						
							|  |  |  |  | 		uint64_t memory = uint64_t(image->get_width()) * uint64_t(image->get_height()) * uint64_t(Image::get_format_pixel_size(image->get_format())); | 
					
						
							|  |  |  |  | 		// Handle VRAM-compressed formats that are stored with 4 bpp.
 | 
					
						
							|  |  |  |  | 		memory >>= Image::get_format_pixel_rshift(image->get_format()); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		float mipmaps_multiplier = 1.0; | 
					
						
							|  |  |  |  | 		float mipmap_increase = 0.25; | 
					
						
							|  |  |  |  | 		for (int i = 0; i < mipmaps; i++) { | 
					
						
							|  |  |  |  | 			// Each mip adds 25% memory usage of the previous one.
 | 
					
						
							|  |  |  |  | 			// With a complete mipmap chain, memory usage increases by ~33%.
 | 
					
						
							|  |  |  |  | 			mipmaps_multiplier += mipmap_increase; | 
					
						
							|  |  |  |  | 			mipmap_increase *= 0.25; | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 		memory *= mipmaps_multiplier; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		if (mipmaps >= 1) { | 
					
						
							|  |  |  |  | 			metadata_label->set_text( | 
					
						
							|  |  |  |  | 					vformat(String::utf8("%d×%d %s\n") + TTR("%s Mipmaps") + "\n" + TTR("Memory: %s"), | 
					
						
							|  |  |  |  | 							texture->get_width(), | 
					
						
							|  |  |  |  | 							texture->get_height(), | 
					
						
							|  |  |  |  | 							format, | 
					
						
							|  |  |  |  | 							mipmaps, | 
					
						
							|  |  |  |  | 							String::humanize_size(memory))); | 
					
						
							|  |  |  |  | 		} else { | 
					
						
							|  |  |  |  | 			// "No Mipmaps" is easier to distinguish than "0 Mipmaps",
 | 
					
						
							|  |  |  |  | 			// especially since 0, 6, and 8 look quite close with the default code font.
 | 
					
						
							|  |  |  |  | 			metadata_label->set_text( | 
					
						
							|  |  |  |  | 					vformat(String::utf8("%d×%d %s\n") + TTR("No Mipmaps") + "\n" + TTR("Memory: %s"), | 
					
						
							|  |  |  |  | 							texture->get_width(), | 
					
						
							|  |  |  |  | 							texture->get_height(), | 
					
						
							|  |  |  |  | 							format, | 
					
						
							|  |  |  |  | 							String::humanize_size(memory))); | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 	} else { | 
					
						
							|  |  |  |  | 		metadata_label->set_text( | 
					
						
							|  |  |  |  | 				vformat(String::utf8("%d×%d %s"), | 
					
						
							|  |  |  |  | 						texture->get_width(), | 
					
						
							|  |  |  |  | 						texture->get_height(), | 
					
						
							|  |  |  |  | 						format)); | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-09-24 19:02:48 +02:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-21 15:33:17 -06:00
										 |  |  |  | TexturePreview::TexturePreview(Ref<Texture2D> p_texture, bool p_show_metadata) { | 
					
						
							| 
									
										
										
										
											2021-07-21 15:10:03 -06:00
										 |  |  |  | 	checkerboard = memnew(TextureRect); | 
					
						
							| 
									
										
										
										
											2021-03-21 15:33:17 -06:00
										 |  |  |  | 	checkerboard->set_stretch_mode(TextureRect::STRETCH_TILE); | 
					
						
							|  |  |  |  | 	checkerboard->set_texture_repeat(CanvasItem::TEXTURE_REPEAT_ENABLED); | 
					
						
							|  |  |  |  | 	checkerboard->set_custom_minimum_size(Size2(0.0, 256.0) * EDSCALE); | 
					
						
							|  |  |  |  | 	add_child(checkerboard); | 
					
						
							| 
									
										
										
										
											2017-04-30 16:27:10 +02:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-21 15:33:17 -06:00
										 |  |  |  | 	texture_display = memnew(TextureRect); | 
					
						
							| 
									
										
										
										
											2022-10-14 21:36:10 -04:00
										 |  |  |  | 	texture_display->set_texture_filter(TEXTURE_FILTER_NEAREST_WITH_MIPMAPS); | 
					
						
							| 
									
										
										
										
											2021-03-21 15:33:17 -06:00
										 |  |  |  | 	texture_display->set_texture(p_texture); | 
					
						
							| 
									
										
										
										
											2022-03-18 19:02:57 -05:00
										 |  |  |  | 	texture_display->set_anchors_preset(TextureRect::PRESET_FULL_RECT); | 
					
						
							| 
									
										
										
										
											2021-03-21 15:33:17 -06:00
										 |  |  |  | 	texture_display->set_stretch_mode(TextureRect::STRETCH_KEEP_ASPECT_CENTERED); | 
					
						
							| 
									
										
										
										
											2022-02-25 01:19:24 +01:00
										 |  |  |  | 	texture_display->set_expand_mode(TextureRect::EXPAND_IGNORE_SIZE); | 
					
						
							| 
									
										
										
										
											2021-03-21 15:33:17 -06:00
										 |  |  |  | 	add_child(texture_display); | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-21 15:33:17 -06:00
										 |  |  |  | 	if (p_show_metadata) { | 
					
						
							| 
									
										
										
										
											2021-07-21 15:10:03 -06:00
										 |  |  |  | 		metadata_label = memnew(Label); | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-24 19:02:48 +02:00
										 |  |  |  | 		_update_metadata_label_text(); | 
					
						
							|  |  |  |  | 		p_texture->connect("changed", callable_mp(this, &TexturePreview::_update_metadata_label_text)); | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-15 12:58:04 -06:00
										 |  |  |  | 		// It's okay that these colors are static since the grid color is static too.
 | 
					
						
							| 
									
										
										
										
											2022-02-08 10:14:58 +01:00
										 |  |  |  | 		metadata_label->add_theme_color_override("font_color", Color::named("white")); | 
					
						
							| 
									
										
										
										
											2022-08-11 14:15:04 +02:00
										 |  |  |  | 		metadata_label->add_theme_color_override("font_shadow_color", Color::named("black")); | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-22 08:24:39 +02:00
										 |  |  |  | 		metadata_label->add_theme_font_size_override("font_size", 14 * EDSCALE); | 
					
						
							| 
									
										
										
										
											2022-02-08 10:14:58 +01:00
										 |  |  |  | 		metadata_label->add_theme_color_override("font_outline_color", Color::named("black")); | 
					
						
							| 
									
										
										
										
											2022-06-22 08:24:39 +02:00
										 |  |  |  | 		metadata_label->add_theme_constant_override("outline_size", 8 * EDSCALE); | 
					
						
							| 
									
										
										
										
											2021-03-21 15:33:17 -06:00
										 |  |  |  | 		metadata_label->set_h_size_flags(Control::SIZE_SHRINK_END); | 
					
						
							|  |  |  |  | 		metadata_label->set_v_size_flags(Control::SIZE_SHRINK_END); | 
					
						
							| 
									
										
										
										
											2017-03-29 19:30:24 -04:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-21 15:33:17 -06:00
										 |  |  |  | 		add_child(metadata_label); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-04 15:52:39 -03:00
										 |  |  |  | bool EditorInspectorPluginTexture::can_handle(Object *p_object) { | 
					
						
							| 
									
										
										
										
											2023-02-13 23:03:38 +01:00
										 |  |  |  | 	return Object::cast_to<ImageTexture>(p_object) != nullptr || Object::cast_to<AtlasTexture>(p_object) != nullptr || Object::cast_to<CompressedTexture2D>(p_object) != nullptr || Object::cast_to<AnimatedTexture>(p_object) != nullptr || Object::cast_to<Image>(p_object) != nullptr; | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-04 15:52:39 -03:00
										 |  |  |  | void EditorInspectorPluginTexture::parse_begin(Object *p_object) { | 
					
						
							| 
									
										
										
										
											2021-03-21 15:33:17 -06:00
										 |  |  |  | 	Ref<Texture> texture(Object::cast_to<Texture>(p_object)); | 
					
						
							| 
									
										
										
										
											2023-02-13 23:03:38 +01:00
										 |  |  |  | 	if (texture.is_null()) { | 
					
						
							|  |  |  |  | 		Ref<Image> image(Object::cast_to<Image>(p_object)); | 
					
						
							|  |  |  |  | 		texture = ImageTexture::create_from_image(image); | 
					
						
							| 
									
										
										
										
											2023-06-18 13:08:06 +08:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 		ERR_FAIL_COND_MSG(texture == nullptr, "Failed to create the texture from an invalid image."); | 
					
						
							| 
									
										
										
										
											2023-02-13 23:03:38 +01:00
										 |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-03-04 15:52:39 -03:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-21 15:33:17 -06:00
										 |  |  |  | 	add_custom_control(memnew(TexturePreview(texture, true))); | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-27 10:36:51 +01:00
										 |  |  |  | TextureEditorPlugin::TextureEditorPlugin() { | 
					
						
							| 
									
										
										
										
											2019-03-04 15:52:39 -03:00
										 |  |  |  | 	Ref<EditorInspectorPluginTexture> plugin; | 
					
						
							| 
									
										
										
										
											2021-06-17 16:03:09 -06:00
										 |  |  |  | 	plugin.instantiate(); | 
					
						
							| 
									
										
										
										
											2019-03-04 15:52:39 -03:00
										 |  |  |  | 	add_inspector_plugin(plugin); | 
					
						
							| 
									
										
										
										
											2016-05-23 17:10:26 -03:00
										 |  |  |  | } |