2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* image.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* http://www.godotengine.org */
|
|
|
|
/*************************************************************************/
|
2017-01-01 21:01:57 +00:00
|
|
|
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
|
2017-04-07 22:11:42 +00:00
|
|
|
/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
|
2014-02-10 01:10:30 +00: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. */
|
|
|
|
/*************************************************************************/
|
|
|
|
#ifndef IMAGE_H
|
|
|
|
#define IMAGE_H
|
|
|
|
|
|
|
|
#include "color.h"
|
2017-03-05 15:44:50 +00:00
|
|
|
#include "dvector.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
#include "math_2d.h"
|
|
|
|
/**
|
|
|
|
* @author Juan Linietsky <reduzio@gmail.com>
|
|
|
|
*
|
|
|
|
* Image storage class. This is used to store an image in user memory, as well as
|
|
|
|
* providing some basic methods for image manipulation.
|
|
|
|
* Images can be loaded from a file, or registered into the Render object as textures.
|
|
|
|
*/
|
|
|
|
|
2014-11-13 03:53:12 +00:00
|
|
|
class Image;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
typedef Error (*SavePNGFunc)(const String &p_path, Image &p_img);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
class Image {
|
|
|
|
|
2016-03-08 23:00:52 +00:00
|
|
|
enum {
|
2017-03-05 15:44:50 +00:00
|
|
|
MAX_WIDTH = 16384, // force a limit somehow
|
|
|
|
MAX_HEIGHT = 16384 // force a limit somehow
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
public:
|
2014-11-13 03:53:12 +00:00
|
|
|
static SavePNGFunc save_png_func;
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
enum Format {
|
|
|
|
|
2016-10-03 19:33:42 +00:00
|
|
|
FORMAT_L8, //luminance
|
|
|
|
FORMAT_LA8, //luminance-alpha
|
|
|
|
FORMAT_R8,
|
|
|
|
FORMAT_RG8,
|
|
|
|
FORMAT_RGB8,
|
|
|
|
FORMAT_RGBA8,
|
|
|
|
FORMAT_RGB565, //16 bit
|
|
|
|
FORMAT_RGBA4444,
|
|
|
|
FORMAT_RGBA5551,
|
|
|
|
FORMAT_RF, //float
|
|
|
|
FORMAT_RGF,
|
|
|
|
FORMAT_RGBF,
|
|
|
|
FORMAT_RGBAF,
|
|
|
|
FORMAT_RH, //half float
|
|
|
|
FORMAT_RGH,
|
|
|
|
FORMAT_RGBH,
|
|
|
|
FORMAT_RGBAH,
|
|
|
|
FORMAT_DXT1, //s3tc bc1
|
|
|
|
FORMAT_DXT3, //bc2
|
|
|
|
FORMAT_DXT5, //bc3
|
|
|
|
FORMAT_ATI1, //bc4
|
|
|
|
FORMAT_ATI2, //bc5
|
|
|
|
FORMAT_BPTC_RGBA, //btpc bc6h
|
|
|
|
FORMAT_BPTC_RGBF, //float /
|
|
|
|
FORMAT_BPTC_RGBFU, //unsigned float
|
|
|
|
FORMAT_PVRTC2, //pvrtc
|
|
|
|
FORMAT_PVRTC2A,
|
|
|
|
FORMAT_PVRTC4,
|
|
|
|
FORMAT_PVRTC4A,
|
|
|
|
FORMAT_ETC, //etc1
|
|
|
|
FORMAT_ETC2_R11, //etc2
|
|
|
|
FORMAT_ETC2_R11S, //signed, NOT srgb.
|
|
|
|
FORMAT_ETC2_RG11,
|
|
|
|
FORMAT_ETC2_RG11S,
|
|
|
|
FORMAT_ETC2_RGB8,
|
|
|
|
FORMAT_ETC2_RGBA8,
|
|
|
|
FORMAT_ETC2_RGB8A1,
|
2014-02-10 01:10:30 +00:00
|
|
|
FORMAT_MAX
|
|
|
|
};
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
static const char *format_names[FORMAT_MAX];
|
2014-02-10 01:10:30 +00:00
|
|
|
enum Interpolation {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
INTERPOLATE_NEAREST,
|
|
|
|
INTERPOLATE_BILINEAR,
|
2015-10-01 19:25:36 +00:00
|
|
|
INTERPOLATE_CUBIC,
|
2014-02-10 01:10:30 +00:00
|
|
|
/* INTERPOLATE GAUSS */
|
|
|
|
};
|
|
|
|
|
2016-10-03 19:33:42 +00:00
|
|
|
//some functions provided by something else
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
static Image (*_png_mem_loader_func)(const uint8_t *p_png, int p_size);
|
|
|
|
static Image (*_jpg_mem_loader_func)(const uint8_t *p_png, int p_size);
|
2016-10-03 19:33:42 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
static void (*_image_compress_bc_func)(Image *);
|
|
|
|
static void (*_image_compress_pvrtc2_func)(Image *);
|
|
|
|
static void (*_image_compress_pvrtc4_func)(Image *);
|
|
|
|
static void (*_image_compress_etc_func)(Image *);
|
2016-10-03 19:33:42 +00:00
|
|
|
static void (*_image_compress_etc2_func)(Image *);
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
static void (*_image_decompress_pvrtc)(Image *);
|
|
|
|
static void (*_image_decompress_bc)(Image *);
|
|
|
|
static void (*_image_decompress_etc)(Image *);
|
2016-10-03 19:33:42 +00:00
|
|
|
static void (*_image_decompress_etc2)(Image *);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2014-06-17 14:58:35 +00:00
|
|
|
Error _decompress_bc();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
static PoolVector<uint8_t> (*lossy_packer)(const Image &p_image, float p_quality);
|
|
|
|
static Image (*lossy_unpacker)(const PoolVector<uint8_t> &p_buffer);
|
|
|
|
static PoolVector<uint8_t> (*lossless_packer)(const Image &p_image);
|
|
|
|
static Image (*lossless_unpacker)(const PoolVector<uint8_t> &p_buffer);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
private:
|
2014-02-10 01:10:30 +00:00
|
|
|
Format format;
|
2017-01-07 21:25:37 +00:00
|
|
|
PoolVector<uint8_t> data;
|
2017-03-05 15:44:50 +00:00
|
|
|
int width, height;
|
2016-10-03 19:33:42 +00:00
|
|
|
bool mipmaps;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ void _get_mipmap_offset_and_size(int p_mipmap, int &r_offset, int &r_width, int &r_height) const; //get where the mipmap begins in data
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
static int _get_dst_image_size(int p_width, int p_height, Format p_format, int &r_mipmaps, int p_mipmaps = -1);
|
2014-02-10 01:10:30 +00:00
|
|
|
bool _can_modify(Format p_format) const;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ void _put_pixelb(int p_x, int p_y, uint32_t p_pixelsize, uint8_t *p_dst, const uint8_t *p_src);
|
|
|
|
_FORCE_INLINE_ void _get_pixelb(int p_x, int p_y, uint32_t p_pixelsize, const uint8_t *p_src, uint8_t *p_dst);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
int get_width() const; ///< Get image width
|
|
|
|
int get_height() const; ///< Get image height
|
2016-10-03 19:33:42 +00:00
|
|
|
bool has_mipmaps() const;
|
|
|
|
int get_mipmap_count() const;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
/**
|
2016-10-03 19:33:42 +00:00
|
|
|
* Convert the image to another format, conversion only to raw byte format
|
2014-02-10 01:10:30 +00:00
|
|
|
*/
|
2017-03-05 15:44:50 +00:00
|
|
|
void convert(Format p_new_format);
|
2014-10-03 03:10:51 +00:00
|
|
|
|
|
|
|
Image converted(int p_new_format) {
|
|
|
|
ERR_FAIL_INDEX_V(p_new_format, FORMAT_MAX, Image());
|
|
|
|
|
|
|
|
Image ret = *this;
|
|
|
|
ret.convert((Format)p_new_format);
|
|
|
|
return ret;
|
|
|
|
};
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
/**
|
|
|
|
* Get the current image format.
|
|
|
|
*/
|
|
|
|
Format get_format() const;
|
|
|
|
|
|
|
|
int get_mipmap_offset(int p_mipmap) const; //get where the mipmap begins in data
|
2017-03-05 15:44:50 +00:00
|
|
|
void get_mipmap_offset_and_size(int p_mipmap, int &r_ofs, int &r_size) const; //get where the mipmap begins in data
|
|
|
|
void get_mipmap_offset_size_and_dimensions(int p_mipmap, int &r_ofs, int &r_size, int &w, int &h) const; //get where the mipmap begins in data
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
/**
|
2017-03-24 20:45:31 +00:00
|
|
|
* Resize the image, using the preferred interpolation method.
|
2014-02-10 01:10:30 +00:00
|
|
|
* Indexed-Color images always use INTERPOLATE_NEAREST.
|
2016-03-08 23:00:52 +00:00
|
|
|
*/
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void resize_to_po2(bool p_square = false);
|
|
|
|
void resize(int p_width, int p_height, Interpolation p_interpolation = INTERPOLATE_BILINEAR);
|
|
|
|
Image resized(int p_width, int p_height, int p_interpolation = INTERPOLATE_BILINEAR);
|
2016-05-04 15:36:51 +00:00
|
|
|
void shrink_x2();
|
2016-05-29 14:37:26 +00:00
|
|
|
void expand_x2_hq2x();
|
2014-02-10 01:10:30 +00:00
|
|
|
/**
|
|
|
|
* Crop the image to a specific size, if larger, then the image is filled by black
|
|
|
|
*/
|
2017-03-05 15:44:50 +00:00
|
|
|
void crop(int p_width, int p_height);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
void flip_x();
|
|
|
|
void flip_y();
|
2016-10-03 19:33:42 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
/**
|
2016-03-08 23:00:52 +00:00
|
|
|
* Generate a mipmap to an image (creates an image 1/4 the size, with averaging of 4->1)
|
2014-02-10 01:10:30 +00:00
|
|
|
*/
|
2017-02-06 03:38:39 +00:00
|
|
|
Error generate_mipmaps();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
void clear_mipmaps();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new image of a given size and format. Current image will be lost
|
|
|
|
*/
|
|
|
|
void create(int p_width, int p_height, bool p_use_mipmaps, Format p_format);
|
2017-03-05 15:44:50 +00:00
|
|
|
void create(int p_width, int p_height, bool p_use_mipmaps, Format p_format, const PoolVector<uint8_t> &p_data);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void create(const char **p_xpm);
|
2014-02-10 01:10:30 +00:00
|
|
|
/**
|
|
|
|
* returns true when the image is empty (0,0) in size
|
|
|
|
*/
|
|
|
|
bool empty() const;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-01-07 21:25:37 +00:00
|
|
|
PoolVector<uint8_t> get_data() const;
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Error load(const String &p_path);
|
|
|
|
Error save_png(const String &p_path);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
|
|
|
/**
|
2014-02-10 01:10:30 +00:00
|
|
|
* create an empty image
|
|
|
|
*/
|
|
|
|
Image();
|
2016-03-08 23:00:52 +00:00
|
|
|
/**
|
2014-02-10 01:10:30 +00:00
|
|
|
* create an empty image of a specific size and format
|
|
|
|
*/
|
|
|
|
Image(int p_width, int p_height, bool p_use_mipmaps, Format p_format);
|
2016-03-08 23:00:52 +00:00
|
|
|
/**
|
2014-02-10 01:10:30 +00:00
|
|
|
* import an image of a specific size and format from a pointer
|
|
|
|
*/
|
2017-03-05 15:44:50 +00:00
|
|
|
Image(int p_width, int p_height, bool p_mipmaps, Format p_format, const PoolVector<uint8_t> &p_data);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
enum AlphaMode {
|
|
|
|
ALPHA_NONE,
|
|
|
|
ALPHA_BIT,
|
|
|
|
ALPHA_BLEND
|
|
|
|
};
|
|
|
|
|
|
|
|
AlphaMode detect_alpha() const;
|
2015-06-01 22:42:34 +00:00
|
|
|
bool is_invisible() const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
static int get_format_pixel_size(Format p_format);
|
|
|
|
static int get_format_pixel_rshift(Format p_format);
|
2017-03-05 15:44:50 +00:00
|
|
|
static void get_format_min_pixel_size(Format p_format, int &r_w, int &r_h);
|
2016-10-03 19:33:42 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
static int get_image_data_size(int p_width, int p_height, Format p_format, int p_mipmaps = 0);
|
2014-02-10 01:10:30 +00:00
|
|
|
static int get_image_required_mipmaps(int p_width, int p_height, Format p_format);
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
bool operator==(const Image &p_image) const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
enum CompressMode {
|
2016-10-03 19:33:42 +00:00
|
|
|
COMPRESS_16BIT,
|
|
|
|
COMPRESS_S3TC,
|
2014-02-10 01:10:30 +00:00
|
|
|
COMPRESS_PVRTC2,
|
|
|
|
COMPRESS_PVRTC4,
|
2016-10-03 19:33:42 +00:00
|
|
|
COMPRESS_ETC,
|
|
|
|
COMPRESS_ETC2
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Error compress(CompressMode p_mode = COMPRESS_S3TC);
|
2014-02-10 01:10:30 +00:00
|
|
|
Image compressed(int p_mode); /* from the Image::CompressMode enum */
|
2014-06-11 13:41:03 +00:00
|
|
|
Error decompress();
|
2014-06-17 14:58:35 +00:00
|
|
|
Image decompressed() const;
|
2015-05-31 04:59:42 +00:00
|
|
|
bool is_compressed() const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
void fix_alpha_edges();
|
2014-05-24 04:35:47 +00:00
|
|
|
void premultiply_alpha();
|
2014-06-16 13:22:26 +00:00
|
|
|
void srgb_to_linear();
|
2014-10-03 11:58:41 +00:00
|
|
|
void normalmap_to_xy();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void blit_rect(const Image &p_src, const Rect2 &p_src_rect, const Point2 &p_dest);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
Rect2 get_used_rect() const;
|
2017-03-05 15:44:50 +00:00
|
|
|
Image get_rect(const Rect2 &p_area) const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
static void set_compress_bc_func(void (*p_compress_func)(Image *));
|
2015-10-21 12:50:44 +00:00
|
|
|
static String get_format_name(Format p_format);
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Image(const uint8_t *p_mem_png_jpg, int p_len = -1);
|
2014-02-10 01:10:30 +00:00
|
|
|
Image(const char **p_xpm);
|
|
|
|
~Image();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|