| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2020-12-10 15:44:05 +01:00
										 |  |  | /*  image_compress_pvrtc.cpp                                             */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       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
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2021-01-01 20:13:46 +01:00
										 |  |  | /* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md).   */ | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-10 15:44:05 +01:00
										 |  |  | #include "image_compress_pvrtc.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-07 19:33:38 -03:00
										 |  |  | #include "core/io/image.h"
 | 
					
						
							| 
									
										
										
										
											2021-06-04 18:03:15 +02:00
										 |  |  | #include "core/object/ref_counted.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-10 15:44:05 +01:00
										 |  |  | #include <PvrTcEncoder.h>
 | 
					
						
							|  |  |  | #include <RgbaBitmap.h>
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-10 23:01:00 +01:00
										 |  |  | static void _compress_pvrtc1_4bpp(Image *p_img) { | 
					
						
							| 
									
										
										
										
											2020-12-10 15:44:05 +01:00
										 |  |  | 	Ref<Image> img = p_img->duplicate(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bool make_mipmaps = false; | 
					
						
							|  |  |  | 	if (!img->is_size_po2() || img->get_width() != img->get_height()) { | 
					
						
							|  |  |  | 		make_mipmaps = img->has_mipmaps(); | 
					
						
							|  |  |  | 		img->resize_to_po2(true); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	img->convert(Image::FORMAT_RGBA8); | 
					
						
							|  |  |  | 	if (!img->has_mipmaps() && make_mipmaps) { | 
					
						
							|  |  |  | 		img->generate_mipmaps(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bool use_alpha = img->detect_alpha(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Ref<Image> new_img; | 
					
						
							|  |  |  | 	new_img.instance(); | 
					
						
							| 
									
										
										
										
											2020-12-10 23:01:00 +01:00
										 |  |  | 	new_img->create(img->get_width(), img->get_height(), img->has_mipmaps(), use_alpha ? Image::FORMAT_PVRTC1_4A : Image::FORMAT_PVRTC1_4); | 
					
						
							| 
									
										
										
										
											2020-12-10 15:44:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Vector<uint8_t> data = new_img->get_data(); | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		uint8_t *wr = data.ptrw(); | 
					
						
							|  |  |  | 		const uint8_t *r = img->get_data().ptr(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for (int i = 0; i <= new_img->get_mipmap_count(); i++) { | 
					
						
							|  |  |  | 			int ofs, size, w, h; | 
					
						
							|  |  |  | 			img->get_mipmap_offset_size_and_dimensions(i, ofs, size, w, h); | 
					
						
							|  |  |  | 			Javelin::RgbaBitmap bm(w, h); | 
					
						
							|  |  |  | 			void *dst = (void *)bm.GetData(); | 
					
						
							| 
									
										
										
										
											2021-04-27 16:19:21 +02:00
										 |  |  | 			memcpy(dst, &r[ofs], size); | 
					
						
							| 
									
										
										
										
											2020-12-10 15:44:05 +01:00
										 |  |  | 			Javelin::ColorRgba<unsigned char> *dp = bm.GetData(); | 
					
						
							|  |  |  | 			for (int j = 0; j < size / 4; j++) { | 
					
						
							|  |  |  | 				// Red and blue colors are swapped.
 | 
					
						
							|  |  |  | 				SWAP(dp[j].r, dp[j].b); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			new_img->get_mipmap_offset_size_and_dimensions(i, ofs, size, w, h); | 
					
						
							|  |  |  | 			Javelin::PvrTcEncoder::EncodeRgba4Bpp(&wr[ofs], bm); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	p_img->create(new_img->get_width(), new_img->get_height(), new_img->has_mipmaps(), new_img->get_format(), data); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void _register_pvrtc_compress_func() { | 
					
						
							| 
									
										
										
										
											2020-12-10 23:01:00 +01:00
										 |  |  | 	Image::_image_compress_pvrtc1_4bpp_func = _compress_pvrtc1_4bpp; | 
					
						
							| 
									
										
										
										
											2020-12-10 15:44:05 +01:00
										 |  |  | } |