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/GetSkyCraftInfoRes.cs | 332 +++++++++++++++++++++ 1 file changed, 332 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/GetSkyCraftInfoRes.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/GetSkyCraftInfoRes.cs') diff --git a/Client/Assets/Scripts/XMainClient/KKSG/GetSkyCraftInfoRes.cs b/Client/Assets/Scripts/XMainClient/KKSG/GetSkyCraftInfoRes.cs new file mode 100644 index 00000000..f94a5750 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/GetSkyCraftInfoRes.cs @@ -0,0 +1,332 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Xml.Serialization; +using ProtoBuf; + +namespace KKSG +{ + [ProtoContract(Name = "GetSkyCraftInfoRes")] + [Serializable] + public class GetSkyCraftInfoRes : IExtensible + { + [ProtoMember(1, IsRequired = false, Name = "result", DataFormat = DataFormat.TwosComplement)] + public ErrorCode result + { + get + { + return this._result ?? ErrorCode.ERR_SUCCESS; + } + set + { + this._result = new ErrorCode?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool resultSpecified + { + get + { + return this._result != null; + } + set + { + bool flag = value == (this._result == null); + if (flag) + { + this._result = (value ? new ErrorCode?(this.result) : null); + } + } + } + + [ProtoMember(2, IsRequired = false, Name = "stid", DataFormat = DataFormat.TwosComplement)] + public ulong stid + { + get + { + return this._stid ?? 0UL; + } + set + { + this._stid = new ulong?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool stidSpecified + { + get + { + return this._stid != null; + } + set + { + bool flag = value == (this._stid == null); + if (flag) + { + this._stid = (value ? new ulong?(this.stid) : null); + } + } + } + + [ProtoMember(3, IsRequired = false, Name = "name", DataFormat = DataFormat.Default)] + public string name + { + get + { + return this._name ?? ""; + } + set + { + this._name = value; + } + } + + [XmlIgnore] + [Browsable(false)] + public bool nameSpecified + { + get + { + return this._name != null; + } + set + { + bool flag = value == (this._name == null); + if (flag) + { + this._name = (value ? this.name : null); + } + } + } + + [ProtoMember(4, IsRequired = false, Name = "total_num", DataFormat = DataFormat.TwosComplement)] + public uint total_num + { + get + { + return this._total_num ?? 0u; + } + set + { + this._total_num = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool total_numSpecified + { + get + { + return this._total_num != null; + } + set + { + bool flag = value == (this._total_num == null); + if (flag) + { + this._total_num = (value ? new uint?(this.total_num) : null); + } + } + } + + [ProtoMember(5, IsRequired = false, Name = "winrate", DataFormat = DataFormat.FixedSize)] + public float winrate + { + get + { + return this._winrate ?? 0f; + } + set + { + this._winrate = new float?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool winrateSpecified + { + get + { + return this._winrate != null; + } + set + { + bool flag = value == (this._winrate == null); + if (flag) + { + this._winrate = (value ? new float?(this.winrate) : null); + } + } + } + + [ProtoMember(6, IsRequired = false, Name = "rank", DataFormat = DataFormat.TwosComplement)] + public uint rank + { + get + { + return this._rank ?? 0u; + } + set + { + this._rank = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool rankSpecified + { + get + { + return this._rank != null; + } + set + { + bool flag = value == (this._rank == null); + if (flag) + { + this._rank = (value ? new uint?(this.rank) : null); + } + } + } + + [ProtoMember(7, Name = "members", DataFormat = DataFormat.Default)] + public List members + { + get + { + return this._members; + } + } + + [ProtoMember(8, IsRequired = false, Name = "today_num", DataFormat = DataFormat.TwosComplement)] + public uint today_num + { + get + { + return this._today_num ?? 0u; + } + set + { + this._today_num = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool today_numSpecified + { + get + { + return this._today_num != null; + } + set + { + bool flag = value == (this._today_num == null); + if (flag) + { + this._today_num = (value ? new uint?(this.today_num) : null); + } + } + } + + private ErrorCode? _result; + + private ulong? _stid; + + private string _name; + + private uint? _total_num; + + private float? _winrate; + + private uint? _rank; + + private readonly List _members = new List(); + + private uint? _today_num; + + private IExtension extensionObject; + + private bool ShouldSerializeresult() + { + return this.resultSpecified; + } + + private void Resetresult() + { + this.resultSpecified = false; + } + + private bool ShouldSerializestid() + { + return this.stidSpecified; + } + + private void Resetstid() + { + this.stidSpecified = false; + } + + private bool ShouldSerializename() + { + return this.nameSpecified; + } + + private void Resetname() + { + this.nameSpecified = false; + } + + private bool ShouldSerializetotal_num() + { + return this.total_numSpecified; + } + + private void Resettotal_num() + { + this.total_numSpecified = false; + } + + private bool ShouldSerializewinrate() + { + return this.winrateSpecified; + } + + private void Resetwinrate() + { + this.winrateSpecified = false; + } + + private bool ShouldSerializerank() + { + return this.rankSpecified; + } + + private void Resetrank() + { + this.rankSpecified = false; + } + + private bool ShouldSerializetoday_num() + { + return this.today_numSpecified; + } + + private void Resettoday_num() + { + this.today_numSpecified = false; + } + + IExtension IExtensible.GetExtensionObject(bool createIfMissing) + { + return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); + } + } +} -- cgit v1.1-26-g67d0