123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238 |
- /*
- * 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 "EditorPolygonPrismShapeComponent.h"
- #include "EditorPolygonPrismShapeComponentMode.h"
- #include "PolygonPrismShapeComponent.h"
- #include <AzCore/RTTI/ReflectContext.h>
- #include <AzCore/Serialization/SerializeContext.h>
- #include <AzCore/Serialization/EditContext.h>
- #include <AzToolsFramework/Entity/EditorEntityInfoBus.h>
- #include <AzToolsFramework/Viewport/VertexContainerDisplay.h>
- #include "EditorShapeComponentConverters.h"
- #include "ShapeDisplay.h"
- namespace LmbrCentral
- {
- void EditorPolygonPrismShapeComponent::GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& provided)
- {
- EditorBaseShapeComponent::GetProvidedServices(provided);
- provided.push_back(AZ_CRC_CE("PolygonPrismShapeService"));
- provided.push_back(AZ_CRC_CE("VariableVertexContainerService"));
- provided.push_back(AZ_CRC_CE("FixedVertexContainerService"));
- }
- void EditorPolygonPrismShapeComponent::GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& incompatible)
- {
- EditorBaseShapeComponent::GetIncompatibleServices(incompatible);
- incompatible.push_back(AZ_CRC_CE("VariableVertexContainerService"));
- incompatible.push_back(AZ_CRC_CE("FixedVertexContainerService"));
- }
- void EditorPolygonPrismShapeComponent::GetDependentServices(AZ::ComponentDescriptor::DependencyArrayType& dependent)
- {
- dependent.push_back(AZ_CRC_CE("NonUniformScaleService"));
- }
- void EditorPolygonPrismShapeComponent::Init()
- {
- EditorBaseShapeComponent::Init();
- SetShapeComponentConfig(&m_polygonShapeConfig);
- }
- void EditorPolygonPrismShapeComponent::Activate()
- {
- EditorBaseShapeComponent::Activate();
- AzFramework::EntityDebugDisplayEventBus::Handler::BusConnect(GetEntityId());
- EditorPolygonPrismShapeComponentRequestsBus::Handler::BusConnect(GetEntityId());
- m_polygonPrismShape.Activate(GetEntityId());
- // placeholder - create initial polygon prism shape if empty
- AZ::VertexContainer<AZ::Vector2>& vertexContainer = m_polygonPrismShape.GetPolygonPrism()->m_vertexContainer;
- if (vertexContainer.Empty())
- {
- vertexContainer.AddVertex(AZ::Vector2(-2.0f, -2.0f));
- vertexContainer.AddVertex(AZ::Vector2(2.0f, -2.0f));
- vertexContainer.AddVertex(AZ::Vector2(2.0f, 2.0f));
- vertexContainer.AddVertex(AZ::Vector2(-2.0f, 2.0f));
- }
- const auto shapeModified = [this]()
- {
- GenerateVertices();
- m_polygonPrismShape.ShapeChanged();
- };
- const auto vertexAdded = [this, shapeModified](size_t index)
- {
- PolygonPrismShapeComponentNotificationBus::Event(
- GetEntityId(), &PolygonPrismShapeComponentNotification::OnVertexAdded, index);
- shapeModified();
- };
- const auto vertexRemoved = [this, shapeModified](size_t index)
- {
- PolygonPrismShapeComponentNotificationBus::Event(
- GetEntityId(), &PolygonPrismShapeComponentNotification::OnVertexRemoved, index);
- shapeModified();
- };
- const auto vertexUpdated = [this, shapeModified](size_t index)
- {
- PolygonPrismShapeComponentNotificationBus::Event(
- GetEntityId(), &PolygonPrismShapeComponentNotification::OnVertexUpdated, index);
- shapeModified();
- };
- const auto verticesSet = [this, shapeModified]()
- {
- PolygonPrismShapeComponentNotificationBus::Event(
- GetEntityId(), &PolygonPrismShapeComponentNotification::OnVerticesSet,
- m_polygonPrismShape.GetPolygonPrism()->m_vertexContainer.GetVertices());
- shapeModified();
- };
- const auto verticesCleared = [this, shapeModified]()
- {
- PolygonPrismShapeComponentNotificationBus::Event(
- GetEntityId(), &PolygonPrismShapeComponentNotification::OnVerticesCleared);
- shapeModified();
- };
- m_polygonPrismShape.GetPolygonPrism()->SetCallbacks(
- vertexAdded,
- vertexRemoved,
- vertexUpdated,
- verticesSet,
- verticesCleared,
- shapeModified,
- shapeModified);
- GenerateVertices();
- // ComponentMode
- m_componentModeDelegate.ConnectWithSingleComponentMode<
- EditorPolygonPrismShapeComponent, EditorPolygonPrismShapeComponentMode>(
- AZ::EntityComponentIdPair(GetEntityId(), GetId()), this);
- }
- void EditorPolygonPrismShapeComponent::Deactivate()
- {
- EditorBaseShapeComponent::Deactivate();
- m_componentModeDelegate.Disconnect();
- EditorPolygonPrismShapeComponentRequestsBus::Handler::BusDisconnect();
- AzFramework::EntityDebugDisplayEventBus::Handler::BusDisconnect();
- m_polygonPrismShape.Deactivate();
- }
- void EditorPolygonPrismShapeComponent::Reflect(AZ::ReflectContext* context)
- {
- EditorPolygonPrismShapeComponentMode::Reflect(context);
- if (auto serializeContext = azrtti_cast<AZ::SerializeContext*>(context))
- {
- serializeContext->Class<EditorPolygonPrismShapeComponent, EditorBaseShapeComponent>()
- ->Version(3, &ClassConverters::UpgradeEditorPolygonPrismShapeComponent)
- ->Field("Configuration", &EditorPolygonPrismShapeComponent::m_polygonPrismShape)
- ->Field("ShapeConfiguration", &EditorPolygonPrismShapeComponent::m_polygonShapeConfig)
- ->Field("ComponentMode", &EditorPolygonPrismShapeComponent::m_componentModeDelegate)
- ;
- if (AZ::EditContext* editContext = serializeContext->GetEditContext())
- {
- editContext->Class<EditorPolygonPrismShapeComponent>(
- "Polygon Prism Shape", "Provides polygon prism shape")
- ->ClassElement(AZ::Edit::ClassElements::EditorData, "")
- ->Attribute(AZ::Edit::Attributes::Category, "Shape")
- ->Attribute(AZ::Edit::Attributes::Icon, "Icons/Components/PolygonPrism.svg")
- ->Attribute(AZ::Edit::Attributes::ViewportIcon, "Icons/Components/Viewport/PolygonPrism.svg")
- ->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC_CE("Game"))
- ->Attribute(AZ::Edit::Attributes::HelpPageURL, "https://o3de.org/docs/user-guide/components/reference/shape/polygon-prism-shape/")
- ->Attribute(AZ::Edit::Attributes::AutoExpand, true)
- ->DataElement(AZ::Edit::UIHandlers::Default, &EditorPolygonPrismShapeComponent::m_polygonPrismShape, "Configuration", "PolygonPrism Shape Configuration")
- // ->Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly) // disabled - prevents ChangeNotify attribute firing correctly
- ->DataElement(AZ::Edit::UIHandlers::Default, &EditorPolygonPrismShapeComponent::m_componentModeDelegate, "Component Mode", "PolygonPrism Component Mode")
- ->Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly)
- ;
- }
- }
- }
- void EditorPolygonPrismShapeComponent::DisplayEntityViewport(
- [[maybe_unused]] const AzFramework::ViewportInfo& viewportInfo,
- AzFramework::DebugDisplayRequests& debugDisplay)
- {
- DisplayShape(
- debugDisplay, [this]() { return CanDraw(); },
- [this](AzFramework::DebugDisplayRequests& debugDisplay)
- {
- DrawPolygonPrismShape(
- { m_polygonShapeConfig.GetDrawColor(), m_shapeWireColor, m_displayFilled },
- m_polygonPrismMesh, debugDisplay);
- debugDisplay.SetColor(m_shapeWireColor);
- if (m_componentModeDelegate.AddedToComponentMode())
- {
- AzToolsFramework::VertexContainerDisplay::DisplayVertexContainerIndices(
- debugDisplay, AzToolsFramework::VariableVerticesVertexContainer<AZ::Vector2>(
- m_polygonPrismShape.GetPolygonPrism()->m_vertexContainer),
- m_polygonPrismShape.GetCurrentTransform(),
- m_polygonPrismShape.GetCurrentNonUniformScale(),
- IsSelected());
- }
- },
- m_polygonPrismShape.GetCurrentTransform());
- }
- void EditorPolygonPrismShapeComponent::BuildGameEntity(AZ::Entity* gameEntity)
- {
- if (auto component = gameEntity->CreateComponent<PolygonPrismShapeComponent>())
- {
- const bool isActive = GetEntity() ? (GetEntity()->GetState() == AZ::Entity::State::Active) : false;
- if (isActive)
- {
- m_polygonPrismShape.Deactivate();
- }
- component->m_polygonPrismShape = m_polygonPrismShape;
- if (isActive)
- {
- m_polygonPrismShape.Activate(GetEntityId());
- }
- }
- if (m_visibleInGameView)
- {
- PolygonPrismShapeDebugDisplayComponent* debugDisplayComponent = gameEntity->CreateComponent<PolygonPrismShapeDebugDisplayComponent>(*m_polygonPrismShape.GetPolygonPrism());
- debugDisplayComponent->SetShapeConfig(m_polygonShapeConfig);
- }
- }
- void EditorPolygonPrismShapeComponent::GenerateVertices()
- {
- GeneratePolygonPrismMesh(
- m_polygonPrismShape.GetPolygonPrism()->m_vertexContainer.GetVertices(),
- m_polygonPrismShape.GetPolygonPrism()->GetHeight(), m_polygonPrismShape.GetCurrentNonUniformScale(), m_polygonPrismMesh);
- }
- } // namespace LmbrCentral
|