2020-04-03 09:23:01 +02:00
|
|
|
/*
|
2022-01-12 22:15:58 +01:00
|
|
|
Copyright (c) 2019-2022 Péter Magyar
|
2020-04-03 09:23:01 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GROUND_CLUTTER_H
|
|
|
|
#define GROUND_CLUTTER_H
|
|
|
|
|
2021-02-06 11:54:57 +01:00
|
|
|
#include "core/version.h"
|
|
|
|
|
|
|
|
#if VERSION_MAJOR > 3
|
|
|
|
#include "core/io/resource.h"
|
|
|
|
#else
|
2020-04-03 09:23:01 +02:00
|
|
|
#include "core/resource.h"
|
2021-02-06 11:54:57 +01:00
|
|
|
#endif
|
2020-04-03 09:23:01 +02:00
|
|
|
|
2020-04-06 22:53:09 +02:00
|
|
|
#ifdef TEXTURE_PACKER_PRESENT
|
2020-04-03 09:23:01 +02:00
|
|
|
#include "../../texture_packer/texture_packer.h"
|
2020-04-06 22:53:09 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef VOXELMAN_PRESENT
|
2020-04-03 09:23:01 +02:00
|
|
|
#include "../../voxelman/meshers/voxel_mesher.h"
|
2020-04-06 22:53:09 +02:00
|
|
|
#endif
|
2020-04-03 09:23:01 +02:00
|
|
|
|
|
|
|
class VoxelChunk;
|
|
|
|
class VoxelMesher;
|
|
|
|
|
|
|
|
class GroundClutter : public Resource {
|
|
|
|
GDCLASS(GroundClutter, Resource);
|
|
|
|
|
|
|
|
public:
|
2020-04-06 22:53:09 +02:00
|
|
|
#ifdef VOXELMAN_PRESENT
|
2020-04-03 09:23:01 +02:00
|
|
|
bool should_spawn(Ref<VoxelChunk> chunk, int x, int y, int z);
|
|
|
|
|
|
|
|
void add_meshes_to(Ref<VoxelMesher> mesher, Ref<VoxelChunk> chunk, int x, int y, int z);
|
2020-04-06 22:53:09 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef TEXTURE_PACKER_PRESENT
|
2020-04-03 09:23:01 +02:00
|
|
|
void add_textures_to(Ref<TexturePacker> packer);
|
2020-04-06 22:53:09 +02:00
|
|
|
#endif
|
2020-04-03 09:23:01 +02:00
|
|
|
|
|
|
|
GroundClutter();
|
|
|
|
~GroundClutter();
|
|
|
|
|
|
|
|
private:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|