2021-11-22 22:00:45 +01:00
|
|
|
/*
|
2022-02-22 10:33:06 +01:00
|
|
|
Copyright (c) 2019-2022 Péter Magyar
|
2021-11-22 22:00:45 +01: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.
|
|
|
|
*/
|
|
|
|
|
2022-02-22 11:09:36 +01:00
|
|
|
#include "terrain_2d_mesher_blocky.h"
|
2021-11-22 22:00:45 +01:00
|
|
|
|
|
|
|
#include "core/math/math_funcs.h"
|
|
|
|
|
2022-02-22 11:09:36 +01:00
|
|
|
#include "../../library/terrain_2d_material_cache.h"
|
2021-11-22 22:00:45 +01:00
|
|
|
|
2022-02-22 11:42:28 +01:00
|
|
|
void Terrain2DMesherBlocky::_add_chunk(Ref<Terrain2DChunk> p_chunk) {
|
|
|
|
Ref<Terrain2DChunkDefault> chunk = p_chunk;
|
2021-11-22 22:00:45 +01:00
|
|
|
|
|
|
|
ERR_FAIL_COND(!chunk.is_valid());
|
|
|
|
ERR_FAIL_COND(chunk->get_margin_end() < 1);
|
|
|
|
ERR_FAIL_COND(chunk->get_margin_start() < 1);
|
|
|
|
|
2022-02-23 19:38:06 +01:00
|
|
|
add_chunk_normal(chunk);
|
2021-11-22 22:00:45 +01:00
|
|
|
}
|
|
|
|
|
2022-02-22 11:42:28 +01:00
|
|
|
void Terrain2DMesherBlocky::add_chunk_normal(Ref<Terrain2DChunkDefault> chunk) {
|
|
|
|
//if ((get_build_flags() & Terrain2DChunkDefault::BUILD_FLAG_GENERATE_AO) != 0)
|
|
|
|
// if (!chunk->get_channel(Terrain2DChunkDefault::DEFAULT_CHANNEL_AO))
|
2021-11-22 22:00:45 +01:00
|
|
|
// chunk->generate_ao();
|
|
|
|
|
|
|
|
int x_size = chunk->get_size_x();
|
2022-02-24 16:55:14 +01:00
|
|
|
int y_size = chunk->get_size_y();
|
2022-02-24 15:50:47 +01:00
|
|
|
int cell_size_x = get_cell_size_x();
|
|
|
|
int cell_size_y = get_cell_size_y();
|
2021-11-22 22:00:45 +01:00
|
|
|
|
|
|
|
uint8_t *channel_type = chunk->channel_get(_channel_index_type);
|
|
|
|
|
|
|
|
if (!channel_type)
|
|
|
|
return;
|
|
|
|
|
|
|
|
uint8_t *channel_color_r = NULL;
|
|
|
|
uint8_t *channel_color_g = NULL;
|
|
|
|
uint8_t *channel_color_b = NULL;
|
|
|
|
uint8_t *channel_ao = NULL;
|
|
|
|
uint8_t *channel_rao = NULL;
|
|
|
|
|
|
|
|
Color base_light(_base_light_value, _base_light_value, _base_light_value);
|
|
|
|
Color light[4]{ Color(1, 1, 1), Color(1, 1, 1), Color(1, 1, 1), Color(1, 1, 1) };
|
|
|
|
|
2022-02-22 11:42:28 +01:00
|
|
|
bool use_lighting = (get_build_flags() & Terrain2DChunkDefault::BUILD_FLAG_USE_LIGHTING) != 0;
|
|
|
|
bool use_ao = (get_build_flags() & Terrain2DChunkDefault::BUILD_FLAG_USE_AO) != 0;
|
|
|
|
bool use_rao = (get_build_flags() & Terrain2DChunkDefault::BUILD_FLAG_USE_RAO) != 0;
|
2021-11-22 22:00:45 +01:00
|
|
|
|
|
|
|
if (use_lighting) {
|
2022-02-22 11:42:28 +01:00
|
|
|
channel_color_r = chunk->channel_get_valid(Terrain2DChunkDefault::DEFAULT_CHANNEL_LIGHT_COLOR_R);
|
|
|
|
channel_color_g = chunk->channel_get_valid(Terrain2DChunkDefault::DEFAULT_CHANNEL_LIGHT_COLOR_G);
|
|
|
|
channel_color_b = chunk->channel_get_valid(Terrain2DChunkDefault::DEFAULT_CHANNEL_LIGHT_COLOR_B);
|
2021-11-22 22:00:45 +01:00
|
|
|
|
|
|
|
if (use_ao)
|
2022-02-22 11:42:28 +01:00
|
|
|
channel_ao = chunk->channel_get_valid(Terrain2DChunkDefault::DEFAULT_CHANNEL_AO);
|
2021-11-22 22:00:45 +01:00
|
|
|
|
|
|
|
if (use_rao)
|
2022-02-22 11:42:28 +01:00
|
|
|
channel_rao = chunk->channel_get_valid(Terrain2DChunkDefault::DEFAULT_CHANNEL_RANDOM_AO);
|
2021-11-22 22:00:45 +01:00
|
|
|
}
|
|
|
|
|
2022-02-22 11:42:28 +01:00
|
|
|
Ref<Terrain2DMaterialCache> mcache;
|
2021-11-22 22:00:45 +01:00
|
|
|
|
|
|
|
if (chunk->material_cache_key_has()) {
|
|
|
|
mcache = _library->material_cache_get(chunk->material_cache_key_get());
|
|
|
|
}
|
|
|
|
|
|
|
|
int margin_start = chunk->get_margin_start();
|
|
|
|
//z_size + margin_start is fine, x, and z are in data space.
|
2022-02-24 16:55:14 +01:00
|
|
|
for (int y = margin_start; y < y_size + margin_start; ++y) {
|
2021-11-22 22:00:45 +01:00
|
|
|
for (int x = margin_start; x < x_size + margin_start; ++x) {
|
|
|
|
int indexes[4] = {
|
2022-02-24 16:55:14 +01:00
|
|
|
chunk->get_data_index(x, y),
|
2022-02-24 19:03:13 +01:00
|
|
|
chunk->get_data_index(x + 1, y),
|
2022-02-24 16:55:14 +01:00
|
|
|
chunk->get_data_index(x, y + 1),
|
|
|
|
chunk->get_data_index(x + 1, y + 1)
|
2021-11-22 22:00:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
uint8_t type = channel_type[indexes[0]];
|
|
|
|
|
|
|
|
if (type == 0)
|
|
|
|
continue;
|
|
|
|
|
2022-02-22 11:42:28 +01:00
|
|
|
Ref<Terrain2DSurface> surface;
|
2021-11-22 22:00:45 +01:00
|
|
|
|
|
|
|
if (!mcache.is_valid()) {
|
2022-02-22 10:33:06 +01:00
|
|
|
surface = _library->terra_surface_get(type - 1);
|
2021-11-22 22:00:45 +01:00
|
|
|
} else {
|
|
|
|
surface = mcache->surface_id_get(type - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!surface.is_valid())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (use_lighting) {
|
|
|
|
for (int i = 0; i < 4; ++i) {
|
|
|
|
int indx = indexes[i];
|
|
|
|
|
|
|
|
light[i] = Color(channel_color_r[indx] / 255.0,
|
|
|
|
channel_color_g[indx] / 255.0,
|
|
|
|
channel_color_b[indx] / 255.0);
|
|
|
|
|
|
|
|
float ao = 0;
|
|
|
|
|
|
|
|
if (use_ao)
|
|
|
|
ao = channel_ao[indx] / 255.0;
|
|
|
|
|
|
|
|
if (use_rao) {
|
|
|
|
float rao = channel_rao[indx] / 255.0;
|
|
|
|
ao += rao;
|
|
|
|
}
|
|
|
|
|
|
|
|
light[i] += base_light;
|
|
|
|
|
|
|
|
if (ao > 0)
|
|
|
|
light[i] -= Color(ao, ao, ao) * _ao_strength;
|
|
|
|
|
|
|
|
light[i].r = CLAMP(light[i].r, 0, 1.0);
|
|
|
|
light[i].g = CLAMP(light[i].g, 0, 1.0);
|
|
|
|
light[i].b = CLAMP(light[i].b, 0, 1.0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int vc = get_vertex_count();
|
2022-02-24 19:03:13 +01:00
|
|
|
add_indices(vc + 0);
|
|
|
|
add_indices(vc + 1);
|
2021-11-22 22:00:45 +01:00
|
|
|
add_indices(vc + 2);
|
|
|
|
add_indices(vc + 1);
|
|
|
|
add_indices(vc + 2);
|
2022-02-24 19:03:13 +01:00
|
|
|
add_indices(vc + 3);
|
2021-11-22 22:00:45 +01:00
|
|
|
|
|
|
|
Vector2 uvs[] = {
|
2022-02-24 18:01:25 +01:00
|
|
|
surface->transform_uv(Vector2(0, 0)),
|
2022-02-24 19:03:13 +01:00
|
|
|
surface->transform_uv(Vector2(1, 0)),
|
2022-02-24 18:01:25 +01:00
|
|
|
surface->transform_uv(Vector2(0, 1)),
|
|
|
|
surface->transform_uv(Vector2(1, 1))
|
2021-11-22 22:00:45 +01:00
|
|
|
};
|
|
|
|
|
2022-02-24 19:03:13 +01:00
|
|
|
int xx = x * cell_size_x;
|
|
|
|
int xx1 = (x + 1) * cell_size_x;
|
2022-02-24 16:55:14 +01:00
|
|
|
int yy = y * cell_size_y;
|
|
|
|
int yy1 = (y + 1) * cell_size_y;
|
2022-02-24 15:50:47 +01:00
|
|
|
|
2022-02-23 19:38:06 +01:00
|
|
|
Vector2 verts[] = {
|
2022-02-24 15:50:47 +01:00
|
|
|
Vector2(xx, yy),
|
2022-02-24 19:03:13 +01:00
|
|
|
Vector2(xx1, yy),
|
2022-02-24 15:50:47 +01:00
|
|
|
Vector2(xx, yy1),
|
|
|
|
Vector2(xx1, yy1)
|
2021-11-22 22:00:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
for (int i = 0; i < 4; ++i) {
|
2022-02-24 19:03:13 +01:00
|
|
|
if (use_lighting) {
|
2021-11-22 22:00:45 +01:00
|
|
|
add_color(light[i]);
|
2022-02-24 19:03:13 +01:00
|
|
|
} else {
|
|
|
|
add_color(Color(1, 1, 1, 1));
|
|
|
|
}
|
2021-11-22 22:00:45 +01:00
|
|
|
|
|
|
|
add_uv(uvs[i]);
|
|
|
|
add_vertex(verts[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-22 11:42:28 +01:00
|
|
|
Terrain2DMesherBlocky::Terrain2DMesherBlocky() {
|
2021-11-22 22:00:45 +01:00
|
|
|
}
|
|
|
|
|
2022-02-22 11:42:28 +01:00
|
|
|
Terrain2DMesherBlocky::~Terrain2DMesherBlocky() {
|
2021-11-22 22:00:45 +01:00
|
|
|
}
|
|
|
|
|
2022-02-22 11:42:28 +01:00
|
|
|
void Terrain2DMesherBlocky::_bind_methods() {
|
|
|
|
ClassDB::bind_method(D_METHOD("_add_chunk", "buffer"), &Terrain2DMesherBlocky::_add_chunk);
|
2021-11-22 22:00:45 +01:00
|
|
|
}
|