xm
2020-04-16 6fa9d69da922c8049f5acfcbb9ce9fd26811024c
ZigbeeApp/Shared/Phone/UserCenter/Device/Bind/ChooseKeyModePage.cs
old mode 100755 new mode 100644
@@ -5,19 +5,8 @@
using static ZigBee.Device.BindObj;
namespace Shared.Phone.UserCenter.DeviceBind
{
    public class ChooseKeyModePage : BindCommonLayout, ZigBee.Common.IStatus
    public class ChooseKeyModePage : BindCommonLayout
    {
        /// <summary>
        /// 按键模式接收
        /// </summary>
        /// <param name="common">Common.</param>
        public void Changed(CommonDevice common)
        {
            Shared.Application.RunOnMainThread(() =>
            {
            });
        }
        /// 构造函数
        /// </summary>
        /// <param name="doorLock"></param>
@@ -29,23 +18,47 @@
            this.targetList = targetSelectList;
        }
        #region ◆ 变量申明__________________________
        ZigBee.Device.Panel currentKey;//当前按键
        //显示被绑定设备或场景的view
        VerticalScrolViewLayout midVerticalScrolViewLayout;//中部刷新列表
        HorizontalScrolViewLayout btnHorizontalScrolViewLayout;//房间列表左右滑动布局
        #region 变量申明
        /// <summary>
        /// 当前按键
        /// </summary>
        ZigBee.Device.Panel currentKey;
        /// <summary>
        /// 中部刷新列表
        /// </summary>
        VerticalScrolViewLayout midVerticalScrolViewLayout;
        /// <summary>
        /// 房间列表左右滑动布局
        /// </summary>
        HorizontalScrolViewLayout btnHorizontalScrolViewLayout;
        /// <summary>
        /// 按键配置的目标列表
        /// </summary>
        List<CommonDevice> targetList = new List<CommonDevice>();//本地临时选中列表
        List<CommonDevice> targetList = new List<CommonDevice>();
        /// <summary>
        /// 新的按键配置目标列表中,目标实际存在按键中,此时要删掉的数据
        /// 本地旧的选中列表
        /// </summary>
        List<CommonDevice> oldTargetList = new List<CommonDevice>();//本地旧的选中列表
        int currentClusterID = 6;//当前簇ID
        public Action<List<BindListResponseObj>> action;//回调绑定目标页面刷新
        int currentModeID = 0;//当前模式ID
        string curDeviceBindType = "";//当前设备绑定类型
        List<CommonDevice> oldTargetList = new List<CommonDevice>();
        /// <summary>
        /// 当前簇ID
        /// </summary>
        int currentClusterID = 6;
        /// <summary>
        /// 回调绑定目标页面刷新
        /// </summary>
        public Action<List<BindListResponseObj>> action;
        /// <summary>
        /// 当前模式ID
        /// </summary>
        int currentModeID = 0;
        /// <summary>
        /// 当前设备绑定类型
        /// </summary>
        string curDeviceBindType = "";
        /// <summary>
        /// 类型的具体模式列表
        /// </summary>
        List<int> typeDetailModeList = new List<int> { };
        #endregion
        /// <summary>
@@ -95,6 +108,7 @@
                BackgroundColor = Shared.Common.ZigbeeColor.Current.XMBlack,
                TextColor = Shared.Common.ZigbeeColor.Current.XMWhite,
                TextSize = 16,
                IsBold = true,
            };
            bottomFrameLayout.AddChidren(btnFinifh);
            #endregion
