// 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.Base.Geometry;
using Core.Common.Gui.Attributes;
using Core.Common.Gui.Converters;
using Core.Common.Gui.PropertyBag;
using Core.Common.Util.Attributes;
using Ringtoets.Common.Data.Hydraulics;
using Ringtoets.Common.Data.IllustrationPoints;
using Ringtoets.Common.Forms.TypeConverters;
using RingtoetsCommonFormsResources = Ringtoets.Common.Forms.Properties.Resources;
namespace Ringtoets.Common.Forms.PropertyClasses
{
///
/// ViewModel of for properties panel.
///
[TypeConverter(typeof(ExpandableObjectConverter))]
public abstract class HydraulicBoundaryLocationCalculationProperties : ObjectProperties
{
///
/// Creates a new instance of .
///
/// The hydraulic boundary location calculation.
/// Thrown when is null.
protected HydraulicBoundaryLocationCalculationProperties(HydraulicBoundaryLocationCalculation hydraulicBoundaryLocationCalculation)
{
if (hydraulicBoundaryLocationCalculation == null)
{
throw new ArgumentNullException(nameof(hydraulicBoundaryLocationCalculation));
}
Data = hydraulicBoundaryLocationCalculation;
}
[PropertyOrder(1)]
[ResourcesCategory(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.Categories_General))]
[ResourcesDisplayName(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.HydraulicBoundaryDatabase_Location_Id_DisplayName))]
[ResourcesDescription(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.HydraulicBoundaryDatabase_Location_Id_Description))]
public long Id
{
get
{
return data.HydraulicBoundaryLocation.Id;
}
}
[PropertyOrder(2)]
[ResourcesCategory(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.Categories_General))]
[ResourcesDisplayName(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.HydraulicBoundaryDatabase_Location_Name_DisplayName))]
[ResourcesDescription(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.HydraulicBoundaryDatabase_Location_Name_Description))]
public string Name
{
get
{
return data.HydraulicBoundaryLocation.Name;
}
}
[PropertyOrder(3)]
[ResourcesCategory(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.Categories_General))]
[ResourcesDisplayName(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.HydraulicBoundaryDatabase_Location_Coordinates_DisplayName))]
[ResourcesDescription(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.HydraulicBoundaryDatabase_Location_Coordinates_Description))]
public Point2D Location
{
get
{
return data.HydraulicBoundaryLocation.Location;
}
}
[PropertyOrder(5)]
[ResourcesCategory(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.Categories_Result))]
[ResourcesDisplayName(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.CalculationOutput_TargetProbability_DisplayName))]
[ResourcesDescription(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.CalculationOutput_TargetProbability_Description))]
[TypeConverter(typeof(NoProbabilityValueDoubleConverter))]
public double TargetProbability
{
get
{
return data.Output?.TargetProbability ?? double.NaN;
}
}
[PropertyOrder(6)]
[ResourcesCategory(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.Categories_Result))]
[ResourcesDisplayName(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.CalculationOutput_TargetReliability_DisplayName))]
[ResourcesDescription(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.CalculationOutput_TargetReliability_Description))]
[TypeConverter(typeof(NoValueRoundedDoubleConverter))]
public RoundedDouble TargetReliability
{
get
{
return data.Output?.TargetReliability ?? RoundedDouble.NaN;
}
}
[PropertyOrder(7)]
[ResourcesCategory(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.Categories_Result))]
[ResourcesDisplayName(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.CalculationOutput_CalculatedProbability_DisplayName))]
[ResourcesDescription(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.CalculationOutput_CalculatedProbability_Description))]
[TypeConverter(typeof(NoProbabilityValueDoubleConverter))]
public double CalculatedProbability
{
get
{
return data.Output?.CalculatedProbability ?? double.NaN;
}
}
[PropertyOrder(8)]
[ResourcesCategory(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.Categories_Result))]
[ResourcesDisplayName(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.CalculationOutput_CalculatedReliability_DisplayName))]
[ResourcesDescription(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.CalculationOutput_CalculatedReliability_Description))]
[TypeConverter(typeof(NoValueRoundedDoubleConverter))]
public RoundedDouble CalculatedReliability
{
get
{
return data.Output?.CalculatedReliability ?? RoundedDouble.NaN;
}
}
[PropertyOrder(10)]
[ResourcesCategory(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.Categories_IllustrationPoints))]
[ResourcesDisplayName(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.ShouldIllustrationPointsBeCalculated_DisplayName))]
[ResourcesDescription(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.ShouldIllustrationPointsBeCalculated_Description))]
public bool ShouldIllustrationPointsBeCalculated
{
get
{
return data.InputParameters.ShouldIllustrationPointsBeCalculated;
}
set
{
data.InputParameters.ShouldIllustrationPointsBeCalculated = value;
data.NotifyObservers();
}
}
[PropertyOrder(11)]
[DynamicVisible]
[ResourcesCategory(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.Categories_IllustrationPoints))]
[ResourcesDisplayName(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.IllustrationPoint_GoverningWindDirection_DisplayName))]
[ResourcesDescription(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.IllustrationPoint_GoverningWindDirection_Description))]
public string GoverningWindDirection
{
get
{
return GetGeneralResult().GoverningWindDirection.Name;
}
}
[PropertyOrder(12)]
[DynamicVisible]
[ResourcesCategory(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.Categories_IllustrationPoints))]
[ResourcesDisplayName(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.IllustrationPoint_AlphaValues_DisplayName))]
[ResourcesDescription(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.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(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.Categories_IllustrationPoints))]
[ResourcesDisplayName(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.IllustrationPoint_Durations_DisplayName))]
[ResourcesDescription(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.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(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.Categories_IllustrationPoints))]
[ResourcesDisplayName(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.IllustrationPointProperty_IllustrationPoints_DisplayName))]
[ResourcesDescription(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.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;
}
public override string ToString()
{
return $"{Name} {Location}";
}
private GeneralResult GetGeneralResult()
{
if (data.HasOutput && data.Output.HasGeneralResult)
{
return data.Output.GeneralResult;
}
return null;
}
}
}