/* * 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. * */ #include "GradientSignal_precompiled.h" #include "LevelsGradientComponent.h" #include #include #include #include #include #include namespace GradientSignal { void LevelsGradientConfig::Reflect(AZ::ReflectContext* context) { AZ::SerializeContext* serialize = azrtti_cast(context); if (serialize) { serialize->Class() ->Version(0) ->Field("InputMid", &LevelsGradientConfig::m_inputMid) ->Field("InputMin", &LevelsGradientConfig::m_inputMin) ->Field("InputMax", &LevelsGradientConfig::m_inputMax) ->Field("OutputMin", &LevelsGradientConfig::m_outputMin) ->Field("OutputMax", &LevelsGradientConfig::m_outputMax) ->Field("Gradient", &LevelsGradientConfig::m_gradientSampler) ; AZ::EditContext* edit = serialize->GetEditContext(); if (edit) { edit->Class( "Levels Gradient", "") ->ClassElement(AZ::Edit::ClassElements::EditorData, "") ->Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly) ->Attribute(AZ::Edit::Attributes::AutoExpand, true) ->DataElement(AZ::Edit::UIHandlers::Slider, &LevelsGradientConfig::m_inputMid, "Input Mid", "") ->Attribute(AZ::Edit::Attributes::Min, 0.01f) ->Attribute(AZ::Edit::Attributes::Max, 10.0f) ->DataElement(AZ::Edit::UIHandlers::Slider, &LevelsGradientConfig::m_inputMin, "Input Min", "") ->Attribute(AZ::Edit::Attributes::Min, 0.0f) ->Attribute(AZ::Edit::Attributes::Max, 1.0f) ->DataElement(AZ::Edit::UIHandlers::Slider, &LevelsGradientConfig::m_inputMax, "Input Max", "") ->Attribute(AZ::Edit::Attributes::Min, 0.0f) ->Attribute(AZ::Edit::Attributes::Max, 1.0f) ->DataElement(AZ::Edit::UIHandlers::Slider, &LevelsGradientConfig::m_outputMin, "Output Min", "") ->Attribute(AZ::Edit::Attributes::Min, 0.0f) ->Attribute(AZ::Edit::Attributes::Max, 1.0f) ->DataElement(AZ::Edit::UIHandlers::Slider, &LevelsGradientConfig::m_outputMax, "Output Max", "") ->Attribute(AZ::Edit::Attributes::Min, 0.0f) ->Attribute(AZ::Edit::Attributes::Max, 1.0f) ->DataElement(0, &LevelsGradientConfig::m_gradientSampler, "Gradient", "Input gradient whose values will be transformed in relation to threshold.") ; } } if (auto behaviorContext = azrtti_cast(context)) { behaviorContext->Class() ->Constructor() ->Attribute(AZ::Script::Attributes::ExcludeFrom, AZ::Script::Attributes::ExcludeFlags::Preview) ->Attribute(AZ::Script::Attributes::Category, "Vegetation") ->Property("inputMid", BehaviorValueProperty(&LevelsGradientConfig::m_inputMid)) ->Property("inputMin", BehaviorValueProperty(&LevelsGradientConfig::m_inputMin)) ->Property("inputMax", BehaviorValueProperty(&LevelsGradientConfig::m_inputMax)) ->Property("outputMin", BehaviorValueProperty(&LevelsGradientConfig::m_outputMin)) ->Property("outputMax", BehaviorValueProperty(&LevelsGradientConfig::m_outputMax)) ->Property("gradientSampler", BehaviorValueProperty(&LevelsGradientConfig::m_gradientSampler)) ; } } void LevelsGradientComponent::GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& services) { services.push_back(AZ_CRC("GradientService", 0x21c18d23)); } void LevelsGradientComponent::GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& services) { services.push_back(AZ_CRC("GradientService", 0x21c18d23)); } void LevelsGradientComponent::GetRequiredServices(AZ::ComponentDescriptor::DependencyArrayType& services) { } void LevelsGradientComponent::Reflect(AZ::ReflectContext* context) { LevelsGradientConfig::Reflect(context); AZ::SerializeContext* serialize = azrtti_cast(context); if (serialize) { serialize->Class() ->Version(0) ->Field("Configuration", &LevelsGradientComponent::m_configuration) ; } if (auto behaviorContext = azrtti_cast(context)) { behaviorContext->Constant("LevelsGradientComponentTypeId", BehaviorConstant(LevelsGradientComponentTypeId)); behaviorContext->Class()->RequestBus("LevelsGradientRequestBus"); behaviorContext->EBus("LevelsGradientRequestBus") ->Attribute(AZ::Script::Attributes::ExcludeFrom, AZ::Script::Attributes::ExcludeFlags::Preview) ->Attribute(AZ::Script::Attributes::Category, "Vegetation") ->Event("GetInputMin", &LevelsGradientRequestBus::Events::GetInputMin) ->Event("SetInputMin", &LevelsGradientRequestBus::Events::SetInputMin) ->VirtualProperty("InputMin", "GetInputMin", "SetInputMin") ->Event("GetInputMid", &LevelsGradientRequestBus::Events::GetInputMid) ->Event("SetInputMid", &LevelsGradientRequestBus::Events::SetInputMid) ->VirtualProperty("InputMid", "GetInputMid", "SetInputMid") ->Event("GetInputMax", &LevelsGradientRequestBus::Events::GetInputMax) ->Event("SetInputMax", &LevelsGradientRequestBus::Events::SetInputMax) ->VirtualProperty("InputMax", "GetInputMax", "SetInputMax") ->Event("GetOutputMin", &LevelsGradientRequestBus::Events::GetOutputMin) ->Event("SetOutputMin", &LevelsGradientRequestBus::Events::SetOutputMin) ->VirtualProperty("OutputMin", "GetOutputMin", "SetOutputMin") ->Event("GetOutputMax", &LevelsGradientRequestBus::Events::GetOutputMax) ->Event("SetOutputMax", &LevelsGradientRequestBus::Events::SetOutputMax) ->VirtualProperty("PatternType", "GetOutputMax", "SetOutputMax") ->Event("GetGradientSampler", &LevelsGradientRequestBus::Events::GetGradientSampler) ; } } LevelsGradientComponent::LevelsGradientComponent(const LevelsGradientConfig& configuration) : m_configuration(configuration) { } void LevelsGradientComponent::Activate() { m_dependencyMonitor.Reset(); m_dependencyMonitor.ConnectOwner(GetEntityId()); m_dependencyMonitor.ConnectDependency(m_configuration.m_gradientSampler.m_gradientId); GradientRequestBus::Handler::BusConnect(GetEntityId()); LevelsGradientRequestBus::Handler::BusConnect(GetEntityId()); } void LevelsGradientComponent::Deactivate() { m_dependencyMonitor.Reset(); GradientRequestBus::Handler::BusDisconnect(); LevelsGradientRequestBus::Handler::BusDisconnect(); } bool LevelsGradientComponent::ReadInConfig(const AZ::ComponentConfig* baseConfig) { if (auto config = azrtti_cast(baseConfig)) { m_configuration = *config; return true; } return false; } bool LevelsGradientComponent::WriteOutConfig(AZ::ComponentConfig* outBaseConfig) const { if (auto config = azrtti_cast(outBaseConfig)) { *config = m_configuration; return true; } return false; } float LevelsGradientComponent::GetValue(const GradientSampleParams& sampleParams) const { AZ_PROFILE_FUNCTION(AZ::Debug::ProfileCategory::Entity); float output = 0.0f; output = GetLevels( m_configuration.m_gradientSampler.GetValue(sampleParams), m_configuration.m_inputMid, m_configuration.m_inputMin, m_configuration.m_inputMax, m_configuration.m_outputMin, m_configuration.m_outputMax); return output; } bool LevelsGradientComponent::IsEntityInHierarchy(const AZ::EntityId& entityId) const { return m_configuration.m_gradientSampler.IsEntityInHierarchy(entityId); } float LevelsGradientComponent::GetInputMin() const { return m_configuration.m_inputMin; } void LevelsGradientComponent::SetInputMin(float value) { m_configuration.m_inputMin = value; LmbrCentral::DependencyNotificationBus::Event(GetEntityId(), &LmbrCentral::DependencyNotificationBus::Events::OnCompositionChanged); } float LevelsGradientComponent::GetInputMid() const { return m_configuration.m_inputMid; } void LevelsGradientComponent::SetInputMid(float value) { m_configuration.m_inputMid = value; LmbrCentral::DependencyNotificationBus::Event(GetEntityId(), &LmbrCentral::DependencyNotificationBus::Events::OnCompositionChanged); } float LevelsGradientComponent::GetInputMax() const { return m_configuration.m_inputMax; } void LevelsGradientComponent::SetInputMax(float value) { m_configuration.m_inputMax = value; LmbrCentral::DependencyNotificationBus::Event(GetEntityId(), &LmbrCentral::DependencyNotificationBus::Events::OnCompositionChanged); } float LevelsGradientComponent::GetOutputMin() const { return m_configuration.m_outputMin; } void LevelsGradientComponent::SetOutputMin(float value) { m_configuration.m_outputMin = value; LmbrCentral::DependencyNotificationBus::Event(GetEntityId(), &LmbrCentral::DependencyNotificationBus::Events::OnCompositionChanged); } float LevelsGradientComponent::GetOutputMax() const { return m_configuration.m_outputMin; } void LevelsGradientComponent::SetOutputMax(float value) { m_configuration.m_outputMax = value; LmbrCentral::DependencyNotificationBus::Event(GetEntityId(), &LmbrCentral::DependencyNotificationBus::Events::OnCompositionChanged); } GradientSampler& LevelsGradientComponent::GetGradientSampler() { return m_configuration.m_gradientSampler; } }