From c09478fe73685a87de0c48f9b300008f06408dd8 Mon Sep 17 00:00:00 2001
From: lixiaojun <1287241240@qq.com>
Date: 星期三, 20 十一月 2024 15:15:51 +0800
Subject: [PATCH] 核心界面

---
 WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/02-bimface/XhsProjectSimulationBimfaceCtrl.cs |  164 +++++++++++++++---------------------------------------
 1 files changed, 46 insertions(+), 118 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 5c78fb2..30b5d75 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
@@ -9,25 +9,56 @@
             InitializeComponent();
         }
 
+        #region 浜嬩欢闆�
+
         /// <summary>
-        /// 姘村姏鐐瑰嚮浜嬩欢锛堝寘鍚乏閿拰鍙抽敭锛�
+        /// 姘村姏鐐瑰嚮浜嬩欢
+        /// 鍖呭惈宸﹂敭鍜屽彸閿�
         /// </summary>
-        public event Action<Yw.Model.HydroVisualInfo> HydroClickEvent;
+        public event Action<string> HydroClickEvent;
         /// <summary>
-        /// 姘村姏鐐瑰嚮浜嬩欢锛堜粎宸﹂敭锛�
+        /// 姘村姏鐐瑰嚮浜嬩欢
+        /// 浠呭乏閿�
         /// </summary>
-        public event Action<Yw.Model.HydroVisualInfo> HydroMouseLeftClickEvent;
+        public event Action<string> HydroMouseLeftClickEvent;
         /// <summary>
         /// 鍔犺浇瀹屾垚浜嬩欢
         /// </summary>
         public event Action LoadCompletedEvent;
 
+        #endregion
+
         //椤圭洰
-        private HStation.Vmo.XhsProjectVmo _project = null;
+        private XhsProjectVmo _project = null;
         //椤圭洰绔�
-        private HStation.Vmo.XhsProjectSiteVmo _projectSite = null;
-        //鑾峰彇姘村姏淇℃伅鏂规硶
-        private Func<Yw.Model.HydroModelInfo> _hydroInfoFunc = null;
+        private XhsProjectSiteVmo _projectSite = null;
+
+        /// <summary>
+        /// 鍒濆鍖栨暟鎹�
+        /// 浠呮敮鎸佽皟鐢ㄤ竴娆�
+        /// </summary>
+        public async Task InitialData(XhsProjectVmo project, XhsProjectSiteVmo projectSite)
+        {
+            if (project == null)
+            {
+                return;
+            }
+            _project = project;
+            _projectSite = projectSite;
+            if (_projectSite == null)
+            {
+                _projectSite = await BLLFactory<HStation.BLL.XhsProjectSite>.Instance.GetDefaultByProjectID(_project.ID);
+            }
+            var bimfaceInteropContainer = GetBimfaceInteropContainer();
+            this.Controls.Clear();
+            this.Controls.Add(bimfaceInteropContainer);
+            await bimfaceInteropContainer.InitialContainer();
+        }
+
+        #region 浜や簰瀹瑰櫒
+
+        //bimface 浜や簰瀹瑰櫒
+        private BimfaceInterop3dContainer _bimfaceInteropContainer = null;
 
         //鑾峰彇Bimface 浜や簰瀹瑰櫒
         private BimfaceInterop3dContainer GetBimfaceInteropContainer()
@@ -82,17 +113,7 @@
                     {
                         return;
                     }
-                    if (this.HydroClickEvent != null)
-                    {
-                        var hydroInfo = _hydroInfoFunc?.Invoke();
-                        if (hydroInfo == null)
-                        {
-                            return;
-                        }
-                        var allParterList = hydroInfo.GetAllVisuals();
-                        var parter = allParterList?.Find(x => x.Code == obj.ObjectId);
-                        this.HydroClickEvent.Invoke(parter);
-                    }
+                    this.HydroClickEvent?.Invoke(obj.ObjectId);
                 };
                 _bimfaceInteropContainer.ClickOutEvent += (obj) =>
                 {
@@ -104,17 +125,7 @@
                     {
                         return;
                     }
-                    if (this.HydroMouseLeftClickEvent != null)
-                    {
-                        var hydroInfo = _hydroInfoFunc?.Invoke();
-                        if (hydroInfo == null)
-                        {
-                            return;
-                        }
-                        var allParterList = hydroInfo.GetAllVisuals();
-                        var parter = allParterList?.Find(x => x.Code == obj.ObjectId);
-                        this.HydroMouseLeftClickEvent.Invoke(parter);
-                    }
+                    this.HydroMouseLeftClickEvent?.Invoke(obj.ObjectId);
                 };
                 _bimfaceInteropContainer.MouseLeftClickOutEvent += (obj) =>
                 {
@@ -123,39 +134,11 @@
             }
             return _bimfaceInteropContainer;
         }
