陈嘉乐
2020-04-28 3272ca5b51e19f7f8a827b0f68400570a547fe60
ZigbeeApp/Shared/Phone/UserCenter/Device/DeviceFunctionSettionForm.cs
@@ -3,7 +3,7 @@
using System.Text;
using ZigBee.Device;
namespace Shared.Phone.UserCenter.DeviceRelay
namespace Shared.Phone.UserCenter.Device
{
    /// <summary>
    /// 设备的功能设置界面
@@ -15,7 +15,7 @@
        /// <summary>
        /// 列表控件
        /// </summary>
        private VerticalListControl listview = null;
        private FrameListControl listview = null;
        /// <summary>
        /// 当前选择的设备
        /// </summary>
@@ -29,9 +29,13 @@
        /// </summary>
        private FrameCaptionInputControl btnDeviceName = null;
        /// <summary>
        /// 设备Mac地址
        /// 设备的某一回路
        /// </summary>
        private string deviceMac = string.Empty;
        private CommonDevice deviceObj = null;
        /// <summary>
        /// 只显示同一种类型的回路
        /// </summary>
        private bool onlyType = false;
        /// <summary>
        /// 设备需要保存的设备名字
        /// </summary>
@@ -40,6 +44,10 @@
        /// 设备需要保存的设备功能
        /// </summary>
        private Dictionary<int, DeviceFunctionType> dicDeviceFuncType = new Dictionary<int, DeviceFunctionType>();
        /// <summary>
        /// 信息编辑控件
        /// </summary>
        private InformationEditorControl tableContr = null;
        #endregion
@@ -48,10 +56,12 @@
        /// <summary>
        /// 画面显示(底层会固定调用此方法,借以完成画面创建)
        /// </summary>
        /// <param name="i_deviceMac">设备Mac地址</param>
        public void ShowForm(string i_deviceMac)
        /// <param name="i_device">设备的某一回路</param>
        /// <param name="i_onlyType">只显示同一种类型的回路</param>
        public void ShowForm(CommonDevice i_device, bool i_onlyType)
        {
            this.deviceMac = i_deviceMac;
            this.deviceObj = i_device;
            this.onlyType = i_onlyType;
            //设置头部信息
            base.SetTitleText(Language.StringByID(R.MyInternationalizationString.uFunctionSettingUp));
@@ -71,16 +81,16 @@
            //清空bodyFrame
            this.ClearBodyFrame();
            var listBackControl = new VerticalFrameControl();
            listBackControl.Height = bodyFrameLayout.Height;
            bodyFrameLayout.AddChidren(listBackControl);
            //初始化桌布
            var tableContr = new InformationEditorControl();
            this.listview = tableContr.InitControl(bodyFrameLayout, Language.StringByID(R.MyInternationalizationString.uDeviceEditor), 708, 1128);
            this.tableContr = new InformationEditorControl();
            this.listview = tableContr.InitControl(listBackControl.frameTable, Language.StringByID(R.MyInternationalizationString.uDeviceEditor), 1128);
            //初始化设备回路图标
            this.InitDeviceEpointIcon();
            //初始化桌布完成
            tableContr.FinishInitControl(bodyFrameLayout, this.listview);
            tableContr = null;
            this.InitDeviceEpointIcon(listBackControl);
            //保存
            var btnFinish = new BottomClickButton();
@@ -94,7 +104,7 @@
                this.ShowProgressBar();
                foreach (var epoint in dicDeviceSaveName.Keys)
                {
                    var device = Common.LocalDevice.Current.GetDevice(deviceMac, epoint);
                    var device = Common.LocalDevice.Current.GetDevice(deviceObj.DeviceAddr, epoint);
                    if (device == null || dicDeviceSaveName[epoint] == string.Empty)
                    {
                        //不能允许空白名字
@@ -116,7 +126,7 @@
                }
                foreach (var epoint in dicDeviceFuncType.Keys)
                {
                    var device = Common.LocalDevice.Current.GetDevice(deviceMac, epoint);
                    var device = Common.LocalDevice.Current.GetDevice(deviceObj.DeviceAddr, epoint);
                    if (device == null)
                    {
                        continue;
@@ -139,6 +149,10 @@
                    else if (device.DfunctionType == DeviceFunctionType.A灯光)
                    {
                        device.IconPath = "Device/Light.png";
                    }
                    else
                    {
                        device.IconPath = "Device/RelayEpoint.png";
                    }
                    device.ReSave();
                }
@@ -198,11 +212,13 @@
            rowBeloneArea.SelectRoomEvent += (roomKeys) =>
            {
                //变更房间
                Common.Room.CurrentRoom.ChangedRoom(nowSelectDevice, roomKeys);
                HdlRoomLogic.Current.ChangedRoom(nowSelectDevice, roomKeys);
            };
            //添加功能类型行
            this.AddFunctionTypeRow();
            //初始化桌布完成
            tableContr.FinishInitControl();
        }
        #endregion
@@ -214,6 +230,11 @@
        /// </summary>
        private void InitTopRightMenu()
        {
            //检测此回路是否拥有定位功能
            if (Common.LocalDevice.Current.DeviceIsCanFixedPosition(nowSelectDevice) == false)
            {
                return;
            }
            var btnIcon = new MostRightIconControl(69, 69);
            btnIcon.UnSelectedImagePath = "Item/More.png";
            topFrameLayout.AddChidren(btnIcon);
@@ -234,11 +255,11 @@
            string deviceMenu = string.Empty;
            //检测此回路是否拥有定位功能
            bool canTest = Common.LocalDevice.Current.DeviceIsCanFixedPosition(nowSelectDevice);
            if (canTest == true)
            {
                menuCount = 2;
            }
            var frame = new TopRightMenuControl(this, menuCount);
            //if (canTest == true)
            //{
            //    menuCount = 2;
            //}
            var frame = new TopRightMenuControl(menuCount, 1);
            if (canTest == true)
            {
                //定位
@@ -251,10 +272,10 @@
            }
            //删除
            deviceMenu = Language.StringByID(R.MyInternationalizationString.uDelete);
            frame.AddRowMenu(deviceMenu, "Item/DeleteIcon2.png", "Item/DeleteIcon2Selected.png", () =>
            {
            });
            //deviceMenu = Language.StringByID(R.MyInternationalizationString.uDelete);
            //frame.AddRowMenu(deviceMenu, "Item/DeleteIcon2.png", "Item/DeleteIcon2Selected.png", () =>
            //{
            //});
        }
        #endregion
@@ -320,11 +341,20 @@
                        //标题:选择功能类型
                        var title = Language.StringByID(R.MyInternationalizationString.uSelectFunctionType);
                        var form = new BottomDialogSelectForm();
                        var form = new BottomItemSelectForm();
                        form.CancelCallEvent = true;//允许取消
                        form.AddForm(title, listText, nowSelectNo);
                        form.FinishSelectEvent += (selectNo) =>
                        {
                            btnFunction.Text = listText[selectNo];
                            if (selectNo == -1)
                            {
                                //取消选择
                                btnFunction.Text = string.Empty;
                            }
                            else
                            {
                                btnFunction.Text = listText[selectNo];
                            }
                            nowSelectNo = selectNo;
                            //记录起当前选择的功能类型
                            if (selectNo == 0)
@@ -335,9 +365,13 @@
                            {
                                dicDeviceFuncType[nowSelectDevice.DeviceEpoint] = DeviceFunctionType.A灯光;
                            }
                            else
                            else if (selectNo == 2)
                            {
                                dicDeviceFuncType[nowSelectDevice.DeviceEpoint] = DeviceFunctionType.A插座;
                            }
                            else
                            {
                                dicDeviceFuncType[nowSelectDevice.DeviceEpoint] = DeviceFunctionType.A未定义;
                            }
                        };
                    };
@@ -352,7 +386,7 @@
        /// <summary>
        /// 初始化设备回路图标
        /// </summary>
        private void InitDeviceEpointIcon()
        private void InitDeviceEpointIcon(VerticalFrameControl listBackControl)
        {
            //获取按组分配的设备
            var listIcon = this.GetAllDeviceGroup();
@@ -360,11 +394,10 @@
            var frameBorder = new FrameLayout();
            frameBorder.Y = Application.GetRealHeight(147);
            frameBorder.Gravity = Gravity.CenterHorizontal;
            frameBorder.Width = Application.GetRealWidth(887);
            frameBorder.Width = this.GetPictrueRealSize(887);
            frameBorder.Height = Application.GetRealHeight(423);
            frameBorder.BorderWidth = (uint)Application.GetMinRealAverage(3);
            frameBorder.BorderColor = 0xffd0d0d0;
            bodyFrameLayout.AddChidren(frameBorder);
            frameBorder.Radius = (uint)Application.GetRealHeight(6);
            listBackControl.frameTable.AddChidren(frameBorder);
            var frameBack = new FrameLayout();
            frameBack.Height = frameBorder.Height;
@@ -374,7 +407,7 @@
                //需要滑动控件
                var listControl = new VerticalScrolViewLayout();
                listControl.Height = frameBorder.Height;
                bodyFrameLayout.AddChidren(listControl);
                frameBorder.AddChidren(listControl);
                listControl.AddChidren(frameBack);
            }
@@ -388,11 +421,11 @@
            for (int i = 0; i < listIcon.Count; i++)
            {
                var frame = new FrameLayout();
                frame.Width = Application.GetMinRealAverage(887);
                frame.Height = Application.GetMinRealAverage(124);
                frame.Width = frameBorder.Width;
                frame.Height = this.GetPictrueRealSize(124);
                frameBack.AddChidren(frame);
                //初始化一行设备图标
                this.InitDeviceIconFrame(frame, listIcon[i], i == 0, ref index);
                this.InitDeviceIconFrame(frame, listIcon[i], ref index);
                if (listIcon.Count == 1)
                {
@@ -400,14 +433,16 @@
                }
                else
                {
                    frame.Y = Application.GetMinRealAverage(58) + (frameBack.ChildrenCount - 1) * (frame.Height + Application.GetMinRealAverage(60));
                    frame.Y = this.GetPictrueRealSize(58) + (frameBack.ChildrenCount - 1) * (frame.Height + this.GetPictrueRealSize(60));
                }
            }
            if (listIcon.Count > 2)
            {
                //计算真实高度
                int realHeight = Application.GetMinRealAverage(58 + 58) + (frameBack.ChildrenCount - 1) * Application.GetMinRealAverage(124 + 60);
                int realHeight = this.GetPictrueRealSize(58 + 58);//上下间距
                realHeight += frameBack.ChildrenCount * this.GetPictrueRealSize(124);//圆圈高度
                realHeight += (frameBack.ChildrenCount-1) * this.GetPictrueRealSize(60);//圆圈间距
                if (realHeight > frameBack.Height)
                {
                    //变更高度
@@ -421,14 +456,13 @@
        /// </summary>
        /// <param name="frame"></param>
        /// <param name="listDevice"></param>
        /// <param name="isFirstRow"></param>
        /// <param name="index"></param>
        /// <returns></returns>
        private void InitDeviceIconFrame(FrameLayout frame, List<CommonDevice> listDevice, bool isFirstRow, ref int index)
        private void InitDeviceIconFrame(FrameLayout frame, List<CommonDevice> listDevice, ref int index)
        {
            NormalViewControl btnTemp = null;
            //间距
            int space = Application.GetMinRealAverage(84);
            int space = this.GetPictrueRealSize(84);
            int defultXX = (frame.Width - frame.Height * listDevice.Count - (listDevice.Count - 1) * space) / 2;
            for (int i = 0; i < listDevice.Count; i++)
            {
@@ -437,7 +471,7 @@
                btnIcon.Name = "btn" + listDevice[i].DeviceEpoint;
                btnIcon.X = defultXX + i * (frame.Height + space);
                btnIcon.Radius = (uint)frame.Height / 2;
                btnIcon.BorderWidth = (uint)Application.GetMinRealAverage(6);
                btnIcon.BorderWidth = 2;
                btnIcon.BorderColor = 0xff979797;
                btnIcon.TextAlignment = TextAlignment.Center;
                btnIcon.TextColor = UserCenterColor.Current.TextGrayColor3;
@@ -447,12 +481,12 @@
                //点击事件
                btnIcon.ButtonClickEvent += this.DeviceEpointSelectEvent;
                if (i == 0 && isFirstRow == true)
                if (listDevice[i].DeviceEpoint == deviceObj.DeviceEpoint)
                {
                    btnTemp = btnIcon;
                }
            }
            if (isFirstRow == true)
            if (btnTemp != null)
            {
                //初始化菜单行
                this.DeviceEpointSelectEvent(btnTemp, null);
@@ -465,7 +499,8 @@
        /// <returns></returns>
        private List<List<CommonDevice>> GetAllDeviceGroup()
        {
            var listDevice = Common.LocalDevice.Current.GetDevicesByMac(deviceMac);
            bool hadDevice = false;
            var listDevice = Common.LocalDevice.Current.GetDevicesByMac(deviceObj.DeviceAddr);
            var listRelay = new List<CommonDevice>();
            foreach (var device in listDevice)
            {
@@ -474,7 +509,17 @@
                    //这个界面不处理干接点
                    continue;
                }
                if (this.onlyType == true && device.Type != deviceObj.Type)
                {
                    //只要同一种类型的
                    continue;
                }
                listRelay.Add(device);
                if (device.DeviceEpoint == deviceObj.DeviceEpoint)
                {
                    //能够匹配得到这个回路
                    hadDevice = true;
                }
            }
            //排序
            listRelay.Sort((obj1, obj2) =>
@@ -485,6 +530,12 @@
                }
                return -1;
            });
            if (hadDevice == false)
            {
                //如果匹配不到这个回路,则默认第一个
                this.deviceObj = listRelay[0];
            }
            //从下往上4个为一组
            var listIcon = new List<List<CommonDevice>>();
            var listTemp = new List<CommonDevice>();
@@ -536,7 +587,7 @@
            nowContr.TextColor = UserCenterColor.Current.TextColor1;
            nowSelectControl = nowContr;
            nowSelectDevice = Common.LocalDevice.Current.GetDevice(deviceMac, Convert.ToInt32(nowContr.Name.Replace("btn", string.Empty)));
            nowSelectDevice = Common.LocalDevice.Current.GetDevice(deviceObj.DeviceAddr, Convert.ToInt32(nowContr.Name.Replace("btn", string.Empty)));
            //重新初始化菜单行
            this.InitMenuRow();