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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "register_types.h"
|
|
|
|
|
2021-02-06 11:54:57 +01:00
|
|
|
#include "core/version.h"
|
|
|
|
|
|
|
|
#include "core/config/engine.h"
|
|
|
|
|
2021-08-16 17:44:28 +02:00
|
|
|
#include "tiled_wall/tiled_wall.h"
|
|
|
|
#include "tiled_wall/tiled_wall_data.h"
|
|
|
|
|
2020-06-27 17:03:29 +02:00
|
|
|
#include "props/prop_data.h"
|
|
|
|
#include "props/prop_data_entry.h"
|
|
|
|
#include "props/prop_data_light.h"
|
|
|
|
#include "props/prop_data_prop.h"
|
|
|
|
#include "props/prop_data_scene.h"
|
2021-08-18 18:06:09 +02:00
|
|
|
#include "props/prop_data_tiled_wall.h"
|
2020-06-27 17:03:29 +02:00
|
|
|
|
2021-08-29 18:55:51 +02:00
|
|
|
#if VERSION_MINOR >= 4
|
|
|
|
#include "props/prop_data_portal.h"
|
|
|
|
#endif
|
|
|
|
|
2020-04-03 09:23:01 +02:00
|
|
|
#include "clutter/ground_clutter.h"
|
|
|
|
#include "clutter/ground_clutter_foliage.h"
|
|
|
|
|
2020-04-03 13:45:55 +02:00
|
|
|
#include "prop_ess_entity.h"
|
2020-04-03 12:00:02 +02:00
|
|
|
#include "prop_instance.h"
|
2021-04-27 16:47:46 +02:00
|
|
|
#include "prop_instance_merger.h"
|
2020-04-03 09:23:01 +02:00
|
|
|
|
2021-04-24 22:01:28 +02:00
|
|
|
#include "prop_instance_job.h"
|
2021-04-26 16:29:53 +02:00
|
|
|
#include "prop_instance_prop_job.h"
|
2020-06-22 02:32:53 +02:00
|
|
|
|
2021-08-09 11:23:40 +02:00
|
|
|
#include "jobs/prop_mesher_job_step.h"
|
2021-08-09 13:13:21 +02:00
|
|
|
#include "jobs/prop_texture_job.h"
|
2021-05-17 22:27:10 +02:00
|
|
|
|
2020-07-06 22:02:22 +02:00
|
|
|
#include "prop_scene_instance.h"
|
|
|
|
|
2021-08-09 15:57:21 +02:00
|
|
|
#include "singleton/prop_cache.h"
|
2020-06-27 22:29:19 +02:00
|
|
|
#include "singleton/prop_utils.h"
|
|
|
|
|
2021-08-11 17:10:41 +02:00
|
|
|
#include "lights/prop_light.h"
|
|
|
|
|
2020-06-27 23:13:26 +02:00
|
|
|
#include "./editor/prop_editor_plugin.h"
|
|
|
|
|
2021-04-24 17:39:51 +02:00
|
|
|
#include "prop_mesher.h"
|
|
|
|
|
2021-08-09 13:13:21 +02:00
|
|
|
#include "material_cache/prop_material_cache.h"
|
|
|
|
|
|
|
|
#ifdef TEXTURE_PACKER_PRESENT
|
|
|
|
#include "material_cache/prop_material_cache_pcm.h"
|
|
|
|
#endif
|
|
|
|
|
2020-06-27 22:29:19 +02:00
|
|
|
static PropUtils *prop_utils = NULL;
|
2021-08-09 15:57:21 +02:00
|
|
|
static PropCache *prop_texture_cache = NULL;
|
2020-06-27 22:29:19 +02:00
|
|
|
|
2023-01-08 15:55:22 +01:00
|
|
|
void initialize_props_module(ModuleInitializationLevel p_level) {
|
|
|
|
if (p_level == MODULE_INITIALIZATION_LEVEL_SCENE) {
|
|
|
|
GDREGISTER_CLASS(TiledWall);
|
|
|
|
GDREGISTER_CLASS(TiledWallData);
|
2021-08-16 17:44:28 +02:00
|
|
|
|
2023-01-08 15:55:22 +01:00
|
|
|
GDREGISTER_CLASS(PropLight);
|
2021-08-11 17:10:41 +02:00
|
|
|
|
2023-01-08 15:55:22 +01:00
|
|
|
GDREGISTER_CLASS(PropData);
|
|
|
|
GDREGISTER_CLASS(PropDataEntry);
|
|
|
|
GDREGISTER_CLASS(PropDataScene);
|
|
|
|
GDREGISTER_CLASS(PropDataLight);
|
|
|
|
GDREGISTER_CLASS(PropDataProp);
|
|
|
|
GDREGISTER_CLASS(PropDataTiledWall);
|
2020-06-27 17:03:29 +02:00
|
|
|
|
2021-08-29 18:55:51 +02:00
|
|
|
#if VERSION_MINOR >= 4
|
2023-01-08 15:55:22 +01:00
|
|
|
GDREGISTER_CLASS(PropDataPortal);
|
2021-08-29 18:55:51 +02:00
|
|
|
#endif
|
|
|
|
|
2023-01-08 15:55:22 +01:00
|
|
|
GDREGISTER_CLASS(GroundClutter);
|
|
|
|
GDREGISTER_CLASS(GroundClutterFoliage);
|
2020-04-03 09:23:01 +02:00
|
|
|
|
2023-01-08 15:55:22 +01:00
|
|
|
GDREGISTER_CLASS(PropMesher);
|
|
|
|
GDREGISTER_CLASS(PropMesherJobStep);
|
2021-04-24 17:39:51 +02:00
|
|
|
|
2023-01-08 15:55:22 +01:00
|
|
|
GDREGISTER_CLASS(PropInstance);
|
|
|
|
GDREGISTER_CLASS(PropInstanceMerger);
|
2020-04-03 13:45:55 +02:00
|
|
|
|
2023-01-08 15:55:22 +01:00
|
|
|
GDREGISTER_CLASS(PropESSEntity);
|
2020-06-22 02:32:53 +02:00
|
|
|
|
2023-01-08 15:55:22 +01:00
|
|
|
GDREGISTER_CLASS(PropInstanceJob);
|
|
|
|
GDREGISTER_CLASS(PropInstancePropJob);
|
2020-06-27 22:29:19 +02:00
|
|
|
|
2023-01-08 15:55:22 +01:00
|
|
|
GDREGISTER_CLASS(PropTextureJob);
|
2021-05-17 22:27:10 +02:00
|
|
|
|
2023-01-08 15:55:22 +01:00
|
|
|
GDREGISTER_CLASS(PropSceneInstance);
|
2020-07-06 22:02:22 +02:00
|
|
|
|
2023-01-08 15:55:22 +01:00
|
|
|
GDREGISTER_CLASS(PropMaterialCache);
|
2021-08-09 13:13:21 +02:00
|
|
|
|
|
|
|
#ifdef TEXTURE_PACKER_PRESENT
|
2023-01-08 15:55:22 +01:00
|
|
|
GDREGISTER_CLASS(PropMaterialCachePCM);
|
2021-08-09 13:13:21 +02:00
|
|
|
#endif
|
|
|
|
|
2023-01-08 15:55:22 +01:00
|
|
|
prop_utils = memnew(PropUtils);
|
|
|
|
GDREGISTER_CLASS(PropUtils);
|
|
|
|
Engine::get_singleton()->add_singleton(Engine::Singleton("PropUtils", PropUtils::get_singleton()));
|
2020-06-27 23:13:26 +02:00
|
|
|
|
2023-01-08 15:55:22 +01:00
|
|
|
prop_texture_cache = memnew(PropCache);
|
|
|
|
GDREGISTER_CLASS(PropCache);
|
|
|
|
Engine::get_singleton()->add_singleton(Engine::Singleton("PropCache", PropCache::get_singleton()));
|
2021-05-17 22:27:10 +02:00
|
|
|
|
2023-01-08 15:55:22 +01:00
|
|
|
Ref<PropDataLight> light_processor = Ref<PropDataLight>(memnew(PropDataLight));
|
|
|
|
PropUtils::add_processor(light_processor);
|
2020-07-06 20:46:00 +02:00
|
|
|
|
2023-01-08 15:55:22 +01:00
|
|
|
Ref<PropDataProp> prop_processor = Ref<PropDataProp>(memnew(PropDataProp));
|
|
|
|
PropUtils::add_processor(prop_processor);
|
2020-07-06 20:54:05 +02:00
|
|
|
|
2023-01-08 15:55:22 +01:00
|
|
|
Ref<PropDataScene> scene_processor = Ref<PropDataScene>(memnew(PropDataScene));
|
|
|
|
PropUtils::add_processor(scene_processor);
|
2020-07-06 22:02:22 +02:00
|
|
|
|
2021-08-29 18:55:51 +02:00
|
|
|
#if VERSION_MINOR >= 4
|
2023-01-08 15:55:22 +01:00
|
|
|
Ref<PropDataPortal> portal_processor = Ref<PropDataPortal>(memnew(PropDataPortal));
|
|
|
|
PropUtils::add_processor(portal_processor);
|
2021-08-29 18:55:51 +02:00
|
|
|
#endif
|
2021-08-14 19:01:47 +02:00
|
|
|
|
2023-01-08 15:55:22 +01:00
|
|
|
Ref<PropDataTiledWall> tiled_wall_processor = Ref<PropDataTiledWall>(memnew(PropDataTiledWall));
|
|
|
|
PropUtils::add_processor(tiled_wall_processor);
|
|
|
|
}
|
2021-08-18 18:06:09 +02:00
|
|
|
|
2020-06-27 23:13:26 +02:00
|
|
|
#ifdef TOOLS_ENABLED
|
2023-01-08 15:55:22 +01:00
|
|
|
if (p_level == MODULE_INITIALIZATION_LEVEL_EDITOR) {
|
|
|
|
EditorPlugins::add_by_type<PropEditorPlugin>();
|
|
|
|
}
|
2020-06-27 23:13:26 +02:00
|
|
|
#endif
|
2020-04-03 09:23:01 +02:00
|
|
|
}
|
|
|
|
|
2023-01-08 15:55:22 +01:00
|
|
|
void uninitialize_props_module(ModuleInitializationLevel p_level) {
|
|
|
|
if (p_level == MODULE_INITIALIZATION_LEVEL_SCENE) {
|
|
|
|
if (prop_utils) {
|
|
|
|
memdelete(prop_utils);
|
|
|
|
}
|
2021-05-17 22:27:10 +02:00
|
|
|
|
2023-01-08 15:55:22 +01:00
|
|
|
if (prop_texture_cache) {
|
|
|
|
memdelete(prop_texture_cache);
|
|
|
|
}
|
2021-05-17 22:27:10 +02:00
|
|
|
}
|
2020-04-03 09:23:01 +02:00
|
|
|
}
|