// Copyright (C) Stichting Deltares 2017. All rights reserved. // // This file is part of Ringtoets. // // Ringtoets is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // All names, logos, and references to "Deltares" are registered trademarks of // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using Core.Common.Base.Data; using Core.Common.Gui.Attributes; using Core.Common.Gui.Converters; using Core.Common.Gui.PropertyBag; using Core.Common.Util; using Core.Common.Util.Attributes; using Ringtoets.Common.Data.Hydraulics; using Ringtoets.Common.Data.IllustrationPoints; using Ringtoets.Common.Forms.Properties; using Ringtoets.Common.Forms.TypeConverters; namespace Ringtoets.Common.Forms.PropertyClasses { /// /// Base ViewModel of for properties panel. /// [TypeConverter(typeof(ExpandableObjectConverter))] public abstract class HydraulicBoundaryLocationCalculationBaseProperties : ObjectProperties { /// /// Creates a new instance of . /// /// The hydraulic boundary location calculation to create the properties for. /// Thrown when is null. protected HydraulicBoundaryLocationCalculationBaseProperties(HydraulicBoundaryLocationCalculation hydraulicBoundaryLocationCalculation) { if (hydraulicBoundaryLocationCalculation == null) { throw new ArgumentNullException(nameof(hydraulicBoundaryLocationCalculation)); } Data = hydraulicBoundaryLocationCalculation; } [PropertyOrder(4)] [ResourcesCategory(typeof(Resources), nameof(Resources.Categories_Result))] [TypeConverter(typeof(NoValueRoundedDoubleConverter))] public virtual RoundedDouble Result { get { return data.Output?.Result ?? RoundedDouble.NaN; } } [PropertyOrder(5)] [ResourcesCategory(typeof(Resources), nameof(Resources.Categories_Result))] [ResourcesDisplayName(typeof(Resources), nameof(Resources.CalculationOutput_TargetProbability_DisplayName))] [ResourcesDescription(typeof(Resources), nameof(Resources.CalculationOutput_TargetProbability_Description))] [TypeConverter(typeof(NoProbabilityValueDoubleConverter))] public double TargetProbability { get { return data.Output?.TargetProbability ?? double.NaN; } } [PropertyOrder(6)] [ResourcesCategory(typeof(Resources), nameof(Resources.Categories_Result))] [ResourcesDisplayName(typeof(Resources), nameof(Resources.CalculationOutput_TargetReliability_DisplayName))] [ResourcesDescription(typeof(Resources), nameof(Resources.CalculationOutput_TargetReliability_Description))] [TypeConverter(typeof(NoValueRoundedDoubleConverter))] public RoundedDouble TargetReliability { get { return data.Output?.TargetReliability ?? RoundedDouble.NaN; } } [PropertyOrder(7)] [ResourcesCategory(typeof(Resources), nameof(Resources.Categories_Result))] [ResourcesDisplayName(typeof(Resources), nameof(Resources.CalculationOutput_CalculatedProbability_DisplayName))] [ResourcesDescription(typeof(Resources), nameof(Resources.CalculationOutput_CalculatedProbability_Description))] [TypeConverter(typeof(NoProbabilityValueDoubleConverter))] public double CalculatedProbability { get { return data.Output?.CalculatedProbability ?? double.NaN; } } [PropertyOrder(8)] [ResourcesCategory(typeof(Resources), nameof(Resources.Categories_Result))] [ResourcesDisplayName(typeof(Resources), nameof(Resources.CalculationOutput_CalculatedReliability_DisplayName))] [ResourcesDescription(typeof(Resources), nameof(Resources.CalculationOutput_CalculatedReliability_Description))] [TypeConverter(typeof(NoValueRoundedDoubleConverter))] public RoundedDouble CalculatedReliability { get { return data.Output?.CalculatedReliability ?? RoundedDouble.NaN; } } [PropertyOrder(9)] [ResourcesCategory(typeof(Resources), nameof(Resources.Categories_Result))] [ResourcesDisplayName(typeof(Resources), nameof(Resources.CalculationOutput_Convergence_DisplayName))] [TypeConverter(typeof(EnumTypeConverter))] public virtual CalculationConvergence Convergence { get { return data.Output?.CalculationConvergence ?? CalculationConvergence.NotCalculated; } } [PropertyOrder(10)] [ResourcesCategory(typeof(Resources), nameof(Resources.Categories_IllustrationPoints))] [ResourcesDisplayName(typeof(Resources), nameof(Resources.ShouldIllustrationPointsBeCalculated_DisplayName))] [ResourcesDescription(typeof(Resources), nameof(Resources.ShouldIllustrationPointsBeCalculated_Description))] public bool ShouldIllustrationPointsBeCalculated { get { return data.InputParameters.ShouldIllustrationPointsBeCalculated; } set { data.InputParameters.ShouldIllustrationPointsBeCalculated = value; data.NotifyObservers(); } } [PropertyOrder(11)] [DynamicVisible] [ResourcesCategory(typeof(Resources), nameof(Resources.Categories_IllustrationPoints))] [ResourcesDisplayName(typeof(Resources), nameof(Resources.IllustrationPoint_GoverningWindDirection_DisplayName))] [ResourcesDescription(typeof(Resources), nameof(Resources.IllustrationPoint_GoverningWindDirection_Description))] public string GoverningWindDirection { get { return GetGeneralResult().GoverningWindDirection.Name; } } [PropertyOrder(12)] [DynamicVisible] [ResourcesCategory(typeof(Resources), nameof(Resources.Categories_IllustrationPoints))] [ResourcesDisplayName(typeof(Resources), nameof(Resources.IllustrationPoint_AlphaValues_DisplayName))] [ResourcesDescription(typeof(Resources), nameof(Resources.IllustrationPoint_AlphaValues_Description))] [TypeConverter(typeof(KeyValueExpandableArrayConverter))] [KeyValueElement(nameof(Stochast.Name), nameof(Stochast.Alpha))] public Stochast[] AlphaValues { get { return GetGeneralResult().Stochasts.ToArray(); } } [PropertyOrder(13)] [DynamicVisible] [ResourcesCategory(typeof(Resources), nameof(Resources.Categories_IllustrationPoints))] [ResourcesDisplayName(typeof(Resources), nameof(Resources.IllustrationPoint_Durations_DisplayName))] [ResourcesDescription(typeof(Resources), nameof(Resources.IllustrationPoint_Durations_Description))] [TypeConverter(typeof(KeyValueExpandableArrayConverter))] [KeyValueElement(nameof(Stochast.Name), nameof(Stochast.Duration))] public Stochast[] Durations { get { return GetGeneralResult().Stochasts.ToArray(); } } [PropertyOrder(14)] [DynamicVisible] [ResourcesCategory(typeof(Resources), nameof(Resources.Categories_IllustrationPoints))] [ResourcesDisplayName(typeof(Resources), nameof(Resources.IllustrationPointProperty_IllustrationPoints_DisplayName))] [ResourcesDescription(typeof(Resources), nameof(Resources.IllustrationPointProperty_IllustrationPoints_Description))] [TypeConverter(typeof(ExpandableArrayConverter))] public IEnumerable IllustrationPoints { get { IEnumerable topLevelIllustrationPoints = GetGeneralResult().TopLevelIllustrationPoints.ToArray(); IEnumerable closingSituations = topLevelIllustrationPoints.Select(s => s.ClosingSituation); return topLevelIllustrationPoints.Select(p => new TopLevelSubMechanismIllustrationPointProperties(p, closingSituations)) .ToArray(); } } [DynamicVisibleValidationMethod] public bool DynamicVisibleValidationMethod(string propertyName) { bool hasGeneralIllustrationPointsResult = GetGeneralResult() != null; if (propertyName == nameof(GoverningWindDirection) || propertyName == nameof(AlphaValues) || propertyName == nameof(Durations) || propertyName == nameof(IllustrationPoints)) { return hasGeneralIllustrationPointsResult; } return true; } private GeneralResult GetGeneralResult() { return data?.Output?.GeneralResult; } } }