/* * 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 #include #include #include #include #include namespace GradientSignal { void SurfaceMaskGradientConfig::Reflect(AZ::ReflectContext* context) { AZ::SerializeContext* serialize = azrtti_cast(context); if (serialize) { serialize->Class() ->Version(0) ->Field("SurfaceTagList", &SurfaceMaskGradientConfig::m_surfaceTagList) ; AZ::EditContext* edit = serialize->GetEditContext(); if (edit) { edit->Class( "Surface Mask Gradient", "") ->ClassElement(AZ::Edit::ClassElements::EditorData, "") ->Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly) ->Attribute(AZ::Edit::Attributes::AutoExpand, true) ->DataElement(0, &SurfaceMaskGradientConfig::m_surfaceTagList, "Surface Tag List", "Identifiers used to compare against underlying surfaces.") ; } } if (auto behaviorContext = azrtti_cast(context)) { behaviorContext->Class() ->Attribute(AZ::Script::Attributes::Category, "Vegetation") ->Constructor() ->Method("GetNumTags", &SurfaceMaskGradientConfig::GetNumTags) ->Method("GetTag", &SurfaceMaskGradientConfig::GetTag) ->Method("RemoveTag", &SurfaceMaskGradientConfig::RemoveTag) ->Method("AddTag", &SurfaceMaskGradientConfig::AddTag) ; } } size_t SurfaceMaskGradientConfig::GetNumTags() const { return m_surfaceTagList.size(); } AZ::Crc32 SurfaceMaskGradientConfig::GetTag(int tagIndex) const { if (tagIndex < m_surfaceTagList.size()) { return m_surfaceTagList[tagIndex]; } return AZ::Crc32(); } void SurfaceMaskGradientConfig::RemoveTag(int tagIndex) { if (tagIndex < m_surfaceTagList.size()) { m_surfaceTagList.erase(m_surfaceTagList.begin() + tagIndex); } } void SurfaceMaskGradientConfig::AddTag(AZStd::string tag) { m_surfaceTagList.push_back(SurfaceData::SurfaceTag(tag)); } void SurfaceMaskGradientComponent::GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& services) { services.push_back(AZ_CRC("GradientService", 0x21c18d23)); } void SurfaceMaskGradientComponent::GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& services) { services.push_back(AZ_CRC("GradientService", 0x21c18d23)); services.push_back(AZ_CRC("GradientTransformService", 0x8c8c5ecc)); } void SurfaceMaskGradientComponent::Reflect(AZ::ReflectContext* context) { SurfaceMaskGradientConfig::Reflect(context); AZ::SerializeContext* serialize = azrtti_cast(context); if (serialize) { serialize->Class() ->Version(0) ->Field("Configuration", &SurfaceMaskGradientComponent::m_configuration) ; } if (auto behaviorContext = azrtti_cast(context)) { behaviorContext->Constant("SurfaceMaskGradientComponentTypeId", BehaviorConstant(SurfaceMaskGradientComponentTypeId)); behaviorContext->Class()->RequestBus("SurfaceMaskGradientRequestBus"); behaviorContext->EBus("SurfaceMaskGradientRequestBus") ->Attribute(AZ::Script::Attributes::Category, "Vegetation") ->Event("GetNumTags", &SurfaceMaskGradientRequestBus::Events::GetNumTags) ->Event("GetTag", &SurfaceMaskGradientRequestBus::Events::GetTag) ->Event("RemoveTag", &SurfaceMaskGradientRequestBus::Events::RemoveTag) ->Event("AddTag", &SurfaceMaskGradientRequestBus::Events::AddTag) ; } } SurfaceMaskGradientComponent::SurfaceMaskGradientComponent(const SurfaceMaskGradientConfig& configuration) : m_configuration(configuration) { } void SurfaceMaskGradientComponent::Activate() { m_dependencyMonitor.Reset(); m_dependencyMonitor.ConnectOwner(GetEntityId()); GradientRequestBus::Handler::BusConnect(GetEntityId()); SurfaceMaskGradientRequestBus::Handler::BusConnect(GetEntityId()); } void SurfaceMaskGradientComponent::Deactivate() { m_dependencyMonitor.Reset(); GradientRequestBus::Handler::BusDisconnect(); SurfaceMaskGradientRequestBus::Handler::BusDisconnect(); } bool SurfaceMaskGradientComponent::ReadInConfig(const AZ::ComponentConfig* baseConfig) { if (auto config = azrtti_cast(baseConfig)) { m_configuration = *config; return true; } return false; } bool SurfaceMaskGradientComponent::WriteOutConfig(AZ::ComponentConfig* outBaseConfig) const { if (auto config = azrtti_cast(outBaseConfig)) { *config = m_configuration; return true; } return false; } float SurfaceMaskGradientComponent::GetValue(const GradientSampleParams& params) const { float result = 0.0f; GetValues(AZStd::span(¶ms.m_position, 1), AZStd::span(&result, 1)); return result; } void SurfaceMaskGradientComponent::GetValues(AZStd::span positions, AZStd::span outValues) const { if (positions.size() != outValues.size()) { AZ_Assert(false, "input and output lists are different sizes (%zu vs %zu).", positions.size(), outValues.size()); return; } // Initialize all our output values to 0. AZStd::fill(outValues.begin(), outValues.end(), 0.0f); if (!m_configuration.m_surfaceTagList.empty()) { SurfaceData::SurfacePointList points; SurfaceData::SurfaceDataSystemRequestBus::Broadcast( &SurfaceData::SurfaceDataSystemRequestBus::Events::GetSurfacePointsFromList, positions, m_configuration.m_surfaceTagList, points); // For each position, get the max surface weight that matches our filter and that appears at that position. points.EnumeratePoints( [&outValues]( size_t inPositionIndex, [[maybe_unused]] const AZ::Vector3& position, [[maybe_unused]] const AZ::Vector3& normal, const SurfaceData::SurfaceTagWeights& masks) -> bool { masks.EnumerateWeights( [inPositionIndex, &outValues]([[maybe_unused]] AZ::Crc32 surfaceType, float weight) -> bool { outValues[inPositionIndex] = AZ::GetMax(AZ::GetClamp(weight, 0.0f, 1.0f), outValues[inPositionIndex]); return true; }); return true; }); } } size_t SurfaceMaskGradientComponent::GetNumTags() const { return m_configuration.GetNumTags(); } AZ::Crc32 SurfaceMaskGradientComponent::GetTag(int tagIndex) const { return m_configuration.GetTag(tagIndex); } void SurfaceMaskGradientComponent::RemoveTag(int tagIndex) { m_configuration.RemoveTag(tagIndex); LmbrCentral::DependencyNotificationBus::Event(GetEntityId(), &LmbrCentral::DependencyNotificationBus::Events::OnCompositionChanged); } void SurfaceMaskGradientComponent::AddTag(AZStd::string tag) { m_configuration.AddTag(tag); LmbrCentral::DependencyNotificationBus::Event(GetEntityId(), &LmbrCentral::DependencyNotificationBus::Events::OnCompositionChanged); } }