-        //bimface 浜や簰瀹瑰櫒
-        private BimfaceInterop3dContainer _bimfaceInteropContainer = null;
-
-        /// <summary>
-        /// 鍒濆鍖栨暟鎹�
-        /// 浠呮敮鎸佽皟鐢ㄤ竴娆�
-        /// </summary>
-        public async Task InitialData
-            (
-                HStation.Vmo.XhsProjectVmo project,
-                HStation.Vmo.XhsProjectSiteVmo projectSite,
-                Func<Yw.Model.HydroModelInfo> hydroInfoFunc
-            )
-        {
-            if (project == null)
-            {
-                return;
-            }
-            _project = project;
-            _projectSite = projectSite;
-            _hydroInfoFunc = hydroInfoFunc;
-            if (_projectSite == null)
-            {
-                _projectSite = await BLLFactory<HStation.BLL.XhsProjectSite>.Instance.GetDefaultByProjectID(_project.ID);
-            }
-            var bimfaceInteropContainer = GetBimfaceInteropContainer();
-            this.Controls.Clear();
-            this.Controls.Add(bimfaceInteropContainer);
-            await bimfaceInteropContainer.InitialContainer();
-        }
 
 
-        #region 鏋勪欢鐨勬樉绀轰笌闅愯棌
+        #endregion
+
+        #region 鏄剧ず涓庨殣钘�
 
         /// <summary>
         /// 鏄剧ず鏋勪欢
@@ -200,8 +183,6 @@
         /// <summary>
         /// 鍗婇�忔槑鏋勪欢
         /// </summary>
-        /// <param name="elementIds">鏋勪欢id鍒楄〃</param>
-        /// <returns></returns>
         public async Task TranslucentComponents(List<string> elementIds)
         {
             if (_bimfaceInteropContainer == null)
@@ -214,8 +195,6 @@
         /// <summary>
         /// 鍙栨秷鏋勪欢鍗婇�忔槑
         /// </summary>
-        /// <param name="elementIds">鏋勪欢id鍒楄〃</param>
-        /// <returns></returns>
         public async Task OpaqueComponents(List<string> elementIds)
         {
             if (_bimfaceInteropContainer == null)
@@ -420,61 +399,10 @@
         #region 涓氬姟璁$畻鑷畾涔夋爣绛�
 
         /// <summary>
-        /// 鏄剧ず涓氬姟璁$畻鑷畾涔夋爣绛�
+        /// 璁剧疆涓氬姟璁$畻鑷畾涔夋爣绛�
         /// </summary>
-        public async Task SetLogicCalcuCustomLabelsCalcuResult(HydroCalcuResult calcuResult)
+        public async Task SetLogicCalcuCustomLabels(List<LogicCalcuCustomLabel> obj)
         {
-            var hydroInfo = _hydroInfoFunc?.Invoke();
-            if (hydroInfo == null)
-            {
-                return;
-            }
-            if (calcuResult == null)
-            {
-                return;
-            }
-            if (!calcuResult.Succeed)
-            {
-                await _bimfaceInteropContainer?.ClearLogicCalcuCustomLabels();
-                return;
-            }
-            var obj = new List<LogicCalcuCustomLabel>();
-            var allParterList = hydroInfo.GetAllParters();
-            allParterList?.ForEach(x =>
-            {
-                if (x is Yw.Model.HydroPumpInfo pump)
-                {
-                    var hz = Math.Round(pump.RatedHz * pump.SpeedRatio);
-                    var calcuPump = calcuResult.LinkList.Find(x => x.Code == pump.Code);
-                    var calcuPumpStart = calcuResult.NodeList.Find(x => x.Code == pump.StartCode);
-                    var calcuPumpEnd = calcuResult.NodeList.Find(x => x.Code == pump.EndCode);
-                    var pumpCustomLabel = new LogicCalcuCustomLabel();
-                    pumpCustomLabel.Id = pump.Code;
-                    pumpCustomLabel.Distance = 10000;
-                    pumpCustomLabel.Data = new List<LogicCalcuCustomLabelItem>()
-                    {
-                        new LogicCalcuCustomLabelItem(){ Name="鐘舵��",Value=HydroLinkStatusHelper.GetStatusName(pump.LinkStatus),Unit=string.Empty},
-                        new LogicCalcuCustomLabelItem(){ Name="棰戠巼",Value=hz.ToString(),Unit=string.Empty},
-                        new LogicCalcuCustomLabelItem(){ Name="娴侀噺",Value=Math.Round(calcuPump.CalcuFlow.Value,1).ToString(),Unit="m鲁/h"},
-                        new LogicCalcuCustomLabelItem(){ Name="杩涘彛鍘嬪姏",Value=Math.Round(calcuPumpStart.CalcuHead.Value,4).ToString(),Unit="m"},
-                        new LogicCalcuCustomLabelItem(){ Name="鍑哄彛鍘嬪姏",Value=Math.Round(calcuPumpEnd.CalcuHead.Value,4).ToString(),Unit="m"},
-                    };
-                    obj.Add(pumpCustomLabel);
-                }
-                else if (x is Yw.Model.HydroEmitterInfo emitter)
-                {
-                    var calcuEmitter = calcuResult.NodeList.Find(x => x.Code == emitter.Code);
-                    var emitterCustomLabel = new LogicCalcuCustomLabel();
-                    emitterCustomLabel.Id = emitter.Code;
-                    emitterCustomLabel.Distance = 10000;
-                    emitterCustomLabel.Data = new List<LogicCalcuCustomLabelItem>()
-                    {
-                        new LogicCalcuCustomLabelItem(){ Name="娴侀噺",Value=Math.Round(calcuEmitter.CalcuDemand.Value,1).ToString(),Unit="m鲁/h"},
-                        new LogicCalcuCustomLabelItem(){ Name="鍘嬪姏",Value=Math.Round(calcuEmitter.CalcuDemand.Value,4).ToString(),Unit="m"}
-                    };
-                    obj.Add(emitterCustomLabel);
-                }
-            });
             await _bimfaceInteropContainer?.SetLogicCalcuCustomLabels(obj);
         }
 

--
Gitblit v1.9.3