2020-04-06 13:41:45 +02: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef VOXEL_WORLD_DEFAULT_H
|
|
|
|
#define VOXEL_WORLD_DEFAULT_H
|
|
|
|
|
|
|
|
#include "../voxel_world.h"
|
|
|
|
|
|
|
|
class VoxelWorldDefault : public VoxelWorld {
|
|
|
|
GDCLASS(VoxelWorldDefault, VoxelWorld);
|
|
|
|
|
|
|
|
public:
|
|
|
|
int get_build_flags() const;
|
|
|
|
void set_build_flags(const int flags);
|
|
|
|
|
2020-04-17 22:09:55 +02:00
|
|
|
float get_lod_update_interval() const;
|
|
|
|
void set_lod_update_interval(const float value);
|
|
|
|
|
|
|
|
void update_lods();
|
|
|
|
|
2020-04-06 13:41:45 +02:00
|
|
|
VoxelWorldDefault();
|
|
|
|
~VoxelWorldDefault();
|
|
|
|
|
|
|
|
protected:
|
2020-04-17 22:09:55 +02:00
|
|
|
void _update_lods();
|
2020-04-06 13:41:45 +02:00
|
|
|
Ref<VoxelChunk> _create_chunk(int x, int y, int z, Ref<VoxelChunk> p_chunk);
|
2020-04-06 13:55:22 +02:00
|
|
|
virtual void _chunk_added(Ref<VoxelChunk> chunk);
|
2020-04-16 21:59:30 +02:00
|
|
|
int _get_channel_index_info(const ChannelTypeInfo channel_type);
|
2020-04-06 13:41:45 +02:00
|
|
|
|
2020-04-17 22:09:55 +02:00
|
|
|
virtual void _notification(int p_what);
|
|
|
|
|
2020-04-06 13:41:45 +02:00
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
private:
|
|
|
|
int _build_flags;
|
2020-04-17 22:09:55 +02:00
|
|
|
float _lod_update_timer;
|
|
|
|
float _lod_update_interval;
|
2020-04-06 13:41:45 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|