// 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.Windows.Forms; using Core.Common.Base; using Core.Common.Base.Data; using Core.Common.Util.Extensions; using Core.Components.Chart.Data; using Core.Components.Chart.Forms; using Ringtoets.Common.Data.Calculation; using Ringtoets.Common.Forms.Factories; using Ringtoets.Revetment.Data; using Ringtoets.Revetment.Forms.Factories; using RingtoetsCommonFormsResources = Ringtoets.Common.Forms.Properties.Resources; namespace Ringtoets.Revetment.Forms.Views { /// /// This class is a view to show the wave conditions input. /// public partial class WaveConditionsInputView : UserControl, IChartView { private readonly Func getAssessmentLevelFunc; private readonly Observer calculationObserver; private readonly Observer calculationInputObserver; private readonly Observer hydraulicBoundaryLocationObserver; private readonly ChartDataCollection chartDataCollection; private readonly ChartLineData foreshoreChartData; private readonly ChartLineData lowerBoundaryRevetmentChartData; private readonly ChartLineData upperBoundaryRevetmentChartData; private readonly ChartLineData lowerBoundaryWaterLevelsChartData; private readonly ChartLineData upperBoundaryWaterLevelsChartData; private readonly ChartLineData designWaterLevelChartData; private readonly ChartMultipleLineData waterLevelsChartData; private readonly ChartLineData revetmentBaseChartData; private readonly ChartLineData revetmentChartData; private ICalculation data; /// /// Creates a new instance of . /// /// The style which should be applied to the . /// for obtaining the assessment level. /// Thrown when any input parameter is null. public WaveConditionsInputView(IWaveConditionsInputViewStyle inputViewStyle, Func getAssessmentLevelFunc) { if (inputViewStyle == null) { throw new ArgumentNullException(nameof(inputViewStyle)); } if (getAssessmentLevelFunc == null) { throw new ArgumentNullException(nameof(getAssessmentLevelFunc)); } InitializeComponent(); this.getAssessmentLevelFunc = getAssessmentLevelFunc; calculationObserver = new Observer(UpdateChartTitle); calculationInputObserver = new Observer(UpdateCalculationInput); hydraulicBoundaryLocationObserver = new Observer(UpdateChartData); chartDataCollection = new ChartDataCollection(RingtoetsCommonFormsResources.Calculation_Input); foreshoreChartData = RingtoetsChartDataFactory.CreateForeshoreGeometryChartData(); lowerBoundaryRevetmentChartData = WaveConditionsChartDataFactory.CreateLowerRevetmentBoundaryChartData(inputViewStyle.RevetmentLineColor); upperBoundaryRevetmentChartData = WaveConditionsChartDataFactory.CreateUpperRevetmentBoundaryChartData(inputViewStyle.RevetmentLineColor); lowerBoundaryWaterLevelsChartData = WaveConditionsChartDataFactory.CreateLowerWaterLevelsBoundaryChartData(); upperBoundaryWaterLevelsChartData = WaveConditionsChartDataFactory.CreateUpperWaterLevelsBoundaryChartData(); designWaterLevelChartData = WaveConditionsChartDataFactory.CreateDesignWaterLevelChartData(inputViewStyle.DesignWaterLevelName); waterLevelsChartData = WaveConditionsChartDataFactory.CreateWaterLevelsChartData(); revetmentBaseChartData = WaveConditionsChartDataFactory.CreateRevetmentBaseChartData(inputViewStyle.RevetmentLineColor); revetmentChartData = WaveConditionsChartDataFactory.CreateRevetmentChartData(inputViewStyle.RevetmentLineColor); chartDataCollection.Add(foreshoreChartData); chartDataCollection.Add(lowerBoundaryRevetmentChartData); chartDataCollection.Add(upperBoundaryRevetmentChartData); chartDataCollection.Add(lowerBoundaryWaterLevelsChartData); chartDataCollection.Add(upperBoundaryWaterLevelsChartData); chartDataCollection.Add(designWaterLevelChartData); chartDataCollection.Add(waterLevelsChartData); chartDataCollection.Add(revetmentBaseChartData); chartDataCollection.Add(revetmentChartData); } public object Data { get { return data; } set { data = value as ICalculation; calculationObserver.Observable = data; calculationInputObserver.Observable = data?.InputParameters; hydraulicBoundaryLocationObserver.Observable = data?.InputParameters.HydraulicBoundaryLocation; if (data == null) { chartControl.Data = null; chartControl.ChartTitle = string.Empty; } else { SetChartData(); chartControl.Data = chartDataCollection; UpdateChartTitle(); } } } public IChartControl Chart { get { return chartControl; } } protected override void Dispose(bool disposing) { calculationObserver.Dispose(); calculationInputObserver.Dispose(); hydraulicBoundaryLocationObserver.Dispose(); if (disposing) { components?.Dispose(); } base.Dispose(disposing); } private void UpdateCalculationInput() { hydraulicBoundaryLocationObserver.Observable = data?.InputParameters.HydraulicBoundaryLocation; UpdateChartData(); } private void UpdateChartData() { SetChartData(); chartDataCollection.Collection.ForEachElementDo(cd => cd.NotifyObservers()); } private void UpdateChartTitle() { chartControl.ChartTitle = data.Name; } private void SetChartData() { WaveConditionsInput input = data.InputParameters; WaveConditionsChartDataFactory.UpdateForeshoreGeometryChartDataName(foreshoreChartData, input); foreshoreChartData.Points = WaveConditionsChartDataPointsFactory.CreateForeshoreGeometryPoints(input); lowerBoundaryRevetmentChartData.Points = WaveConditionsChartDataPointsFactory.CreateLowerBoundaryRevetmentGeometryPoints(input); upperBoundaryRevetmentChartData.Points = WaveConditionsChartDataPointsFactory.CreateUpperBoundaryRevetmentGeometryPoints(input); lowerBoundaryWaterLevelsChartData.Points = WaveConditionsChartDataPointsFactory.CreateLowerBoundaryWaterLevelsGeometryPoints(input); upperBoundaryWaterLevelsChartData.Points = WaveConditionsChartDataPointsFactory.CreateUpperBoundaryWaterLevelsGeometryPoints(input); designWaterLevelChartData.Points = WaveConditionsChartDataPointsFactory.CreateDesignWaterLevelGeometryPoints(input, getAssessmentLevelFunc()); waterLevelsChartData.Lines = WaveConditionsChartDataPointsFactory.CreateWaterLevelsGeometryPoints(input, getAssessmentLevelFunc()); revetmentBaseChartData.Points = WaveConditionsChartDataPointsFactory.CreateRevetmentBaseGeometryPoints(input); revetmentChartData.Points = WaveConditionsChartDataPointsFactory.CreateRevetmentGeometryPoints(input); } } }