mirror of
https://github.com/Relintai/terraman.git
synced 2025-05-01 22:07:59 +02:00
Add the TexturePacker, and some bindings into TerraMaterialCachePCM. Also implemented refresh_rects and _setup_material_albedo.
This commit is contained in:
parent
dd2aa2b303
commit
6c5487d6c2
@ -22,7 +22,45 @@ SOFTWARE.
|
|||||||
|
|
||||||
#include "terra_material_cache_pcm.h"
|
#include "terra_material_cache_pcm.h"
|
||||||
|
|
||||||
|
#include "../../texture_packer/texture_packer.h"
|
||||||
|
#include "scene/resources/texture.h"
|
||||||
#include "terra_surface.h"
|
#include "terra_surface.h"
|
||||||
|
#include "terra_surface_merger.h"
|
||||||
|
|
||||||
|
int TerraMaterialCachePCM::get_texture_flags() const {
|
||||||
|
return _packer->get_texture_flags();
|
||||||
|
}
|
||||||
|
void TerraMaterialCachePCM::set_texture_flags(const int flags) {
|
||||||
|
_packer->set_texture_flags(flags);
|
||||||
|
}
|
||||||
|
|
||||||
|
int TerraMaterialCachePCM::get_max_atlas_size() const {
|
||||||
|
return _packer->get_max_atlas_size();
|
||||||
|
}
|
||||||
|
void TerraMaterialCachePCM::set_max_atlas_size(const int size) {
|
||||||
|
_packer->set_max_atlas_size(size);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool TerraMaterialCachePCM::get_keep_original_atlases() const {
|
||||||
|
return _packer->get_keep_original_atlases();
|
||||||
|
}
|
||||||
|
void TerraMaterialCachePCM::set_keep_original_atlases(const bool value) {
|
||||||
|
_packer->set_keep_original_atlases(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
Color TerraMaterialCachePCM::get_background_color() const {
|
||||||
|
return _packer->get_background_color();
|
||||||
|
}
|
||||||
|
void TerraMaterialCachePCM::set_background_color(const Color &color) {
|
||||||
|
_packer->set_background_color(color);
|
||||||
|
}
|
||||||
|
|
||||||
|
int TerraMaterialCachePCM::get_margin() const {
|
||||||
|
return _packer->get_margin();
|
||||||
|
}
|
||||||
|
void TerraMaterialCachePCM::set_margin(const int margin) {
|
||||||
|
_packer->set_margin(margin);
|
||||||
|
}
|
||||||
|
|
||||||
//Surfaces
|
//Surfaces
|
||||||
Ref<TerraSurface> TerraMaterialCachePCM::voxel_surface_get(const int index) {
|
Ref<TerraSurface> TerraMaterialCachePCM::voxel_surface_get(const int index) {
|
||||||
@ -41,13 +79,114 @@ void TerraMaterialCachePCM::voxel_surfaces_clear() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void TerraMaterialCachePCM::refresh_rects() {
|
void TerraMaterialCachePCM::refresh_rects() {
|
||||||
|
bool texture_added = false;
|
||||||
|
for (int i = 0; i < _surfaces.size(); i++) {
|
||||||
|
Ref<TerraSurfaceMerger> surface = Ref<TerraSurfaceMerger>(_surfaces[i]);
|
||||||
|
|
||||||
|
if (surface.is_valid()) {
|
||||||
|
for (int j = 0; j < TerraSurface::TERRA_SIDES_COUNT; ++j) {
|
||||||
|
Ref<Texture> tex = surface->get_texture(static_cast<TerraSurface::TerraSurfaceSides>(j));
|
||||||
|
|
||||||
|
if (!tex.is_valid())
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (!_packer->contains_texture(tex)) {
|
||||||
|
texture_added = true;
|
||||||
|
surface->set_region(static_cast<TerraSurface::TerraSurfaceSides>(j), _packer->add_texture(tex));
|
||||||
|
} else {
|
||||||
|
surface->set_region(static_cast<TerraSurface::TerraSurfaceSides>(j), _packer->get_texture(tex));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (texture_added) {
|
||||||
|
_packer->merge();
|
||||||
|
|
||||||
|
ERR_FAIL_COND(_packer->get_texture_count() == 0);
|
||||||
|
|
||||||
|
Ref<Texture> tex = _packer->get_generated_texture(0);
|
||||||
|
|
||||||
|
setup_material_albedo(tex);
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int i = 0; i < _surfaces.size(); i++) {
|
||||||
|
Ref<TerraSurfaceMerger> surface = _surfaces[i];
|
||||||
|
|
||||||
|
if (surface.is_valid()) {
|
||||||
|
surface->refresh_rects();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void TerraMaterialCachePCM::_setup_material_albedo(Ref<Texture> texture) {
|
||||||
|
int count = material_get_num();
|
||||||
|
|
||||||
|
for (int i = 0; i < count; ++i) {
|
||||||
|
Ref<Material> m = material_get(i);
|
||||||
|
|
||||||
|
Ref<SpatialMaterial> spmat = m;
|
||||||
|
|
||||||
|
if (spmat.is_valid()) {
|
||||||
|
spmat->set_texture(SpatialMaterial::TEXTURE_ALBEDO, texture);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Ref<ShaderMaterial> shmat = m;
|
||||||
|
|
||||||
|
if (shmat.is_valid()) {
|
||||||
|
shmat->set_shader_param("texture_albedo", texture);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
TerraMaterialCachePCM::TerraMaterialCachePCM() {
|
TerraMaterialCachePCM::TerraMaterialCachePCM() {
|
||||||
|
_packer.instance();
|
||||||
|
|
||||||
|
#if GODOT4
|
||||||
|
#warning implement
|
||||||
|
#else
|
||||||
|
_packer->set_texture_flags(Texture::FLAG_MIPMAPS | Texture::FLAG_FILTER);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
_packer->set_max_atlas_size(1024);
|
||||||
|
_packer->set_keep_original_atlases(false);
|
||||||
|
_packer->set_margin(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
TerraMaterialCachePCM::~TerraMaterialCachePCM() {
|
TerraMaterialCachePCM::~TerraMaterialCachePCM() {
|
||||||
|
for (int i = 0; i < _surfaces.size(); ++i) {
|
||||||
|
Ref<TerraSurface> surface = _surfaces[i];
|
||||||
|
|
||||||
|
if (surface.is_valid()) {
|
||||||
|
surface->set_library(Ref<TerramanLibrary>());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
_surfaces.clear();
|
||||||
|
|
||||||
|
_packer->clear();
|
||||||
|
_packer.unref();
|
||||||
}
|
}
|
||||||
|
|
||||||
void TerraMaterialCachePCM::_bind_methods() {
|
void TerraMaterialCachePCM::_bind_methods() {
|
||||||
|
ClassDB::bind_method(D_METHOD("get_texture_flags"), &TerraMaterialCachePCM::get_texture_flags);
|
||||||
|
ClassDB::bind_method(D_METHOD("set_texture_flags", "flags"), &TerraMaterialCachePCM::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"), &TerraMaterialCachePCM::get_max_atlas_size);
|
||||||
|
ClassDB::bind_method(D_METHOD("set_max_atlas_size", "size"), &TerraMaterialCachePCM::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"), &TerraMaterialCachePCM::get_keep_original_atlases);
|
||||||
|
ClassDB::bind_method(D_METHOD("set_keep_original_atlases", "value"), &TerraMaterialCachePCM::set_keep_original_atlases);
|
||||||
|
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "keep_original_atlases"), "set_keep_original_atlases", "get_keep_original_atlases");
|
||||||
|
|
||||||
|
ClassDB::bind_method(D_METHOD("get_background_color"), &TerraMaterialCachePCM::get_background_color);
|
||||||
|
ClassDB::bind_method(D_METHOD("set_background_color", "color"), &TerraMaterialCachePCM::set_background_color);
|
||||||
|
ADD_PROPERTY(PropertyInfo(Variant::COLOR, "background_color"), "set_background_color", "get_background_color");
|
||||||
|
|
||||||
|
ClassDB::bind_method(D_METHOD("get_margin"), &TerraMaterialCachePCM::get_margin);
|
||||||
|
ClassDB::bind_method(D_METHOD("set_margin", "size"), &TerraMaterialCachePCM::set_margin);
|
||||||
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "margin"), "set_margin", "get_margin");
|
||||||
}
|
}
|
||||||
|
@ -43,11 +43,27 @@ SOFTWARE.
|
|||||||
#include "../defines.h"
|
#include "../defines.h"
|
||||||
|
|
||||||
class TerraSurface;
|
class TerraSurface;
|
||||||
|
class TexturePacker;
|
||||||
|
|
||||||
class TerraMaterialCachePCM : public TerraMaterialCache {
|
class TerraMaterialCachePCM : public TerraMaterialCache {
|
||||||
GDCLASS(TerraMaterialCachePCM, TerraMaterialCache);
|
GDCLASS(TerraMaterialCachePCM, TerraMaterialCache);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
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);
|
||||||
|
|
||||||
Ref<TerraSurface> voxel_surface_get(const int index);
|
Ref<TerraSurface> voxel_surface_get(const int index);
|
||||||
void voxel_surface_add(Ref<TerraSurface> value);
|
void voxel_surface_add(Ref<TerraSurface> value);
|
||||||
void voxel_surface_set(const int index, Ref<TerraSurface> value);
|
void voxel_surface_set(const int index, Ref<TerraSurface> value);
|
||||||
@ -57,13 +73,15 @@ public:
|
|||||||
|
|
||||||
void refresh_rects();
|
void refresh_rects();
|
||||||
|
|
||||||
|
void _setup_material_albedo(Ref<Texture> texture);
|
||||||
|
|
||||||
TerraMaterialCachePCM();
|
TerraMaterialCachePCM();
|
||||||
~TerraMaterialCachePCM();
|
~TerraMaterialCachePCM();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
static void _bind_methods();
|
static void _bind_methods();
|
||||||
|
|
||||||
//Ref<TextureMerger> merger;
|
Ref<TexturePacker> _packer;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user