From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- Client/Assets/Scripts/XMainClient/KKSG/PvpRes.cs | 137 +++++++++++++++++++++++ 1 file changed, 137 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/PvpRes.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/PvpRes.cs') diff --git a/Client/Assets/Scripts/XMainClient/KKSG/PvpRes.cs b/Client/Assets/Scripts/XMainClient/KKSG/PvpRes.cs new file mode 100644 index 00000000..c1614491 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/PvpRes.cs @@ -0,0 +1,137 @@ +using System; +using System.ComponentModel; +using System.Xml.Serialization; +using ProtoBuf; + +namespace KKSG +{ + [ProtoContract(Name = "PvpRes")] + [Serializable] + public class PvpRes : IExtensible + { + [ProtoMember(1, IsRequired = false, Name = "basedata", DataFormat = DataFormat.Default)] + [DefaultValue(null)] + public PvpBaseData basedata + { + get + { + return this._basedata; + } + set + { + this._basedata = value; + } + } + + [ProtoMember(2, IsRequired = false, Name = "history", DataFormat = DataFormat.Default)] + [DefaultValue(null)] + public PvpHistory history + { + get + { + return this._history; + } + set + { + this._history = value; + } + } + + [ProtoMember(3, IsRequired = false, Name = "reqtype", DataFormat = DataFormat.TwosComplement)] + public PvpReqType reqtype + { + get + { + return this._reqtype ?? PvpReqType.PVP_REQ_IN_MATCH; + } + set + { + this._reqtype = new PvpReqType?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool reqtypeSpecified + { + get + { + return this._reqtype != null; + } + set + { + bool flag = value == (this._reqtype == null); + if (flag) + { + this._reqtype = (value ? new PvpReqType?(this.reqtype) : null); + } + } + } + + [ProtoMember(4, IsRequired = false, Name = "err", DataFormat = DataFormat.TwosComplement)] + public ErrorCode err + { + get + { + return this._err ?? ErrorCode.ERR_SUCCESS; + } + set + { + this._err = new ErrorCode?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool errSpecified + { + get + { + return this._err != null; + } + set + { + bool flag = value == (this._err == null); + if (flag) + { + this._err = (value ? new ErrorCode?(this.err) : null); + } + } + } + + private PvpBaseData _basedata = null; + + private PvpHistory _history = null; + + private PvpReqType? _reqtype; + + private ErrorCode? _err; + + private IExtension extensionObject; + + private bool ShouldSerializereqtype() + { + return this.reqtypeSpecified; + } + + private void Resetreqtype() + { + this.reqtypeSpecified = false; + } + + private bool ShouldSerializeerr() + { + return this.errSpecified; + } + + private void Reseterr() + { + this.errSpecified = false; + } + + IExtension IExtensible.GetExtensionObject(bool createIfMissing) + { + return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); + } + } +} -- cgit v1.1-26-g67d0