props_2d/tiled_wall/tiled_wall_2d.cpp

275 lines
6.2 KiB
C++
Raw 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-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();
}
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()) {
_data->disconnect(CoreStringNames::get_singleton()->changed, this, "refresh");
}
_data = data;
if (_data.is_valid()) {
_data->connect(CoreStringNames::get_singleton()->changed, this, "refresh");
}
call_deferred("refresh");
}
2022-02-21 22:12:25 +01:00
AABB TiledWall2D::get_aabb() const {
2021-11-23 16:53:47 +01:00
return AABB();
}
2022-02-21 22:12:25 +01:00
PoolVector<Face3> TiledWall2D::get_faces(uint32_t p_usage_flags) const {
2021-11-23 16:53:47 +01:00
PoolVector<Face3> faces;
if (_mesh_array.size() != Mesh::ARRAY_MAX) {
return faces;
}
PoolVector<Vector3> vertices = _mesh_array[Mesh::ARRAY_VERTEX];
PoolVector<int> indices = _mesh_array[Mesh::ARRAY_INDEX];
int ts = indices.size() / 3;
faces.resize(ts);
PoolVector<Face3>::Write w = faces.write();
PoolVector<Vector3>::Read rv = vertices.read();
PoolVector<int>::Read ri = indices.read();
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]];
}
}
w.release();
return faces;
}
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()) {
_mesh_rid = VisualServer::get_singleton()->mesh_create();
}
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<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()) {
2022-02-22 21:41:09 +01:00
update();
2021-11-23 16:53:47 +01:00
return;
}
if (!_cache.is_valid()) {
2022-02-22 21:41:09 +01:00
update();
2021-11-23 16:53:47 +01:00
return;
}
_mesher->add_tiled_wall_simple(_width, _height, Transform2D(), _data, _cache);
2021-11-23 16:53:47 +01:00
_mesh_array = _mesher->build_mesh();
if (_mesh_array.size() != Mesh::ARRAY_MAX) {
2022-02-22 21:41:09 +01:00
update();
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
if (vertices.size() == 0) {
2022-02-22 21:41:09 +01:00
update();
2021-11-23 16:53:47 +01:00
return;
}
VisualServer::get_singleton()->mesh_add_surface_from_arrays(_mesh_rid, VisualServer::PRIMITIVE_TRIANGLES, _mesh_array);
//Ref<Material> material = _cache->material_lod_get(0);
2021-11-23 16:53:47 +01:00
//if (material.is_valid()) {
2022-02-22 21:41:09 +01:00
// VisualServer::get_singleton()->mesh_surface_set_material(_mesh_rid, 0, material->get_rid());
//}
2021-11-23 16:53:47 +01:00
_aabb.size = Vector3(_width, _height, 0);
2022-02-22 21:41:09 +01:00
update();
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()) {
if (VS::get_singleton()->mesh_get_surface_count(_mesh_rid) > 0)
#if VERSION_MAJOR < 4
VS::get_singleton()->mesh_remove_surface(_mesh_rid, 0);
#else
VS::get_singleton()->mesh_clear(_mesh_rid);
#endif
}
}
2022-02-21 22:12:25 +01:00
void TiledWall2D::free_mesh() {
2021-11-23 16:53:47 +01:00
if (_mesh_rid != RID()) {
VS::get_singleton()->free(_mesh_rid);
_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;
}
VisualServer::get_singleton()->canvas_item_add_mesh(get_canvas_item(), _mesh_rid, get_transform(), Color(1, 1, 1, 1), _texture_rid, 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;
_mesher.instance();
}
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
//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
}