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
|
|
|
#ifndef VOXEL_STRUCTURE_H
|
|
|
|
#define VOXEL_STRUCTURE_H
|
|
|
|
|
|
|
|
#include "core/reference.h"
|
|
|
|
|
2019-09-25 01:49:35 +02:00
|
|
|
#include "core/hash_map.h"
|
2019-11-18 21:53:33 +01:00
|
|
|
#include "voxel_chunk.h"
|
2019-09-25 01:49:35 +02:00
|
|
|
|
2019-09-24 02:05:40 +02:00
|
|
|
class VoxelStructure : public Reference {
|
|
|
|
GDCLASS(VoxelStructure, Reference);
|
|
|
|
|
|
|
|
public:
|
2019-09-25 01:49:35 +02:00
|
|
|
int get_chunk_size_x() const;
|
|
|
|
void set_chunk_size_x(const int value);
|
|
|
|
|
|
|
|
int get_chunk_size_y() const;
|
|
|
|
void set_chunk_size_y(const int value);
|
|
|
|
|
|
|
|
int get_chunk_size_z() const;
|
|
|
|
void set_chunk_size_z(const int value);
|
|
|
|
|
|
|
|
int get_world_position_x() const;
|
|
|
|
void set_world_position_x(const int value);
|
|
|
|
|
|
|
|
int get_world_position_y() const;
|
|
|
|
void set_world_position_y(const int value);
|
|
|
|
|
|
|
|
int get_world_position_z() const;
|
|
|
|
void set_world_position_z(const int value);
|
|
|
|
|
2019-11-18 21:53:33 +01:00
|
|
|
VoxelChunk *get_chunk_voxel_pos(int x, int y, int z);
|
2019-09-25 01:49:35 +02:00
|
|
|
|
2019-09-25 11:30:07 +02:00
|
|
|
int get_voxel(int x, int y, int z, unsigned int channel_index = 0);
|
2019-09-25 01:49:35 +02:00
|
|
|
void set_voxel(int value, int x, int y, int z, unsigned int channel_index = 0);
|
|
|
|
void set_voxel_v(int value, Vector3 pos, unsigned int channel_index = 0);
|
|
|
|
|
2019-11-18 22:22:41 +01:00
|
|
|
void add_chunk_bind(Node *chunk, const int x, const int y, const int z);
|
2019-11-18 21:53:33 +01:00
|
|
|
void add_chunk(VoxelChunk *chunk, const int x, const int y, const int z);
|
|
|
|
VoxelChunk *get_chunk(const int x, const int y, const int z);
|
|
|
|
VoxelChunk *remove_chunk(const int x, const int y, const int z);
|
2019-09-25 01:49:35 +02:00
|
|
|
|
2019-11-18 21:53:33 +01:00
|
|
|
VoxelChunk *get_chunk_index(const int index);
|
2019-09-25 01:49:35 +02:00
|
|
|
int get_chunk_count() const;
|
|
|
|
|
|
|
|
void clear_chunks();
|
|
|
|
|
2019-09-24 02:05:40 +02:00
|
|
|
VoxelStructure();
|
|
|
|
~VoxelStructure();
|
2020-01-09 04:29:05 +01:00
|
|
|
|
2019-09-24 02:05:40 +02:00
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2019-11-18 21:53:33 +01:00
|
|
|
struct IntPos {
|
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
int z;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct IntPosHasher {
|
|
|
|
static _FORCE_INLINE_ uint32_t hash(const IntPos &v) {
|
|
|
|
uint32_t hash = hash_djb2_one_32(v.x);
|
|
|
|
hash = hash_djb2_one_32(v.y, hash);
|
|
|
|
return hash_djb2_one_32(v.z, hash);
|
|
|
|
}
|
2019-09-25 01:49:35 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
2019-11-18 21:53:33 +01:00
|
|
|
int _chunk_size_x;
|
|
|
|
int _chunk_size_y;
|
|
|
|
int _chunk_size_z;
|
|
|
|
|
|
|
|
int _world_position_x;
|
|
|
|
int _world_position_y;
|
|
|
|
int _world_position_z;
|
2019-09-25 01:49:35 +02:00
|
|
|
|
2020-01-09 04:29:05 +01:00
|
|
|
HashMap<IntPos, VoxelChunk *, IntPosHasher> _chunks;
|
|
|
|
Vector<VoxelChunk *> _chunks_vector;
|
2019-09-24 02:05:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|