From 01c46e7bfe9aa8fb20b29f70c83c03a307af548a Mon Sep 17 00:00:00 2001
From: JLChen <551775569@qq.com>
Date: 星期二, 22 十二月 2020 16:35:16 +0800
Subject: [PATCH] 2020-12-22 1.更新。

---
 HDL_ON/UI/UI2/FuntionControlView/AC/ACPageBLL.cs |  133 ++++++++++++++++++++++++++++++++------------
 1 files changed, 96 insertions(+), 37 deletions(-)

diff --git a/HDL_ON/UI/UI2/FuntionControlView/AC/ACPageBLL.cs b/HDL_ON/UI/UI2/FuntionControlView/AC/ACPageBLL.cs
index f8a9d86..6a538db 100644
--- a/HDL_ON/UI/UI2/FuntionControlView/AC/ACPageBLL.cs
+++ b/HDL_ON/UI/UI2/FuntionControlView/AC/ACPageBLL.cs
@@ -1,4 +1,5 @@
 锘縰sing System;
+using HDL_ON.DriverLayer;
 using HDL_ON.Entity;
 using HDL_ON.UI.CSS;
 using Shared;
@@ -7,27 +8,35 @@
 {
     public partial class ACPage
     {
+        static DateTime updataTime = DateTime.MinValue;
         public static void UpdataStates(AC uAc)
         {
             try
             {
-                
                 Application.RunOnMainThread(() =>
                 {
                     if (bodyView == null)
                     {
                         return;
                     }
-                    bodyView.arcBar.ProgressBarColor = bodyView.aC.on_off == "on" ? CSS_Color.MainColor : CSS_Color.PromptingColor2;
-                    bodyView.btnTemp.Text = uAc.curTemp.ToString();
-                    bodyView.btnIndoorTemp.Text = Language.StringByID(StringId.IndoorTemp) + uAc.indoorTemp + "掳C";
+                    if (updataTime.AddMilliseconds(300) > DateTime.Now)
+                    {
+                        return;
+                    }
+                    updataTime = DateTime.Now;
+                    bodyView.arcBar.IsOffline = bodyView.aC.trait_on_off.curValue.ToString() != "on";
+                    bodyView.btnTemp.Text = uAc.trait_temp.curValue.ToString();
+                    bodyView.btnIndoorTemp.Text = Language.StringByID(StringId.IndoorTemp) + Convert.ToInt32(Convert.ToDouble(uAc.trait_IndoorTemp.curValue)) + "掳C";
                     bodyView.btnMode.UnSelectedImagePath = uAc.curModeImage;
                     bodyView.btnWindSpeed.UnSelectedImagePath = uAc.curFanImage;
-                    bodyView.btnSwitch.IsSelected = uAc.on_off == "on";
-                    if (uAc.refreshTime.AddMilliseconds(1000) < DateTime.Now)
+                    bodyView.btnSwitch.IsSelected = uAc.trait_on_off.curValue.ToString() == "on";
+                    if (uAc.refreshTime.AddMilliseconds(500) < DateTime.Now)
                     {
-                        bodyView.arcBar.Progress = uAc.curTemp;
+                        bodyView.arcBar.Progress = Convert.ToInt32(Convert.ToDouble(uAc.trait_temp.curValue));
                     }
+                    bodyView.arcBar.ThumbImagePath = uAc.trait_on_off.curValue.ToString() == "on" ? "FunctionIcon/AC/DiyThumbIconOn.png" : "FunctionIcon/AC/DiyThumbIcon.png";
+                    bodyView.arcBar.IsClickable = uAc.trait_on_off.curValue.ToString() == "on";
+
                 });
             }
             catch (Exception ex)
@@ -56,8 +65,8 @@
         {
             btnCollection.MouseUpEventHandler += (sender, e) =>
             {
-                btnCollection.IsSelected = aC.collection = btnCollection_Out.IsSelected = !btnCollection.IsSelected;
-                DB_ResidenceData.residenceData.SaveResidenceData();
+                btnCollection.IsSelected = aC.collect = btnCollection_Out.IsSelected = !btnCollection.IsSelected;
+                aC.SaveFunctionData(true);
             };
         }
 
@@ -68,36 +77,57 @@
         {
             btnMinus.MouseUpEventHandler = (sender, e) =>
             {
-                if (aC.curTemp < 17)
+                if (aC.trait_on_off.curValue.ToString() == "off")
                 {
                     return;
                 }
-                aC.curTemp--;
-                arcBar.Progress = aC.curTemp;
-                btnTemp.Text = aC.curTemp.ToString();
-                Control.Send(CommandType_A.write, aC);
+                var temp = Convert.ToInt32(aC.trait_temp.curValue);
+                if (temp < 17)
+                {
+                    return;
+                }
+                temp--;
+                arcBar.Progress = temp;
+                btnTemp.Text = temp.ToString();
+                aC.trait_temp.curValue = temp.ToString();
+                //Control.Send(CommandType_A.write, aC);
+                System.Collections.Generic.Dictionary<string, string> d = new System.Collections.Generic.Dictionary<string, string>();
+                d.Add(FunctionAttributeKey.SetTemp, temp.ToString());
+                Control.Ins.SendWriteCommand(aC, d);
             };
             btnPlus.MouseUpEventHandler = (sender, e) =>
             {
-                if (aC.curTemp > 37)
+                if (aC.trait_on_off.curValue.ToString() == "off")
                 {
                     return;
                 }
-                aC.curTemp++;
-                arcBar.Progress = aC.curTemp;
-                btnTemp.Text = aC.curTemp.ToString();
-                Control.Send(CommandType_A.write, aC);
+                var temp = Convert.ToInt32(aC.trait_temp.curValue);
+                if (temp > 31)
+                {
+                    return;
+                }
+                temp++;
+                arcBar.Progress = temp;
+                btnTemp.Text = temp.ToString();
+                aC.trait_temp.curValue = temp.ToString();
+                System.Collections.Generic.Dictionary<string, string> d = new System.Collections.Generic.Dictionary<string, string>();
+                d.Add(FunctionAttributeKey.SetTemp, aC.trait_temp.curValue.ToString());
+                Control.Ins.SendWriteCommand(aC, d);
+                //aC.GetSendJObject
+
             };
-            arcBar.OnStopTrackingTouchEvent  = (sender,e) =>
-            {
-                aC.curTemp = arcBar.Progress;
-                btnTemp.Text = aC.curTemp.ToString();
-                Control.Send(CommandType_A.write, aC);
-            };
+            arcBar.OnStopTrackingTouchEvent = (sender, e) =>
+           {
+               aC.trait_temp.curValue = arcBar.Progress.ToString();
+               btnTemp.Text = aC.trait_temp.curValue.ToString();
+               System.Collections.Generic.Dictionary<string, string> d = new System.Collections.Generic.Dictionary<string, string>();
+               d.Add(FunctionAttributeKey.SetTemp, aC.trait_temp.curValue.ToString());
+               Control.Ins.SendWriteCommand(aC, d);
+           };
             arcBar.OnProgressChangedEvent = (sender, e) =>
             {
-                aC.curTemp = e;
-                btnTemp.Text = aC.curTemp.ToString();
+                aC.trait_temp.curValue = e.ToString();
+                btnTemp.Text = aC.trait_temp.curValue.ToString();
             };
         }
         /// <summary>
@@ -107,26 +137,47 @@
         {
             btnMode.MouseUpEventHandler = (sender, e) =>
             {
+                if (aC.trait_on_off.curValue.ToString() == "off")
+                {
+                    return;
+                }
                 LoadDiv_ChangeModeView();
             };
             btnWindSpeed.MouseUpEventHandler = (sender, e) =>
             {
+                if (aC.trait_on_off.curValue.ToString() == "off")
+                {
+                    return;
+                }
                 LoadDiv_ChangeFanView();
             };
 
             btnSwitch.MouseUpEventHandler = (sender, e) =>
             {
                 btnSwitch.IsSelected = !btnSwitch.IsSelected;
-                aC.on_off = btnSwitch.IsSelected ? "on" : "off";
-                Control.Send(CommandType_A.write, aC);
+                aC.trait_on_off.curValue = btnSwitch.IsSelected ? "on" : "off";
+                if (aC.trait_on_off.curValue.ToString() == "on")
+                {
+                    arcBar.ThumbImagePath = "FunctionIcon/AC/DiyThumbIconOn.png";
+                    btnSwitch.IsSelected = true;
+                    arcBar.IsOffline = false;
+                }
+                else
+                {
+                    arcBar.ThumbImagePath = "FunctionIcon/AC/DiyThumbIcon.png";
+                    btnSwitch.IsBold = false;
+                    arcBar.IsOffline = true;
+                }
+                System.Collections.Generic.Dictionary<string, string> d = new System.Collections.Generic.Dictionary<string, string>();
+                d.Add(FunctionAttributeKey.OnOff, aC.trait_on_off.curValue.ToString());
+                Control.Ins.SendWriteCommand(aC, d);
             };
         }
-
 
         /// <summary>
         /// 鍔犺浇妯″紡鏀瑰彉浜嬩欢
         /// </summary>
-        void LoadEvent_ChangeMode(Dialog dialog, FrameLayout dialogView, Button btn1, Button btn2,string curMode)
+        void LoadEvent_ChangeMode(Dialog dialog, FrameLayout dialogView, Button btn1, Button btn2, string curMode)
         {
             EventHandler<MouseEventArgs> eventHandler = (sender, e) =>
             {
@@ -135,8 +186,12 @@
             EventHandler<MouseEventArgs> eventHandler1 = (sender, e) =>
             {
                 btn1.IsSelected = btn2.IsSelected = true;
-                aC.curMode = curMode;
-                Control.Send(CommandType_A.write, aC);
+                aC.trait_mode.curValue = curMode;
+                btnMode.UnSelectedImagePath = aC.curModeImage;
+                //Control.Send(CommandType_A.write, aC);
+                System.Collections.Generic.Dictionary<string, string> d = new System.Collections.Generic.Dictionary<string, string>();
+                d.Add(FunctionAttributeKey.Mode, curMode);
+                Control.Ins.SendWriteCommand(aC, d);
                 dialog.Close();
             };
             btn1.MouseUpEventHandler = eventHandler1;
@@ -144,9 +199,9 @@
             dialogView.MouseUpEventHandler = eventHandler;
         }
         /// <summary>
-        /// 鍔犺浇妯″紡鏀瑰彉浜嬩欢
+        /// 鍔犺浇椋庨�熸敼鍙樹簨浠�
         /// </summary>
-        void LoadEvent_ChangeFan(Dialog dialog, FrameLayout dialogView, Button btn1, Button btn2,string curFan)
+        void LoadEvent_ChangeFan(Dialog dialog, FrameLayout dialogView, Button btn1, Button btn2, string curFan)
         {
             EventHandler<MouseEventArgs> eventHandler = (sender, e) =>
             {
@@ -155,8 +210,12 @@
             EventHandler<MouseEventArgs> eventHandler1 = (sender, e) =>
             {
                 btn1.IsSelected = btn2.IsSelected = true;
-                aC.curFan = curFan;
-                Control.Send(CommandType_A.write, aC);
+                aC.trait_fan.curValue = curFan;
+                btnWindSpeed.UnSelectedImagePath = aC.curFanImage;
+                //Control.Send(CommandType_A.write, aC);
+                System.Collections.Generic.Dictionary<string, string> d = new System.Collections.Generic.Dictionary<string, string>();
+                d.Add(FunctionAttributeKey.FanSpeed, curFan);
+                Control.Ins.SendWriteCommand(aC, d);
                 dialog.Close();
             };
             btn1.MouseUpEventHandler = eventHandler1;

--
Gitblit v1.8.0