| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  pvrtc_compress.cpp                                                   */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-01 14:40:08 +01:00
										 |  |  | /* Copyright (c) 2007-2018 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2018 Godot Engine contributors (cf. AUTHORS.md)    */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the       */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including   */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,   */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to    */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to */ | 
					
						
							|  |  |  | /* the following conditions:                                             */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be        */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.       */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,       */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF    */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY  */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,  */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE     */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-05 00:50:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #include "pvrtc_compress.h"
 | 
					
						
							| 
									
										
										
										
											2017-01-16 08:04:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #include "editor_settings.h"
 | 
					
						
							|  |  |  | #include "io/resource_loader.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include "io/resource_saver.h"
 | 
					
						
							| 
									
										
										
										
											2015-04-06 21:48:20 -03:00
										 |  |  | #include "os/file_access.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include "os/os.h"
 | 
					
						
							|  |  |  | #include "scene/resources/texture.h"
 | 
					
						
							| 
									
										
										
										
											2017-01-16 08:04:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | static void (*_base_image_compress_pvrtc2_func)(Image *) = NULL; | 
					
						
							|  |  |  | static void (*_base_image_compress_pvrtc4_func)(Image *) = NULL; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | static void _compress_image(Image::CompressMode p_mode, Image *p_image) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 19:41:36 -03:00
										 |  |  | 	String ttpath = EditorSettings::get_singleton()->get("filesystem/import/pvrtc_texture_tool"); | 
					
						
							| 
									
										
										
										
											2015-04-06 21:48:20 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (ttpath.strip_edges() == "" || !FileAccess::exists(ttpath)) { | 
					
						
							|  |  |  | 		switch (p_mode) { | 
					
						
							| 
									
										
										
										
											2015-04-06 21:48:20 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			case Image::COMPRESS_PVRTC2: | 
					
						
							|  |  |  | 				if (_base_image_compress_pvrtc2_func) | 
					
						
							|  |  |  | 					_base_image_compress_pvrtc2_func(p_image); | 
					
						
							|  |  |  | 				else if (_base_image_compress_pvrtc4_func) | 
					
						
							|  |  |  | 					_base_image_compress_pvrtc4_func(p_image); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				break; | 
					
						
							| 
									
										
										
										
											2015-04-06 21:48:20 -03:00
										 |  |  | 			case Image::COMPRESS_PVRTC4: | 
					
						
							|  |  |  | 				if (_base_image_compress_pvrtc4_func) | 
					
						
							|  |  |  | 					_base_image_compress_pvrtc4_func(p_image); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				break; | 
					
						
							| 
									
										
										
										
											2015-04-06 21:48:20 -03:00
										 |  |  | 			default: ERR_FAIL(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-11-17 21:48:24 +01:00
										 |  |  | 	String tmppath = EditorSettings::get_singleton()->get_cache_dir(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	List<String> args; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-17 21:48:24 +01:00
										 |  |  | 	String src_img = tmppath.plus_file("_tmp_src_img.png"); | 
					
						
							|  |  |  | 	String dst_img = tmppath.plus_file("_tmp_dst_img.pvr"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	args.push_back("-i"); | 
					
						
							|  |  |  | 	args.push_back(src_img); | 
					
						
							|  |  |  | 	args.push_back("-o"); | 
					
						
							|  |  |  | 	args.push_back(dst_img); | 
					
						
							|  |  |  | 	args.push_back("-f"); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	switch (p_mode) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		case Image::COMPRESS_PVRTC2: args.push_back("PVRTC2"); break; | 
					
						
							|  |  |  | 		case Image::COMPRESS_PVRTC4: args.push_back("PVRTC4"); break; | 
					
						
							|  |  |  | 		case Image::COMPRESS_ETC: args.push_back("ETC"); break; | 
					
						
							|  |  |  | 		default: ERR_FAIL(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 19:41:36 -03:00
										 |  |  | 	if (EditorSettings::get_singleton()->get("filesystem/import/pvrtc_fast_conversion").operator bool()) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		args.push_back("-pvrtcfast"); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-10-03 16:33:42 -03:00
										 |  |  | 	if (p_image->has_mipmaps()) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		args.push_back("-m"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	Ref<ImageTexture> t = memnew(ImageTexture); | 
					
						
							| 
									
										
										
										
											2017-05-17 07:36:47 -03:00
										 |  |  | 	t->create_from_image(Ref<Image>(p_image), 0); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ResourceSaver::save(src_img, t); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	Error err = OS::get_singleton()->execute(ttpath, args, true); | 
					
						
							|  |  |  | 	ERR_EXPLAIN(TTR("Could not execute PVRTC tool:") + " " + ttpath); | 
					
						
							|  |  |  | 	ERR_FAIL_COND(err != OK); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	t = ResourceLoader::load(dst_img, "Texture"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ERR_EXPLAIN(TTR("Can't load back converted image using PVRTC tool:") + " " + dst_img); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	ERR_FAIL_COND(t.is_null()); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-17 07:36:47 -03:00
										 |  |  | 	p_image->copy_internals_from(t->get_data()); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void _compress_pvrtc2(Image *p_image) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	_compress_image(Image::COMPRESS_PVRTC2, p_image); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void _compress_pvrtc4(Image *p_image) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	_compress_image(Image::COMPRESS_PVRTC4, p_image); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void _compress_etc(Image *p_image) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	_compress_image(Image::COMPRESS_ETC, p_image); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void _pvrtc_register_compressors() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	_base_image_compress_pvrtc2_func = Image::_image_compress_pvrtc2_func; | 
					
						
							|  |  |  | 	_base_image_compress_pvrtc4_func = Image::_image_compress_pvrtc4_func; | 
					
						
							| 
									
										
										
										
											2015-04-06 21:48:20 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	Image::_image_compress_pvrtc2_func = _compress_pvrtc2; | 
					
						
							|  |  |  | 	Image::_image_compress_pvrtc4_func = _compress_pvrtc4; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	//Image::_image_compress_etc_func=_compress_etc; //use the built in one for ETC
 | 
					
						
							|  |  |  | } |