From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../Assets/Scripts/XMainClient/KKSG/TeamOPRes.cs | 332 +++++++++++++++++++++ 1 file changed, 332 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/TeamOPRes.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/TeamOPRes.cs') diff --git a/Client/Assets/Scripts/XMainClient/KKSG/TeamOPRes.cs b/Client/Assets/Scripts/XMainClient/KKSG/TeamOPRes.cs new file mode 100644 index 00000000..fdd6212a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/TeamOPRes.cs @@ -0,0 +1,332 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Xml.Serialization; +using ProtoBuf; + +namespace KKSG +{ + [ProtoContract(Name = "TeamOPRes")] + [Serializable] + public class TeamOPRes : 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 = "problem_roleid", DataFormat = DataFormat.TwosComplement)] + public ulong problem_roleid + { + get + { + return this._problem_roleid ?? 0UL; + } + set + { + this._problem_roleid = new ulong?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool problem_roleidSpecified + { + get + { + return this._problem_roleid != null; + } + set + { + bool flag = value == (this._problem_roleid == null); + if (flag) + { + this._problem_roleid = (value ? new ulong?(this.problem_roleid) : null); + } + } + } + + [ProtoMember(3, IsRequired = false, Name = "GoddessGetRewardsCount", DataFormat = DataFormat.TwosComplement)] + public int GoddessGetRewardsCount + { + get + { + return this._GoddessGetRewardsCount ?? 0; + } + set + { + this._GoddessGetRewardsCount = new int?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool GoddessGetRewardsCountSpecified + { + get + { + return this._GoddessGetRewardsCount != null; + } + set + { + bool flag = value == (this._GoddessGetRewardsCount == null); + if (flag) + { + this._GoddessGetRewardsCount = (value ? new int?(this.GoddessGetRewardsCount) : null); + } + } + } + + [ProtoMember(4, Name = "teamcount", DataFormat = DataFormat.Default)] + public List teamcount + { + get + { + return this._teamcount; + } + } + + [ProtoMember(5, IsRequired = false, Name = "weeknestexpid", DataFormat = DataFormat.TwosComplement)] + public int weeknestexpid + { + get + { + return this._weeknestexpid ?? 0; + } + set + { + this._weeknestexpid = new int?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool weeknestexpidSpecified + { + get + { + return this._weeknestexpid != null; + } + set + { + bool flag = value == (this._weeknestexpid == null); + if (flag) + { + this._weeknestexpid = (value ? new int?(this.weeknestexpid) : null); + } + } + } + + [ProtoMember(6, IsRequired = false, Name = "opentime", DataFormat = DataFormat.TwosComplement)] + public uint opentime + { + get + { + return this._opentime ?? 0u; + } + set + { + this._opentime = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool opentimeSpecified + { + get + { + return this._opentime != null; + } + set + { + bool flag = value == (this._opentime == null); + if (flag) + { + this._opentime = (value ? new uint?(this.opentime) : null); + } + } + } + + [ProtoMember(7, IsRequired = false, Name = "wnrewardleftcount", DataFormat = DataFormat.TwosComplement)] + public uint wnrewardleftcount + { + get + { + return this._wnrewardleftcount ?? 0u; + } + set + { + this._wnrewardleftcount = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool wnrewardleftcountSpecified + { + get + { + return this._wnrewardleftcount != null; + } + set + { + bool flag = value == (this._wnrewardleftcount == null); + if (flag) + { + this._wnrewardleftcount = (value ? new uint?(this.wnrewardleftcount) : null); + } + } + } + + [ProtoMember(8, IsRequired = false, Name = "wnrewardmaxcount", DataFormat = DataFormat.TwosComplement)] + public uint wnrewardmaxcount + { + get + { + return this._wnrewardmaxcount ?? 0u; + } + set + { + this._wnrewardmaxcount = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool wnrewardmaxcountSpecified + { + get + { + return this._wnrewardmaxcount != null; + } + set + { + bool flag = value == (this._wnrewardmaxcount == null); + if (flag) + { + this._wnrewardmaxcount = (value ? new uint?(this.wnrewardmaxcount) : null); + } + } + } + + private ErrorCode? _result; + + private ulong? _problem_roleid; + + private int? _GoddessGetRewardsCount; + + private readonly List _teamcount = new List(); + + private int? _weeknestexpid; + + private uint? _opentime; + + private uint? _wnrewardleftcount; + + private uint? _wnrewardmaxcount; + + private IExtension extensionObject; + + private bool ShouldSerializeresult() + { + return this.resultSpecified; + } + + private void Resetresult() + { + this.resultSpecified = false; + } + + private bool ShouldSerializeproblem_roleid() + { + return this.problem_roleidSpecified; + } + + private void Resetproblem_roleid() + { + this.problem_roleidSpecified = false; + } + + private bool ShouldSerializeGoddessGetRewardsCount() + { + return this.GoddessGetRewardsCountSpecified; + } + + private void ResetGoddessGetRewardsCount() + { + this.GoddessGetRewardsCountSpecified = false; + } + + private bool ShouldSerializeweeknestexpid() + { + return this.weeknestexpidSpecified; + } + + private void Resetweeknestexpid() + { + this.weeknestexpidSpecified = false; + } + + private bool ShouldSerializeopentime() + { + return this.opentimeSpecified; + } + + private void Resetopentime() + { + this.opentimeSpecified = false; + } + + private bool ShouldSerializewnrewardleftcount() + { + return this.wnrewardleftcountSpecified; + } + + private void Resetwnrewardleftcount() + { + this.wnrewardleftcountSpecified = false; + } + + private bool ShouldSerializewnrewardmaxcount() + { + return this.wnrewardmaxcountSpecified; + } + + private void Resetwnrewardmaxcount() + { + this.wnrewardmaxcountSpecified = false; + } + + IExtension IExtensible.GetExtensionObject(bool createIfMissing) + { + return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); + } + } +} -- cgit v1.1-26-g67d0