Refactor module initialization
* Changed to use the same stages as extensions. * Makes the initialization more coherent, helping solve problems due to lack of stages. * Makes it easier to port between module and extension. * removed the DRIVER initialization level (no longer needed).
This commit is contained in:
@ -34,12 +34,20 @@
|
||||
|
||||
static Ref<ResourceFormatDDS> resource_loader_dds;
|
||||
|
||||
void register_dds_types() {
|
||||
void initialize_dds_module(ModuleInitializationLevel p_level) {
|
||||
if (p_level != MODULE_INITIALIZATION_LEVEL_SCENE) {
|
||||
return;
|
||||
}
|
||||
|
||||
resource_loader_dds.instantiate();
|
||||
ResourceLoader::add_resource_format_loader(resource_loader_dds);
|
||||
}
|
||||
|
||||
void unregister_dds_types() {
|
||||
void uninitialize_dds_module(ModuleInitializationLevel p_level) {
|
||||
if (p_level != MODULE_INITIALIZATION_LEVEL_SCENE) {
|
||||
return;
|
||||
}
|
||||
|
||||
ResourceLoader::remove_resource_format_loader(resource_loader_dds);
|
||||
resource_loader_dds.unref();
|
||||
}
|
||||
|
||||
@ -31,7 +31,9 @@
|
||||
#ifndef DDS_REGISTER_TYPES_H
|
||||
#define DDS_REGISTER_TYPES_H
|
||||
|
||||
void register_dds_types();
|
||||
void unregister_dds_types();
|
||||
#include "modules/register_module_types.h"
|
||||
|
||||
void initialize_dds_module(ModuleInitializationLevel p_level);
|
||||
void uninitialize_dds_module(ModuleInitializationLevel p_level);
|
||||
|
||||
#endif // DDS_REGISTER_TYPES_H
|
||||
|
||||
Reference in New Issue
Block a user