2022-03-17 22:33:22 +01:00
|
|
|
#ifndef TEXTURE_MERGER_H
|
|
|
|
#define TEXTURE_MERGER_H
|
2023-12-17 22:59:50 +01:00
|
|
|
|
2022-03-15 13:29:32 +01:00
|
|
|
|
2022-08-17 15:35:28 +02:00
|
|
|
#include "core/config/engine.h"
|
2022-08-17 12:53:49 +02:00
|
|
|
#include "core/containers/vector.h"
|
2022-03-15 13:29:32 +01:00
|
|
|
|
|
|
|
#include "scene/main/node.h"
|
|
|
|
|
|
|
|
#include "texture_packer.h"
|
|
|
|
|
|
|
|
class TextureMerger : public Node {
|
|
|
|
GDCLASS(TextureMerger, Node);
|
|
|
|
|
|
|
|
public:
|
|
|
|
bool get_dirty() const;
|
|
|
|
void set_dirty(const bool value);
|
|
|
|
|
|
|
|
int get_texture_flags() const;
|
|
|
|
void set_texture_flags(const int flags);
|
|
|
|
|
|
|
|
int get_max_atlas_size() const;
|
|
|
|
void set_max_atlas_size(const int size);
|
|
|
|
|
|
|
|
bool get_keep_original_atlases() const;
|
|
|
|
void set_keep_original_atlases(const bool value);
|
|
|
|
|
|
|
|
Color get_background_color() const;
|
|
|
|
void set_background_color(const Color &color);
|
|
|
|
|
|
|
|
int get_margin() const;
|
|
|
|
void set_margin(const int margin);
|
|
|
|
|
|
|
|
bool get_automatic_merge() const;
|
|
|
|
void set_automatic_merge(const bool value);
|
|
|
|
|
|
|
|
Ref<TexturePacker> get_packer() const;
|
|
|
|
void set_packer(const Ref<TexturePacker> &packer);
|
|
|
|
|
|
|
|
Vector<Variant> get_textures();
|
|
|
|
void set_textures(const Vector<Variant> &textures);
|
|
|
|
|
|
|
|
Ref<AtlasTexture> add_texture(const Ref<Texture> &texture);
|
|
|
|
Ref<AtlasTexture> get_texture(const Ref<Texture> &texture);
|
|
|
|
Ref<AtlasTexture> get_texture_index(const int index);
|
|
|
|
Ref<Texture> get_original_texture(const int index);
|
|
|
|
bool contains_texture(const Ref<Texture> &texture);
|
|
|
|
|
|
|
|
bool unref_texture_index(const int index);
|
|
|
|
bool unref_texture(const Ref<Texture> &texture);
|
|
|
|
void remove_texture_index(const int index);
|
|
|
|
void remove_texture(const Ref<Texture> &texture);
|
|
|
|
|
|
|
|
int get_texture_count();
|
|
|
|
void clear();
|
|
|
|
|
|
|
|
Ref<ImageTexture> get_generated_texture(const int index);
|
|
|
|
int get_generated_texture_count();
|
|
|
|
|
|
|
|
void merge();
|
|
|
|
|
|
|
|
TextureMerger();
|
|
|
|
~TextureMerger();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
void _notification(int p_what);
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool _automatic_merge;
|
|
|
|
bool _dirty;
|
|
|
|
|
|
|
|
Ref<TexturePacker> _packer;
|
2022-03-18 02:05:18 +01:00
|
|
|
Vector<Ref<Texture>> _textures;
|
2022-03-15 13:29:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|