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/RiftRecord2Db.cs | 268 +++++++++++++++++++++ 1 file changed, 268 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/RiftRecord2Db.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/RiftRecord2Db.cs') diff --git a/Client/Assets/Scripts/XMainClient/KKSG/RiftRecord2Db.cs b/Client/Assets/Scripts/XMainClient/KKSG/RiftRecord2Db.cs new file mode 100644 index 00000000..805f512c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/RiftRecord2Db.cs @@ -0,0 +1,268 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Xml.Serialization; +using ProtoBuf; + +namespace KKSG +{ + [ProtoContract(Name = "RiftRecord2Db")] + [Serializable] + public class RiftRecord2Db : IExtensible + { + [ProtoMember(1, IsRequired = false, Name = "riftID", DataFormat = DataFormat.TwosComplement)] + public uint riftID + { + get + { + return this._riftID ?? 0u; + } + set + { + this._riftID = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool riftIDSpecified + { + get + { + return this._riftID != null; + } + set + { + bool flag = value == (this._riftID == null); + if (flag) + { + this._riftID = (value ? new uint?(this.riftID) : null); + } + } + } + + [ProtoMember(2, IsRequired = false, Name = "updateTime", DataFormat = DataFormat.TwosComplement)] + public uint updateTime + { + get + { + return this._updateTime ?? 0u; + } + set + { + this._updateTime = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool updateTimeSpecified + { + get + { + return this._updateTime != null; + } + set + { + bool flag = value == (this._updateTime == null); + if (flag) + { + this._updateTime = (value ? new uint?(this.updateTime) : null); + } + } + } + + [ProtoMember(3, IsRequired = false, Name = "passFloor", DataFormat = DataFormat.TwosComplement)] + public uint passFloor + { + get + { + return this._passFloor ?? 0u; + } + set + { + this._passFloor = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool passFloorSpecified + { + get + { + return this._passFloor != null; + } + set + { + bool flag = value == (this._passFloor == null); + if (flag) + { + this._passFloor = (value ? new uint?(this.passFloor) : null); + } + } + } + + [ProtoMember(4, IsRequired = false, Name = "helpSuccessCount", DataFormat = DataFormat.TwosComplement)] + public uint helpSuccessCount + { + get + { + return this._helpSuccessCount ?? 0u; + } + set + { + this._helpSuccessCount = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool helpSuccessCountSpecified + { + get + { + return this._helpSuccessCount != null; + } + set + { + bool flag = value == (this._helpSuccessCount == null); + if (flag) + { + this._helpSuccessCount = (value ? new uint?(this.helpSuccessCount) : null); + } + } + } + + [ProtoMember(5, Name = "gotWeekFirstPassReward", DataFormat = DataFormat.TwosComplement)] + public List gotWeekFirstPassReward + { + get + { + return this._gotWeekFirstPassReward; + } + } + + [ProtoMember(6, Name = "gotItems", DataFormat = DataFormat.Default)] + public List gotItems + { + get + { + return this._gotItems; + } + } + + [ProtoMember(7, IsRequired = false, Name = "thisWeekStartFloor", DataFormat = DataFormat.TwosComplement)] + public uint thisWeekStartFloor + { + get + { + return this._thisWeekStartFloor ?? 0u; + } + set + { + this._thisWeekStartFloor = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool thisWeekStartFloorSpecified + { + get + { + return this._thisWeekStartFloor != null; + } + set + { + bool flag = value == (this._thisWeekStartFloor == null); + if (flag) + { + this._thisWeekStartFloor = (value ? new uint?(this.thisWeekStartFloor) : null); + } + } + } + + [ProtoMember(8, Name = "hisMaxFloor", DataFormat = DataFormat.Default)] + public List hisMaxFloor + { + get + { + return this._hisMaxFloor; + } + } + + private uint? _riftID; + + private uint? _updateTime; + + private uint? _passFloor; + + private uint? _helpSuccessCount; + + private readonly List _gotWeekFirstPassReward = new List(); + + private readonly List _gotItems = new List(); + + private uint? _thisWeekStartFloor; + + private readonly List _hisMaxFloor = new List(); + + private IExtension extensionObject; + + private bool ShouldSerializeriftID() + { + return this.riftIDSpecified; + } + + private void ResetriftID() + { + this.riftIDSpecified = false; + } + + private bool ShouldSerializeupdateTime() + { + return this.updateTimeSpecified; + } + + private void ResetupdateTime() + { + this.updateTimeSpecified = false; + } + + private bool ShouldSerializepassFloor() + { + return this.passFloorSpecified; + } + + private void ResetpassFloor() + { + this.passFloorSpecified = false; + } + + private bool ShouldSerializehelpSuccessCount() + { + return this.helpSuccessCountSpecified; + } + + private void ResethelpSuccessCount() + { + this.helpSuccessCountSpecified = false; + } + + private bool ShouldSerializethisWeekStartFloor() + { + return this.thisWeekStartFloorSpecified; + } + + private void ResetthisWeekStartFloor() + { + this.thisWeekStartFloorSpecified = false; + } + + IExtension IExtensible.GetExtensionObject(bool createIfMissing) + { + return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); + } + } +} -- cgit v1.1-26-g67d0