| | |
| | | using System; |
| | | using System.Collections; |
| | | using System.Collections.Generic; |
| | | using Newtonsoft.Json.Linq; |
| | | using Shared; |
| | | |
| | | namespace HDL_ON.Entity |
| | | { |
| | | public class AC : Function |
| | | public class AC |
| | | { |
| | | /* |
| | | * 空调: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:摄氏度 |
| | | /// 1:华氏度 |
| | | /// </summary> |
| | | [Newtonsoft.Json.JsonIgnore] |
| | | public int curTempType = 0; |
| | | /// <summary> |
| | | /// 当前温度模式字符 |
| | | /// </summary> |
| | | public string curTempTypeString |
| | | public string GetTempUnitString(Function function) |
| | | { |
| | | get |
| | | var tt = function.GetAttrState(FunctionAttributeKey.TempType); |
| | | if (tt == "0") |
| | | { |
| | | if (curTempType == 0) |
| | | { |
| | | return "°C"; |
| | | } |
| | | else |
| | | { |
| | | return "°F"; |
| | | } |
| | | return "°C"; |
| | | } |
| | | else |
| | | { |
| | | return tt; |
| | | } |
| | | } |
| | | |
| | | ///// <summary> |
| | | ///// 当前空调模式 |
| | | ///// </summary> |
| | | //[Newtonsoft.Json.JsonIgnore] |
| | | //public string curMode = "cool"; |
| | | /// <summary> |
| | | /// 获取温度单位bus标识 |
| | | /// </summary> |
| | | /// <param name="function"></param> |
| | | /// <returns></returns> |
| | | public int GetTempUintIndex(Function function) |
| | | { |
| | | var tt = function.GetAttrState(FunctionAttributeKey.TempType); |
| | | if(tt == "°F") |
| | | { |
| | | return 1; |
| | | } |
| | | else |
| | | { |
| | | return 0; |
| | | } |
| | | } |
| | | /// <summary> |
| | | /// 根据bus标识设置温度单位 |
| | | /// </summary> |
| | | /// <param name="function"></param> |
| | | /// <returns></returns> |
| | | public void SetTempUint(Function function,int index) |
| | | { |
| | | if (index == 0) |
| | | { |
| | | function.SetAttrState(FunctionAttributeKey.TempType, "°C"); |
| | | } |
| | | else |
| | | { |
| | | function.SetAttrState(FunctionAttributeKey.TempType, "°F"); |
| | | } |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 当前模式索引 |
| | | /// bus控制命令使用 |
| | | /// </summary> |
| | | [Newtonsoft.Json.JsonIgnore] |
| | | public byte curModeIndex |
| | | public byte GetModeIndex(Function function) |
| | | { |
| | | get |
| | | var value = function.GetAttrState(FunctionAttributeKey.Mode); |
| | | byte index = 0; |
| | | switch (value) |
| | | { |
| | | try |
| | | { |
| | | byte index = 0; |
| | | switch (trait_mode.curValues.ToString()) |
| | | { |
| | | 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; |
| | | } |
| | | 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; |
| | | } |
| | | set |
| | | { |
| | | switch (value) |
| | | { |
| | | case 0: |
| | | trait_mode.curValues = "cool"; |
| | | break; |
| | | case 1: |
| | | trait_mode.curValues = "heat"; |
| | | break; |
| | | case 2: |
| | | trait_mode.curValues = "fan"; |
| | | break; |
| | | case 3: |
| | | trait_mode.curValues = "auto"; |
| | | break; |
| | | case 4: |
| | | trait_mode.curValues = "dry"; |
| | | break; |
| | | default: |
| | | trait_mode.curValues = "cool"; |
| | | break; |
| | | |
| | | } |
| | | } |
| | | return index; |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 设置bus协议标记设置a协议数据 |
| | | /// </summary> |
| | | public void SetMode(int index , Function function) |
| | | { |
| | | 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; |
| | | } |
| | | function.SetAttrState(FunctionAttributeKey.Mode, value); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 当前风速索引 |
| | | /// bus控制命令使用 |
| | | /// </summary> |
| | | [Newtonsoft.Json.JsonIgnore] |
| | | public byte curFanIndex |
| | | public byte GetFanIndex(Function function) |
| | | { |
| | | get |
| | | var value = function.GetAttrState(FunctionAttributeKey.FanSpeed); |
| | | byte index = 0; |
| | | switch (value) |
| | | { |
| | | try |
| | | { |
| | | byte index = 0; |
| | | switch (trait_fan.curValues.ToString()) |
| | | { |
| | | 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; |
| | | } |
| | | case "high": |
| | | index = 1; |
| | | break; |
| | | case "medium": |
| | | index = 2; |
| | | break; |
| | | case "low": |
| | | index = 3; |
| | | break; |
| | | case "auto": |
| | | index = 0; |
| | | break; |
| | | default: |
| | | index = 0; |
| | | break; |
| | | } |
| | | set |
| | | { |
| | | switch (value) |
| | | { |
| | | case 0: |
| | | trait_fan.curValues = "auto"; |
| | | break; |
| | | case 1: |
| | | trait_fan.curValues = "high"; |
| | | break; |
| | | case 2: |
| | | trait_fan.curValues = "medium"; |
| | | break; |
| | | case 3: |
| | | trait_fan.curValues = "low"; |
| | | break; |
| | | default: |
| | | trait_fan.curValues = "high"; |
| | | break; |
| | | } |
| | | } |
| | | } |
| | | Trait _trait_mode; |
| | | [Newtonsoft.Json.JsonIgnore] |
| | | public Trait trait_mode |
| | | { |
| | | get |
| | | { |
| | | if (_trait_mode == null) |
| | | { |
| | | _trait_mode = propertList.Find((obj) => obj.attri == "mode"); |
| | | //找不到属性需要声明一个,防止报错闪退 |
| | | if (_trait_mode == null) |
| | | { |
| | | _trait_mode = new Trait() |
| | | { |
| | | attri = "mode", |
| | | value = new List<string> { "auto", "cool", "heat", "dry", "fan" }, |
| | | max = 4, |
| | | min = 0, |
| | | }; |
| | | } |
| | | _trait_mode.curValues = _trait_mode.value.Count > 0 ? _trait_mode.value[0] : ""; |
| | | } |
| | | return _trait_mode; |
| | | } |
| | | return index; |
| | | } |
| | | /// <summary> |
| | | /// 空调模式 |
| | | /// 根据bus协议风速标记设置a协议标记 |
| | | /// </summary> |
| | | [Newtonsoft.Json.JsonIgnore] |
| | | public List<string> modeList |
| | | public void SetFan(int index,Function function) |
| | | { |
| | | get |
| | | string value = "high"; |
| | | switch (index) |
| | | { |
| | | try |
| | | { |
| | | return trait_mode.value; |
| | | } |
| | | catch (Exception ex) |
| | | { |
| | | MainPage.Log($"ac get mode error : {ex.Message}"); |
| | | return new List<string> { "auto", "cool", "heat", "dry", "fan" }; |
| | | } |
| | | case 1: |
| | | value = "high"; |
| | | break; |
| | | case 2: |
| | | value = "medium"; |
| | | break; |
| | | case 3: |
| | | value = "low"; |
| | | break; |
| | | case 0: |
| | | value = "auto"; |
| | | break; |
| | | } |
| | | function.SetAttrState(FunctionAttributeKey.FanSpeed, value); |
| | | } |
| | | |
| | | Trait _trait_fan; |
| | | [Newtonsoft.Json.JsonIgnore] |
| | | public Trait trait_fan { |
| | | get |
| | | { |
| | | if (_trait_fan == null) |
| | | { |
| | | _trait_fan = propertList.Find((obj) => obj.attri == "fan"); |
| | | //找不到属性需要声明一个,防止报错闪退 |
| | | if (_trait_fan == null) |
| | | { |
| | | _trait_fan = new Trait() |
| | | { |
| | | attri = "fan", |
| | | value = new List<string> { "high", "medium", "low", "auto" }, |
| | | max = 3, |
| | | min = 0, |
| | | }; |
| | | } |
| | | _trait_fan.curValues = _trait_fan.value.Count > 0 ? _trait_fan.value[0] : ""; |
| | | } |
| | | return _trait_fan; |
| | | } |
| | | } |
| | | /// <summary> |
| | | /// 空调风速模式 |
| | | /// </summary> |
| | | [Newtonsoft.Json.JsonIgnore] |
| | | public List<string> fan_List |
| | | { |
| | | get |
| | | { |
| | | try |
| | | { |
| | | return trait_fan.value; |
| | | } |
| | | catch (Exception ex) |
| | | { |
| | | MainPage.Log($"ac get fan error : {ex.Message}"); |
| | | return new List<string> { "high", "medium", "low", "auto" }; |
| | | } |
| | | } |
| | | } |
| | | /// <summary> |
| | | /// 当前空调温度 |
| | | /// </summary> |
| | | [Newtonsoft.Json.JsonIgnore] |
| | | public int curTemp = 20; |
| | | // temperature up, down, value |
| | | // swing up/down/left/right |
| | | |
| | | Trait _trait_swting; |
| | | [Newtonsoft.Json.JsonIgnore] |
| | | public Trait trait_swting |
| | | { |
| | | get |
| | | { |
| | | if (_trait_swting == null) |
| | | { |
| | | _trait_swting = propertList.Find((obj) => obj.attri == "swting"); |
| | | //找不到属性需要声明一个,防止报错闪退 |
| | | if (_trait_swting == null) |
| | | { |
| | | _trait_swting = new Trait() |
| | | { |
| | | attri = "swting", |
| | | value = new List<string> { "up", "down", "left", "right" }, |
| | | max = 3, |
| | | min = 0, |
| | | }; |
| | | } |
| | | _trait_swting.curValues = _trait_swting.value.Count > 0 ? _trait_swting.value[trait_mode.min] : ""; |
| | | } |
| | | return _trait_swting; |
| | | } |
| | | } |
| | | /// <summary> |
| | | /// 空调扫风模式列表 |
| | | /// </summary> |
| | | [Newtonsoft.Json.JsonIgnore] |
| | | public List<string> swting |
| | | { |
| | | get |
| | | { |
| | | try |
| | | { |
| | | |
| | | return trait_swting.value; |
| | | } |
| | | catch (Exception ex) |
| | | { |
| | | MainPage.Log($"ac get swting error : {ex.Message}"); |
| | | return new List<string> { "up", "down", "left", "right" }; |
| | | } |
| | | } |
| | | } |
| | | /// <summary> |
| | | /// 室内温度 |
| | | /// </summary> |
| | | [Newtonsoft.Json.JsonIgnore] |
| | | public int indoorTemp = 20; |
| | | |
| | | /// <summary> |
| | | /// 当前模式的icon路径 |
| | | /// </summary> |
| | | [Newtonsoft.Json.JsonIgnore] |
| | | public string curModeImage |
| | | /// <param name="lightingIcon">获取的图标类型,默认是点亮</param> |
| | | /// <returns></returns> |
| | | public string GetModeIconPath(string modeValue , bool lightingIcon = true) |
| | | { |
| | | get |
| | | var imagePath = "FunctionIcon/AC/CoolIcon.png"; |
| | | if (lightingIcon) |
| | | { |
| | | try |
| | | switch (modeValue) |
| | | { |
| | | var imagePath = "FunctionIcon/AC/CoolIcon.png"; |
| | | switch (trait_mode.curValues.ToString()) |
| | | { |
| | | 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 (modeValue) |
| | | { |
| | | 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> |
| | | /// <param name="lightingIcon">获取的图标类型,默认是点亮</param> |
| | | /// <returns></returns> |
| | | public string GetSwingIconPath(string swingValue,bool lightingIcon = true) |
| | | { |
| | | var imagePath = "FunctionIcon/AC/SweepIconNullOn.png"; |
| | | if (lightingIcon) |
| | | { |
| | | switch (swingValue) |
| | | { |
| | | case "up_down": |
| | | imagePath = "FunctionIcon/AC/SweepIconUDOn.png"; |
| | | break; |
| | | case "left_right": |
| | | imagePath = "FunctionIcon/AC/SweepIconLROn.png"; |
| | | break; |
| | | case "stop": |
| | | imagePath = "FunctionIcon/AC/SweepIconNullOn.png"; |
| | | break; |
| | | } |
| | | } |
| | | else |
| | | { |
| | | imagePath = "FunctionIcon/AC/SweepIconNull.png"; |
| | | switch (swingValue) |
| | | { |
| | | case "up_down": |
| | | imagePath = "FunctionIcon/AC/SweepIconUD.png"; |
| | | break; |
| | | case "left_right": |
| | | imagePath = "FunctionIcon/AC/SweepIconLR.png"; |
| | | break; |
| | | case "stop": |
| | | imagePath = "FunctionIcon/AC/SweepIconNull.png"; |
| | | break; |
| | | } |
| | | } |
| | | return imagePath; |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 当前风速的icon路径 |
| | | /// </summary> |
| | | [Newtonsoft.Json.JsonIgnore] |
| | | public string curFanImage |
| | | /// <param name="lightingIcon">获取的图标类型,默认是点亮</param> |
| | | /// <returns></returns> |
| | | public string GetFanIconPath(string modeValue, bool lightingIcon = true) |
| | | { |
| | | get |
| | | var imagePath = "FunctionIcon/AC/WindHighIcon.png"; |
| | | if (lightingIcon) |
| | | { |
| | | try |
| | | switch (modeValue) |
| | | { |
| | | var imagePath = "FunctionIcon/AC/WindHighIcon.png"; |
| | | switch (trait_fan.curValues.ToString()) |
| | | { |
| | | 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 (modeValue) |
| | | { |
| | | 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 {{ "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) |
| | | return text; |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 获取扫风模式属性文本 |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | public string GetSwingAttrText(string value) |
| | | { |
| | | string text = ""; |
| | | switch (value) |
| | | { |
| | | sendJob = new JObject { { "Namespace", vendor_code }, { "Command", command.ToString() }, { "Type", "device" } }; |
| | | var data = new JObject { { "sid", sid } }; |
| | | sendJob.Add("objects", data); |
| | | #region 模式 |
| | | case "up_down": |
| | | text = Language.StringByID(StringId.Swing_Up_Down); |
| | | break; |
| | | case "left_right": |
| | | text = Language.StringByID(StringId.Swing_Left_Right); |
| | | break; |
| | | case "stop": |
| | | text = Language.StringByID(StringId.tingzhi); |
| | | break; |
| | | #endregion |
| | | } |
| | | 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; |
| | | } |
| | | |
| | | } |
| | | } |