wei
2021-03-04 2ae36ddb40d28c62b64a2fdd4c3033e7d65d5cfb
HDL_ON/Entity/Function/AC.cs
@@ -1,25 +1,11 @@
using System;
using System.Collections;
using System.Collections.Generic;
using Newtonsoft.Json.Linq;
using Shared;
namespace HDL_ON.Entity
{
    public class AC : Function
    {
        /*
         * 空调:trait: [switch, mode, fan, temperature, swing, lock]
         * 属性   描述
         * on_off   on/off
         * mode   mode: auto, cool, heat, dry, fan
         * fan   high, medium, low, auto
         * temperature   up,down,value
         * swing   up/down/left/right
         * lock   boolean (Lock锁定控制)
         */
        public AC()
        {
        }
        /// <summary>
        /// 当前温度模式
        /// 0:摄氏度
@@ -27,225 +13,273 @@
        /// </summary>
        [Newtonsoft.Json.JsonIgnore]
        public int curTempType = 0;
        /// <summary>
        /// 当前空调模式
        /// 当前温度模式字符
        /// </summary>
        [Newtonsoft.Json.JsonIgnore]
        public string curMode = "cool";
        public string tempUnitString
        {
            get
            {
                if (curTempType == 0)
                {
                    return "°C";
                }
                else
                {
                    return "°F";
                }
            }
        }
        /// <summary>
        /// 当前模式索引
        /// bus控制命令使用
        /// </summary>
        public byte curModeIndex
        public byte curModeIndex()
        {
            get
            try
            {
                try
                {
                    byte index = 0;
                    switch (curMode)
                    {
                        case "auto":
                            index = 3;
                            break;
                        case "cool":
                            index = 0;
                            break;
                        case "heat":
                            index = 1;
                            break;
                        case "dry":
                            index = 4;
                            break;
                        case "fan":
                            index = 2;
                            break;
                        default:
                            index = 0;
                            break;
                    }
                    return index;
                }
                catch (Exception ex)
                {
                    MainPage.Log($"get curModeIndex error : {ex.Message}");
                    return 0;
                }
            }
            set
            {
                string value = GetAttrState(FunctionAttributeKey.Mode);
                byte index = 0;
                switch (value)
                {
                    case 0:
                        curMode = "cool";
                    case "auto":
                        index = 3;
                        break;
                    case 1:
                        curMode = "heat";
                    case "cool":
                        index = 0;
                        break;
                    case 2:
                        curMode = "fan";
                    case "heat":
                        index = 1;
                        break;
                    case 3:
                        curMode = "auto";
                    case "dry":
                        index = 4;
                        break;
                    case 4:
                        curMode = "dry";
                    case "fan":
                        index = 2;
                        break;
                    default:
                        curMode = "cool";
                        index = 0;
                        break;
                }
                return index;
            }
            catch (Exception ex)
            {
                MainPage.Log($"get curModeIndex error : {ex.Message}");
                return 0;
            }
        }
        /// <summary>
        /// 设置bus协议模式标记
        /// </summary>
        public void SetModeIndex(int index)
        {
            string value = "auto";
            switch (index)
            {
                case 3:
                    value = "auto";
                    break;
                case 0:
                    value = "cool";
                    break;
                case 1:
                    value = "heat";
                    break;
                case 4:
                    value = "dry";
                    break;
                case 2:
                    value = "fan";
                    break;
            }
            SetAttrState(FunctionAttributeKey.Mode, value);
        }
        /// <summary>
        /// 当前风速索引
        /// bus控制命令使用
        /// </summary>
        [Newtonsoft.Json.JsonIgnore]
        public byte curFanIndex
        public byte curFanIndex()
        {
            get
            try
            {
                try
                {
                    byte index = 0;
                    switch (curFan)
                    {
                        case "high":
                            index = 1;
                            break;
                        case "medium":
                            index = 2;
                            break;
                        case "low":
                            index = 3;
                            break;
                        case "auto":
                            index = 0;
                            break;
                        default:
                            index = 0;
                            break;
                    }
                    return index;
                }
                catch (Exception ex)
                {
                    MainPage.Log($"get curFanIndex error : {ex.Message}");
                    return 0;
                }
            }
            set
            {
                string value = GetAttrState(FunctionAttributeKey.FanSpeed);
                byte index = 0;
                switch (value)
                {
                    case 0:
                        curFan = "auto";
                    case "high":
                        index = 1;
                        break;
                    case 1:
                        curFan = "high";
                    case "medium":
                        index = 2;
                        break;
                    case 2:
                        curFan = "medium";
                    case "low":
                        index = 3;
                        break;
                    case 3:
                        curFan = "low";
                    case "auto":
                        index = 0;
                        break;
                    default:
                        curFan = "high";
                        index = 0;
                        break;
                }
                return index;
            }
            catch (Exception ex)
            {
                MainPage.Log($"get curFanIndex error : {ex.Message}");
                return 0;
            }
        }
        /// <summary>
        /// 空调模式
        /// 设置bus协议风速标记
        /// </summary>
        public void SetFanIndex(int index)
        {
            string value = "high";
            switch (index)
            {
                case 1:
                    value = "high";
                    break;
                case 2:
                    value = "medium";
                    break;
                case 3:
                    value = "low";
                    break;
                case 0:
                    value = "auto";
                    break;
            }
            SetAttrState(FunctionAttributeKey.FanSpeed, value);
        }
        /*  去掉衍生属性,通过base.GetAttrState 查找属性与状态
        FunctionAttributes _trait_mode;
        /// <summary>
        /// 模式属性
        /// </summary>
        [Newtonsoft.Json.JsonIgnore]
        public List<string> mode
        public FunctionAttributes trait_mode
        {
            get
            {
                try
                if (_trait_mode == null)
                {
//#if DEBUG
//                    return new List<string> { "cool", "heat", "dry", "fan", "auto"};
//#endif
                    string b = "";
                    dicPropert.TryGetValue("mode", out b);
                    if (b == "")
                    _trait_mode = attributes.Find((obj) => obj.key == "mode");
                    //找不到属性需要声明一个,防止报错闪退
                    if (_trait_mode == null)
                    {
                        return new List<string> { "auto", "cool", "heat", "dry", "fan" };
                        _trait_mode = new FunctionAttributes()
                        {
                            key = "mode",
                            value = new List<string> { "auto", "cool", "heat", "dry", "fan" },
                            max = 4,
                            min = 0,
                        };
                    }
                    return new List<string>(b.Split(","));
                }
                catch (Exception ex)
                {
                    MainPage.Log($"ac get mode error : {ex.Message}");
                    return new List<string> { "auto", "cool", "heat", "dry", "fan" };
                }
            }
            set
            {
                try
                {
                    dicPropert["mode"] = value.ToString();
                }
                catch
                {
                    MainPage.Log("mode 数据刷新失败.");
                }
                if (_trait_mode.curValue.ToString() == "{}")
                    _trait_mode.curValue = "cool";
                return _trait_mode;
            }
        }
        /// <summary>
        /// 当前空调风速
        /// </summary>
        FunctionAttributes _trait_fan;
        [Newtonsoft.Json.JsonIgnore]
        public string curFan = "high";
        /// <summary>
        /// 空调风速模式
        /// </summary>
        [Newtonsoft.Json.JsonIgnore]
        public List<string> fan
        public FunctionAttributes trait_fan
        {
            get
            {
                try
                if (_trait_fan == null)
                {
//#if DEBUG
//                    return new List<string> { "high", "medium", "low", "auto" };
//#endif
                    string b = "";
                    dicPropert.TryGetValue("fan", out b);
                    if (b == "")
                    _trait_fan = attributes.Find((obj) => obj.key == "fan");
                    //找不到属性需要声明一个,防止报错闪退
                    if (_trait_fan == null)
                    {
                        return new List<string> { "high", "medium", "low", "auto" };
                        _trait_fan = new FunctionAttributes()
                        {
                            key = "fan",
                            value = new List<string> { "high", "medium", "low", "auto" },
                            max = 3,
                            min = 0,
                            curValue = "high"
                        };
                    }
                    return new List<string>(b.Split(","));
                }
                catch (Exception ex)
                {
                    MainPage.Log($"ac get fan error : {ex.Message}");
                    return new List<string> { "high", "medium", "low", "auto" };
                }
                if (_trait_fan.curValue.ToString() == "{}")
                    _trait_fan.curValue = "high";
                return _trait_fan;
            }
        }
        FunctionAttributes _trait_temp;
        /// <summary>
        /// 当前空调温度
        /// </summary>
        [Newtonsoft.Json.JsonIgnore]
        public int curTemp = 20;
        // temperature up, down, value
        // swing up/down/left/right
        public FunctionAttributes trait_temp
        {
            get
            {
                if (_trait_temp == null)
                {
                    _trait_temp = attributes.Find((obj) => obj.key == "set_temp");
                    //找不到属性需要声明一个,防止报错闪退
                    if (_trait_temp == null)
                    {
                        _trait_temp = new FunctionAttributes()
                        {
                            key = "set_temp",
                            value = new List<string> { },
                            max = 32,
                            min = 16,
                        };
                    }
                }
                if (_trait_temp.curValue.ToString() == "{}")
                {
                    _trait_temp.curValue = 16;
                }
                double vv = 16;
                Double.TryParse(_trait_temp.curValue.ToString(), out vv);
                _trait_temp.curValue = Convert.ToInt32(vv);
                return _trait_temp;
            }
        }
        FunctionAttributes _trait_swting;
        [Newtonsoft.Json.JsonIgnore]
        public string curSwting;
        public FunctionAttributes trait_swting
        {
            get
            {
                if (_trait_swting == null)
                {
                    _trait_swting = attributes.Find((obj) => obj.key == "swting");
                    //找不到属性需要声明一个,防止报错闪退
                    if (_trait_swting == null)
                    {
                        _trait_swting = new FunctionAttributes()
                        {
                            key = "swting",
                            value = new List<string> { "up", "down", "left", "right" },
                            max = 3,
                            min = 0,
                        };
                    }
                }
                if (_trait_swting.curValue.ToString() == "{}")
                    _trait_swting.curValue = "up";
                return _trait_swting;
            }
        }
        /// <summary>
        /// 空调扫风模式
        /// 空调扫风模式列表
        /// </summary>
        [Newtonsoft.Json.JsonIgnore]
        public List<string> swting
@@ -254,16 +288,7 @@
            {
                try
                {
#if DEBUG
                    return new List<string> { "up", "down", "left", "right" };
#endif
                    string b = "";
                    dicPropert.TryGetValue("swting", out b);
                    if (b == "")
                    {
                        return new List<string> { "up", "down", "left", "right" };
                    }
                    return new List<string>(b.Split(","));
                    return trait_swting.value;
                }
                catch (Exception ex)
                {
@@ -272,112 +297,205 @@
                }
            }
        }
        FunctionAttributes _trait_IndoorTemp;
        /// <summary>
        /// 室内温度
        /// </summary>
        [Newtonsoft.Json.JsonIgnore]
        public int indoorTemp = 20;
        public FunctionAttributes trait_IndoorTemp
        {
            get
            {
                if (_trait_IndoorTemp == null)
                {
                    _trait_IndoorTemp = attributes.Find((obj) => obj.key == FunctionAttributeKey.IndoorTemp);
                    //找不到属性需要声明一个,防止报错闪退
                    if (_trait_IndoorTemp == null)
                    {
                        _trait_IndoorTemp = new FunctionAttributes()
                        {
                            key = FunctionAttributeKey.IndoorTemp,
                            value = new List<string> { },
                            max = 30,
                            min = 0,
                        };
                    }
                }
                if (_trait_IndoorTemp.curValue.ToString() == "{}")
                {
                    _trait_IndoorTemp.curValue = 0;
                }
                var vv = Convert.ToDouble(_trait_IndoorTemp.curValue);
                _trait_IndoorTemp.curValue = Convert.ToInt32(vv);
                return _trait_IndoorTemp;
            }
        }
        */
        /// <summary>
        /// 当前模式的icon路径
        /// </summary>
        [Newtonsoft.Json.JsonIgnore]
        public string curModeImage
        /// <param name="lightingIcon">获取的图标类型,默认是点亮</param>
        /// <returns></returns>
        public string GetModeIconPath(bool lightingIcon = true)
        {
            get
            var value = GetAttrState(FunctionAttributeKey.Mode);
            var imagePath = "FunctionIcon/AC/CoolIcon.png";
            if (lightingIcon)
            {
                try
                switch (value)
                {
                    var imagePath = "FunctionIcon/AC/CoolIcon.png";
                    switch (curMode)
                    {
                        case "auto":
                            imagePath = "FunctionIcon/AC/AutoIcon.png";
                            break;
                        case "cool":
                            imagePath = "FunctionIcon/AC/CoolIcon.png";
                            break;
                        case "heat":
                            imagePath = "FunctionIcon/AC/HeatingIcon.png";
                            break;
                        case "dry":
                            imagePath = "FunctionIcon/AC/DehumidificationIcon.png";
                            break;
                        case "fan":
                            imagePath = "FunctionIcon/AC/AirSupplyIcon.png";
                            break;
                        default:
                            imagePath = "FunctionIcon/AC/CoolIcon.png";
                            break;
                    }
                    return imagePath;
                }
                catch (Exception ex)
                {
                    MainPage.Log($"ac ge curModeImage error : {ex.Message}");
                    return "FunctionIcon/AC/CoolIcon.png";
                    case "auto":
                        imagePath = "FunctionIcon/AC/AutoIcon.png";
                        break;
                    case "cool":
                        imagePath = "FunctionIcon/AC/CoolIcon.png";
                        break;
                    case "heat":
                        imagePath = "FunctionIcon/AC/HeatingIcon.png";
                        break;
                    case "dry":
                        imagePath = "FunctionIcon/AC/DehumidificationIcon.png";
                        break;
                    case "fan":
                        imagePath = "FunctionIcon/AC/AirSupplyIcon.png";
                        break;
                    default:
                        imagePath = "FunctionIcon/AC/CoolIcon.png";
                        break;
                }
            }
            else
            {
                imagePath = "FunctionIcon/AC/AutoIconGray.png";
                switch (value)
                {
                    case "auto":
                        imagePath = "FunctionIcon/AC/AutoIconGray.png";
                        break;
                    case "cool":
                        imagePath = "FunctionIcon/AC/CoolIconGray.png";
                        break;
                    case "heat":
                        imagePath = "FunctionIcon/AC/HeatingIconGray.png";
                        break;
                    case "dry":
                        imagePath = "FunctionIcon/AC/DehumidificationIconGray.png";
                        break;
                    case "fan":
                        imagePath = "FunctionIcon/AC/AirSupplyIconGray.png";
                        break;
                }
            }
            return imagePath;
        }
        /// <summary>
        /// 当前风速的icon路径
        /// </summary>
        [Newtonsoft.Json.JsonIgnore]
        public string curFanImage
        /// <param name="lightingIcon">获取的图标类型,默认是点亮</param>
        /// <returns></returns>
        public string GetFanIconPath(bool lightingIcon = true)
        {
            get
            string value = GetAttrState(FunctionAttributeKey.FanSpeed);
            var imagePath = "FunctionIcon/AC/WindHighIcon.png";
            if (lightingIcon)
            {
                try
                switch (value)
                {
                    var imagePath = "FunctionIcon/AC/WindHighIcon.png";
                    switch (curFan)
                    {
                        case "high":
                            imagePath = "FunctionIcon/AC/WindHighIcon.png";
                            break;
                        case "medium":
                            imagePath = "FunctionIcon/AC/WindMediumIcon.png";
                            break;
                        case "low":
                            imagePath = "FunctionIcon/AC/WindLowIcon.png";
                            break;
                        case "auto":
                            imagePath = "FunctionIcon/AC/AutoIcon.png";
                            break;
                        default:
                            imagePath = "FunctionIcon/AC/WindHighIcon.png";
                            break;
                    }
                    return imagePath;
                }catch (Exception ex)
                {
                    MainPage.Log($"ac get curFanImage error : {ex.Message}");
                    return "FunctionIcon/AC/WindHighIcon.png";
                    case "high":
                        imagePath = "FunctionIcon/AC/WindHighIcon.png";
                        break;
                    case "medium":
                        imagePath = "FunctionIcon/AC/WindMediumIcon.png";
                        break;
                    case "low":
                        imagePath = "FunctionIcon/AC/WindLowIcon.png";
                        break;
                    case "auto":
                        imagePath = "FunctionIcon/AC/AutoIcon.png";
                        break;
                }
            }
            else
            {
                switch (value)
                {
                    case "high":
                        imagePath = "FunctionIcon/AC/WindHighIconGray.png";
                        break;
                    case "medium":
                        imagePath = "FunctionIcon/AC/WindMediumIconGray.png";
                        break;
                    case "low":
                        imagePath = "FunctionIcon/AC/WindLowIconGray.png";
                        break;
                    case "auto":
                        imagePath = "FunctionIcon/AC/AutoIconGray.png";
                        break;
                }
            }
            return imagePath;
        }
        /// <summary>
        /// 拼接、获取A协议操作数据
        /// 获取模式属性文本
        /// </summary>
        public override JObject GetSendJObject(CommandType_A command)
        /// <returns></returns>
        public string GetModeAttrText(string value)
        {
            var sendJob = new JObject();
            if (command == CommandType_A.write)
            string text = "";
            switch (value)
            {
                sendJob = new JObject { { "Namespace", vendor_code }, { "Command", command.ToString() }, { "Type", "device" } };
                JObject data = new JObject { { "openLevel", dicPropert["openLevel"] }, { "sid", sid } };
                sendJob.Add("objects", data);
                #region 模式
                case "auto":
                    text = Language.StringByID(StringId.Auto);
                    break;
                case "cool":
                    text = Language.StringByID(StringId.Cool);
                    break;
                case "heat":
                    text = Language.StringByID(StringId.Heat);
                    break;
                case "dry":
                    text = Language.StringByID(StringId.Dry);
                    break;
                case "fan":
                    text = Language.StringByID(StringId.AirSupply);
                    break;
                    #endregion
            }
            else if (command == CommandType_A.read)
            {
                sendJob = new JObject { { "Namespace", vendor_code }, { "Command", command.ToString() }, { "Type", "device" } };
                var data = new JObject { { "sid", sid } };
                sendJob.Add("objects", data);
            }
            return sendJob;
            return text;
        }
        /// <summary>
        /// 获取风速属性文本
        /// </summary>
        /// <returns></returns>
        public string GetFanAttrText(string value)
        {
            string text = "";
            switch (value)
            {
                #region 风速
                case "high":
                    text = Language.StringByID(StringId.HighWindSpeed);
                    break;
                case "medium":
                    text = Language.StringByID(StringId.MiddleWindSpeed);
                    break;
                case "low":
                    text = Language.StringByID(StringId.LowWindSpeed);
                    break;
                case "auto":
                    text = Language.StringByID(StringId.Auto);
                    break;
                    #endregion
            }
            return text;
        }
    }
}