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
|
|
|
|
|
2021-02-06 11:51:50 +01:00
|
|
|
#include "core/version.h"
|
|
|
|
|
|
|
|
#if VERSION_MAJOR > 3
|
|
|
|
#include "core/io/resource.h"
|
|
|
|
#include "core/templates/hash_map.h"
|
|
|
|
#else
|
|
|
|
#include "core/hash_map.h"
|
2022-02-07 00:15:44 +01:00
|
|
|
#include "core/resource.h"
|
2021-02-06 11:51:50 +01:00
|
|
|
#endif
|
2019-09-24 02:05:40 +02:00
|
|
|
|
2020-05-23 10:34:47 +02:00
|
|
|
#include "../defines.h"
|
2020-04-09 12:34:39 +02:00
|
|
|
|
2020-05-23 10:34:47 +02:00
|
|
|
#include pool_vector_h
|
|
|
|
include_pool_vector
|
2020-03-19 13:08:58 +01:00
|
|
|
#include "core/math/aabb.h"
|
2019-11-18 21:53:33 +01:00
|
|
|
#include "voxel_chunk.h"
|
2019-09-25 01:49:35 +02:00
|
|
|
|
2022-02-07 00:15:44 +01:00
|
|
|
class VoxelStructure : public Resource {
|
2020-04-16 13:40:39 +02:00
|
|
|
GDCLASS(VoxelStructure, Resource);
|
2019-09-24 02:05:40 +02:00
|
|
|
|
|
|
|
public:
|
2020-03-19 13:08:58 +01:00
|
|
|
bool get_use_aabb() const;
|
|
|
|
void set_use_aabb(const bool value);
|
|
|
|
|
2020-04-16 13:40:39 +02:00
|
|
|
AABB get_chunk_aabb() const;
|
|
|
|
void set_chunk_aabb(const AABB &value);
|
2019-09-25 01:49:35 +02:00
|
|
|
|
2020-04-16 13:40:39 +02:00
|
|
|
int get_position_x() const;
|
|
|
|
void set_position_x(const int value);
|
2019-09-25 01:49:35 +02:00
|
|
|
|
2020-04-16 13:40:39 +02:00
|
|
|
int get_position_y() const;
|
|
|
|
void set_position_y(const int value);
|
2019-09-25 01:49:35 +02:00
|
|
|
|
2020-04-16 13:40:39 +02:00
|
|
|
int get_position_z() const;
|
|
|
|
void set_position_z(const int value);
|
2019-09-25 01:49:35 +02:00
|
|
|
|
2020-04-16 13:40:39 +02:00
|
|
|
void set_position(const int x, const int y, const int z);
|
|
|
|
|
|
|
|
void write_to_chunk(Ref<VoxelChunk> chunk);
|
2020-02-23 22:09:45 +01:00
|
|
|
|
2022-02-07 00:15:44 +01:00
|
|
|
#if VERSION_MAJOR >= 4
|
|
|
|
GDVIRTUAL1(_write_to_chunk, Ref<VoxelChunk>);
|
|
|
|
#endif
|
|
|
|
|
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-09-25 01:49:35 +02:00
|
|
|
private:
|
2020-03-19 13:08:58 +01:00
|
|
|
bool _use_aabb;
|
2020-04-16 13:40:39 +02:00
|
|
|
AABB _chunk_aabb;
|
2019-11-18 21:53:33 +01:00
|
|
|
|
2020-04-16 13:40:39 +02:00
|
|
|
int _position_x;
|
|
|
|
int _position_y;
|
|
|
|
int _position_z;
|
2019-09-24 02:05:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|