JLChen
2020-05-28 04bd96cbf5d12a4e4b116d2b05fd0d05ea81ee23
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
using System;
using System.Collections.Generic;
using Shared.SimpleControl;
 
namespace Shared.SimpleControl.Phone
{
    public class DoorLockRelayPage : FrameLayout
    {
        /// <summary>
        /// 继电器门锁页面
        /// </summary>
        public static DoorLockRelayPage curView;
        //FrameLayout roomBackgroundImage;
        LightDoorLock mLightDoorLock;
 
        Button btnClose;
        Button btnOpen;
 
        Button btnCloseText;
        Button btnOpenText;
 
        Button btnTitle;
        //Room room;
 
        /// <summary>
        /// 显示当前房间窗帘设备
        /// </summary>
        public DoorLockRelayPage (LightDoorLock mLightDoorLock)
        {
            this.mLightDoorLock = mLightDoorLock;
            BackgroundColor = SkinStyle.Current.MainColor;
            //room = Room;
            curView = this;
        }
 
        /// <summary>
        /// 接受数据之后更新UI
        /// </summary>
        /// <returns>The user lights.</returns>
        public static void UpdateStatus (byte subnetID, byte deviceID, byte loopID, byte status)
        {
            Application.RunOnMainThread (() => {
                if (curView == null) return;
 
                if (curView.mLightDoorLock.ReadStatusSubnetID != subnetID
                    || curView.mLightDoorLock.ReadStatusDeviceID != deviceID
                    || curView.mLightDoorLock.ReadStatusLoopID != loopID) {
                    return;
                }
 
                curView.mLightDoorLock.CurrentStatus = status;
                curView.RefreshButtonStatus ();
            });
        }
 
        /// <summary>
        /// 房间模式进入的窗帘界面
        /// </summary>
        /// <returns>The lights room.</returns>
        public void showmLightDoorLocksRoom ()
        {
           
            #region 标题
            var topView = new FrameLayout () {
                Y = Application.GetRealHeight (36),
                Height = Application.GetRealHeight (90),
                Width = Application.GetRealWidth (640),
            };
            AddChidren (topView);
 
            btnTitle = new Button () {
                TextAlignment = TextAlignment.Center,
                Text = mLightDoorLock.Name,
                TextColor = SkinStyle.Current.TextColor1,
                TextSize = 19,
            };
            topView.AddChidren (btnTitle);
 
            var logo = new Button () {
                Width = Application.GetRealWidth (154),
                Height = Application.GetRealHeight (90),
                X = Application.GetRealWidth (486),
                UnSelectedImagePath = MainPage.LogoString,
            };
            topView.AddChidren (logo);
            var back = new Button () {
                Height = Application.GetRealHeight (90),
                Width = Application.GetRealWidth (85),
                UnSelectedImagePath = "Item/Back.png",
                SelectedImagePath = "Item/BackSelected.png",
            };
            topView.AddChidren (back);
            back.MouseUpEventHandler += (sender, e) => {
                (Parent as PageLayout).PageIndex -= 1;
                curView = null;
            };
            #endregion
 
            AddLightDoorLock (mLightDoorLock as LightDoorLock, topView);
            ReadDoorLockStatus ();
            //Control.ControlBytesSendHasReturn (Command.ReadLightEquipmentAllLoopBrightness, mLightDoorLock.SubnetID, mLightDoorLock.DeviceID, new byte [] { });
 
            //Control.ControlBytesSend (Command.ReadLightEquipmentAllLoopBrightness, mLightDoorLock.SubnetID, mLightDoorLock.DeviceID, new byte [] { mLightDoorLock.PhysicsLoopID });
        }
 
