props_2d/tiled_wall/tiled_wall_2d.cpp

317 lines
7.4 KiB
C++
Raw Permalink Normal View History

2022-02-21 22:02:46 +01:00
#include "tiled_wall_2d.h"
2021-11-23 16:53:47 +01:00
#include "core/version.h"
#include "scene/resources/texture.h"
#if VERSION_MAJOR < 4
#include "core/image.h"
#define GET_WORLD get_world
#else
#include "core/io/image.h"
#define GET_WORLD get_world_3d
#endif
#if TEXTURE_PACKER_PRESENT
#include "../../texture_packer/texture_resource/packer_image_resource.h"
#endif
2022-02-21 22:02:46 +01:00
#include "../material_cache/prop_2d_material_cache.h"
#include "../prop_2d_mesher.h"
#include "../singleton/prop_2d_cache.h"
2021-11-23 16:53:47 +01:00
#include "core/core_string_names.h"
2022-02-21 22:02:46 +01:00
#include "tiled_wall_2d_data.h"
2021-11-23 16:53:47 +01:00
2022-02-23 00:22:25 +01:00
#include "../lights/prop_2d_light.h"
2023-01-09 14:10:32 +01:00
#include "core/math/geometry_2d.h"
2022-02-23 00:22:25 +01:00
2022-02-21 22:12:25 +01:00
int TiledWall2D::get_width() const {
2021-11-23 16:53:47 +01:00
return _width;
}
2022-02-21 22:12:25 +01:00
void TiledWall2D::set_width(const int value) {
2021-11-23 16:53:47 +01:00
_width = value;
clear_mesh();
generate_mesh();
}
2022-02-21 22:12:25 +01:00
int TiledWall2D::get_heigth() const {
2021-11-23 16:53:47 +01:00
return _height;
}
2022-02-21 22:12:25 +01:00
void TiledWall2D::set_heigth(const int value) {
2021-11-23 16:53:47 +01:00
_height = value;
clear_mesh();
generate_mesh();
}
Transform2D TiledWall2D::get_mesh_transform() const {
return _mesh_transform;
}
void TiledWall2D::set_mesh_transform(const Transform2D &value) {
_mesh_transform = value;
clear_mesh();
generate_mesh();
}
2022-02-21 22:12:25 +01:00
Ref<TiledWall2DData> TiledWall2D::get_data() {
2021-11-23 16:53:47 +01:00
return _data;
}
2022-02-21 22:12:25 +01:00
void TiledWall2D::set_data(const Ref<TiledWall2DData> &data) {
2021-11-23 16:53:47 +01:00
if (_data.is_valid()) {
2023-01-09 14:10:32 +01:00
_data->disconnect(CoreStringNames::get_singleton()->changed, Callable(this, "refresh"));
2021-11-23 16:53:47 +01:00
}
_data = data;
if (_data.is_valid()) {
2023-01-09 14:10:32 +01:00
_data->connect(CoreStringNames::get_singleton()->changed, Callable(this, "refresh"));
2021-11-23 16:53:47 +01:00
}
call_deferred("refresh");
}
Rect2 TiledWall2D::get_rect() const {
return _rect;
2021-11-23 16:53:47 +01:00
}
2023-01-09 14:10:32 +01:00
Vector<Face3> TiledWall2D::get_faces(uint32_t p_usage_flags) const {
Vector<Face3> faces;
2021-11-23 16:53:47 +01:00
if (_mesh_array.size() != Mesh::ARRAY_MAX) {
return faces;
}
2023-01-09 14:10:32 +01:00
Vector<Vector3> vertices = _mesh_array[Mesh::ARRAY_VERTEX];
Vector<int> indices = _mesh_array[Mesh::ARRAY_INDEX];
2021-11-23 16:53:47 +01:00
int ts = indices.size() / 3;
faces.resize(ts);
2023-01-09 14:10:32 +01:00
Face3 *w = faces.ptrw();
const Vector3 *rv = vertices.ptr();
2021-11-23 16:53:47 +01:00
for (int i = 0; i < ts; i++) {
int im3 = (i * 3);
for (int j = 0; j < 3; j++) {
w[i].vertex[j] = rv[indices[im3 + j]];
}
}
return faces;
}
#ifdef TOOLS_ENABLED
bool TiledWall2D::_edit_is_selected_on_click(const Point2 &p_point, double p_tolerance) const {
if (_editor_selection_points.size() == 0) {
return false;
}
2023-01-09 14:10:32 +01:00
return Geometry2D::is_point_in_polygon(p_point, _editor_selection_points);
}
bool TiledWall2D::_edit_use_rect() const {
return true;
}
Rect2 TiledWall2D::_edit_get_rect() const {
return get_rect();
}
#endif
2022-02-21 22:12:25 +01:00
void TiledWall2D::refresh() {
2021-11-23 16:53:47 +01:00
if (!is_inside_tree()) {
return;
}
clear_mesh();
if (!_data.is_valid()) {
return;
}
if (_mesh_rid == RID()) {
2023-01-09 14:10:32 +01:00
_mesh_rid = RenderingServer::get_singleton()->mesh_create();
2021-11-23 16:53:47 +01:00
}
2022-02-21 22:12:25 +01:00
Ref<Prop2DMaterialCache> old_cache;
2021-11-23 16:53:47 +01:00
old_cache = _cache;
2022-02-21 22:12:25 +01:00
_cache = Prop2DCache::get_singleton()->tiled_wall_material_cache_get(_data);
2021-11-23 16:53:47 +01:00
if (old_cache.is_valid() && old_cache != _cache) {
2022-02-21 22:12:25 +01:00
Prop2DCache::get_singleton()->tiled_wall_material_cache_unref(old_cache);
2021-11-23 16:53:47 +01:00
}
if (!_cache->get_initialized()) {
_cache->mutex_lock();
//An anouther thread could have initialized it before wo got the mutex!
if (!_cache->get_initialized()) {
//can only be called from the main thread!
_cache->initial_setup_default();
_data->setup_cache(_cache);
_cache->refresh_rects();
}
_cache->mutex_unlock();
}
Ref<Material> mat = _cache->material_get();
if (mat != get_material()) {
set_material(mat);
}
2022-02-23 00:08:29 +01:00
Ref<Texture> tex = _cache->texture_get_merged();
if (tex.is_valid()) {
_texture_rid = tex->get_rid();
} else {
_texture_rid = RID();
}
2021-11-23 16:53:47 +01:00
generate_mesh();
}
2022-02-21 22:12:25 +01:00
void TiledWall2D::generate_mesh() {
2021-11-23 16:53:47 +01:00
if (!_data.is_valid()) {
2023-01-09 14:10:32 +01:00
queue_redraw();
2021-11-23 16:53:47 +01:00
return;
}
if (!_cache.is_valid()) {
2023-01-09 14:10:32 +01:00
queue_redraw();
2021-11-23 16:53:47 +01:00
return;
}
_mesher->add_tiled_wall_simple(_width, _height, _mesh_transform, _data, _cache);
2022-02-23 00:22:25 +01:00
_mesher->bake_colors();
2021-11-23 16:53:47 +01:00
_rect = _mesher->calculate_rect();
2021-11-23 16:53:47 +01:00
_mesh_array = _mesher->build_mesh();
if (_mesh_array.size() != Mesh::ARRAY_MAX) {
2023-01-09 14:10:32 +01:00
queue_redraw();
2021-11-23 16:53:47 +01:00
return;
}
PoolVector<Vector2> vertices = _mesh_array[Mesh::ARRAY_VERTEX];
2021-11-23 16:53:47 +01:00
#ifdef TOOLS_ENABLED
Vector<Vector2> editor_point_vertices;
editor_point_vertices.resize(vertices.size());
for (int i = 0; i < vertices.size(); ++i) {
editor_point_vertices.set(i, vertices[i]);
}
2023-01-09 20:06:10 +01:00
_editor_selection_points = Geometry2D::convex_hull(editor_point_vertices);
#endif
2021-11-23 16:53:47 +01:00
if (vertices.size() == 0) {
2023-01-09 14:10:32 +01:00
queue_redraw();
2021-11-23 16:53:47 +01:00
return;
}
2023-01-09 14:10:32 +01:00
RenderingServer::get_singleton()->mesh_add_surface_from_arrays(_mesh_rid, RenderingServer::PRIMITIVE_TRIANGLES, _mesh_array);
2021-11-23 16:53:47 +01:00
_aabb.size = Vector3(_width, _height, 0);
2022-02-22 21:41:09 +01:00
2023-01-09 14:10:32 +01:00
queue_redraw();
2021-11-23 16:53:47 +01:00
}
2022-02-21 22:12:25 +01:00
void TiledWall2D::clear_mesh() {
2021-11-23 16:53:47 +01:00
_mesher->reset();
_aabb = AABB();
_mesh_array.clear();
if (_mesh_rid != RID()) {
2023-01-09 14:10:32 +01:00
if (RS::get_singleton()->mesh_get_surface_count(_mesh_rid) > 0)
RS::get_singleton()->mesh_clear(_mesh_rid);
2021-11-23 16:53:47 +01:00
}
}
2022-02-21 22:12:25 +01:00
void TiledWall2D::free_mesh() {
2021-11-23 16:53:47 +01:00
if (_mesh_rid != RID()) {
2023-01-09 14:10:32 +01:00
RS::get_singleton()->free(_mesh_rid);
2021-11-23 16:53:47 +01:00
_mesh_rid = RID();
}
}
2022-02-22 21:41:09 +01:00
void TiledWall2D::draw() {
if (_mesh_rid == RID()) {
2021-11-23 16:53:47 +01:00
return;
}
2023-01-09 20:06:10 +01:00
RenderingServer::get_singleton()->canvas_item_add_mesh(get_canvas_item(), _mesh_rid, get_transform(), Color(1, 1, 1, 1), _texture_rid);
2021-11-23 16:53:47 +01:00
}
2022-02-21 22:12:25 +01:00
TiledWall2D::TiledWall2D() {
2021-11-23 16:53:47 +01:00
_width = 1;
_height = 1;
2023-01-09 01:17:02 +01:00
_mesher.instantiate();
2022-02-23 15:31:47 +01:00
//_mesher->set_build_flags(Prop2DMesher::BUILD_FLAG_USE_LIGHTING | Prop2DMesher::BUILD_FLAG_USE_AO | Prop2DMesher::BUILD_FLAG_USE_RAO | Prop2DMesher::BUILD_FLAG_BAKE_LIGHTS);
2021-11-23 16:53:47 +01:00
}
2022-02-21 22:12:25 +01:00
TiledWall2D::~TiledWall2D() {
2021-11-23 16:53:47 +01:00
_data.unref();
_cache.unref();
_mesher.unref();
free_mesh();
}
2022-02-21 22:12:25 +01:00
void TiledWall2D::_notification(int p_what) {
2021-11-23 16:53:47 +01:00
switch (p_what) {
2022-02-22 21:41:09 +01:00
case NOTIFICATION_ENTER_TREE: {
2021-11-23 16:53:47 +01:00
refresh();
break;
}
2022-02-22 21:41:09 +01:00
case NOTIFICATION_EXIT_TREE: {
2021-11-23 16:53:47 +01:00
break;
}
case NOTIFICATION_TRANSFORM_CHANGED: {
break;
}
2022-02-22 21:41:09 +01:00
case NOTIFICATION_DRAW: {
draw();
}
2021-11-23 16:53:47 +01:00
}
}
2022-02-21 22:12:25 +01:00
void TiledWall2D::_bind_methods() {
ClassDB::bind_method(D_METHOD("get_width"), &TiledWall2D::get_width);
ClassDB::bind_method(D_METHOD("set_width", "value"), &TiledWall2D::set_width);
2021-11-23 16:53:47 +01:00
ADD_PROPERTY(PropertyInfo(Variant::INT, "width"), "set_width", "get_width");
2022-02-21 22:12:25 +01:00
ClassDB::bind_method(D_METHOD("get_heigth"), &TiledWall2D::get_heigth);
ClassDB::bind_method(D_METHOD("set_heigth", "value"), &TiledWall2D::set_heigth);
2021-11-23 16:53:47 +01:00
ADD_PROPERTY(PropertyInfo(Variant::INT, "heigth"), "set_heigth", "get_heigth");
2022-02-21 22:12:25 +01:00
ClassDB::bind_method(D_METHOD("get_data"), &TiledWall2D::get_data);
ClassDB::bind_method(D_METHOD("set_data", "value"), &TiledWall2D::set_data);
ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "data", PROPERTY_HINT_RESOURCE_TYPE, "TiledWall2DData"), "set_data", "get_data");
2021-11-23 16:53:47 +01:00
ClassDB::bind_method(D_METHOD("get_mesh_transform"), &TiledWall2D::get_mesh_transform);
ClassDB::bind_method(D_METHOD("set_mesh_transform", "value"), &TiledWall2D::set_mesh_transform);
ADD_PROPERTY(PropertyInfo(Variant::TRANSFORM2D, "mesh_transform"), "set_mesh_transform", "get_mesh_transform");
//ADD_GROUP("Collision", "collision_");
//ADD_PROPERTY(PropertyInfo(Variant::INT, "collision_layer", PROPERTY_HINT_LAYERS_3D_PHYSICS), "set_collision_layer", "get_collision_layer");
//ADD_PROPERTY(PropertyInfo(Variant::INT, "collision_mask", PROPERTY_HINT_LAYERS_3D_PHYSICS), "set_collision_mask", "get_collision_mask");
2021-11-23 16:53:47 +01:00
2022-02-21 22:12:25 +01:00
ClassDB::bind_method(D_METHOD("refresh"), &TiledWall2D::refresh);
ClassDB::bind_method(D_METHOD("generate_mesh"), &TiledWall2D::generate_mesh);
ClassDB::bind_method(D_METHOD("clear_mesh"), &TiledWall2D::clear_mesh);
ClassDB::bind_method(D_METHOD("free_mesh"), &TiledWall2D::free_mesh);
2021-11-23 16:53:47 +01:00
}