2020-01-31 19:52:37 +01:00
|
|
|
/*
|
|
|
|
Copyright (c) 2019-2020 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.
|
|
|
|
*/
|
|
|
|
|
2019-09-24 02:05:40 +02:00
|
|
|
#include "voxel_structure.h"
|
|
|
|
|
2019-09-25 01:49:35 +02:00
|
|
|
int VoxelStructure::get_chunk_size_x() const {
|
2019-11-18 21:53:33 +01:00
|
|
|
return _chunk_size_x;
|
2019-09-25 01:49:35 +02:00
|
|
|
}
|
|
|
|
void VoxelStructure::set_chunk_size_x(const int value) {
|
2019-11-18 21:53:33 +01:00
|
|
|
_chunk_size_x = value;
|
2019-09-25 01:49:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int VoxelStructure::get_chunk_size_y() const {
|
2019-11-18 21:53:33 +01:00
|
|
|
return _chunk_size_y;
|
2019-09-25 01:49:35 +02:00
|
|
|
}
|
|
|
|
void VoxelStructure::set_chunk_size_y(const int value) {
|
2019-11-18 21:53:33 +01:00
|
|
|
_chunk_size_y = value;
|
2019-09-25 01:49:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int VoxelStructure::get_chunk_size_z() const {
|
2019-11-18 21:53:33 +01:00
|
|
|
return _chunk_size_z;
|
2019-09-25 01:49:35 +02:00
|
|
|
}
|
|
|
|
void VoxelStructure::set_chunk_size_z(const int value) {
|
2019-11-18 21:53:33 +01:00
|
|
|
_chunk_size_z = value;
|
2019-09-25 01:49:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int VoxelStructure::get_world_position_x() const {
|
2019-11-18 21:53:33 +01:00
|
|
|
return _world_position_x;
|
2019-09-25 01:49:35 +02:00
|
|
|
}
|
|
|
|
void VoxelStructure::set_world_position_x(const int value) {
|
2019-11-18 21:53:33 +01:00
|
|
|
_world_position_x = value;
|
2019-09-25 01:49:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int VoxelStructure::get_world_position_y() const {
|
2019-11-18 21:53:33 +01:00
|
|
|
return _world_position_y;
|
2019-09-25 01:49:35 +02:00
|
|
|
}
|
|
|
|
void VoxelStructure::set_world_position_y(const int value) {
|
2019-11-18 21:53:33 +01:00
|
|
|
_world_position_y = value;
|
2019-09-25 01:49:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int VoxelStructure::get_world_position_z() const {
|
2019-11-18 21:53:33 +01:00
|
|
|
return _world_position_z;
|
2019-09-25 01:49:35 +02:00
|
|
|
}
|
|
|
|
void VoxelStructure::set_world_position_z(const int value) {
|
2019-11-18 21:53:33 +01:00
|
|
|
_world_position_z = value;
|
2019-09-25 01:49:35 +02:00
|
|
|
}
|
|
|
|
|
2019-09-25 11:30:07 +02:00
|
|
|
int VoxelStructure::get_voxel(int x, int y, int z, unsigned int channel_index) {
|
2020-02-21 10:42:51 +01:00
|
|
|
return 0;
|
2019-09-25 01:49:35 +02:00
|
|
|
}
|
|
|
|
void VoxelStructure::set_voxel(int value, int x, int y, int z, unsigned int channel_index) {
|
|
|
|
}
|
|
|
|
|
2020-02-21 10:42:51 +01:00
|
|
|
void VoxelStructure::add_from_chunk_bind(Node *chunk) {
|
|
|
|
VoxelChunk *c = Object::cast_to<VoxelChunk>(chunk);
|
2019-09-25 01:49:35 +02:00
|
|
|
|
2020-02-21 10:42:51 +01:00
|
|
|
ERR_FAIL_COND(!ObjectDB::instance_validate(c));
|
2019-09-24 02:05:40 +02:00
|
|
|
|
2020-02-21 10:42:51 +01:00
|
|
|
add_from_chunk(c);
|
2019-09-25 01:49:35 +02:00
|
|
|
}
|
2020-02-21 10:42:51 +01:00
|
|
|
void VoxelStructure::add_from_chunk(VoxelChunk *chunk) {
|
2019-09-25 01:49:35 +02:00
|
|
|
}
|
|
|
|
|
2020-02-21 10:42:51 +01:00
|
|
|
void VoxelStructure::write_to_chunk_bind(Node *chunk) {
|
|
|
|
VoxelChunk *c = Object::cast_to<VoxelChunk>(chunk);
|
2019-09-25 01:49:35 +02:00
|
|
|
|
2020-02-21 10:42:51 +01:00
|
|
|
ERR_FAIL_COND(!ObjectDB::instance_validate(c));
|
2019-09-25 01:49:35 +02:00
|
|
|
|
2020-02-21 10:42:51 +01:00
|
|
|
add_from_chunk(c);
|
2019-09-25 01:49:35 +02:00
|
|
|
}
|
2020-02-21 10:42:51 +01:00
|
|
|
void VoxelStructure::write_to_chunk(VoxelChunk *chunk) {
|
2019-09-25 01:49:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
VoxelStructure::VoxelStructure() {
|
2019-09-24 02:05:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
VoxelStructure::~VoxelStructure() {
|
2020-02-21 10:42:51 +01:00
|
|
|
_data.clear();
|
2019-09-24 02:05:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void VoxelStructure::_bind_methods() {
|
2019-09-25 01:49:35 +02:00
|
|
|
ClassDB::bind_method(D_METHOD("get_chunk_size_x"), &VoxelStructure::get_chunk_size_x);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_chunk_size_x", "value"), &VoxelStructure::set_chunk_size_x);
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "chunk_size_x"), "set_chunk_size_x", "get_chunk_size_x");
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("get_chunk_size_y"), &VoxelStructure::get_chunk_size_y);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_chunk_size_y", "value"), &VoxelStructure::set_chunk_size_y);
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "chunk_size_y"), "set_chunk_size_y", "get_chunk_size_y");
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("get_chunk_size_z"), &VoxelStructure::get_chunk_size_z);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_chunk_size_z", "value"), &VoxelStructure::set_chunk_size_z);
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "chunk_size_z"), "set_chunk_size_z", "get_chunk_size_z");
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("get_world_position_x"), &VoxelStructure::get_world_position_x);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_world_position_x", "value"), &VoxelStructure::set_world_position_x);
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "world_position_x"), "set_world_position_x", "get_world_position_x");
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("get_world_position_y"), &VoxelStructure::get_world_position_y);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_world_position_y", "value"), &VoxelStructure::set_world_position_y);
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "world_position_y"), "set_world_position_y", "get_world_position_y");
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("get_world_position_z"), &VoxelStructure::get_world_position_z);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_world_position_z", "value"), &VoxelStructure::set_world_position_z);
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "world_position_z"), "set_world_position_z", "get_world_position_z");
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("get_voxel", "x", "y", "z", "channel_index"), &VoxelStructure::get_voxel, DEFVAL(0));
|
|
|
|
ClassDB::bind_method(D_METHOD("set_voxel", "value", "x", "y", "z", "channel_index"), &VoxelStructure::set_voxel, DEFVAL(0));
|
|
|
|
|
2020-02-21 10:42:51 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("add_from_chunk", "chunk"), &VoxelStructure::add_from_chunk_bind);
|
|
|
|
ClassDB::bind_method(D_METHOD("write_to_chunk", "chunk"), &VoxelStructure::write_to_chunk_bind);
|
2019-09-24 02:05:40 +02:00
|
|
|
}
|