2020-05-23 22:01:38 +02:00
|
|
|
/*
|
2022-01-12 21:53:19 +01:00
|
|
|
Copyright (c) 2020-2022 Péter Magyar
|
2020-05-23 22:01:38 +02:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2020-07-21 21:15:27 +02:00
|
|
|
#ifndef BIOME_TERRARIN_GENERATOR_H
|
|
|
|
#define BIOME_TERRARIN_GENERATOR_H
|
2020-05-23 22:01:38 +02:00
|
|
|
|
2021-02-06 11:51:26 +01:00
|
|
|
#include "core/version.h"
|
|
|
|
|
|
|
|
#if VERSION_MAJOR > 3
|
|
|
|
#include "core/object/reference.h"
|
|
|
|
#else
|
2020-07-21 21:15:27 +02:00
|
|
|
#include "core/reference.h"
|
2021-02-06 11:51:26 +01:00
|
|
|
#endif
|
2020-05-23 22:01:38 +02:00
|
|
|
|
2021-04-19 10:13:14 +02:00
|
|
|
#ifdef VOXELMAN_PRESENT
|
2020-05-23 22:01:38 +02:00
|
|
|
class VoxelChunk;
|
2021-04-19 10:13:14 +02:00
|
|
|
#endif
|
2020-05-23 22:01:38 +02:00
|
|
|
|
2020-07-21 21:15:27 +02:00
|
|
|
class BiomeTerrarinGenerator : public Reference {
|
|
|
|
GDCLASS(BiomeTerrarinGenerator, Reference);
|
2020-05-23 22:01:38 +02:00
|
|
|
|
|
|
|
public:
|
2020-07-21 21:15:27 +02:00
|
|
|
int get_current_seed();
|
|
|
|
void set_current_seed(int value);
|
|
|
|
|
2021-04-19 10:13:14 +02:00
|
|
|
#ifdef VOXELMAN_PRESENT
|
2020-05-23 22:01:38 +02:00
|
|
|
void generate_simple_terrarin(Ref<VoxelChunk> chunk, bool spawn_mobs);
|
2021-04-19 10:13:14 +02:00
|
|
|
#endif
|
2020-05-23 22:01:38 +02:00
|
|
|
|
2020-07-21 21:15:27 +02:00
|
|
|
BiomeTerrarinGenerator();
|
|
|
|
~BiomeTerrarinGenerator();
|
2020-05-23 22:01:38 +02:00
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
2020-07-21 21:15:27 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
int _current_seed;
|
2020-05-23 22:01:38 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|