texture_packer/texture_packer.cpp

364 lines
9.7 KiB
C++
Raw Normal View History

2019-10-21 21:11:11 +02:00
#include "texture_packer.h"
2019-10-20 21:19:00 +02:00
int TexturePacker::get_texture_flags() const {
return _texture_flags;
}
void TexturePacker::set_texture_flags(const int flags) {
_texture_flags = flags;
}
int TexturePacker::get_max_atlas_size() const {
return _max_atlas_size;
}
void TexturePacker::set_max_atlas_size(const int size) {
_max_atlas_size = size;
}
bool TexturePacker::get_keep_original_atlases() const {
return _keep_original_atlases;
}
void TexturePacker::set_keep_original_atlases(const bool value) {
_keep_original_atlases = value;
}
2019-10-21 18:33:12 +02:00
2019-10-21 23:42:53 +02:00
Color TexturePacker::get_background_color() const {
return _background_color;
}
void TexturePacker::set_background_color(const Color color) {
_background_color = color;
}
2019-10-22 00:03:04 +02:00
int TexturePacker::get_margin() const {
return _margin;
}
void TexturePacker::set_margin(const int margin) {
_margin = margin;
}
Ref<AtlasTexture> TexturePacker::add_texture(Ref<Texture> texture) {
Ref<AtlasTexture> atlas_text = texture;
if (atlas_text.is_valid()) {
//If the supplied texture is an AtlasTexture, we set it as the target, and we create the original
//we need to check differently this case
for (int i = 0; i < _rects.size(); ++i) {
rect_xywhf *r = _rects.get(i);
2019-10-21 23:18:06 +02:00
if (r->atlas_texture == texture) {
++(r->refcount);
return r->atlas_texture;
2019-10-21 23:18:06 +02:00
}
}
Ref<AtlasTexture> tex;
tex.instance();
tex->set_atlas(atlas_text->get_atlas());
tex->set_region(atlas_text->get_region());
rect_xywhf *rect = memnew(rect_xywhf);
2019-10-21 23:18:06 +02:00
rect->refcount = 1;
2019-10-22 00:03:04 +02:00
rect->w = atlas_text->get_region().size.x + 2 * _margin;
rect->h = atlas_text->get_region().size.y + 2 * _margin;
_rects.push_back(rect);
if (_keep_original_atlases) {
rect->original_texture = tex;
rect->atlas_texture = atlas_text;
return atlas_text;
} else {
rect->original_texture = atlas_text;
rect->atlas_texture = tex;
return tex;
}
}
2019-10-21 18:33:12 +02:00
for (int i = 0; i < _rects.size(); ++i) {
rect_xywhf *r = _rects.get(i);
2019-10-21 23:18:06 +02:00
if (r->original_texture == texture) {
++(r->refcount);
2019-10-21 18:33:12 +02:00
return r->atlas_texture;
2019-10-21 23:18:06 +02:00
}
2019-10-21 18:33:12 +02:00
}
Ref<AtlasTexture> tex;
tex.instance();
2019-10-21 18:33:12 +02:00
//Temp setup, so the texture is usable even while the atlases are generating.
tex->set_atlas(texture);
tex->set_region(Rect2(0, 0, texture->get_width(), texture->get_height()));
rect_xywhf *rect = memnew(rect_xywhf);
2019-10-21 23:18:06 +02:00
rect->refcount = 1;
2019-10-21 18:33:12 +02:00
rect->original_texture = texture;
rect->atlas_texture = tex;
2019-10-22 00:03:04 +02:00
rect->w = texture->get_width() + 2 * _margin;
rect->h = texture->get_height() + 2 * _margin;
2019-10-21 18:33:12 +02:00
_rects.push_back(rect);
return tex;
}
2019-10-21 21:11:11 +02:00
Ref<Texture> TexturePacker::get_original_texture(int index) {
2019-10-21 18:33:12 +02:00
ERR_FAIL_INDEX_V(index, _rects.size(), Ref<Texture>());
return _rects.get(index)->original_texture;
}
2019-10-21 21:11:11 +02:00
Ref<AtlasTexture> TexturePacker::get_texture(int index) {
2019-10-21 18:33:12 +02:00
ERR_FAIL_INDEX_V(index, _rects.size(), Ref<AtlasTexture>());
return _rects.get(index)->atlas_texture;
}
2019-10-21 23:18:06 +02:00
void TexturePacker::unref_texture_index(int index) {
ERR_FAIL_INDEX(index, _rects.size());
rect_xywhf *r = _rects.get(index);
int rc = --(r->refcount);
if (rc <= 0) {
_rects.remove(index);
r->atlas_texture.unref();
r->atlas_texture.unref();
memdelete(r);
}
}
void TexturePacker::unref_texture(Ref<Texture> texture) {
for (int i = 0; i < _rects.size(); ++i) {
rect_xywhf *r = _rects.get(i);
if (r->original_texture == texture) {
int rc = --(r->refcount);
if (rc <= 0) {
_rects.remove(i);
r->atlas_texture.unref();
r->atlas_texture.unref();
memdelete(r);
}
return;
}
}
}
2019-10-21 21:11:11 +02:00
void TexturePacker::remove_texture_index(int index) {
2019-10-21 18:33:12 +02:00
ERR_FAIL_INDEX(index, _rects.size());
rect_xywhf *r = _rects.get(index);
r->atlas_texture.unref();
r->atlas_texture.unref();
memdelete(r);
}
2019-10-21 21:11:11 +02:00
void TexturePacker::remove_texture(Ref<Texture> texture) {
2019-10-21 18:33:12 +02:00
for (int i = 0; i < _rects.size(); ++i) {
rect_xywhf *r = _rects.get(i);
if (r->original_texture == texture) {
2019-10-21 23:18:06 +02:00
2019-10-21 18:33:12 +02:00
_rects.remove(i);
2019-10-21 23:18:06 +02:00
r->atlas_texture.unref();
r->atlas_texture.unref();
memdelete(r);
2019-10-21 18:33:12 +02:00
return;
}
}
}
2019-10-21 21:11:11 +02:00
int TexturePacker::get_texture_count() {
2019-10-21 18:33:12 +02:00
return _rects.size();
}
2019-10-21 23:04:11 +02:00
void TexturePacker::clear() {
for (int i = 0; i < _rects.size(); ++i) {
rect_xywhf *r = _rects.get(i);
r->atlas_texture.unref();
r->original_texture.unref();
memdelete(r);
}
_rects.clear();
for (int i = 0; i < _generated_textures.size(); ++i) {
_generated_textures.get(i).unref();
}
_generated_textures.clear();
}
2019-10-21 21:11:11 +02:00
Ref<ImageTexture> TexturePacker::get_generated_texture(int index) {
2019-10-21 20:57:39 +02:00
ERR_FAIL_INDEX_V(index, _generated_textures.size(), Ref<ImageTexture>());
return _generated_textures.get(index);
}
2019-10-21 21:11:11 +02:00
int TexturePacker::get_generated_texture_count() {
2019-10-21 20:57:39 +02:00
return _generated_textures.size();
}
2019-10-21 21:11:11 +02:00
void TexturePacker::merge() {
std::vector<bin> bins;
if (pack(_rects.ptr(), _rects.size(), _max_atlas_size, false, bins)) {
2019-10-21 20:57:39 +02:00
_generated_textures.clear();
_generated_textures.resize(bins.size());
for (int i = 0; i < bins.size(); ++i) {
bin b = bins[i];
2019-10-21 18:33:12 +02:00
PoolByteArray data;
data.resize(b.size.w * b.size.h * 4);
2019-10-21 20:57:39 +02:00
2019-10-21 23:42:53 +02:00
//Setup background color
2019-10-22 00:03:04 +02:00
uint8_t cr = _background_color.r * 255.0;
uint8_t cg = _background_color.g * 255.0;
uint8_t cb = _background_color.b * 255.0;
uint8_t ca = _background_color.a * 255.0;
2019-10-21 23:42:53 +02:00
for (int j = 0; j < data.size(); j += 4) {
data.set(j, cr);
data.set(j + 1, cg);
data.set(j + 2, cb);
data.set(j + 3, ca);
2019-10-21 20:57:39 +02:00
}
2019-10-21 18:33:12 +02:00
2019-10-21 23:42:53 +02:00
//Process rects
2019-10-21 18:33:12 +02:00
for (int j = 0; j < b.rects.size(); ++j) {
rect_xywhf *r = b.rects[j];
Ref<Texture> otext = r->original_texture;
Ref<AtlasTexture> aotext = otext;
int rect_pos_x = 0;
int rect_pos_y = 0;
if (aotext.is_valid()) {
otext = aotext->get_atlas();
Rect2 rect = aotext->get_region();
rect_pos_x = rect.position.x + 0.5;
rect_pos_y = rect.position.y + 0.5;
}
2019-10-21 18:33:12 +02:00
2019-10-21 20:57:39 +02:00
ERR_CONTINUE(!otext.is_valid());
2019-10-21 18:33:12 +02:00
Ref<Image> img = otext->get_data();
2019-10-21 20:57:39 +02:00
ERR_CONTINUE(!img.is_valid());
2019-10-21 18:33:12 +02:00
2019-10-21 23:26:30 +02:00
int img_width = img->get_width();
2019-10-21 23:25:51 +02:00
2019-10-21 18:33:12 +02:00
PoolByteArray image_data = img->get_data();
2019-10-22 00:03:04 +02:00
int h_wo_margin = r->h - 2 * _margin;
for (int y = 0; y < h_wo_margin; ++y) {
int orig_img_indx = (rect_pos_y + y) * img_width * 4 + rect_pos_x * 4;
int start_indx = (r->y + y + _margin) * b.size.w * 4 + (r->x + _margin) * 4;
2019-10-21 20:57:39 +02:00
2019-10-22 00:03:04 +02:00
int row_width = (r->w - 2 * _margin) * 4;
2019-10-21 20:57:39 +02:00
for (int x = 0; x < row_width; ++x) {
2019-10-22 00:03:04 +02:00
data.set(start_indx + x, image_data[orig_img_indx + x]);
2019-10-21 20:57:39 +02:00
}
}
2019-10-21 18:33:12 +02:00
}
2019-10-21 20:57:39 +02:00
Ref<Image> image;
image.instance();
image->create(b.size.w, b.size.h, false, Image::FORMAT_RGBA8, data);
2019-10-21 18:33:12 +02:00
Ref<ImageTexture> texture;
texture.instance();
texture->create_from_image(image, _texture_flags);
2019-10-21 18:33:12 +02:00
_generated_textures.set(i, texture);
2019-10-21 18:33:12 +02:00
for (int j = 0; j < b.rects.size(); ++j) {
rect_xywhf *r = b.rects[j];
Ref<AtlasTexture> at = r->atlas_texture;
2019-10-21 20:57:39 +02:00
at->set_atlas(texture);
2019-10-22 00:03:04 +02:00
at->set_region(Rect2(r->x + _margin, r->y + _margin, r->w - 2 * _margin, r->h - 2 * _margin));
2019-10-21 18:33:12 +02:00
}
}
}
}
2019-10-21 21:11:11 +02:00
TexturePacker::TexturePacker() {
_texture_flags = Texture::FLAGS_DEFAULT;
_max_atlas_size = 1024;
_keep_original_atlases = false;
2019-10-22 00:03:04 +02:00
_margin = 0;
2019-10-20 21:19:00 +02:00
}
2019-10-21 21:11:11 +02:00
TexturePacker::~TexturePacker() {
2019-10-21 23:04:11 +02:00
clear();
2019-10-20 21:19:00 +02:00
}
2019-10-21 21:11:11 +02:00
void TexturePacker::_bind_methods() {
ClassDB::bind_method(D_METHOD("get_texture_flags"), &TexturePacker::get_texture_flags);
ClassDB::bind_method(D_METHOD("set_texture_flags", "flags"), &TexturePacker::set_texture_flags);
ADD_PROPERTY(PropertyInfo(Variant::INT, "texture_flags", PROPERTY_HINT_FLAGS, "Mipmaps,Repeat,Filter,Anisotropic Linear,Convert to Linear,Mirrored Repeat,Video Surface"), "set_texture_flags", "get_texture_flags");
ClassDB::bind_method(D_METHOD("get_max_atlas_size"), &TexturePacker::get_max_atlas_size);
ClassDB::bind_method(D_METHOD("set_max_atlas_size", "size"), &TexturePacker::set_max_atlas_size);
ADD_PROPERTY(PropertyInfo(Variant::INT, "max_atlas_size"), "set_max_atlas_size", "get_max_atlas_size");
ClassDB::bind_method(D_METHOD("get_keep_original_atlases"), &TexturePacker::get_keep_original_atlases);
ClassDB::bind_method(D_METHOD("set_keep_original_atlases", "value"), &TexturePacker::set_keep_original_atlases);
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "keep_original_atlases"), "set_keep_original_atlases", "get_keep_original_atlases");
2019-10-21 23:42:53 +02:00
ClassDB::bind_method(D_METHOD("get_background_color"), &TexturePacker::get_background_color);
ClassDB::bind_method(D_METHOD("set_background_color", "color"), &TexturePacker::set_background_color);
ADD_PROPERTY(PropertyInfo(Variant::COLOR, "background_color"), "set_background_color", "get_background_color");
2019-10-22 00:03:04 +02:00
ClassDB::bind_method(D_METHOD("get_margin"), &TexturePacker::get_margin);
ClassDB::bind_method(D_METHOD("set_margin", "size"), &TexturePacker::set_margin);
ADD_PROPERTY(PropertyInfo(Variant::INT, "margin"), "set_margin", "get_margin");
2019-10-21 21:11:11 +02:00
ClassDB::bind_method(D_METHOD("add_texture", "texture"), &TexturePacker::add_texture);
ClassDB::bind_method(D_METHOD("get_texture", "index"), &TexturePacker::get_texture);
ClassDB::bind_method(D_METHOD("get_original_texture", "index"), &TexturePacker::get_original_texture);
2019-10-21 23:18:06 +02:00
ClassDB::bind_method(D_METHOD("unref_texture_index", "index"), &TexturePacker::unref_texture_index);
ClassDB::bind_method(D_METHOD("unref_texture", "texture"), &TexturePacker::unref_texture);
2019-10-21 21:11:11 +02:00
ClassDB::bind_method(D_METHOD("remove_texture_index", "index"), &TexturePacker::remove_texture_index);
ClassDB::bind_method(D_METHOD("remove_texture", "texture"), &TexturePacker::remove_texture);
2019-10-21 23:18:06 +02:00
2019-10-21 21:11:11 +02:00
ClassDB::bind_method(D_METHOD("get_texture_count"), &TexturePacker::get_texture_count);
2019-10-21 23:04:11 +02:00
ClassDB::bind_method(D_METHOD("clear"), &TexturePacker::clear);
2019-10-21 20:57:39 +02:00
2019-10-21 21:11:11 +02:00
ClassDB::bind_method(D_METHOD("get_generated_texture", "index"), &TexturePacker::get_generated_texture);
ClassDB::bind_method(D_METHOD("get_generated_texture_count"), &TexturePacker::get_generated_texture_count);
2019-10-21 20:57:39 +02:00
2019-10-21 21:11:11 +02:00
ClassDB::bind_method(D_METHOD("merge"), &TexturePacker::merge);
2019-10-20 21:19:00 +02:00
}