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.
|
|
|
|
*/
|
|
|
|
|
2022-02-08 12:36:37 +01:00
|
|
|
#ifndef VOXEL_LEVEL_GENERATOR_H
|
|
|
|
#define VOXEL_LEVEL_GENERATOR_H
|
2019-09-03 13:52:32 +02:00
|
|
|
|
2021-02-06 11:51:50 +01:00
|
|
|
#include "core/version.h"
|
|
|
|
|
|
|
|
#if VERSION_MAJOR > 3
|
|
|
|
#include "core/io/resource.h"
|
2022-02-08 12:36:37 +01:00
|
|
|
#include "core/object/gdvirtual.gen.inc"
|
|
|
|
#include "core/object/script_language.h"
|
2021-02-06 11:51:50 +01:00
|
|
|
#else
|
2019-09-03 13:52:32 +02:00
|
|
|
#include "core/resource.h"
|
2021-02-06 11:51:50 +01:00
|
|
|
#endif
|
2019-09-03 13:52:32 +02:00
|
|
|
|
2019-11-19 16:33:06 +01:00
|
|
|
class VoxelChunk;
|
2019-11-19 14:42:21 +01:00
|
|
|
|
2022-02-08 12:36:37 +01:00
|
|
|
class VoxelLevelGenerator : public Resource {
|
|
|
|
GDCLASS(VoxelLevelGenerator, Resource);
|
2019-09-03 13:52:32 +02:00
|
|
|
|
|
|
|
public:
|
2020-04-02 21:28:19 +02:00
|
|
|
void generate_chunk(Ref<VoxelChunk> chunk);
|
2019-11-19 14:42:21 +01:00
|
|
|
|
2022-02-08 12:36:37 +01:00
|
|
|
#if VERSION_MAJOR >= 4
|
|
|
|
GDVIRTUAL1(_generate_chunk, Ref<VoxelChunk>);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
VoxelLevelGenerator();
|
|
|
|
~VoxelLevelGenerator();
|
2019-09-03 13:52:32 +02:00
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|