mirror of
https://github.com/Relintai/voxelman.git
synced 2025-04-03 20:22:46 +02:00
156 lines
4.7 KiB
C++
156 lines
4.7 KiB
C++
/*
|
|
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.
|
|
*/
|
|
|
|
#include "register_types.h"
|
|
|
|
#include "core/object/class_db.h"
|
|
|
|
#include "library/voxel_surface.h"
|
|
#include "library/voxel_surface_simple.h"
|
|
|
|
#include "library/voxel_library.h"
|
|
#include "library/voxel_library_simple.h"
|
|
#include "library/voxel_material_cache.h"
|
|
|
|
#ifdef TEXTURE_PACKER_PRESENT
|
|
#include "library/voxel_library_merger.h"
|
|
#include "library/voxel_library_merger_pcm.h"
|
|
#include "library/voxel_material_cache_pcm.h"
|
|
#include "library/voxel_surface_merger.h"
|
|
#endif
|
|
|
|
#include "data/voxel_light.h"
|
|
#include "meshers/voxel_mesher.h"
|
|
|
|
#include "meshers/marching_cubes/marching_cubes_cell_data.h"
|
|
#include "meshers/marching_cubes/voxel_mesher_marching_cubes.h"
|
|
|
|
#include "world/block_voxel_structure.h"
|
|
#include "world/environment_data.h"
|
|
#include "world/voxel_chunk.h"
|
|
#include "world/voxel_structure.h"
|
|
#include "world/voxel_world.h"
|
|
|
|
#include "world/default/voxel_chunk_default.h"
|
|
#include "world/default/voxel_world_default.h"
|
|
|
|
#include "meshers/cubic/voxel_cube_points.h"
|
|
#include "meshers/cubic/voxel_mesher_cubic.h"
|
|
|
|
#include "level_generator/voxel_level_generator.h"
|
|
#include "level_generator/voxel_level_generator_flat.h"
|
|
|
|
#include "areas/world_area.h"
|
|
|
|
#include "world/voxel_world_editor.h"
|
|
|
|
#include "meshers/blocky/voxel_mesher_blocky.h"
|
|
#include "meshers/blocky/voxel_mesher_liquid_blocky.h"
|
|
|
|
#include "world/blocky/voxel_chunk_blocky.h"
|
|
#include "world/blocky/voxel_world_blocky.h"
|
|
|
|
#include "world/cubic/voxel_chunk_cubic.h"
|
|
#include "world/cubic/voxel_world_cubic.h"
|
|
|
|
#include "world/marching_cubes/voxel_chunk_marching_cubes.h"
|
|
#include "world/marching_cubes/voxel_world_marching_cubes.h"
|
|
|
|
#include "nodes/voxel_light_node.h"
|
|
|
|
#include "world/jobs/voxel_job.h"
|
|
#include "world/jobs/voxel_light_job.h"
|
|
#include "world/jobs/voxel_mesher_job_step.h"
|
|
#include "world/jobs/voxel_prop_job.h"
|
|
#include "world/jobs/voxel_terrain_job.h"
|
|
|
|
void initialize_voxelman_module(ModuleInitializationLevel p_level) {
|
|
if (p_level == MODULE_INITIALIZATION_LEVEL_SCENE) {
|
|
GDREGISTER_CLASS(VoxelMesher);
|
|
GDREGISTER_CLASS(VoxelMesherDefault);
|
|
|
|
GDREGISTER_CLASS(VoxelMesherMarchingCubes);
|
|
GDREGISTER_CLASS(MarchingCubesCellData);
|
|
|
|
GDREGISTER_CLASS(VoxelSurface);
|
|
GDREGISTER_CLASS(VoxelSurfaceSimple);
|
|
|
|
GDREGISTER_CLASS(VoxelLibrary);
|
|
GDREGISTER_CLASS(VoxelLibrarySimple);
|
|
|
|
GDREGISTER_CLASS(VoxelMaterialCache);
|
|
|
|
#ifdef TEXTURE_PACKER_PRESENT
|
|
GDREGISTER_CLASS(VoxelSurfaceMerger);
|
|
GDREGISTER_CLASS(VoxelLibraryMerger);
|
|
GDREGISTER_CLASS(VoxelLibraryMergerPCM);
|
|
GDREGISTER_CLASS(VoxelMaterialCachePCM);
|
|
#endif
|
|
|
|
GDREGISTER_CLASS(VoxelLight);
|
|
GDREGISTER_CLASS(VoxelLightNode);
|
|
|
|
GDREGISTER_CLASS(VoxelWorld);
|
|
GDREGISTER_CLASS(VoxelChunk);
|
|
GDREGISTER_CLASS(VoxelStructure);
|
|
GDREGISTER_CLASS(BlockVoxelStructure);
|
|
GDREGISTER_CLASS(EnvironmentData);
|
|
|
|
GDREGISTER_CLASS(VoxelChunkDefault);
|
|
GDREGISTER_CLASS(VoxelWorldDefault);
|
|
|
|
GDREGISTER_CLASS(VoxelMesherCubic);
|
|
GDREGISTER_CLASS(VoxelCubePoints);
|
|
|
|
GDREGISTER_CLASS(VoxelMesherBlocky);
|
|
GDREGISTER_CLASS(VoxelWorldBlocky);
|
|
GDREGISTER_CLASS(VoxelChunkBlocky);
|
|
GDREGISTER_CLASS(VoxelMesherLiquidBlocky);
|
|
|
|
GDREGISTER_CLASS(VoxelWorldMarchingCubes);
|
|
GDREGISTER_CLASS(VoxelChunkMarchingCubes);
|
|
|
|
GDREGISTER_CLASS(VoxelWorldCubic);
|
|
GDREGISTER_CLASS(VoxelChunkCubic);
|
|
|
|
GDREGISTER_CLASS(VoxelLevelGenerator);
|
|
GDREGISTER_CLASS(VoxelLevelGeneratorFlat);
|
|
|
|
GDREGISTER_CLASS(WorldArea);
|
|
|
|
GDREGISTER_CLASS(VoxelJob);
|
|
GDREGISTER_CLASS(VoxelTerrainJob);
|
|
GDREGISTER_CLASS(VoxelMesherJobStep);
|
|
GDREGISTER_CLASS(VoxelLightJob);
|
|
GDREGISTER_CLASS(VoxelPropJob);
|
|
}
|
|
|
|
#ifdef TOOLS_ENABLED
|
|
if (p_level == MODULE_INITIALIZATION_LEVEL_EDITOR) {
|
|
EditorPlugins::add_by_type<VoxelWorldEditorPlugin>();
|
|
}
|
|
#endif
|
|
}
|
|
|
|
void uninitialize_voxelman_module(ModuleInitializationLevel p_level) {
|
|
}
|