55 lines
2.1 KiB
C++
55 lines
2.1 KiB
C++
/*
|
|
* All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or
|
|
* its licensors.
|
|
*
|
|
* For complete copyright and license terms please see the LICENSE at the root of this
|
|
* distribution (the "License"). All use of this software is governed by the License,
|
|
* or, if provided, by the license below or the license accompanying this file. Do not
|
|
* remove or modify any license notices. This file is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
// AZ
|
|
#include <AzCore/base.h>
|
|
|
|
// Graph Model
|
|
#include <GraphModel/GraphModelBus.h>
|
|
#include <GraphModel/Integration/GraphController.h>
|
|
|
|
namespace GraphModelIntegration
|
|
{
|
|
//! This is the main class for managing the Graph Controllers for Graph Canvas scenes
|
|
class GraphControllerManager
|
|
: private GraphManagerRequestBus::Handler
|
|
{
|
|
public:
|
|
AZ_RTTI(GraphControllerManager, "{DA358B3E-46EF-411B-B84B-0397F5CD3539}");
|
|
|
|
GraphControllerManager() = default;
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////
|
|
// GraphModelIntegration::GraphManagerRequestBus overrides
|
|
AZ::Entity* CreateScene(GraphModel::GraphPtr graph, const GraphCanvas::EditorId editorId) override;
|
|
void RemoveScene(const GraphCanvas::GraphId& sceneId) override;
|
|
void CreateGraphController(const GraphCanvas::GraphId& sceneId, GraphModel::GraphPtr graph) override;
|
|
void DeleteGraphController(const GraphCanvas::GraphId& sceneId) override;
|
|
GraphModel::GraphPtr GetGraph(const GraphCanvas::GraphId& sceneId) override;
|
|
const GraphModelSerialization& GetSerializedMappings() override;
|
|
void SetSerializedMappings(const GraphModelSerialization& serialization) override;
|
|
////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void Activate();
|
|
void Deactivate();
|
|
|
|
private:
|
|
AZ_DISABLE_COPY_MOVE(GraphControllerManager);
|
|
|
|
AZStd::unordered_map<GraphCanvas::GraphId, AZStd::shared_ptr<GraphController>> m_graphControllers;
|
|
|
|
GraphModelSerialization m_serialization;
|
|
};
|
|
}
|