Updated register_types.h and cpp to the current godot 4 style.

This commit is contained in:
Relintai 2023-01-08 15:55:17 +01:00
parent 7ea59f855a
commit 1374ff1636
2 changed files with 56 additions and 48 deletions

View File

@ -22,6 +22,8 @@ SOFTWARE.
#include "register_types.h" #include "register_types.h"
#include "core/object/class_db.h"
#include "library/voxel_surface.h" #include "library/voxel_surface.h"
#include "library/voxel_surface_simple.h" #include "library/voxel_surface_simple.h"
@ -77,73 +79,77 @@ SOFTWARE.
#include "world/jobs/voxel_job.h" #include "world/jobs/voxel_job.h"
#include "world/jobs/voxel_light_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_prop_job.h"
#include "world/jobs/voxel_terrain_job.h" #include "world/jobs/voxel_terrain_job.h"
#include "world/jobs/voxel_mesher_job_step.h"
void register_voxelman_types() { void initialize_voxelman_module(ModuleInitializationLevel p_level) {
ClassDB::register_class<VoxelMesher>(); if (p_level == MODULE_INITIALIZATION_LEVEL_SCENE) {
ClassDB::register_class<VoxelMesherDefault>(); GDREGISTER_CLASS(VoxelMesher);
GDREGISTER_CLASS(VoxelMesherDefault);
ClassDB::register_class<VoxelMesherMarchingCubes>(); GDREGISTER_CLASS(VoxelMesherMarchingCubes);
ClassDB::register_class<MarchingCubesCellData>(); GDREGISTER_CLASS(MarchingCubesCellData);
ClassDB::register_class<VoxelSurface>(); GDREGISTER_CLASS(VoxelSurface);
ClassDB::register_class<VoxelSurfaceSimple>(); GDREGISTER_CLASS(VoxelSurfaceSimple);
ClassDB::register_class<VoxelLibrary>(); GDREGISTER_CLASS(VoxelLibrary);
ClassDB::register_class<VoxelLibrarySimple>(); GDREGISTER_CLASS(VoxelLibrarySimple);
ClassDB::register_class<VoxelMaterialCache>(); GDREGISTER_CLASS(VoxelMaterialCache);
#ifdef TEXTURE_PACKER_PRESENT #ifdef TEXTURE_PACKER_PRESENT
ClassDB::register_class<VoxelSurfaceMerger>(); GDREGISTER_CLASS(VoxelSurfaceMerger);
ClassDB::register_class<VoxelLibraryMerger>(); GDREGISTER_CLASS(VoxelLibraryMerger);
ClassDB::register_class<VoxelLibraryMergerPCM>(); GDREGISTER_CLASS(VoxelLibraryMergerPCM);
ClassDB::register_class<VoxelMaterialCachePCM>(); GDREGISTER_CLASS(VoxelMaterialCachePCM);
#endif #endif
ClassDB::register_class<VoxelLight>(); GDREGISTER_CLASS(VoxelLight);
ClassDB::register_class<VoxelLightNode>(); GDREGISTER_CLASS(VoxelLightNode);
ClassDB::register_class<VoxelWorld>(); GDREGISTER_CLASS(VoxelWorld);
ClassDB::register_class<VoxelChunk>(); GDREGISTER_CLASS(VoxelChunk);
ClassDB::register_class<VoxelStructure>(); GDREGISTER_CLASS(VoxelStructure);
ClassDB::register_class<BlockVoxelStructure>(); GDREGISTER_CLASS(BlockVoxelStructure);
ClassDB::register_class<EnvironmentData>(); GDREGISTER_CLASS(EnvironmentData);
ClassDB::register_class<VoxelChunkDefault>(); GDREGISTER_CLASS(VoxelChunkDefault);
ClassDB::register_class<VoxelWorldDefault>(); GDREGISTER_CLASS(VoxelWorldDefault);
ClassDB::register_class<VoxelMesherCubic>(); GDREGISTER_CLASS(VoxelMesherCubic);
ClassDB::register_class<VoxelCubePoints>(); GDREGISTER_CLASS(VoxelCubePoints);
ClassDB::register_class<VoxelMesherBlocky>(); GDREGISTER_CLASS(VoxelMesherBlocky);
ClassDB::register_class<VoxelWorldBlocky>(); GDREGISTER_CLASS(VoxelWorldBlocky);
ClassDB::register_class<VoxelChunkBlocky>(); GDREGISTER_CLASS(VoxelChunkBlocky);
ClassDB::register_class<VoxelMesherLiquidBlocky>(); GDREGISTER_CLASS(VoxelMesherLiquidBlocky);
ClassDB::register_class<VoxelWorldMarchingCubes>(); GDREGISTER_CLASS(VoxelWorldMarchingCubes);
ClassDB::register_class<VoxelChunkMarchingCubes>(); GDREGISTER_CLASS(VoxelChunkMarchingCubes);
ClassDB::register_class<VoxelWorldCubic>(); GDREGISTER_CLASS(VoxelWorldCubic);
ClassDB::register_class<VoxelChunkCubic>(); GDREGISTER_CLASS(VoxelChunkCubic);
ClassDB::register_class<VoxelLevelGenerator>(); GDREGISTER_CLASS(VoxelLevelGenerator);
ClassDB::register_class<VoxelLevelGeneratorFlat>(); GDREGISTER_CLASS(VoxelLevelGeneratorFlat);
ClassDB::register_class<WorldArea>(); GDREGISTER_CLASS(WorldArea);
ClassDB::register_class<VoxelJob>(); GDREGISTER_CLASS(VoxelJob);
ClassDB::register_class<VoxelTerrainJob>(); GDREGISTER_CLASS(VoxelTerrainJob);
ClassDB::register_class<VoxelMesherJobStep>(); GDREGISTER_CLASS(VoxelMesherJobStep);
ClassDB::register_class<VoxelLightJob>(); GDREGISTER_CLASS(VoxelLightJob);
ClassDB::register_class<VoxelPropJob>(); GDREGISTER_CLASS(VoxelPropJob);
}
#ifdef TOOLS_ENABLED #ifdef TOOLS_ENABLED
if (p_level == MODULE_INITIALIZATION_LEVEL_EDITOR) {
EditorPlugins::add_by_type<VoxelWorldEditorPlugin>(); EditorPlugins::add_by_type<VoxelWorldEditorPlugin>();
}
#endif #endif
} }
void unregister_voxelman_types() { void uninitialize_voxelman_module(ModuleInitializationLevel p_level) {
} }

View File

@ -20,10 +20,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE. SOFTWARE.
*/ */
#ifndef VOXEL_REGISTER_TYPES_H #ifndef VOXELMAN_REGISTER_TYPES_H
#define VOXEL_REGISTER_TYPES_H #define VOXELMAN_REGISTER_TYPES_H
void register_voxelman_types(); #include "modules/register_module_types.h"
void unregister_voxelman_types();
void initialize_voxelman_module(ModuleInitializationLevel p_level);
void uninitialize_voxelman_module(ModuleInitializationLevel p_level);
#endif #endif