You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
2.6 KiB
C++
67 lines
2.6 KiB
C++
/*
|
|
* Copyright (c) Contributors to the Open 3D Engine Project.
|
|
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*
|
|
*/
|
|
|
|
#include <AzCore/Component/ComponentApplicationBus.h>
|
|
#include <AzCore/EBus/EBus.h>
|
|
#include <AzCore/Module/Environment.h>
|
|
#include <AzCore/Serialization/SerializeContext.h>
|
|
#include <SceneAPI/SceneUI/GraphMetaInfoHandler.h>
|
|
#include <SceneAPI/SceneUI/ManifestMetaInfoHandler.h>
|
|
#include <SceneAPI/SceneUI/RowWidgets/HeaderHandler.h>
|
|
#include <SceneAPI/SceneUI/RowWidgets/NodeListSelectionHandler.h>
|
|
#include <SceneAPI/SceneUI/RowWidgets/NodeTreeSelectionHandler.h>
|
|
#include <SceneAPI/SceneUI/RowWidgets/ManifestVectorHandler.h>
|
|
#include <SceneAPI/SceneUI/RowWidgets/ManifestNameHandler.h>
|
|
#include <SceneAPI/SceneUI/RowWidgets/TransformRowHandler.h>
|
|
|
|
static AZ::SceneAPI::UI::GraphMetaInfoHandler* g_graphMetaInfoHandler = nullptr;
|
|
static AZ::SceneAPI::UI::ManifestMetaInfoHandler* g_manifestMetaInfoHandler = nullptr;
|
|
|
|
extern "C" AZ_DLL_EXPORT void InitializeDynamicModule(void* env)
|
|
{
|
|
AZ::Environment::Attach(static_cast<AZ::EnvironmentInstance>(env));
|
|
|
|
AZ::SceneAPI::UI::HeaderHandler::Register();
|
|
AZ::SceneAPI::UI::NodeListSelectionHandler::Register();
|
|
AZ::SceneAPI::UI::NodeTreeSelectionHandler::Register();
|
|
AZ::SceneAPI::UI::ManifestVectorHandler::Register();
|
|
AZ::SceneAPI::SceneUI::ManifestNameHandler::Register();
|
|
AZ::SceneAPI::SceneUI::TranformRowHandler::Register();
|
|
|
|
g_graphMetaInfoHandler = aznew AZ::SceneAPI::UI::GraphMetaInfoHandler();
|
|
g_manifestMetaInfoHandler = aznew AZ::SceneAPI::UI::ManifestMetaInfoHandler();
|
|
}
|
|
|
|
extern "C" AZ_DLL_EXPORT void Reflect(AZ::SerializeContext*)
|
|
{
|
|
// provide this empty function, otherwise Reflect from SceneCore is used as fall back on macOS
|
|
}
|
|
|
|
extern "C" AZ_DLL_EXPORT void ReflectBehavior(AZ::BehaviorContext*)
|
|
{
|
|
// provide this empty function, otherwise Reflect from SceneCore is used as fall back on macOS
|
|
}
|
|
|
|
extern "C" AZ_DLL_EXPORT void UninitializeDynamicModule()
|
|
{
|
|
delete g_manifestMetaInfoHandler;
|
|
g_manifestMetaInfoHandler = nullptr;
|
|
|
|
delete g_graphMetaInfoHandler;
|
|
g_graphMetaInfoHandler = nullptr;
|
|
|
|
AZ::SceneAPI::SceneUI::TranformRowHandler::Unregister();
|
|
AZ::SceneAPI::SceneUI::ManifestNameHandler::Unregister();
|
|
AZ::SceneAPI::UI::ManifestVectorHandler::Unregister();
|
|
AZ::SceneAPI::UI::NodeTreeSelectionHandler::Unregister();
|
|
AZ::SceneAPI::UI::NodeListSelectionHandler::Unregister();
|
|
AZ::SceneAPI::UI::HeaderHandler::Unregister();
|
|
|
|
AZ::Environment::Detach();
|
|
}
|