mirror of
https://github.com/Relintai/terraman_2d.git
synced 2024-11-14 10:17:23 +01:00
628 lines
41 KiB
C++
628 lines
41 KiB
C++
/*
|
|
Copyright (c) 2019-2022 Péter Magyar
|
|
|
|
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.
|
|
*/
|
|
|
|
#include "terrain_2d_library.h"
|
|
|
|
#include "../world/terrain_2d_chunk.h"
|
|
|
|
#include "terrain_2d_material_cache.h"
|
|
|
|
#ifdef PROPS_PRESENT
|
|
#include "../../props/props/prop_data.h"
|
|
#endif
|
|
|
|
#include "scene/resources/packed_scene.h"
|
|
|
|
#include "../defines.h"
|
|
|
|
#if VERSION_MAJOR > 3
|
|
|
|
#define TMCGDVIRTUAL1(m_class, m_name, m_type1) \
|
|
bool m_class::_gdvirtual_##m_name##_call(m_type1 arg1) { \
|
|
ScriptInstance *script_instance = ((Object *)(this))->get_script_instance(); \
|
|
if (script_instance) { \
|
|
Callable::CallError ce; \
|
|
Variant vargs[1] = { Variant(arg1) }; \
|
|
const Variant *vargptrs[1] = { &vargs[0] }; \
|
|
\
|
|
script_instance->call(_gdvirtual_##m_name##_sn, (const Variant **)vargptrs, 1, ce); \
|
|
if (ce.error == Callable::CallError::CALL_OK) { \
|
|
return true; \
|
|
} \
|
|
} \
|
|
if (unlikely(_get_extension() && !_gdvirtual_##m_name##_initialized)) { \
|
|
_gdvirtual_##m_name = (_get_extension() && _get_extension()->get_virtual) ? _get_extension()->get_virtual(_get_extension()->class_userdata, #m_name) : (GDNativeExtensionClassCallVirtual) nullptr; \
|
|
_gdvirtual_##m_name##_initialized = true; \
|
|
} \
|
|
if (_gdvirtual_##m_name) { \
|
|
PtrToArg<m_type1>::EncodeT argval1 = arg1; \
|
|
const GDNativeTypePtr argptrs[1] = { &argval1 }; \
|
|
\
|
|
_gdvirtual_##m_name(_get_extension_instance(), (const GDNativeTypePtr *)argptrs, nullptr); \
|
|
\
|
|
return true; \
|
|
} \
|
|
\
|
|
return false; \
|
|
} \
|
|
bool m_class::_gdvirtual_##m_name##_overridden() const { \
|
|
ScriptInstance *script_instance = ((Object *)(this))->get_script_instance(); \
|
|
if (script_instance) { \
|
|
return script_instance->has_method(_gdvirtual_##m_name##_sn); \
|
|
} \
|
|
if (unlikely(_get_extension() && !_gdvirtual_##m_name##_initialized)) { \
|
|
_gdvirtual_##m_name = (_get_extension() && _get_extension()->get_virtual) ? _get_extension()->get_virtual(_get_extension()->class_userdata, #m_name) : (GDNativeExtensionClassCallVirtual) nullptr; \
|
|
_gdvirtual_##m_name##_initialized = true; \
|
|
} \
|
|
if (_gdvirtual_##m_name) { \
|
|
return true; \
|
|
} \
|
|
return false; \
|
|
} \
|
|
\
|
|
MethodInfo m_class::_gdvirtual_##m_name##_get_method_info() { \
|
|
MethodInfo method_info; \
|
|
method_info.name = #m_name; \
|
|
method_info.flags = METHOD_FLAG_VIRTUAL; \
|
|
method_info.arguments.push_back(GetTypeInfo<m_type1>::get_class_info()); \
|
|
\
|
|
return method_info; \
|
|
}
|
|
|
|
#define TMCGDVIRTUAL1R(m_class, m_ret, m_name, m_type1) \
|
|
bool m_class::_gdvirtual_##m_name##_call(m_type1 arg1, m_ret &r_ret) { \
|
|
ScriptInstance *script_instance = ((Object *)(this))->get_script_instance(); \
|
|
if (script_instance) { \
|
|
Callable::CallError ce; \
|
|
Variant vargs[1] = { Variant(arg1) }; \
|
|
const Variant *vargptrs[1] = { &vargs[0] }; \
|
|
\
|
|
Variant ret = script_instance->call(_gdvirtual_##m_name##_sn, (const Variant **)vargptrs, 1, ce); \
|
|
if (ce.error == Callable::CallError::CALL_OK) { \
|
|
r_ret = VariantCaster<m_ret>::cast(ret); \
|
|
return true; \
|
|
} \
|
|
} \
|
|
if (unlikely(_get_extension() && !_gdvirtual_##m_name##_initialized)) { \
|
|
_gdvirtual_##m_name = (_get_extension() && _get_extension()->get_virtual) ? _get_extension()->get_virtual(_get_extension()->class_userdata, #m_name) : (GDNativeExtensionClassCallVirtual) nullptr; \
|
|
_gdvirtual_##m_name##_initialized = true; \
|
|
} \
|
|
if (_gdvirtual_##m_name) { \
|
|
PtrToArg<m_type1>::EncodeT argval1 = arg1; \
|
|
const GDNativeTypePtr argptrs[1] = { &argval1 }; \
|
|
\
|
|
PtrToArg<m_ret>::EncodeT ret; \
|
|
_gdvirtual_##m_name(_get_extension_instance(), (const GDNativeTypePtr *)argptrs, &ret); \
|
|
r_ret = (m_ret)ret; \
|
|
return true; \
|
|
} \
|
|
\
|
|
return false; \
|
|
} \
|
|
bool m_class::_gdvirtual_##m_name##_overridden() const { \
|
|
ScriptInstance *script_instance = ((Object *)(this))->get_script_instance(); \
|
|
if (script_instance) { \
|
|
return script_instance->has_method(_gdvirtual_##m_name##_sn); \
|
|
} \
|
|
if (unlikely(_get_extension() && !_gdvirtual_##m_name##_initialized)) { \
|
|
_gdvirtual_##m_name = (_get_extension() && _get_extension()->get_virtual) ? _get_extension()->get_virtual(_get_extension()->class_userdata, #m_name) : (GDNativeExtensionClassCallVirtual) nullptr; \
|
|
_gdvirtual_##m_name##_initialized = true; \
|
|
} \
|
|
if (_gdvirtual_##m_name) { \
|
|
return true; \
|
|
} \
|
|
return false; \
|
|
} \
|
|
\
|
|
MethodInfo m_class::_gdvirtual_##m_name##_get_method_info() { \
|
|
MethodInfo method_info; \
|
|
method_info.name = #m_name; \
|
|
method_info.flags = METHOD_FLAG_VIRTUAL; \
|
|
method_info.return_val = GetTypeInfo<m_ret>::get_class_info(); \
|
|
method_info.arguments.push_back(GetTypeInfo<m_type1>::get_class_info()); \
|
|
\
|
|
return method_info; \
|
|
}
|
|
|
|
#endif
|
|
|
|
bool Terrain2DLibrary::get_initialized() const {
|
|
return _initialized;
|
|
}
|
|
void Terrain2DLibrary::set_initialized(const bool value) {
|
|
_initialized = value;
|
|
}
|
|
|
|
bool Terrain2DLibrary::supports_caching() {
|
|
RETURN_CALLD(bool, false, _supports_caching);
|
|
}
|
|
bool Terrain2DLibrary::_supports_caching() {
|
|
return false;
|
|
}
|
|
|
|
//Materials
|
|
Ref<Material> Terrain2DLibrary::material_get(const int index) {
|
|
ERR_FAIL_INDEX_V(index, _materials.size(), Ref<Material>());
|
|
|
|
return _materials[index];
|
|
}
|
|
|
|
Ref<Material> Terrain2DLibrary::material_lod_get(const int index) {
|
|
ERR_FAIL_COND_V_MSG(_materials.size() == 0, Ref<Material>(), "Error! You should to add at least one material to Terrain2DLibrary! (By default it will use up to 5. See VoxelWorldDefault::_create_chunk().)");
|
|
|
|
if (index < 0) {
|
|
return _materials[0];
|
|
}
|
|
|
|
if (index >= _materials.size()) {
|
|
return _materials[_materials.size() - 1];
|
|
}
|
|
|
|
return _materials[index];
|
|
}
|
|
|
|
void Terrain2DLibrary::material_cache_get_key(Ref<Terrain2DChunk> chunk) {
|
|
CALL(_material_cache_get_key, chunk);
|
|
}
|
|
|
|
void Terrain2DLibrary::_material_cache_get_key(Ref<Terrain2DChunk> chunk) {
|
|
}
|
|
|
|
Ref<Terrain2DMaterialCache> Terrain2DLibrary::material_cache_get(const int key) {
|
|
RETURN_CALLP(Ref<Terrain2DMaterialCache>, _material_cache_get, key);
|
|
}
|
|
|
|
Ref<Terrain2DMaterialCache> Terrain2DLibrary::_material_cache_get(const int key) {
|
|
ERR_FAIL_V_MSG(Ref<Terrain2DMaterialCache>(), "This Terrain2DLibrary doesn't support cached materials!");
|
|
}
|
|
|
|
void Terrain2DLibrary::material_cache_unref(const int key) {
|
|
CALL(_material_cache_unref, key);
|
|
}
|
|
void Terrain2DLibrary::_material_cache_unref(const int key) {
|
|
}
|
|
|
|
void Terrain2DLibrary::material_add(const Ref<Material> &value) {
|
|
ERR_FAIL_COND(!value.is_valid());
|
|
|
|
_materials.push_back(value);
|
|
}
|
|
|
|
void Terrain2DLibrary::material_set(const int index, const Ref<Material> &value) {
|
|
ERR_FAIL_INDEX(index, _materials.size());
|
|
|
|
_materials.set(index, value);
|
|
}
|
|
|
|
void Terrain2DLibrary::material_remove(const int index) {
|
|
_materials.VREMOVE(index);
|
|
}
|
|
|
|
int Terrain2DLibrary::material_get_num() const {
|
|
return _materials.size();
|
|
}
|
|
|
|
void Terrain2DLibrary::materials_clear() {
|
|
_materials.clear();
|
|
}
|
|
|
|
Vector<Variant> Terrain2DLibrary::materials_get() {
|
|
VARIANT_ARRAY_GET(_materials);
|
|
}
|
|
|
|
void Terrain2DLibrary::materials_set(const Vector<Variant> &materials) {
|
|
_materials.clear();
|
|
|
|
for (int i = 0; i < materials.size(); i++) {
|
|
Ref<Material> material = Ref<Material>(materials[i]);
|
|
|
|
_materials.push_back(material);
|
|
}
|
|
}
|
|
|
|
//Liquid Materials
|
|
Ref<Material> Terrain2DLibrary::liquid_material_get(const int index) {
|
|
ERR_FAIL_INDEX_V(index, _liquid_materials.size(), Ref<Material>());
|
|
|
|
return _liquid_materials[index];
|
|
}
|
|
|
|
Ref<Material> Terrain2DLibrary::liquid_material_lod_get(const int index) {
|
|
ERR_FAIL_COND_V_MSG(_liquid_materials.size() == 0, Ref<Material>(), "Error! You should to add at least one liquid to Terrain2DLibrary! (By default it will use up to 5. See VoxelWorldDefault::_create_chunk().)");
|
|
|
|
if (index < 0) {
|
|
return _liquid_materials[0];
|
|
}
|
|
|
|
if (index >= _liquid_materials.size()) {
|
|
return _liquid_materials[_liquid_materials.size() - 1];
|
|
}
|
|
|
|
return _liquid_materials[index];
|
|
}
|
|
|
|
void Terrain2DLibrary::liquid_material_cache_get_key(Ref<Terrain2DChunk> chunk) {
|
|
CALL(_liquid_material_cache_get_key, chunk);
|
|
}
|
|
|
|
void Terrain2DLibrary::_liquid_material_cache_get_key(Ref<Terrain2DChunk> chunk) {
|
|
}
|
|
|
|
Ref<Terrain2DMaterialCache> Terrain2DLibrary::liquid_material_cache_get(const int key) {
|
|
RETURN_CALLP(Ref<Terrain2DMaterialCache>, _liquid_material_cache_get, key);
|
|
}
|
|
|
|
Ref<Terrain2DMaterialCache> Terrain2DLibrary::_liquid_material_cache_get(const int key) {
|
|
ERR_FAIL_V_MSG(Ref<Terrain2DMaterialCache>(), "This Terrain2DLibrary doesn't support cached liquid materials!");
|
|
}
|
|
|
|
void Terrain2DLibrary::liquid_material_cache_unref(const int key) {
|
|
CALL(_liquid_material_cache_unref, key);
|
|
}
|
|
void Terrain2DLibrary::_liquid_material_cache_unref(const int key) {
|
|
}
|
|
|
|
void Terrain2DLibrary::liquid_material_add(const Ref<Material> &value) {
|
|
ERR_FAIL_COND(!value.is_valid());
|
|
|
|
_liquid_materials.push_back(value);
|
|
}
|
|
|
|
void Terrain2DLibrary::liquid_material_set(const int index, const Ref<Material> &value) {
|
|
ERR_FAIL_INDEX(index, _liquid_materials.size());
|
|
|
|
_liquid_materials.set(index, value);
|
|
}
|
|
|
|
void Terrain2DLibrary::liquid_material_remove(const int index) {
|
|
_liquid_materials.VREMOVE(index);
|
|
}
|
|
|
|
int Terrain2DLibrary::liquid_material_get_num() const {
|
|
return _liquid_materials.size();
|
|
}
|
|
|
|
void Terrain2DLibrary::liquid_materials_clear() {
|
|
_liquid_materials.clear();
|
|
}
|
|
|
|
Vector<Variant> Terrain2DLibrary::liquid_materials_get() {
|
|
VARIANT_ARRAY_GET(_liquid_materials);
|
|
}
|
|
|
|
void Terrain2DLibrary::liquid_materials_set(const Vector<Variant> &materials) {
|
|
_liquid_materials.clear();
|
|
|
|
for (int i = 0; i < materials.size(); i++) {
|
|
Ref<Material> material = Ref<Material>(materials[i]);
|
|
|
|
_liquid_materials.push_back(material);
|
|
}
|
|
}
|
|
|
|
//Prop Materials
|
|
Ref<Material> Terrain2DLibrary::prop_material_get(const int index) {
|
|
ERR_FAIL_INDEX_V(index, _prop_materials.size(), Ref<Material>());
|
|
|
|
return _prop_materials[index];
|
|
}
|
|
|
|
Ref<Material> Terrain2DLibrary::prop_material_lod_get(const int index) {
|
|
ERR_FAIL_COND_V_MSG(_prop_materials.size() == 0, Ref<Material>(), "Error! You should to add at least one prop material to Terrain2DLibrary! (By default it will use up to 5. See VoxelWorldDefault::_create_chunk().)");
|
|
|
|
if (index < 0) {
|
|
return _prop_materials[0];
|
|
}
|
|
|
|
if (index >= _prop_materials.size()) {
|
|
return _prop_materials[_prop_materials.size() - 1];
|
|
}
|
|
|
|
return _prop_materials[index];
|
|
}
|
|
|
|
void Terrain2DLibrary::prop_material_cache_get_key(Ref<Terrain2DChunk> chunk) {
|
|
CALL(_prop_material_cache_get_key, chunk);
|
|
}
|
|
|
|
void Terrain2DLibrary::_prop_material_cache_get_key(Ref<Terrain2DChunk> chunk) {
|
|
}
|
|
|
|
Ref<Terrain2DMaterialCache> Terrain2DLibrary::prop_material_cache_get(const int key) {
|
|
RETURN_CALLP(Ref<Terrain2DMaterialCache>, _prop_material_cache_get, key);
|
|
}
|
|
|
|
Ref<Terrain2DMaterialCache> Terrain2DLibrary::_prop_material_cache_get(const int key) {
|
|
ERR_FAIL_V_MSG(Ref<Terrain2DMaterialCache>(), "This Terrain2DLibrary doesn't support cached prop materials!");
|
|
}
|
|
|
|
void Terrain2DLibrary::prop_material_cache_unref(const int key) {
|
|
CALL(_prop_material_cache_unref, key);
|
|
}
|
|
void Terrain2DLibrary::_prop_material_cache_unref(const int key) {
|
|
}
|
|
|
|
void Terrain2DLibrary::prop_material_add(const Ref<Material> &value) {
|
|
ERR_FAIL_COND(!value.is_valid());
|
|
|
|
_prop_materials.push_back(value);
|
|
}
|
|
|
|
void Terrain2DLibrary::prop_material_set(const int index, const Ref<Material> &value) {
|
|
ERR_FAIL_INDEX(index, _prop_materials.size());
|
|
|
|
_prop_materials.set(index, value);
|
|
}
|
|
|
|
void Terrain2DLibrary::prop_material_remove(const int index) {
|
|
_prop_materials.VREMOVE(index);
|
|
}
|
|
|
|
int Terrain2DLibrary::prop_material_get_num() const {
|
|
return _prop_materials.size();
|
|
}
|
|
|
|
void Terrain2DLibrary::prop_materials_clear() {
|
|
_prop_materials.clear();
|
|
}
|
|
|
|
Vector<Variant> Terrain2DLibrary::prop_materials_get() {
|
|
VARIANT_ARRAY_GET(_prop_materials);
|
|
}
|
|
|
|
void Terrain2DLibrary::prop_materials_set(const Vector<Variant> &materials) {
|
|
VARIANT_ARRAY_SET(materials, _prop_materials, Material);
|
|
}
|
|
|
|
//Surfaces
|
|
Ref<Terrain2DSurface> Terrain2DLibrary::terra_surface_get(const int index) {
|
|
return Ref<Terrain2DSurface>();
|
|
}
|
|
void Terrain2DLibrary::terra_surface_add(Ref<Terrain2DSurface> value) {
|
|
}
|
|
void Terrain2DLibrary::terra_surface_set(int index, Ref<Terrain2DSurface> value) {
|
|
}
|
|
void Terrain2DLibrary::terra_surface_remove(const int index) {
|
|
}
|
|
int Terrain2DLibrary::terra_surface_get_num() const {
|
|
return 0;
|
|
}
|
|
void Terrain2DLibrary::terra_surfaces_clear() {
|
|
}
|
|
|
|
Ref<PackedScene> Terrain2DLibrary::scene_get(const int id) {
|
|
return Ref<PackedScene>();
|
|
}
|
|
void Terrain2DLibrary::scene_add(Ref<PackedScene> value) {
|
|
}
|
|
void Terrain2DLibrary::scene_set(int id, Ref<PackedScene> value) {
|
|
}
|
|
void Terrain2DLibrary::scene_remove(const int id) {
|
|
}
|
|
int Terrain2DLibrary::scene_get_num() const {
|
|
return 0;
|
|
}
|
|
void Terrain2DLibrary::scenes_clear() {
|
|
}
|
|
|
|
#ifdef PROPS_PRESENT
|
|
Ref<PropData> Terrain2DLibrary::prop_get(const int id) {
|
|
return Ref<PropData>();
|
|
}
|
|
void Terrain2DLibrary::prop_add(Ref<PropData> value) {
|
|
}
|
|
bool Terrain2DLibrary::prop_has(const Ref<PropData> &value) const {
|
|
return false;
|
|
}
|
|
void Terrain2DLibrary::prop_set(int id, Ref<PropData> value) {
|
|
}
|
|
void Terrain2DLibrary::prop_remove(const int id) {
|
|
}
|
|
int Terrain2DLibrary::prop_get_num() const {
|
|
return 0;
|
|
}
|
|
void Terrain2DLibrary::props_clear() {
|
|
}
|
|
|
|
Rect2 Terrain2DLibrary::get_prop_uv_rect(const Ref<Texture> &texture) {
|
|
return Rect2(0, 0, 1, 1);
|
|
}
|
|
#endif
|
|
|
|
//Rects
|
|
void Terrain2DLibrary::refresh_rects() {
|
|
_initialized = true;
|
|
}
|
|
|
|
void Terrain2DLibrary::setup_material_albedo(int material_index, Ref<Texture> texture) {
|
|
if (has_method("_setup_material_albedo")) {
|
|
CALL(_setup_material_albedo, material_index, texture);
|
|
}
|
|
}
|
|
|
|
Terrain2DLibrary::Terrain2DLibrary() {
|
|
_initialized = false;
|
|
}
|
|
|
|
Terrain2DLibrary::~Terrain2DLibrary() {
|
|
_materials.clear();
|
|
_liquid_materials.clear();
|
|
_prop_materials.clear();
|
|
}
|
|
|
|
#if VERSION_MAJOR >= 4
|
|
TMCGDVIRTUAL1(Terrain2DLibrary, _material_cache_get_key, Ref<Terrain2DChunk>);
|
|
TMCGDVIRTUAL1R(Terrain2DLibrary, Ref<Terrain2DMaterialCache>, _material_cache_get, int);
|
|
TMCGDVIRTUAL1(Terrain2DLibrary, _material_cache_unref, int);
|
|
|
|
TMCGDVIRTUAL1(Terrain2DLibrary, _liquid_material_cache_get_key, Ref<Terrain2DChunk>);
|
|
TMCGDVIRTUAL1R(Terrain2DLibrary, Ref<Terrain2DMaterialCache>, _liquid_material_cache_get, int);
|
|
TMCGDVIRTUAL1(Terrain2DLibrary, _liquid_material_cache_unref, int);
|
|
|
|
TMCGDVIRTUAL1(Terrain2DLibrary, _prop_material_cache_get_key, Ref<Terrain2DChunk>);
|
|
TMCGDVIRTUAL1R(Terrain2DLibrary, Ref<Terrain2DMaterialCache>, _prop_material_cache_get, int);
|
|
TMCGDVIRTUAL1(Terrain2DLibrary, _prop_material_cache_unref, int);
|
|
#endif
|
|
|
|
void Terrain2DLibrary::_bind_methods() {
|
|
ClassDB::bind_method(D_METHOD("get_initialized"), &Terrain2DLibrary::get_initialized);
|
|
ClassDB::bind_method(D_METHOD("set_initialized", "value"), &Terrain2DLibrary::set_initialized);
|
|
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "initialized", PROPERTY_HINT_NONE, "", 0), "set_initialized", "get_initialized");
|
|
|
|
#if VERSION_MAJOR < 4
|
|
BIND_VMETHOD(MethodInfo(PropertyInfo(Variant::BOOL, "ret"), "_supports_caching"));
|
|
#else
|
|
GDVIRTUAL_BIND(_supports_caching);
|
|
#endif
|
|
|
|
ClassDB::bind_method(D_METHOD("_supports_caching"), &Terrain2DLibrary::_supports_caching);
|
|
ClassDB::bind_method(D_METHOD("supports_caching"), &Terrain2DLibrary::supports_caching);
|
|
|
|
#if VERSION_MAJOR < 4
|
|
BIND_VMETHOD(MethodInfo("_setup_material_albedo", PropertyInfo(Variant::INT, "material_index"), PropertyInfo(Variant::OBJECT, "texture", PROPERTY_HINT_RESOURCE_TYPE, "Texture")));
|
|
#else
|
|
GDVIRTUAL_BIND(_setup_material_albedo, "material_index", "texture");
|
|
#endif
|
|
|
|
#if VERSION_MAJOR < 4
|
|
BIND_VMETHOD(MethodInfo("_material_cache_get_key", PropertyInfo(Variant::OBJECT, "chunk", PROPERTY_HINT_RESOURCE_TYPE, "Terrain2DChunk")));
|
|
BIND_VMETHOD(MethodInfo(PropertyInfo(Variant::OBJECT, "ret", PROPERTY_HINT_RESOURCE_TYPE, "Terrain2DMaterialCache"), "_material_cache_get", PropertyInfo(Variant::INT, "key")));
|
|
BIND_VMETHOD(MethodInfo("_material_cache_unref", PropertyInfo(Variant::INT, "key")));
|
|
#else
|
|
GDVIRTUAL_BIND(_material_cache_get_key, "chunk", "texture");
|
|
GDVIRTUAL_BIND(_material_cache_get, "key");
|
|
GDVIRTUAL_BIND(_material_cache_unref, "key");
|
|
#endif
|
|
|
|
ClassDB::bind_method(D_METHOD("material_get", "index"), &Terrain2DLibrary::material_get);
|
|
ClassDB::bind_method(D_METHOD("material_lod_get", "index"), &Terrain2DLibrary::material_lod_get);
|
|
|
|
ClassDB::bind_method(D_METHOD("material_cache_get_key", "chunk"), &Terrain2DLibrary::material_cache_get_key);
|
|
ClassDB::bind_method(D_METHOD("_material_cache_get_key", "chunk"), &Terrain2DLibrary::_material_cache_get_key);
|
|
ClassDB::bind_method(D_METHOD("material_cache_get", "key"), &Terrain2DLibrary::material_cache_get);
|
|
ClassDB::bind_method(D_METHOD("_material_cache_get", "key"), &Terrain2DLibrary::_material_cache_get);
|
|
ClassDB::bind_method(D_METHOD("material_cache_unref", "key"), &Terrain2DLibrary::material_cache_unref);
|
|
ClassDB::bind_method(D_METHOD("_material_cache_unref", "key"), &Terrain2DLibrary::_material_cache_unref);
|
|
|
|
ClassDB::bind_method(D_METHOD("material_add", "value"), &Terrain2DLibrary::material_add);
|
|
ClassDB::bind_method(D_METHOD("material_set", "index", "value"), &Terrain2DLibrary::material_set);
|
|
ClassDB::bind_method(D_METHOD("material_remove", "index"), &Terrain2DLibrary::material_remove);
|
|
ClassDB::bind_method(D_METHOD("material_get_num"), &Terrain2DLibrary::material_get_num);
|
|
ClassDB::bind_method(D_METHOD("materials_clear"), &Terrain2DLibrary::materials_clear);
|
|
|
|
ClassDB::bind_method(D_METHOD("materials_get"), &Terrain2DLibrary::materials_get);
|
|
ClassDB::bind_method(D_METHOD("materials_set"), &Terrain2DLibrary::materials_set);
|
|
ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "materials", PROPERTY_HINT_NONE, "17/17:Material", PROPERTY_USAGE_DEFAULT, "Material"), "materials_set", "materials_get");
|
|
|
|
#if VERSION_MAJOR < 4
|
|
BIND_VMETHOD(MethodInfo("_liquid_material_cache_get_key", PropertyInfo(Variant::OBJECT, "chunk", PROPERTY_HINT_RESOURCE_TYPE, "Terrain2DChunk")));
|
|
BIND_VMETHOD(MethodInfo(PropertyInfo(Variant::OBJECT, "ret", PROPERTY_HINT_RESOURCE_TYPE, "Terrain2DMaterialCache"), "_liquid_material_cache_get", PropertyInfo(Variant::INT, "key")));
|
|
BIND_VMETHOD(MethodInfo("_liquid_material_cache_unref", PropertyInfo(Variant::INT, "key")));
|
|
#else
|
|
GDVIRTUAL_BIND(_liquid_material_cache_get_key, "chunk", "texture");
|
|
GDVIRTUAL_BIND(_liquid_material_cache_get, "key");
|
|
GDVIRTUAL_BIND(_liquid_material_cache_unref, "key");
|
|
#endif
|
|
|
|
ClassDB::bind_method(D_METHOD("liquid_material_get", "index"), &Terrain2DLibrary::liquid_material_get);
|
|
ClassDB::bind_method(D_METHOD("liquid_material_lod_get", "index"), &Terrain2DLibrary::liquid_material_lod_get);
|
|
|
|
ClassDB::bind_method(D_METHOD("liquid_material_cache_get_key", "chunk"), &Terrain2DLibrary::liquid_material_cache_get_key);
|
|
ClassDB::bind_method(D_METHOD("_liquid_material_cache_get_key", "chunk"), &Terrain2DLibrary::_liquid_material_cache_get_key);
|
|
ClassDB::bind_method(D_METHOD("liquid_material_cache_get", "key"), &Terrain2DLibrary::liquid_material_cache_get);
|
|
ClassDB::bind_method(D_METHOD("_liquid_material_cache_get", "key"), &Terrain2DLibrary::_liquid_material_cache_get);
|
|
ClassDB::bind_method(D_METHOD("liquid_material_cache_unref", "key"), &Terrain2DLibrary::liquid_material_cache_unref);
|
|
ClassDB::bind_method(D_METHOD("_liquid_material_cache_unref", "key"), &Terrain2DLibrary::_liquid_material_cache_unref);
|
|
|
|
ClassDB::bind_method(D_METHOD("liquid_material_add", "value"), &Terrain2DLibrary::liquid_material_add);
|
|
ClassDB::bind_method(D_METHOD("liquid_material_set", "index", "value"), &Terrain2DLibrary::liquid_material_set);
|
|
ClassDB::bind_method(D_METHOD("liquid_material_remove", "index"), &Terrain2DLibrary::liquid_material_remove);
|
|
ClassDB::bind_method(D_METHOD("liquid_material_get_num"), &Terrain2DLibrary::liquid_material_get_num);
|
|
ClassDB::bind_method(D_METHOD("liquid_materials_clear"), &Terrain2DLibrary::liquid_materials_clear);
|
|
|
|
ClassDB::bind_method(D_METHOD("liquid_materials_get"), &Terrain2DLibrary::liquid_materials_get);
|
|
ClassDB::bind_method(D_METHOD("liquid_materials_set"), &Terrain2DLibrary::liquid_materials_set);
|
|
ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "liquid_materials", PROPERTY_HINT_NONE, "17/17:Material", PROPERTY_USAGE_DEFAULT, "Material"), "liquid_materials_set", "liquid_materials_get");
|
|
|
|
#if VERSION_MAJOR < 4
|
|
BIND_VMETHOD(MethodInfo("_prop_material_cache_get_key", PropertyInfo(Variant::OBJECT, "chunk", PROPERTY_HINT_RESOURCE_TYPE, "Terrain2DChunk")));
|
|
BIND_VMETHOD(MethodInfo(PropertyInfo(Variant::OBJECT, "ret", PROPERTY_HINT_RESOURCE_TYPE, "Terrain2DMaterialCache"), "_prop_material_cache_get", PropertyInfo(Variant::INT, "key")));
|
|
BIND_VMETHOD(MethodInfo("_prop_material_cache_unref", PropertyInfo(Variant::INT, "key")));
|
|
#else
|
|
GDVIRTUAL_BIND(_prop_material_cache_get_key, "chunk", "texture");
|
|
GDVIRTUAL_BIND(_prop_material_cache_get, "key");
|
|
GDVIRTUAL_BIND(_prop_material_cache_unref, "key");
|
|
#endif
|
|
|
|
ClassDB::bind_method(D_METHOD("prop_material_get", "index"), &Terrain2DLibrary::prop_material_get);
|
|
ClassDB::bind_method(D_METHOD("prop_material_lod_get", "index"), &Terrain2DLibrary::prop_material_lod_get);
|
|
|
|
ClassDB::bind_method(D_METHOD("prop_material_cache_get_key", "chunk"), &Terrain2DLibrary::prop_material_cache_get_key);
|
|
ClassDB::bind_method(D_METHOD("_prop_material_cache_get_key", "chunk"), &Terrain2DLibrary::_prop_material_cache_get_key);
|
|
ClassDB::bind_method(D_METHOD("prop_material_cache_get", "key"), &Terrain2DLibrary::prop_material_cache_get);
|
|
ClassDB::bind_method(D_METHOD("_prop_material_cache_get", "key"), &Terrain2DLibrary::_prop_material_cache_get);
|
|
ClassDB::bind_method(D_METHOD("prop_material_cache_unref", "key"), &Terrain2DLibrary::prop_material_cache_unref);
|
|
ClassDB::bind_method(D_METHOD("_prop_material_cache_unref", "key"), &Terrain2DLibrary::_prop_material_cache_unref);
|
|
|
|
ClassDB::bind_method(D_METHOD("prop_material_add", "value"), &Terrain2DLibrary::prop_material_add);
|
|
ClassDB::bind_method(D_METHOD("prop_material_set", "index", "value"), &Terrain2DLibrary::prop_material_set);
|
|
ClassDB::bind_method(D_METHOD("prop_material_remove", "index"), &Terrain2DLibrary::prop_material_remove);
|
|
ClassDB::bind_method(D_METHOD("prop_material_get_num"), &Terrain2DLibrary::prop_material_get_num);
|
|
ClassDB::bind_method(D_METHOD("prop_materials_clear"), &Terrain2DLibrary::prop_materials_clear);
|
|
|
|
ClassDB::bind_method(D_METHOD("prop_materials_get"), &Terrain2DLibrary::prop_materials_get);
|
|
ClassDB::bind_method(D_METHOD("prop_materials_set"), &Terrain2DLibrary::prop_materials_set);
|
|
ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "prop_materials", PROPERTY_HINT_NONE, "17/17:Material", PROPERTY_USAGE_DEFAULT, "Material"), "prop_materials_set", "prop_materials_get");
|
|
|
|
ClassDB::bind_method(D_METHOD("terra_surface_get", "index"), &Terrain2DLibrary::terra_surface_get);
|
|
ClassDB::bind_method(D_METHOD("terra_surface_add", "value"), &Terrain2DLibrary::terra_surface_add);
|
|
ClassDB::bind_method(D_METHOD("terra_surface_set", "index", "surface"), &Terrain2DLibrary::terra_surface_set);
|
|
ClassDB::bind_method(D_METHOD("terra_surface_remove", "index"), &Terrain2DLibrary::terra_surface_remove);
|
|
ClassDB::bind_method(D_METHOD("terra_surface_get_num"), &Terrain2DLibrary::terra_surface_get_num);
|
|
ClassDB::bind_method(D_METHOD("terra_surfaces_clear"), &Terrain2DLibrary::terra_surfaces_clear);
|
|
|
|
ClassDB::bind_method(D_METHOD("scene_get", "index"), &Terrain2DLibrary::scene_get);
|
|
ClassDB::bind_method(D_METHOD("scene_add", "value"), &Terrain2DLibrary::scene_add);
|
|
ClassDB::bind_method(D_METHOD("scene_set", "index", "value"), &Terrain2DLibrary::scene_set);
|
|
ClassDB::bind_method(D_METHOD("scene_remove", "index"), &Terrain2DLibrary::scene_remove);
|
|
ClassDB::bind_method(D_METHOD("scene_get_num"), &Terrain2DLibrary::scene_get_num);
|
|
ClassDB::bind_method(D_METHOD("scenes_clear"), &Terrain2DLibrary::scenes_clear);
|
|
|
|
#ifdef PROPS_PRESENT
|
|
ClassDB::bind_method(D_METHOD("prop_get", "id"), &Terrain2DLibrary::prop_get);
|
|
ClassDB::bind_method(D_METHOD("prop_add", "value"), &Terrain2DLibrary::prop_add);
|
|
ClassDB::bind_method(D_METHOD("prop_has", "prop"), &Terrain2DLibrary::prop_has);
|
|
ClassDB::bind_method(D_METHOD("prop_set", "id", "surface"), &Terrain2DLibrary::prop_set);
|
|
ClassDB::bind_method(D_METHOD("prop_remove", "id"), &Terrain2DLibrary::prop_remove);
|
|
ClassDB::bind_method(D_METHOD("prop_get_num"), &Terrain2DLibrary::prop_get_num);
|
|
ClassDB::bind_method(D_METHOD("props_clear"), &Terrain2DLibrary::props_clear);
|
|
#endif
|
|
|
|
ClassDB::bind_method(D_METHOD("refresh_rects"), &Terrain2DLibrary::refresh_rects);
|
|
|
|
ClassDB::bind_method(D_METHOD("setup_material_albedo", "material_index", "texture"), &Terrain2DLibrary::setup_material_albedo);
|
|
|
|
BIND_CONSTANT(MATERIAL_INDEX_TERRAIN);
|
|
BIND_CONSTANT(MATERIAL_INDEX_LIQUID);
|
|
BIND_CONSTANT(MATERIAL_INDEX_PROP);
|
|
}
|