summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/AI/AIRunTimeFloatComparison.cs
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-01-25 14:28:30 +0800
committerchai <chaifix@163.com>2021-01-25 14:28:30 +0800
commit6eb915c129fc90c6f4c82ae097dd6ffad5239efc (patch)
tree7dd2be50edf41f36b60fac84696e731c13afe617 /Client/Assets/Scripts/XMainClient/AI/AIRunTimeFloatComparison.cs
+scripts
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/AI/AIRunTimeFloatComparison.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/AI/AIRunTimeFloatComparison.cs78
1 files changed, 78 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/AI/AIRunTimeFloatComparison.cs b/Client/Assets/Scripts/XMainClient/AI/AIRunTimeFloatComparison.cs
new file mode 100644
index 00000000..1e7bcc3b
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/AI/AIRunTimeFloatComparison.cs
@@ -0,0 +1,78 @@
+using System;
+using System.Xml;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class AIRunTimeFloatComparison : AIRunTimeNodeAction
+ {
+ private int _comp_type;
+
+ private string _float_name1;
+
+ private float _float_value1;
+
+ private string _float_name2;
+
+ private float _float_value2;
+
+ public AIRunTimeFloatComparison(XmlElement node) : base(node)
+ {
+ this._float_name1 = node.GetAttribute("Shared_Float1Name");
+ this._float_value1 = float.Parse(node.GetAttribute("float1Value"));
+ this._float_name2 = node.GetAttribute("Shared_Float2Name");
+ this._float_value2 = float.Parse(node.GetAttribute("float2Value"));
+ this._comp_type = int.Parse(node.GetAttribute("type"));
+ }
+
+ public override bool Update(XEntity entity)
+ {
+ float floatByName = entity.AI.AIData.GetFloatByName(this._float_name1, this._float_value1);
+ float floatByName2 = entity.AI.AIData.GetFloatByName(this._float_name2, this._float_value2);
+ bool flag = this._comp_type == XFastEnumIntEqualityComparer<ComparisonType>.ToInt(ComparisonType.FCTYPE_LESS_THAN);
+ bool result;
+ if (flag)
+ {
+ result = (floatByName < floatByName2);
+ }
+ else
+ {
+ bool flag2 = this._comp_type == XFastEnumIntEqualityComparer<ComparisonType>.ToInt(ComparisonType.FCTYPE_LESS_OR_EQUAL_TO);
+ if (flag2)
+ {
+ result = (floatByName <= floatByName2);
+ }
+ else
+ {
+ bool flag3 = this._comp_type == XFastEnumIntEqualityComparer<ComparisonType>.ToInt(ComparisonType.FCTYPE_EQUAL_TO);
+ if (flag3)
+ {
+ result = (floatByName == floatByName2);
+ }
+ else
+ {
+ bool flag4 = this._comp_type == XFastEnumIntEqualityComparer<ComparisonType>.ToInt(ComparisonType.FCTYPE_NOT_EQUAL_TO);
+ if (flag4)
+ {
+ result = (floatByName != floatByName2);
+ }
+ else
+ {
+ bool flag5 = this._comp_type == XFastEnumIntEqualityComparer<ComparisonType>.ToInt(ComparisonType.FCTYPE_GREATER_THAN);
+ if (flag5)
+ {
+ result = (floatByName > floatByName2);
+ }
+ else
+ {
+ bool flag6 = this._comp_type == XFastEnumIntEqualityComparer<ComparisonType>.ToInt(ComparisonType.FCTYPE_GREATER_THAN_OR_EQUAL_TO);
+ result = (flag6 && floatByName >= floatByName2);
+ }
+ }
+ }
+ }
+ }
+ return result;
+ }
+ }
+}