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/GardenEventLog.cs | 277 +++++++++++++++++++++ 1 file changed, 277 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/GardenEventLog.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/GardenEventLog.cs') diff --git a/Client/Assets/Scripts/XMainClient/KKSG/GardenEventLog.cs b/Client/Assets/Scripts/XMainClient/KKSG/GardenEventLog.cs new file mode 100644 index 00000000..aa87cfec --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/GardenEventLog.cs @@ -0,0 +1,277 @@ +using System; +using System.ComponentModel; +using System.Xml.Serialization; +using ProtoBuf; + +namespace KKSG +{ + [ProtoContract(Name = "GardenEventLog")] + [Serializable] + public class GardenEventLog : IExtensible + { + [ProtoMember(1, IsRequired = false, Name = "role_id", DataFormat = DataFormat.TwosComplement)] + public ulong role_id + { + get + { + return this._role_id ?? 0UL; + } + set + { + this._role_id = new ulong?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool role_idSpecified + { + get + { + return this._role_id != null; + } + set + { + bool flag = value == (this._role_id == null); + if (flag) + { + this._role_id = (value ? new ulong?(this.role_id) : null); + } + } + } + + [ProtoMember(2, IsRequired = false, Name = "role_name", DataFormat = DataFormat.Default)] + public string role_name + { + get + { + return this._role_name ?? ""; + } + set + { + this._role_name = value; + } + } + + [XmlIgnore] + [Browsable(false)] + public bool role_nameSpecified + { + get + { + return this._role_name != null; + } + set + { + bool flag = value == (this._role_name == null); + if (flag) + { + this._role_name = (value ? this.role_name : null); + } + } + } + + [ProtoMember(3, IsRequired = false, Name = "occur_time", DataFormat = DataFormat.TwosComplement)] + public uint occur_time + { + get + { + return this._occur_time ?? 0u; + } + set + { + this._occur_time = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool occur_timeSpecified + { + get + { + return this._occur_time != null; + } + set + { + bool flag = value == (this._occur_time == null); + if (flag) + { + this._occur_time = (value ? new uint?(this.occur_time) : null); + } + } + } + + [ProtoMember(4, IsRequired = false, Name = "event_type", DataFormat = DataFormat.TwosComplement)] + public uint event_type + { + get + { + return this._event_type ?? 0u; + } + set + { + this._event_type = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool event_typeSpecified + { + get + { + return this._event_type != null; + } + set + { + bool flag = value == (this._event_type == null); + if (flag) + { + this._event_type = (value ? new uint?(this.event_type) : null); + } + } + } + + [ProtoMember(5, IsRequired = false, Name = "target", DataFormat = DataFormat.TwosComplement)] + public uint target + { + get + { + return this._target ?? 0u; + } + set + { + this._target = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool targetSpecified + { + get + { + return this._target != null; + } + set + { + bool flag = value == (this._target == null); + if (flag) + { + this._target = (value ? new uint?(this.target) : null); + } + } + } + + [ProtoMember(6, IsRequired = false, Name = "result", DataFormat = DataFormat.Default)] + public bool result + { + get + { + return this._result ?? false; + } + set + { + this._result = new bool?(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 bool?(this.result) : null); + } + } + } + + private ulong? _role_id; + + private string _role_name; + + private uint? _occur_time; + + private uint? _event_type; + + private uint? _target; + + private bool? _result; + + private IExtension extensionObject; + + private bool ShouldSerializerole_id() + { + return this.role_idSpecified; + } + + private void Resetrole_id() + { + this.role_idSpecified = false; + } + + private bool ShouldSerializerole_name() + { + return this.role_nameSpecified; + } + + private void Resetrole_name() + { + this.role_nameSpecified = false; + } + + private bool ShouldSerializeoccur_time() + { + return this.occur_timeSpecified; + } + + private void Resetoccur_time() + { + this.occur_timeSpecified = false; + } + + private bool ShouldSerializeevent_type() + { + return this.event_typeSpecified; + } + + private void Resetevent_type() + { + this.event_typeSpecified = false; + } + + private bool ShouldSerializetarget() + { + return this.targetSpecified; + } + + private void Resettarget() + { + this.targetSpecified = false; + } + + private bool ShouldSerializeresult() + { + return this.resultSpecified; + } + + private void Resetresult() + { + this.resultSpecified = false; + } + + IExtension IExtensible.GetExtensionObject(bool createIfMissing) + { + return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); + } + } +} -- cgit v1.1-26-g67d0