| 
									
										
										
										
											2017-08-18 21:21:24 -05:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  image_loader_svg.cpp                                                 */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2017-08-18 21:21:24 -05:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md)    */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* 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.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | #include "image_loader_svg.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "os/os.h"
 | 
					
						
							|  |  |  | #include "print_string.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <ustring.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SVGRasterizer::rasterize(NSVGimage *p_image, float p_tx, float p_ty, float p_scale, unsigned char *p_dst, int p_w, int p_h, int p_stride) { | 
					
						
							|  |  |  | 	nsvgRasterize(rasterizer, p_image, p_tx, p_ty, p_scale, p_dst, p_w, p_h, p_stride); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | SVGRasterizer::SVGRasterizer() { | 
					
						
							|  |  |  | 	rasterizer = nsvgCreateRasterizer(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | SVGRasterizer::~SVGRasterizer() { | 
					
						
							|  |  |  | 	nsvgDeleteRasterizer(rasterizer); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | SVGRasterizer ImageLoaderSVG::rasterizer; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-30 20:29:35 +02:00
										 |  |  | inline void change_nsvg_paint_color(NSVGpaint *p_paint, const uint32_t p_old, const uint32_t p_new) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (p_paint->type == NSVG_PAINT_COLOR) { | 
					
						
							|  |  |  | 		if (p_paint->color << 8 == p_old << 8) { | 
					
						
							|  |  |  | 			p_paint->color = p_new; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (p_paint->type == NSVG_PAINT_LINEAR_GRADIENT || p_paint->type == NSVG_PAINT_RADIAL_GRADIENT) { | 
					
						
							|  |  |  | 		for (int stop_index = 0; stop_index < p_paint->gradient->nstops; stop_index++) { | 
					
						
							|  |  |  | 			if (p_paint->gradient->stops[stop_index].color << 8 == p_old << 8) { | 
					
						
							|  |  |  | 				p_paint->gradient->stops[stop_index].color = p_new; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | void ImageLoaderSVG::_convert_colors(NSVGimage *p_svg_image, const Dictionary p_colors) { | 
					
						
							|  |  |  | 	List<uint32_t> replace_colors_i; | 
					
						
							|  |  |  | 	List<uint32_t> new_colors_i; | 
					
						
							|  |  |  | 	List<Color> replace_colors; | 
					
						
							|  |  |  | 	List<Color> new_colors; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < p_colors.keys().size(); i++) { | 
					
						
							|  |  |  | 		Variant r_c = p_colors.keys()[i]; | 
					
						
							|  |  |  | 		Variant n_c = p_colors[p_colors.keys()[i]]; | 
					
						
							|  |  |  | 		if (r_c.get_type() == Variant::COLOR && n_c.get_type() == Variant::COLOR) { | 
					
						
							|  |  |  | 			Color replace_color = r_c; | 
					
						
							|  |  |  | 			Color new_color = n_c; | 
					
						
							|  |  |  | 			replace_colors_i.push_back(replace_color.to_ABGR32()); | 
					
						
							|  |  |  | 			new_colors_i.push_back(new_color.to_ABGR32()); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (NSVGshape *shape = p_svg_image->shapes; shape != NULL; shape = shape->next) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for (int i = 0; i < replace_colors_i.size(); i++) { | 
					
						
							|  |  |  | 			change_nsvg_paint_color(&(shape->stroke), replace_colors_i[i], new_colors_i[i]); | 
					
						
							|  |  |  | 			change_nsvg_paint_color(&(shape->fill), replace_colors_i[i], new_colors_i[i]); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Error ImageLoaderSVG::_create_image(Ref<Image> p_image, const PoolVector<uint8_t> *p_data, float p_scale, bool upsample, const Dictionary *p_replace_colors) { | 
					
						
							| 
									
										
										
										
											2017-08-18 21:21:24 -05:00
										 |  |  | 	NSVGimage *svg_image; | 
					
						
							|  |  |  | 	PoolVector<uint8_t>::Read src_r = p_data->read(); | 
					
						
							|  |  |  | 	svg_image = nsvgParse((char *)src_r.ptr(), "px", 96); | 
					
						
							|  |  |  | 	if (svg_image == NULL) { | 
					
						
							|  |  |  | 		ERR_PRINT("SVG Corrupted"); | 
					
						
							|  |  |  | 		return ERR_FILE_CORRUPT; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-08-19 02:09:58 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-30 20:29:35 +02:00
										 |  |  | 	if (p_replace_colors != NULL) { | 
					
						
							|  |  |  | 		_convert_colors(svg_image, *p_replace_colors); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-08-19 02:09:58 -05:00
										 |  |  | 	float upscale = upsample ? 2.0 : 1.0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int w = (int)(svg_image->width * p_scale * upscale); | 
					
						
							|  |  |  | 	int h = (int)(svg_image->height * p_scale * upscale); | 
					
						
							| 
									
										
										
										
											2017-08-18 21:21:24 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	PoolVector<uint8_t> dst_image; | 
					
						
							|  |  |  | 	dst_image.resize(w * h * 4); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	PoolVector<uint8_t>::Write dw = dst_image.write(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-19 02:09:58 -05:00
										 |  |  | 	rasterizer.rasterize(svg_image, 0, 0, p_scale * upscale, (unsigned char *)dw.ptr(), w, h, w * 4); | 
					
						
							| 
									
										
										
										
											2017-08-18 21:21:24 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	dw = PoolVector<uint8_t>::Write(); | 
					
						
							|  |  |  | 	p_image->create(w, h, false, Image::FORMAT_RGBA8, dst_image); | 
					
						
							|  |  |  | 	if (upsample) | 
					
						
							|  |  |  | 		p_image->shrink_x2(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	nsvgDelete(svg_image); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-30 20:29:35 +02:00
										 |  |  | Error ImageLoaderSVG::create_image_from_string(Ref<Image> p_image, const char *svg_str, float p_scale, bool upsample, const Dictionary *p_replace_colors) { | 
					
						
							| 
									
										
										
										
											2017-08-18 21:21:24 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	size_t str_len = strlen(svg_str); | 
					
						
							|  |  |  | 	PoolVector<uint8_t> src_data; | 
					
						
							| 
									
										
										
										
											2017-08-22 19:39:10 +02:00
										 |  |  | 	src_data.resize(str_len + 1); | 
					
						
							| 
									
										
										
										
											2017-08-18 21:21:24 -05:00
										 |  |  | 	PoolVector<uint8_t>::Write src_w = src_data.write(); | 
					
						
							| 
									
										
										
										
											2017-08-22 19:39:10 +02:00
										 |  |  | 	memcpy(src_w.ptr(), svg_str, str_len + 1); | 
					
						
							| 
									
										
										
										
											2017-08-18 21:21:24 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-30 20:29:35 +02:00
										 |  |  | 	return _create_image(p_image, &src_data, p_scale, upsample, p_replace_colors); | 
					
						
							| 
									
										
										
										
											2017-08-18 21:21:24 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Error ImageLoaderSVG::load_image(Ref<Image> p_image, FileAccess *f, bool p_force_linear, float p_scale) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	uint32_t size = f->get_len(); | 
					
						
							|  |  |  | 	PoolVector<uint8_t> src_image; | 
					
						
							| 
									
										
										
										
											2017-08-22 19:39:10 +02:00
										 |  |  | 	src_image.resize(size + 1); | 
					
						
							| 
									
										
										
										
											2017-08-18 21:21:24 -05:00
										 |  |  | 	PoolVector<uint8_t>::Write src_w = src_image.write(); | 
					
						
							|  |  |  | 	f->get_buffer(src_w.ptr(), size); | 
					
						
							| 
									
										
										
										
											2017-08-22 19:39:10 +02:00
										 |  |  | 	src_w.ptr()[size] = '\0'; | 
					
						
							| 
									
										
										
										
											2017-08-18 21:21:24 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-19 02:09:58 -05:00
										 |  |  | 	return _create_image(p_image, &src_image, p_scale, 1.0); | 
					
						
							| 
									
										
										
										
											2017-08-18 21:21:24 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ImageLoaderSVG::get_recognized_extensions(List<String> *p_extensions) const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	p_extensions->push_back("svg"); | 
					
						
							|  |  |  | 	p_extensions->push_back("svgz"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ImageLoaderSVG::ImageLoaderSVG() { | 
					
						
							|  |  |  | } |