@@ -230,7 +244,7 @@
                            var dev = new AddedDeviceBindResponseAllData();
                            dev = await currentKey.AddDeviceBindAsync(addBindeDev);
                            if (dev.addedDeviceBindResponseData == null)
                            if (dev != null || dev.addedDeviceBindResponseData == null)
                            {
                                Application.RunOnMainThread(() =>
                                {
@@ -344,30 +358,259 @@
        /// </summary>
        /// <param name="gateway">Gateway.</param>
        /// <param name="key">Key.</param>
        private void KeyModeList()
        async private void KeyModeList()
        {
            midVerticalScrolViewLayout.RemoveAll();
            switch (curDeviceBindType)
            {
                case "AddSwitch":
                    currentClusterID = 6;
                    AddSwitchMode();
                    typeDetailModeList = await GetAddSwitchMode();
                    if (typeDetailModeList == null)
                    {
                        new Tip() { MaxWidth = 150, Text = Language.StringByID(R.MyInternationalizationString.GwResponseOvertime), Direction = AMPopTipDirection.None, CloseTime = 1 }.Show(Common.CommonPage.Instance);
                    }
                    else
                    {
                        AddSwitchMode();
                    }
                    break;
                case "AddDimmer":
                    AddDimmerMode();
                    currentClusterID = 8;
                    typeDetailModeList = await GetAddDimmerMode();
                    if (typeDetailModeList == null)
                    {
                        new Tip() { MaxWidth = 150, Text = Language.StringByID(R.MyInternationalizationString.GwResponseOvertime), Direction = AMPopTipDirection.None, CloseTime = 1 }.Show(Common.CommonPage.Instance);
                    }
                    else
                    {
                        AddDimmerMode();
                    }
                    break;
                case "AddCurtain":
                    currentClusterID = 258;
                    AddCurtainMode();
                    typeDetailModeList = await GetAddCurtainMode();
                    if (typeDetailModeList == null)
                    {
                        new Tip() { MaxWidth = 150, Text = Language.StringByID(R.MyInternationalizationString.GwResponseOvertime), Direction = AMPopTipDirection.None, CloseTime = 1 }.Show(Common.CommonPage.Instance);
                    }
                    else
                    {
                        AddCurtainMode();
                    }
                    break;
            }
        }
        private void AddSwitchMode()
        /// <summary>
        /// 获取开关具体类型
        /// </summary>
        /// <returns></returns>
        System.Threading.Tasks.Task<List<int>> GetAddSwitchMode()
        {
            return System.Threading.Tasks.Task.Run(async () =>
             {
                 Application.RunOnMainThread(() =>
                 {
                     CommonPage.Loading.Start();
                 });
                 typeDetailModeList.Clear();
                 List<int> result3 = new List<int> { };
                 try
                 {
                     //获取第三级功能
                     if (currentKey.privateFuncThirdLevelList.Count == 0 || currentKey.privateFuncThirdLevelList.Contains(100) == false || currentKey.privateFuncThirdLevelList.Contains(101) == false || currentKey.privateFuncThirdLevelList.Contains(102) == false)
                     {
                         result3 = await currentKey.GetPanelDeviceFunctionLevel3(256, 100);
                         foreach (var l3 in result3)
                         {
                             currentKey.privateFuncThirdLevelList.Add(l3);
                         }
                     }
                     else
                     {
                         if (currentKey.privateFuncThirdLevelList.Contains(100) == true)
                         {
                             result3.Add(100);
                         }
                         if (currentKey.privateFuncThirdLevelList.Contains(101) == true)
                         {
                             result3.Add(101);
                         }
                         if (currentKey.privateFuncThirdLevelList.Contains(102) == true)
                         {
                             result3.Add(102);
                         }
                     }
                 }
                 catch (Exception ex)
                 {
                     var aa = ex.Message;
                 }
                 finally
                 {
                     Application.RunOnMainThread(() =>
                     {
                         CommonPage.Loading.Hide();
                     });
                 }
                 return result3;
             });
        }
        /// <summary>
        /// 获取调光具体类型
        /// </summary>
        /// <returns></returns>
        System.Threading.Tasks.Task<List<int>> GetAddDimmerMode()
        {
            return System.Threading.Tasks.Task.Run(async () =>
            {
                Application.RunOnMainThread(() =>
                {
                    CommonPage.Loading.Start();
                });
                typeDetailModeList.Clear();
                List<int> result3 = new List<int> { };
                try
                {
                    //获取第三级功能
                    if (currentKey.privateFuncThirdLevelList.Count == 0
                        || currentKey.privateFuncThirdLevelList.Contains(200) == false
                        || currentKey.privateFuncThirdLevelList.Contains(201) == false
                        || currentKey.privateFuncThirdLevelList.Contains(203) == false
                        || currentKey.privateFuncThirdLevelList.Contains(204) == false
                        || currentKey.privateFuncThirdLevelList.Contains(205) == false)
                    {
                        result3 = await currentKey.GetPanelDeviceFunctionLevel3(256, 200);
                        foreach (var l3 in result3)
                        {
                            currentKey.privateFuncThirdLevelList.Add(l3);
                        }
                    }
                    else
                    {
                        if (currentKey.privateFuncThirdLevelList.Contains(200) == true)
                        {
                            result3.Add(200);
                        }
                        if (currentKey.privateFuncThirdLevelList.Contains(201) == true)
                        {
                            result3.Add(201);
                        }
                        if (currentKey.privateFuncThirdLevelList.Contains(203) == true)
                        {
                            result3.Add(203);
                        }
                        if (currentKey.privateFuncThirdLevelList.Contains(204) == true)
                        {
                            result3.Add(204);
                        }
                        if (currentKey.privateFuncThirdLevelList.Contains(205) == true)
                        {
                            result3.Add(205);
                        }
                    }
                }
                catch { }
                finally
                {
                    Application.RunOnMainThread(() =>
                    {
                        CommonPage.Loading.Hide();
                    });
                }
                return result3;
            });
        }
        /// <summary>
        /// 获取窗帘具体类型
        /// </summary>
        /// <returns></returns>
        System.Threading.Tasks.Task<List<int>> GetAddCurtainMode()
        {
            Application.RunOnMainThread(() =>
            {
                CommonPage.Loading.Start();
            });
            return System.Threading.Tasks.Task.Run(async () =>
            {
                typeDetailModeList.Clear();
                List<int> result3 = new List<int> { };
                try
                {
                    //获取第三级功能
                    if (currentKey.privateFuncThirdLevelList.Count == 0
                        || currentKey.privateFuncThirdLevelList.Contains(300) == false
                        || currentKey.privateFuncThirdLevelList.Contains(301) == false
                        || currentKey.privateFuncThirdLevelList.Contains(302) == false
                        || currentKey.privateFuncThirdLevelList.Contains(303) == false
                        || currentKey.privateFuncThirdLevelList.Contains(304) == false)
                    {
                        result3 = await currentKey.GetPanelDeviceFunctionLevel3(256, 300);
                        foreach (var l3 in result3)
                        {
                            currentKey.privateFuncThirdLevelList.Add(l3);
                        }
                    }
                    else
                    {
                        if (currentKey.privateFuncThirdLevelList.Contains(300) == true)
                        {
                            result3.Add(300);
                        }
                        if (currentKey.privateFuncThirdLevelList.Contains(301) == true)
                        {
                            result3.Add(301);
                        }
                        if (currentKey.privateFuncThirdLevelList.Contains(302) == true)
                        {
                            result3.Add(302);
                        }
                        if (currentKey.privateFuncThirdLevelList.Contains(303) == true)
                        {
                            result3.Add(303);
                        }
                        if (currentKey.privateFuncThirdLevelList.Contains(304) == true)
                        {
                            result3.Add(304);
                        }
                    }
                }
                catch { }
                finally
                {
                    Application.RunOnMainThread(() =>
                    {
                        CommonPage.Loading.Hide();
                    });
                }
                return result3;
            });
        }
        /// <summary>
        /// 添加开关模式
        /// </summary>
        async private void AddSwitchMode()
        {
            if (typeDetailModeList == null)
            {
                //再次动态获取按键支持的类
                typeDetailModeList = await GetAddSwitchMode();
                if (typeDetailModeList == null)
                {
                    Application.RunOnMainThread(() =>
                    {
                        new Tip() { MaxWidth = 150, Text = Language.StringByID(R.MyInternationalizationString.GwResponseOvertime), Direction = AMPopTipDirection.None, CloseTime = 1 }.Show(Common.CommonPage.Instance);
                    });
                    return;
                }
            }
            Button oldMode = null;
            for (int i = 0; i < 3; i++)
            int i = 0;
            foreach (var modeSwitchValue in typeDetailModeList)
            {
                #region 绑定表UI显(无数据处理)
                var rowLayout = new FrameLayout()
@@ -385,13 +628,14 @@
                    Y = Application.GetRealHeight(58),
                    TextColor = Shared.Common.ZigbeeColor.Current.TextBlack,
                    TextAlignment = TextAlignment.CenterLeft,
                    TextSize = 14,
                };
                rowLayout.AddChidren(btnModeText);
                var btnChoose = new Button()
                {
                    Width = Application.GetRealWidth(60),
                    Height = Application.GetRealHeight(60),
                    Width = Application.GetMinReal(60),
                    Height = Application.GetMinReal(60),
                    X = Application.GetRealWidth(861 + 81),
                    Y = Application.GetRealHeight(35),
                    SelectedImagePath = "DoorLock/SelectedIcon.png",
@@ -410,17 +654,21 @@
                rowLayout.AddChidren(line2);
                #endregion
                if (i == 0)
                switch (modeSwitchValue)
                {
                    btnModeText.Text = Language.StringByID(R.MyInternationalizationString.OnOffOn);
                    case 100:
                        btnModeText.Text = Language.StringByID(R.MyInternationalizationString.OnOffOn);
                        break;
                    case 101:
                        btnModeText.Text = Language.StringByID(R.MyInternationalizationString.OnOffoFF);
                        break;
                    case 102:
                        btnModeText.Text = Language.StringByID(R.MyInternationalizationString.OnOffOnOff);
                        break;
                }
                if (i == 1)
                if (i == typeDetailModeList.Count - 1)
                {
                    btnModeText.Text = Language.StringByID(R.MyInternationalizationString.OnOffoFF);
                }
                if (i == 2)
                {
                    btnModeText.Text = Language.StringByID(R.MyInternationalizationString.OnOffOnOff);
                    line2.Visible = false;
                }
@@ -486,13 +734,42 @@
                rowLayout.MouseUpEventHandler += hander;
                btnModeText.MouseUpEventHandler += hander;
                btnChoose.MouseUpEventHandler += hander;
                i++;
            }
        }
        private void AddDimmerMode()
        /// <summary>
        /// 添加调光模式
        /// </summary>
        async private void AddDimmerMode()
        {
            if (typeDetailModeList == null)
            {
                //再次动态获取按键支持的类
                typeDetailModeList = await GetAddDimmerMode();
                if (typeDetailModeList == null)
                {
                    Application.RunOnMainThread(() =>
                    {
                        new Tip() { MaxWidth = 150, Text = Language.StringByID(R.MyInternationalizationString.GwResponseOvertime), Direction = AMPopTipDirection.None, CloseTime = 1 }.Show(Common.CommonPage.Instance);
                    });
                    return;
                }
            }
            Button oldMode = null;
            for (int i = 0; i < 5; i++)
            int i = 0;
            List<int> typeDetailModeListTemp = new List<int> { };
            foreach (var modeSwitchValue in typeDetailModeList)
            {
                if (modeSwitchValue == 202)
                {
                    continue;
                }
                typeDetailModeListTemp.Add(modeSwitchValue);
            }
            foreach (var modeSwitchValue in typeDetailModeListTemp)
            {
                #region 绑定表UI显(无数据处理)
                var rowLayout = new FrameLayout()
@@ -510,13 +787,14 @@
                    Y = Application.GetRealHeight(58),
                    TextColor = Shared.Common.ZigbeeColor.Current.TextBlack,
                    TextAlignment = TextAlignment.CenterLeft,
                    TextSize = 14,
                };
                rowLayout.AddChidren(btnModeText);
                var btnChoose = new Button()
                {
                    Width = Application.GetRealWidth(60),
                    Height = Application.GetRealHeight(60),
                    Width = Application.GetMinReal(60),
                    Height = Application.GetMinReal(60),
                    X = Application.GetRealWidth(861 + 81),
                    Y = Application.GetRealHeight(35),
                    SelectedImagePath = "DoorLock/SelectedIcon.png",
@@ -534,26 +812,27 @@
                };
                rowLayout.AddChidren(line2);
                #endregion
                switch (modeSwitchValue)
                {
                    case 200:
                        btnModeText.Text = Language.StringByID(R.MyInternationalizationString.DimmerMode1);
                        break;
                    case 201:
                        btnModeText.Text = Language.StringByID(R.MyInternationalizationString.DimmerMode2);
                        break;
                    case 203:
                        btnModeText.Text = Language.StringByID(R.MyInternationalizationString.DimmerMode3);
                        break;
                    case 204:
                        btnModeText.Text = Language.StringByID(R.MyInternationalizationString.DimmerMode4);
                        break;
                    case 205:
                        btnModeText.Text = Language.StringByID(R.MyInternationalizationString.DimmerMode5);
                        break;
                }
                if (i == 0)
                if (i == typeDetailModeListTemp.Count - 1)
                {
                    btnModeText.Text = Language.StringByID(R.MyInternationalizationString.DimmerMode1);
                }
                if (i == 1)
                {
                    btnModeText.Text = Language.StringByID(R.MyInternationalizationString.DimmerMode2);
                }
                if (i == 2)
                {
                    btnModeText.Text = Language.StringByID(R.MyInternationalizationString.DimmerMode3);
                }
                if (i == 3)
                {
                    btnModeText.Text = Language.StringByID(R.MyInternationalizationString.DimmerMode4);
                }
                if (i == 4)
                {
                    btnModeText.Text = Language.StringByID(R.MyInternationalizationString.DimmerMode5);
                    line2.Visible = false;
                }
@@ -640,14 +919,31 @@
                rowLayout.MouseUpEventHandler += hander;
                btnModeText.MouseUpEventHandler += hander;
                btnChoose.MouseUpEventHandler += hander;
                i++;
            }
        }
        private void AddCurtainMode()
        /// <summary>
        /// 添加窗帘模式
        /// </summary>
        async private void AddCurtainMode()
        {
            if (typeDetailModeList == null)
            {
                //再次动态获取按键支持的类
                typeDetailModeList = await GetAddSwitchMode();
                if (typeDetailModeList == null)
                {
                    Application.RunOnMainThread(() =>
                    {
                        new Tip() { MaxWidth = 150, Text = Language.StringByID(R.MyInternationalizationString.GwResponseOvertime), Direction = AMPopTipDirection.None, CloseTime = 1 }.Show(Common.CommonPage.Instance);
                    });
                    return;
                }
            }
            Button oldMode = null;
            for (int i = 0; i < 5; i++)
            int i = 0;
            foreach (var modeSwitchValue in typeDetailModeList)
            {
                #region 绑定表UI显(无数据处理)
                var rowLayout = new FrameLayout()
@@ -665,13 +961,14 @@
                    Y = Application.GetRealHeight(58),
                    TextColor = Shared.Common.ZigbeeColor.Current.TextBlack,
                    TextAlignment = TextAlignment.CenterLeft,
                    TextSize = 14,
                };
                rowLayout.AddChidren(btnModeText);
                var btnChoose = new Button()
                {
                    Width = Application.GetRealWidth(60),
                    Height = Application.GetRealHeight(60),
                    Width = Application.GetMinReal(60),
                    Height = Application.GetMinReal(60),
                    X = Application.GetRealWidth(861 + 81),
                    Y = Application.GetRealHeight(35),
                    SelectedImagePath = "DoorLock/SelectedIcon.png",
@@ -689,26 +986,27 @@
                };
                rowLayout.AddChidren(line2);
                #endregion
                switch (modeSwitchValue)
                {
                    case 300:
                        btnModeText.Text = Language.StringByID(R.MyInternationalizationString.WcdUp);
                        break;
                    case 301:
                        btnModeText.Text = Language.StringByID(R.MyInternationalizationString.WcdDown);
                        break;
                    case 302:
                        btnModeText.Text = Language.StringByID(R.MyInternationalizationString.WcdStop);
                        break;
                    case 303:
                        btnModeText.Text = Language.StringByID(R.MyInternationalizationString.WcdUpStop);
                        break;
                    case 304:
                        btnModeText.Text = Language.StringByID(R.MyInternationalizationString.WcdDownStop);
                        break;
                }
                if (i == 0)
                if (i == typeDetailModeList.Count - 1)
                {
                    btnModeText.Text = Language.StringByID(R.MyInternationalizationString.WcdUp);
                }
                if (i == 1)
                {
                    btnModeText.Text = Language.StringByID(R.MyInternationalizationString.WcdDown);
                }
                if (i == 2)
                {
                    btnModeText.Text = Language.StringByID(R.MyInternationalizationString.WcdStop);
                }
                if (i == 3)
                {
                    btnModeText.Text = Language.StringByID(R.MyInternationalizationString.WcdUpStop);
                }
                if (i == 4)
                {
                    btnModeText.Text = Language.StringByID(R.MyInternationalizationString.WcdDownStop);
                    line2.Visible = false;
                }
@@ -795,24 +1093,8 @@
                rowLayout.MouseUpEventHandler += hander;
                btnModeText.MouseUpEventHandler += hander;
                btnChoose.MouseUpEventHandler += hander;
                i++;
            }
        }
        private void FinisfhEventHandler(object sender, MouseEventArgs e)
        {
        }
        public void DeviceInfoChange(CommonDevice common, string typeTag)
        {
        }
        public void ChangedILogicStatus(ZigBee.Device.Logic logic)
        {
        }
        public void ChangedISceneStatus(Scene scene)
        {
        }
    }
}