From 1902e2c2332610fcaf310db19f98e7e9f819d0a6 Mon Sep 17 00:00:00 2001
From: lixiaojun <1287241240@qq.com>
Date: 星期三, 23 十月 2024 13:24:45 +0800
Subject: [PATCH] 增加并联分析参数

---
 WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/02-bimface/XhsProjectSimulationBimfaceCtrl.cs |  240 ++++++++++++++++++++++++++++++++++-------------------------
 1 files changed, 139 insertions(+), 101 deletions(-)

diff --git a/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/02-bimface/XhsProjectSimulationBimfaceCtrl.cs b/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/02-bimface/XhsProjectSimulationBimfaceCtrl.cs
index 7e28757..d0fdb54 100644
--- a/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/02-bimface/XhsProjectSimulationBimfaceCtrl.cs
+++ b/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/02-bimface/XhsProjectSimulationBimfaceCtrl.cs
@@ -1,4 +1,5 @@
-锘縰sing Yw.WinFrmUI.Bimface;
+锘縰sing DevExpress.Xpo.Helpers;
+using Yw.WinFrmUI.Bimface;
 
 namespace HStation.WinFrmUI
 {
@@ -333,28 +334,31 @@
 
         #region 寮鸿皟鏋勪欢
 
+        private const string _blinkColor = "#32D3A6";//寮鸿皟鏋勪欢棰滆壊
+        private const double _blinkTransparency = 0.8d; //寮鸿皟鏋勪欢閫忔槑搴�
+
         /// <summary>
         /// 璁剧疆寮鸿皟鏋勪欢
         /// </summary>
         public async Task SetBlinkComponents(List<string> elementIds, string color, double transparency)
         {
-            if (_bimfaceInteropContainer == null)
-            {
-                return;
-            }
-            await _bimfaceInteropContainer.SetBlinkComponents(elementIds, color, transparency);
+            await _bimfaceInteropContainer?.SetBlinkComponents(elementIds, color, transparency);
+        }
+
+        /// <summary>
+        /// 璁剧疆寮鸿皟鏋勪欢
+        /// </summary>
+        public async Task SetBlinkComponents(List<string> elementIds)
+        {
+            await _bimfaceInteropContainer?.SetBlinkComponents(elementIds, _blinkColor, _blinkTransparency);
         }
 
         /// <summary>
         /// 娓呴櫎寮鸿皟鏋勪欢
         /// </summary>
-        public async Task SetBlinkComponents()
+        public async Task ClearBlinkComponents()
         {
-            if (_bimfaceInteropContainer == null)
-            {
-                return;
-            }
-            await _bimfaceInteropContainer.ClearBlinkComponents();
+            await _bimfaceInteropContainer?.ClearBlinkComponents();
         }
 
         #endregion
@@ -376,7 +380,7 @@
         /// <summary>
         /// 鎭㈠鏋勪欢棰滆壊
         /// </summary>
-        public async Task SetBlinkComponents(List<string> elementIds)
+        public async Task RestoreComponentsColor(List<string> elementIds)
         {
             if (_bimfaceInteropContainer == null)
             {
@@ -387,39 +391,103 @@
 
         #endregion
 
-        #region 鑷畾涔夋爣绛�
+        #region 涓氬姟璁$畻鑷畾涔夋爣绛�
 
         /// <summary>
-        /// 璁剧疆鑷畾涔夋爣绛�
+        /// 鏄剧ず涓氬姟璁$畻鑷畾涔夋爣绛�
         /// </summary>
-        public async Task SetCustomLabels(List<CustomLabel> obj)
+        public async Task SetLogicCalcuCustomLabels(CalcuResult calcuResult)
         {
-            if (_bimfaceInteropContainer == null)
+            var hydroInfo = _hydroInfoFunc?.Invoke();
+            if (hydroInfo == null)
             {
                 return;
             }
-            await _bimfaceInteropContainer.SetCustomLabels(obj);
+            if (calcuResult == null)
+            {
+                return;
+            }
+            if (!calcuResult.Succeed)
+            {
+                await _bimfaceInteropContainer?.ClearLogicCalcuCustomLabels();
+                return;
+            }
+            var obj = new List<CustomLabel>();
+            var allParterList = hydroInfo.GetAllParters();
+            allParterList?.ForEach(x =>
+            {
+                if (x is Yw.Model.HydroPumpInfo pump)
+                {
+                    var hz = pump.RatedHz * pump.SpeedRatio;
+                    var calcuPump = calcuResult.LinkList.Find(x => x.Id == pump.Code);
+                    var calcuPumpStart = calcuResult.NodeList.Find(x => x.Id == pump.StartCode);
+                    var calcuPumpEnd = calcuResult.NodeList.Find(x => x.Id == pump.EndCode);
+                    var pumpCustomLabel = new CustomLabel();
+                    pumpCustomLabel.Id = pump.Code;
+                    pumpCustomLabel.Data = new List<CustomLabelItem>()
+                    {
+                        new CustomLabelItem(){ Name="鐘舵��",Value=HydroLinkStatusHelper.GetStatusName(pump.LinkStatus),Unit=string.Empty},
+                        new CustomLabelItem(){ Name="棰戠巼",Value=hz.ToString(),Unit=string.Empty},
+                        new CustomLabelItem(){ Name="娴侀噺",Value=Math.Round(calcuPump.Flow,1).ToString(),Unit="m鲁/h"},
+                        new CustomLabelItem(){ Name="杩涘彛鍘嬪姏",Value=Math.Round(calcuPumpStart.Head,4).ToString(),Unit="m"},
+                        new CustomLabelItem(){ Name="鍑哄彛鍘嬪姏",Value=Math.Round(calcuPumpEnd.Head,4).ToString(),Unit="m"},
+                    };
+                    obj.Add(pumpCustomLabel);
+                }
+                else if (x is Yw.Model.HydroEmitterInfo emitter)
+                {
+                    var calcuEmitter = calcuResult.NodeList.Find(x => x.Id == emitter.Code);
+                    var emitterCustomLabel = new CustomLabel();
+                    emitterCustomLabel.Id = emitter.Code;
+                    emitterCustomLabel.Data = new List<CustomLabelItem>()
+                    {
+                        new CustomLabelItem(){ Name="娴侀噺",Value=Math.Round(calcuEmitter.Demand,1).ToString(),Unit="m鲁/h"},
+                        new CustomLabelItem(){ Name="鍘嬪姏",Value=Math.Round(calcuEmitter.Head,4).ToString(),Unit="m"}
+                    };
+                    obj.Add(emitterCustomLabel);
+                }
+            });
+            await _bimfaceInteropContainer?.SetLogicCalcuCustomLabels(obj);
         }
 
         /// <summary>
-        /// 娓呴櫎鑷畾涔夋爣绛�
+        /// 娓呴櫎涓氬姟璁$畻鑷畾涔夋爣绛�
         /// </summary>
-        public async Task ClearCustomLabels()
+        public async Task ClearLogicCalcuCustomLabels()
         {
-            if (_bimfaceInteropContainer == null)
-            {
-                return;
-            }
-            await _bimfaceInteropContainer.ClearCustomLabels();
+            await _bimfaceInteropContainer?.ClearLogicCalcuCustomLabels();
+        }
+
+        #endregion
+
+        #region 涓氬姟鏍囨敞寮曠嚎鏍囩
+
+        /// <summary>
+        /// 璁剧疆涓氬姟鏍囨敞寮曠嚎鏍囩
+        /// </summary>
+        public async Task SetLogicMarkLeadLabels(List<LogicMarkLeadLabel> obj)
+        {
+            await _bimfaceInteropContainer?.SetLogicMarkLeadLabels(obj);
+        }
+
+        /// <summary>
+        /// 娓呴櫎涓氬姟鏍囨敞寮曠嚎鏍囩
+        /// </summary>
+        public async Task ClearLogicMarkLeadLabels()
+        {
+            await _bimfaceInteropContainer?.ClearLogicMarkLeadLabels();
         }
 
         #endregion
 
         #region 涓氬姟
 
+
         #region 杩炴帴鏋勪欢棰滆壊
 
-        private const string _linkComponentColor = "#008B00";
+        private const string _linkComponentColor = "#008B00";//杩炴帴鏋勪欢棰滆壊
+        private const string _linkStartComponentColor = "#094EF7";//杩炴帴寮�濮嬫瀯浠堕鑹�
+        private const string _linkEndComponentColor = "#ECBF08";//杩炴帴缁撴潫鏋勪欢棰滆壊
         private const double _linkComponentTransparency = 0.8;
         private List<string> _linkComponentIds = null;//杩炴帴鏋勪欢id鍒楄〃
 
@@ -428,20 +496,59 @@
         /// </summary>
         public async Task SetLinkComponentsColor(List<string> elementIds)
         {
-            if (_linkComponentIds != null && _linkComponentIds.Count > 0)
-            {
-                await _bimfaceInteropContainer.RestoreComponentsColor(_linkComponentIds);
-            }
+            await RestoreLinkComponentsColor();
             _linkComponentIds = elementIds;
+            if (_linkComponentIds == null || _linkComponentIds.Count < 1)
+            {
+                return;
+            }
+            await _bimfaceInteropContainer?.OverrideComponentsColor(_linkComponentIds, _linkComponentColor, _linkComponentTransparency);
+        }
+
+        /// <summary>
+        /// 鎭㈠杩炴帴鏋勪欢棰滆壊
+        /// </summary>
+        public async Task RestoreLinkComponentsColor()
+        {
+            if (_linkComponentIds == null || _linkComponentIds.Count < 1)
+            {
+                return;
+            }
+            await _bimfaceInteropContainer?.RestoreComponentsColor(_linkComponentIds);
+        }
+
+        /// <summary>
+        /// 璁剧疆杩炴帴寮�濮嬫瀯浠堕鑹�
+        /// </summary>
+        public async Task SetLinkStartComponentsColor(List<string> elementIds)
+        {
             if (elementIds == null || elementIds.Count < 1)
             {
                 return;
             }
-            if (_bimfaceInteropContainer == null)
+            if (_linkComponentIds == null)
+            {
+                _linkComponentIds = new List<string>();
+            }
+            _linkComponentIds.AddRange(elementIds);
+            await _bimfaceInteropContainer?.OverrideComponentsColor(elementIds, _linkStartComponentColor, _linkComponentTransparency);
+        }
+
+        /// <summary>
+        /// 璁剧疆杩炴帴缁撴潫鏋勪欢棰滆壊
+        /// </summary>
+        public async Task SetLinkEndComponentsColor(List<string> elementIds)
+        {
+            if (elementIds == null || elementIds.Count < 1)
             {
                 return;
             }
-            await _bimfaceInteropContainer.OverrideComponentsColor(elementIds, _linkComponentColor, _linkComponentTransparency);
+            if (_linkComponentIds == null)
+            {
+                _linkComponentIds = new List<string>();
+            }
+            _linkComponentIds.AddRange(elementIds);
+            await _bimfaceInteropContainer?.OverrideComponentsColor(elementIds, _linkEndComponentColor, _linkComponentTransparency);
         }
 
         #endregion
@@ -475,77 +582,8 @@
 
         #endregion
 
-        #region 鑷畾涔夋爣绛�
 
-        /// <summary>
-        /// 鏄剧ず璁$畻鑷畾涔夋爣绛�
-        /// </summary>
-        public async Task ShowCalcuCustomLabels(CalcuResult calcuResult)
-        {
-            var hydroInfo = _hydroInfoFunc?.Invoke();
-            if (hydroInfo == null)
-            {
-                return;
-            }
-            if (calcuResult == null)
-            {
-                return;
-            }
-            if (!calcuResult.Succeed)
-            {
-                await _bimfaceInteropContainer.ClearCustomLabels();
-                return;
-            }
-            var obj = new List<CustomLabel>();
-            var allParterList = hydroInfo.GetAllParters();
-            allParterList?.ForEach(x =>
-            {
-                if (x is Yw.Model.HydroPumpInfo pump)
-                {
-                    double? speed = pump.RatedN;
-                    if (speed.HasValue)
-                    {
-                        if (pump.SpeedRatio.HasValue)
-                        {
-                            speed = speed.Value * pump.SpeedRatio.Value;
-                        }
-                    }
-                    var calcuPump = calcuResult.LinkList.Find(x => x.Id == pump.Code);
-                    var calcuPumpStart = calcuResult.NodeList.Find(x => x.Id == pump.StartCode);
-                    var calcuPumpEnd = calcuResult.NodeList.Find(x => x.Id == pump.EndCode);
-                    var pumpCustomLabel = new CustomLabel();
-                    pumpCustomLabel.Id = pump.Code;
-                    pumpCustomLabel.Data = new List<CustomLabelItem>()
-                    {
-                        new CustomLabelItem(){ Name="鐘舵��",Value=HydroLinkStatusHelper.GetStatusName(pump.LinkStatus),Unit=string.Empty},
-                        new CustomLabelItem(){ Name="杞��",Value=speed?.ToString(),Unit="r/min"},
-                        new CustomLabelItem(){ Name="娴侀噺",Value=Math.Round(calcuPump.Flow,1).ToString(),Unit="m鲁/h"},
-                        new CustomLabelItem(){ Name="杩涘彛鍘嬪姏",Value=Math.Round(calcuPumpStart.Head,4).ToString(),Unit="m"},
-                        new CustomLabelItem(){ Name="鍑哄彛鍘嬪姏",Value=Math.Round(calcuPumpEnd.Head,4).ToString(),Unit="m"},
-                    };
-                    obj.Add(pumpCustomLabel);
-                }
-                else if (x is Yw.Model.HydroEmitterInfo emitter)
-                {
-                    var calcuEmitter = calcuResult.NodeList.Find(x => x.Id == emitter.Code);
-                    var emitterCustomLabel = new CustomLabel();
-                    emitterCustomLabel.Id = emitter.Code;
-                    emitterCustomLabel.Data = new List<CustomLabelItem>()
-                    {
-                        new CustomLabelItem(){ Name="娴侀噺",Value=Math.Round(calcuEmitter.Demand,1).ToString(),Unit="m鲁/h"},
-                        new CustomLabelItem(){ Name="鍘嬪姏",Value=Math.Round(calcuEmitter.Head,4).ToString(),Unit="m"}
-                    };
-                    obj.Add(emitterCustomLabel);
-                }
-            });
-            if (_bimfaceInteropContainer == null)
-            {
-                return;
-            }
-            await _bimfaceInteropContainer.SetCustomLabels(obj);
-        }
 
-        #endregion
 
         #endregion
 

--
Gitblit v1.9.3