        /// <summary>
        /// 加载按钮
        /// </summary>
        void AddLightDoorLock (LightDoorLock mmLightDoorLock, FrameLayout topView)
        {
 
            btnTitle.Text = mLightDoorLock.Name;
            var mLightDoorLockView = new FrameLayout(){
                Height = Application.GetRealHeight (1009),
                Width = Application.GetRealWidth (640),
                Y = topView.Bottom,
                BackgroundColor = SkinStyle.Current.SysPanleDevicesBox,
            };
            AddChidren (mLightDoorLockView);
 
 
            var lineView = new FrameLayout () {
                Y = Application.GetRealHeight (505),
                Height = Application.GetRealHeight (2),
                BackgroundColor = SkinStyle.Current.UserMenuItemButton
            };
            mLightDoorLockView.AddChidren (lineView);
 
            btnClose = new Button () {
                Width = Application.GetMinRealAverage (132),
                Height = Application.GetMinRealAverage (176),
                X = Application.GetRealWidth (258),
                Y = Application.GetRealHeight (137),
                UnSelectedImagePath = "DoorLockPic/door_lock_relay_close.png",
                SelectedImagePath = "DoorLockPic/door_lock_relay_close_select.png",
            };
            mLightDoorLockView.AddChidren (btnClose);
 
            btnCloseText = new Button () {
                Width = Application.GetMinRealAverage (640-200),
                Height = Application.GetMinRealAverage (34),
                X = Application.GetRealWidth (100),
                Y = btnClose.Bottom + Application.GetRealHeight(22),
                TextSize = 18,
                TextAlignment = TextAlignment.Center,
                TextColor = SkinStyle.Current.TextColor1,
                TextID = R.MyInternationalizationString.DoorlockClosed
 
            };
            mLightDoorLockView.AddChidren (btnCloseText);
 
 
 
            btnOpen = new Button () {
                Width = Application.GetMinRealAverage (182),
                Height = Application.GetMinRealAverage (176),
                X = Application.GetRealWidth (258),
                Y = Application.GetRealHeight (634),
                UnSelectedImagePath = "DoorLockPic/door_lock_relay_open.png",
                SelectedImagePath = "DoorLockPic/door_lock_relay_open_select.png",
            };
            mLightDoorLockView.AddChidren (btnOpen);
 
            btnOpenText = new Button () {
                Width = Application.GetMinRealAverage (640-200),
                Height = Application.GetMinRealAverage (34),
                X = Application.GetRealWidth (100),
                Y = btnOpen.Bottom + Application.GetRealHeight (22),
                TextSize = 18,
                TextAlignment = TextAlignment.Center,
                TextColor = SkinStyle.Current.TextColor1,
                TextID = R.MyInternationalizationString.DoorlockOpen
            };
            mLightDoorLockView.AddChidren (btnOpenText);
 
 
            EventHandler<MouseEventArgs> CloseEventHandler = (sender, e) => {
 
                SetButtonIsOpenStatus (false);
 
                Control.ControlBytesSend (Command.UpdataCurtainModelStutas, mLightDoorLock.SubnetID, mLightDoorLock.DeviceID, new byte [] { mmLightDoorLock.LoopID, 2 });
            };
 
            EventHandler<MouseEventArgs> OpenEventHandler = (sender, e) => {
 
                SetButtonIsOpenStatus (true);
 
                Control.ControlBytesSend (Command.UpdataCurtainModelStutas, mLightDoorLock.SubnetID, mLightDoorLock.DeviceID, new byte [] { mmLightDoorLock.LoopID, 1 });
            };
 
 
            btnClose.MouseDownEventHandler += CloseEventHandler;
            btnCloseText.MouseDownEventHandler += CloseEventHandler;
 
            btnOpen.MouseDownEventHandler += OpenEventHandler;
            btnOpenText.MouseDownEventHandler += OpenEventHandler;
 
        }
 
        private void ReadDoorLockStatus ()
        {
            System.Threading.Tasks.Task.Run (() => {
                byte [] bbb = Control.ControlBytesSendHasReturn (Command.ReadDryContactStatus, mLightDoorLock.ReadStatusSubnetID, mLightDoorLock.ReadStatusDeviceID, new byte [] { 1, mLightDoorLock.ReadStatusLoopID });
                if (bbb != null) {
                    Application.RunOnMainThread (() => {
                        mLightDoorLock.CurrentStatus = bbb [2];
                        RefreshButtonStatus ();
                    });
                }
            });
        }
 
 
 
        private void RefreshButtonStatus()
        {
            if (mLightDoorLock.CurrentStatus == 1) {
                SetButtonIsOpenStatus (true);
            } else {
                SetButtonIsOpenStatus (false);
            }
        }
 
        private void SetButtonIsOpenStatus (bool bOpen)
        {
            btnOpen.IsSelected = bOpen;
            btnClose.IsSelected = !bOpen;
        }
 
        ///// <summary>
        ///// 结束值
        ///// </summary>
        ///// <param name="v">V.</param>
        //void intSpped (int v)
        //{
        //    MainPage.Loading.Start (Language.StringByID (R.MyInternationalizationString.Initiating));
        //    DateTime dateTime = DateTime.Now;
        //    System.Threading.Tasks.Task.Run (() => {
        //        while (curView != null) {
        //            System.Threading.Thread.Sleep (500);
        //            var bytes = Control.ControlBytesSendHasReturn (Command.ReadmLightDoorLockStatus, mLightDoorLock.SubnetID, mLightDoorLock.DeviceID, new byte [] { 17 });
        //            if (bytes == null) {
        //                break;
        //            } else {
        //                if (2 <= bytes.Length && v == bytes [1]) {
        //                    if (mLightDoorLock.Type == DeviceType.mLightDoorLockRoller) {
        //                        (mLightDoorLock as mLightDoorLockRoller).Speed = 100 / ((DateTime.Now - dateTime).TotalMilliseconds - 300);
        //                    } else if (mLightDoorLock.Type == DeviceType.mLightDoorLockTrietex) {
        //                        (mLightDoorLock as mLightDoorLockTrietex).Speed = 100 / ((DateTime.Now - dateTime).TotalMilliseconds - 300);
        //                    }
        //                    break;
        //                }
        //            }
        //        }
 
        //        Application.RunOnMainThread (() => {
        //            MainPage.Loading.Hide ();
        //        });
        //    });
        //}
 
        //void stop ()
        //{
        //    try {
        //        if (th != null) {
        //            th.Abort ();
        //            th = null;
        //            //Control.ControlBytesSend (Command.ReadmLightDoorLockStatus, mLightDoorLock.SubnetID, mLightDoorLock.DeviceID, new byte [] { 17 });
        //        }
        //    } catch { }
        //}
 
 
 
 
    }
}