2020-04-03 09:23:01 +02:00
|
|
|
/*
|
|
|
|
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"
|
|
|
|
|
2020-06-27 17:03:29 +02:00
|
|
|
#include "props/prop_data.h"
|
|
|
|
#include "props/prop_data_entity.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"
|
|
|
|
|
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"
|
2020-04-03 09:23:01 +02:00
|
|
|
|
2020-06-22 02:32:53 +02:00
|
|
|
#include "prop_instance_job.h"
|
|
|
|
|
2020-06-27 22:29:19 +02:00
|
|
|
#include "core/engine.h"
|
|
|
|
#include "singleton/prop_utils.h"
|
|
|
|
|
2020-06-27 23:13:26 +02:00
|
|
|
#include "./editor/prop_editor_plugin.h"
|
|
|
|
|
2020-06-27 22:29:19 +02:00
|
|
|
static PropUtils *prop_utils = NULL;
|
|
|
|
|
2020-04-03 09:23:01 +02:00
|
|
|
void register_props_types() {
|
2020-06-27 17:03:29 +02:00
|
|
|
ClassDB::register_class<PropData>();
|
|
|
|
ClassDB::register_class<PropDataEntry>();
|
|
|
|
ClassDB::register_class<PropDataScene>();
|
|
|
|
ClassDB::register_class<PropDataLight>();
|
|
|
|
ClassDB::register_class<PropDataProp>();
|
|
|
|
ClassDB::register_class<PropDataEntity>();
|
|
|
|
|
2020-04-03 12:00:02 +02:00
|
|
|
ClassDB::register_class<GroundClutter>();
|
2020-04-03 09:23:01 +02:00
|
|
|
ClassDB::register_class<GroundClutterFoliage>();
|
|
|
|
|
2020-04-03 12:00:02 +02:00
|
|
|
ClassDB::register_class<PropInstance>();
|
2020-04-03 13:45:55 +02:00
|
|
|
|
|
|
|
ClassDB::register_class<PropESSEntity>();
|
2020-06-22 02:32:53 +02:00
|
|
|
|
|
|
|
ClassDB::register_class<PropInstanceJob>();
|
2020-06-27 22:29:19 +02:00
|
|
|
|
|
|
|
prop_utils = memnew(PropUtils);
|
|
|
|
ClassDB::register_class<PropUtils>();
|
|
|
|
Engine::get_singleton()->add_singleton(Engine::Singleton("PropUtils", PropUtils::get_singleton()));
|
2020-06-27 23:13:26 +02:00
|
|
|
|
2020-07-06 20:46:00 +02:00
|
|
|
Ref<PropDataLight> light_processor = Ref<PropDataLight>(memnew(PropDataLight));
|
|
|
|
PropUtils::add_processor(light_processor);
|
|
|
|
|
2020-06-27 23:13:26 +02:00
|
|
|
#ifdef TOOLS_ENABLED
|
|
|
|
EditorPlugins::add_by_type<PropEditorPlugin>();
|
|
|
|
#endif
|
2020-04-03 09:23:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void unregister_props_types() {
|
2020-06-27 22:29:19 +02:00
|
|
|
if (prop_utils) {
|
|
|
|
memdelete(prop_utils);
|
|
|
|
}
|
2020-04-03 09:23:01 +02:00
|
|
|
}
|