|
@@ -31,6 +31,7 @@
|
|
#include "drivers/png/png.h"
|
|
#include "drivers/png/png.h"
|
|
#include "os/file_access.h"
|
|
#include "os/file_access.h"
|
|
#include "globals.h"
|
|
#include "globals.h"
|
|
|
|
+#include "core/image.h"
|
|
|
|
|
|
static void _write_png_data(png_structp png_ptr,png_bytep data, png_size_t p_length) {
|
|
static void _write_png_data(png_structp png_ptr,png_bytep data, png_size_t p_length) {
|
|
|
|
|
|
@@ -46,12 +47,56 @@ Error ResourceSaverPNG::save(const String &p_path,const RES& p_resource,uint32_t
|
|
ERR_EXPLAIN("Can't save empty texture as PNG");
|
|
ERR_EXPLAIN("Can't save empty texture as PNG");
|
|
ERR_FAIL_COND_V(!texture->get_width() || !texture->get_height(),ERR_INVALID_PARAMETER);
|
|
ERR_FAIL_COND_V(!texture->get_width() || !texture->get_height(),ERR_INVALID_PARAMETER);
|
|
|
|
|
|
|
|
+
|
|
Image img = texture->get_data();
|
|
Image img = texture->get_data();
|
|
- if (img.get_format() > Image::FORMAT_INDEXED_ALPHA)
|
|
|
|
- img.decompress();
|
|
|
|
|
|
|
|
|
|
+ Error err = save_image(p_path, img);
|
|
|
|
+
|
|
|
|
+ if (err == OK) {
|
|
|
|
+
|
|
|
|
+ bool global_filter = Globals::get_singleton()->get("image_loader/filter");
|
|
|
|
+ bool global_mipmaps = Globals::get_singleton()->get("image_loader/gen_mipmaps");
|
|
|
|
+ bool global_repeat = Globals::get_singleton()->get("image_loader/repeat");
|
|
|
|
+
|
|
|
|
+ String text;
|
|
|
|
+
|
|
|
|
+ if (global_filter!=bool(texture->get_flags()&Texture::FLAG_FILTER)) {
|
|
|
|
+ text+=bool(texture->get_flags()&Texture::FLAG_FILTER)?"filter=true\n":"filter=false\n";
|
|
|
|
+ }
|
|
|
|
+ if (global_mipmaps!=bool(texture->get_flags()&Texture::FLAG_MIPMAPS)) {
|
|
|
|
+ text+=bool(texture->get_flags()&Texture::FLAG_FILTER)?"gen_mipmaps=true\n":"gen_mipmaps=false\n";
|
|
|
|
+ }
|
|
|
|
+ if (global_repeat!=bool(texture->get_flags()&Texture::FLAG_REPEAT)) {
|
|
|
|
+ text+=bool(texture->get_flags()&Texture::FLAG_FILTER)?"repeat=true\n":"repeat=false\n";
|
|
|
|
+ }
|
|
|
|
+ if (bool(texture->get_flags()&Texture::FLAG_ANISOTROPIC_FILTER)) {
|
|
|
|
+ text+="anisotropic=true\n";
|
|
|
|
+ }
|
|
|
|
+ if (bool(texture->get_flags()&Texture::FLAG_CONVERT_TO_LINEAR)) {
|
|
|
|
+ text+="tolinear=true\n";
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (text!="" || FileAccess::exists(p_path+".flags")) {
|
|
|
|
+
|
|
|
|
+ FileAccess* f = FileAccess::open(p_path+".flags",FileAccess::WRITE);
|
|
|
|
+ if (f) {
|
|
|
|
+
|
|
|
|
+ f->store_string(text);
|
|
|
|
+ memdelete(f);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ return err;
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+Error ResourceSaverPNG::save_image(const String &p_path, Image &p_img) {
|
|
|
|
+
|
|
|
|
+ if (p_img.get_format() > Image::FORMAT_INDEXED_ALPHA)
|
|
|
|
+ p_img.decompress();
|
|
|
|
|
|
- ERR_FAIL_COND_V(img.get_format() > Image::FORMAT_INDEXED_ALPHA, ERR_INVALID_PARAMETER);
|
|
|
|
|
|
+ ERR_FAIL_COND_V(p_img.get_format() > Image::FORMAT_INDEXED_ALPHA, ERR_INVALID_PARAMETER);
|
|
|
|
|
|
png_structp png_ptr;
|
|
png_structp png_ptr;
|
|
png_infop info_ptr;
|
|
png_infop info_ptr;
|
|
@@ -89,7 +134,7 @@ Error ResourceSaverPNG::save(const String &p_path,const RES& p_resource,uint32_t
|
|
int cs=0;
|
|
int cs=0;
|
|
|
|
|
|
|
|
|
|
- switch(img.get_format()) {
|
|
|
|
|
|
+ switch(p_img.get_format()) {
|
|
|
|
|
|
case Image::FORMAT_GRAYSCALE: {
|
|
case Image::FORMAT_GRAYSCALE: {
|
|
|
|
|
|
@@ -113,14 +158,14 @@ Error ResourceSaverPNG::save(const String &p_path,const RES& p_resource,uint32_t
|
|
} break;
|
|
} break;
|
|
default: {
|
|
default: {
|
|
|
|
|
|
- if (img.detect_alpha()) {
|
|
|
|
|
|
+ if (p_img.detect_alpha()) {
|
|
|
|
|
|
- img.convert(Image::FORMAT_RGBA);
|
|
|
|
|
|
+ p_img.convert(Image::FORMAT_RGBA);
|
|
pngf=PNG_COLOR_TYPE_RGB_ALPHA;
|
|
pngf=PNG_COLOR_TYPE_RGB_ALPHA;
|
|
cs=4;
|
|
cs=4;
|
|
} else {
|
|
} else {
|
|
|
|
|
|
- img.convert(Image::FORMAT_RGB);
|
|
|
|
|
|
+ p_img.convert(Image::FORMAT_RGB);
|
|
pngf=PNG_COLOR_TYPE_RGB;
|
|
pngf=PNG_COLOR_TYPE_RGB;
|
|
cs=3;
|
|
cs=3;
|
|
}
|
|
}
|
|
@@ -128,8 +173,8 @@ Error ResourceSaverPNG::save(const String &p_path,const RES& p_resource,uint32_t
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- int w = img.get_width();
|
|
|
|
- int h = img.get_height();
|
|
|
|
|
|
+ int w = p_img.get_width();
|
|
|
|
+ int h = p_img.get_height();
|
|
png_set_IHDR(png_ptr, info_ptr, w,h,
|
|
png_set_IHDR(png_ptr, info_ptr, w,h,
|
|
8, pngf, PNG_INTERLACE_NONE,
|
|
8, pngf, PNG_INTERLACE_NONE,
|
|
PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE);
|
|
PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE);
|
|
@@ -144,7 +189,7 @@ Error ResourceSaverPNG::save(const String &p_path,const RES& p_resource,uint32_t
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
- DVector<uint8_t>::Read r = img.get_data().read();
|
|
|
|
|
|
+ DVector<uint8_t>::Read r = p_img.get_data().read();
|
|
|
|
|
|
row_pointers = (png_bytep*)memalloc(sizeof(png_bytep)*h);
|
|
row_pointers = (png_bytep*)memalloc(sizeof(png_bytep)*h);
|
|
for(int i=0;i<h;i++) {
|
|
for(int i=0;i<h;i++) {
|
|
@@ -165,43 +210,6 @@ Error ResourceSaverPNG::save(const String &p_path,const RES& p_resource,uint32_t
|
|
png_write_end(png_ptr, NULL);
|
|
png_write_end(png_ptr, NULL);
|
|
memdelete(f);
|
|
memdelete(f);
|
|
|
|
|
|
-
|
|
|
|
- if (true) {
|
|
|
|
-
|
|
|
|
- bool global_filter = Globals::get_singleton()->get("image_loader/filter");
|
|
|
|
- bool global_mipmaps = Globals::get_singleton()->get("image_loader/gen_mipmaps");
|
|
|
|
- bool global_repeat = Globals::get_singleton()->get("image_loader/repeat");
|
|
|
|
-
|
|
|
|
- String text;
|
|
|
|
-
|
|
|
|
- if (global_filter!=bool(texture->get_flags()&Texture::FLAG_FILTER)) {
|
|
|
|
- text+=bool(texture->get_flags()&Texture::FLAG_FILTER)?"filter=true\n":"filter=false\n";
|
|
|
|
- }
|
|
|
|
- if (global_mipmaps!=bool(texture->get_flags()&Texture::FLAG_MIPMAPS)) {
|
|
|
|
- text+=bool(texture->get_flags()&Texture::FLAG_FILTER)?"gen_mipmaps=true\n":"gen_mipmaps=false\n";
|
|
|
|
- }
|
|
|
|
- if (global_repeat!=bool(texture->get_flags()&Texture::FLAG_REPEAT)) {
|
|
|
|
- text+=bool(texture->get_flags()&Texture::FLAG_FILTER)?"repeat=true\n":"repeat=false\n";
|
|
|
|
- }
|
|
|
|
- if (bool(texture->get_flags()&Texture::FLAG_ANISOTROPIC_FILTER)) {
|
|
|
|
- text+="anisotropic=true\n";
|
|
|
|
- }
|
|
|
|
- if (bool(texture->get_flags()&Texture::FLAG_CONVERT_TO_LINEAR)) {
|
|
|
|
- text+="tolinear=true\n";
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- if (text!="" || FileAccess::exists(p_path+".flags")) {
|
|
|
|
-
|
|
|
|
- f = FileAccess::open(p_path+".flags",FileAccess::WRITE);
|
|
|
|
- if (f) {
|
|
|
|
-
|
|
|
|
- f->store_string(text);
|
|
|
|
- memdelete(f);
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
-
|
|
|
|
/* cleanup heap allocation */
|
|
/* cleanup heap allocation */
|
|
|
|
|
|
return OK;
|
|
return OK;
|
|
@@ -218,3 +226,8 @@ void ResourceSaverPNG::get_recognized_extensions(const RES& p_resource,List<Stri
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ResourceSaverPNG::ResourceSaverPNG() {
|
|
|
|
+
|
|
|
|
+ Image::save_png_func = &save_image;
|
|
|
|
+};
|