From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../Scripts/XMainClient/KKSG/CliAntiCheatInfo.cs | 246 +++++++++++++++++++++ 1 file changed, 246 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/CliAntiCheatInfo.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/CliAntiCheatInfo.cs') diff --git a/Client/Assets/Scripts/XMainClient/KKSG/CliAntiCheatInfo.cs b/Client/Assets/Scripts/XMainClient/KKSG/CliAntiCheatInfo.cs new file mode 100644 index 00000000..d422dc68 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/CliAntiCheatInfo.cs @@ -0,0 +1,246 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Xml.Serialization; +using ProtoBuf; + +namespace KKSG +{ + [ProtoContract(Name = "CliAntiCheatInfo")] + [Serializable] + public class CliAntiCheatInfo : IExtensible + { + [ProtoMember(1, IsRequired = false, Name = "currentHp", DataFormat = DataFormat.TwosComplement)] + public uint currentHp + { + get + { + return this._currentHp ?? 0u; + } + set + { + this._currentHp = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool currentHpSpecified + { + get + { + return this._currentHp != null; + } + set + { + bool flag = value == (this._currentHp == null); + if (flag) + { + this._currentHp = (value ? new uint?(this.currentHp) : null); + } + } + } + + [ProtoMember(2, IsRequired = false, Name = "totalDamage", DataFormat = DataFormat.TwosComplement)] + public uint totalDamage + { + get + { + return this._totalDamage ?? 0u; + } + set + { + this._totalDamage = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool totalDamageSpecified + { + get + { + return this._totalDamage != null; + } + set + { + bool flag = value == (this._totalDamage == null); + if (flag) + { + this._totalDamage = (value ? new uint?(this.totalDamage) : null); + } + } + } + + [ProtoMember(3, IsRequired = false, Name = "totalHurt", DataFormat = DataFormat.TwosComplement)] + public uint totalHurt + { + get + { + return this._totalHurt ?? 0u; + } + set + { + this._totalHurt = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool totalHurtSpecified + { + get + { + return this._totalHurt != null; + } + set + { + bool flag = value == (this._totalHurt == null); + if (flag) + { + this._totalHurt = (value ? new uint?(this.totalHurt) : null); + } + } + } + + [ProtoMember(4, IsRequired = false, Name = "totalRecovery", DataFormat = DataFormat.TwosComplement)] + public uint totalRecovery + { + get + { + return this._totalRecovery ?? 0u; + } + set + { + this._totalRecovery = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool totalRecoverySpecified + { + get + { + return this._totalRecovery != null; + } + set + { + bool flag = value == (this._totalRecovery == null); + if (flag) + { + this._totalRecovery = (value ? new uint?(this.totalRecovery) : null); + } + } + } + + [ProtoMember(5, Name = "monsterRfsTimes", DataFormat = DataFormat.TwosComplement)] + public List monsterRfsTimes + { + get + { + return this._monsterRfsTimes; + } + } + + [ProtoMember(6, IsRequired = false, Name = "battleStamp", DataFormat = DataFormat.Default)] + public string battleStamp + { + get + { + return this._battleStamp ?? ""; + } + set + { + this._battleStamp = value; + } + } + + [XmlIgnore] + [Browsable(false)] + public bool battleStampSpecified + { + get + { + return this._battleStamp != null; + } + set + { + bool flag = value == (this._battleStamp == null); + if (flag) + { + this._battleStamp = (value ? this.battleStamp : null); + } + } + } + + private uint? _currentHp; + + private uint? _totalDamage; + + private uint? _totalHurt; + + private uint? _totalRecovery; + + private readonly List _monsterRfsTimes = new List(); + + private string _battleStamp; + + private IExtension extensionObject; + + private bool ShouldSerializecurrentHp() + { + return this.currentHpSpecified; + } + + private void ResetcurrentHp() + { + this.currentHpSpecified = false; + } + + private bool ShouldSerializetotalDamage() + { + return this.totalDamageSpecified; + } + + private void ResettotalDamage() + { + this.totalDamageSpecified = false; + } + + private bool ShouldSerializetotalHurt() + { + return this.totalHurtSpecified; + } + + private void ResettotalHurt() + { + this.totalHurtSpecified = false; + } + + private bool ShouldSerializetotalRecovery() + { + return this.totalRecoverySpecified; + } + + private void ResettotalRecovery() + { + this.totalRecoverySpecified = false; + } + + private bool ShouldSerializebattleStamp() + { + return this.battleStampSpecified; + } + + private void ResetbattleStamp() + { + this.battleStampSpecified = false; + } + + IExtension IExtensible.GetExtensionObject(bool createIfMissing) + { + return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); + } + } +} -- cgit v1.1-26-g67d0