mirror of
https://github.com/raphaeIl/Novaria.git
synced 2025-12-16 16:34:44 +01:00
Init commit
This commit is contained in:
494
NTR.Common/protos/StarTowerEvent.cs
Normal file
494
NTR.Common/protos/StarTowerEvent.cs
Normal file
@@ -0,0 +1,494 @@
|
||||
// <auto-generated>
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: StarTowerEvent.proto
|
||||
// </auto-generated>
|
||||
#pragma warning disable 1591, 0612, 3021, 8981
|
||||
#region Designer generated code
|
||||
|
||||
using pb = global::Google.Protobuf;
|
||||
using pbc = global::Google.Protobuf.Collections;
|
||||
using pbr = global::Google.Protobuf.Reflection;
|
||||
using scg = global::System.Collections.Generic;
|
||||
namespace Nova.Client {
|
||||
|
||||
/// <summary>Holder for reflection information generated from StarTowerEvent.proto</summary>
|
||||
public static partial class StarTowerEventReflection {
|
||||
|
||||
#region Descriptor
|
||||
/// <summary>File descriptor for StarTowerEvent.proto</summary>
|
||||
public static pbr::FileDescriptor Descriptor {
|
||||
get { return descriptor; }
|
||||
}
|
||||
private static pbr::FileDescriptor descriptor;
|
||||
|
||||
static StarTowerEventReflection() {
|
||||
byte[] descriptorData = global::System.Convert.FromBase64String(
|
||||
string.Concat(
|
||||
"ChRTdGFyVG93ZXJFdmVudC5wcm90byKtAQoOU3RhclRvd2VyRXZlbnQSCgoC",
|
||||
"aWQYASABKAUSEAoIZ3JvdXBfaWQYAiABKAUSGAoQb3B0aW9uc19ydWxlc19p",
|
||||
"ZBgDIAEoBRIMCgRkZXNjGAQgASgJEhIKCmV2ZW50X3R5cGUYBSABKAUSGQoR",
|
||||
"Z3VhcmFudGVlZF9tYXBfaWQYBiABKAUSCwoDbnBjGAcgAygFEhkKEXJlbGF0",
|
||||
"ZWRfY2hhcmFjdGVyGAggASgFQg6qAgtOb3ZhLkNsaWVudGIGcHJvdG8z"));
|
||||
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
||||
new pbr::FileDescriptor[] { },
|
||||
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
||||
new pbr::GeneratedClrTypeInfo(typeof(global::Nova.Client.StarTowerEvent), global::Nova.Client.StarTowerEvent.Parser, new[]{ "Id", "GroupId", "OptionsRulesId", "Desc", "EventType", "GuaranteedMapId", "Npc", "RelatedCharacter" }, null, null, null, null)
|
||||
}));
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
#region Messages
|
||||
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
||||
public sealed partial class StarTowerEvent : pb::IMessage<StarTowerEvent>
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
, pb::IBufferMessage
|
||||
#endif
|
||||
{
|
||||
private static readonly pb::MessageParser<StarTowerEvent> _parser = new pb::MessageParser<StarTowerEvent>(() => new StarTowerEvent());
|
||||
private pb::UnknownFieldSet _unknownFields;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pb::MessageParser<StarTowerEvent> Parser { get { return _parser; } }
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public static pbr::MessageDescriptor Descriptor {
|
||||
get { return global::Nova.Client.StarTowerEventReflection.Descriptor.MessageTypes[0]; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
||||
get { return Descriptor; }
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public StarTowerEvent() {
|
||||
OnConstruction();
|
||||
}
|
||||
|
||||
partial void OnConstruction();
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public StarTowerEvent(StarTowerEvent other) : this() {
|
||||
id_ = other.id_;
|
||||
groupId_ = other.groupId_;
|
||||
optionsRulesId_ = other.optionsRulesId_;
|
||||
desc_ = other.desc_;
|
||||
eventType_ = other.eventType_;
|
||||
guaranteedMapId_ = other.guaranteedMapId_;
|
||||
npc_ = other.npc_.Clone();
|
||||
relatedCharacter_ = other.relatedCharacter_;
|
||||
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public StarTowerEvent Clone() {
|
||||
return new StarTowerEvent(this);
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "id" field.</summary>
|
||||
public const int IdFieldNumber = 1;
|
||||
private int id_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int Id {
|
||||
get { return id_; }
|
||||
set {
|
||||
id_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "group_id" field.</summary>
|
||||
public const int GroupIdFieldNumber = 2;
|
||||
private int groupId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int GroupId {
|
||||
get { return groupId_; }
|
||||
set {
|
||||
groupId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "options_rules_id" field.</summary>
|
||||
public const int OptionsRulesIdFieldNumber = 3;
|
||||
private int optionsRulesId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int OptionsRulesId {
|
||||
get { return optionsRulesId_; }
|
||||
set {
|
||||
optionsRulesId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "desc" field.</summary>
|
||||
public const int DescFieldNumber = 4;
|
||||
private string desc_ = "";
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public string Desc {
|
||||
get { return desc_; }
|
||||
set {
|
||||
desc_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "event_type" field.</summary>
|
||||
public const int EventTypeFieldNumber = 5;
|
||||
private int eventType_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int EventType {
|
||||
get { return eventType_; }
|
||||
set {
|
||||
eventType_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "guaranteed_map_id" field.</summary>
|
||||
public const int GuaranteedMapIdFieldNumber = 6;
|
||||
private int guaranteedMapId_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int GuaranteedMapId {
|
||||
get { return guaranteedMapId_; }
|
||||
set {
|
||||
guaranteedMapId_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "npc" field.</summary>
|
||||
public const int NpcFieldNumber = 7;
|
||||
private static readonly pb::FieldCodec<int> _repeated_npc_codec
|
||||
= pb::FieldCodec.ForInt32(58);
|
||||
private readonly pbc::RepeatedField<int> npc_ = new pbc::RepeatedField<int>();
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public pbc::RepeatedField<int> Npc {
|
||||
get { return npc_; }
|
||||
}
|
||||
|
||||
/// <summary>Field number for the "related_character" field.</summary>
|
||||
public const int RelatedCharacterFieldNumber = 8;
|
||||
private int relatedCharacter_;
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int RelatedCharacter {
|
||||
get { return relatedCharacter_; }
|
||||
set {
|
||||
relatedCharacter_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override bool Equals(object other) {
|
||||
return Equals(other as StarTowerEvent);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public bool Equals(StarTowerEvent other) {
|
||||
if (ReferenceEquals(other, null)) {
|
||||
return false;
|
||||
}
|
||||
if (ReferenceEquals(other, this)) {
|
||||
return true;
|
||||
}
|
||||
if (Id != other.Id) return false;
|
||||
if (GroupId != other.GroupId) return false;
|
||||
if (OptionsRulesId != other.OptionsRulesId) return false;
|
||||
if (Desc != other.Desc) return false;
|
||||
if (EventType != other.EventType) return false;
|
||||
if (GuaranteedMapId != other.GuaranteedMapId) return false;
|
||||
if(!npc_.Equals(other.npc_)) return false;
|
||||
if (RelatedCharacter != other.RelatedCharacter) return false;
|
||||
return Equals(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override int GetHashCode() {
|
||||
int hash = 1;
|
||||
if (Id != 0) hash ^= Id.GetHashCode();
|
||||
if (GroupId != 0) hash ^= GroupId.GetHashCode();
|
||||
if (OptionsRulesId != 0) hash ^= OptionsRulesId.GetHashCode();
|
||||
if (Desc.Length != 0) hash ^= Desc.GetHashCode();
|
||||
if (EventType != 0) hash ^= EventType.GetHashCode();
|
||||
if (GuaranteedMapId != 0) hash ^= GuaranteedMapId.GetHashCode();
|
||||
hash ^= npc_.GetHashCode();
|
||||
if (RelatedCharacter != 0) hash ^= RelatedCharacter.GetHashCode();
|
||||
if (_unknownFields != null) {
|
||||
hash ^= _unknownFields.GetHashCode();
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public override string ToString() {
|
||||
return pb::JsonFormatter.ToDiagnosticString(this);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void WriteTo(pb::CodedOutputStream output) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
output.WriteRawMessage(this);
|
||||
#else
|
||||
if (Id != 0) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteInt32(Id);
|
||||
}
|
||||
if (GroupId != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteInt32(GroupId);
|
||||
}
|
||||
if (OptionsRulesId != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteInt32(OptionsRulesId);
|
||||
}
|
||||
if (Desc.Length != 0) {
|
||||
output.WriteRawTag(34);
|
||||
output.WriteString(Desc);
|
||||
}
|
||||
if (EventType != 0) {
|
||||
output.WriteRawTag(40);
|
||||
output.WriteInt32(EventType);
|
||||
}
|
||||
if (GuaranteedMapId != 0) {
|
||||
output.WriteRawTag(48);
|
||||
output.WriteInt32(GuaranteedMapId);
|
||||
}
|
||||
npc_.WriteTo(output, _repeated_npc_codec);
|
||||
if (RelatedCharacter != 0) {
|
||||
output.WriteRawTag(64);
|
||||
output.WriteInt32(RelatedCharacter);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(output);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
||||
if (Id != 0) {
|
||||
output.WriteRawTag(8);
|
||||
output.WriteInt32(Id);
|
||||
}
|
||||
if (GroupId != 0) {
|
||||
output.WriteRawTag(16);
|
||||
output.WriteInt32(GroupId);
|
||||
}
|
||||
if (OptionsRulesId != 0) {
|
||||
output.WriteRawTag(24);
|
||||
output.WriteInt32(OptionsRulesId);
|
||||
}
|
||||
if (Desc.Length != 0) {
|
||||
output.WriteRawTag(34);
|
||||
output.WriteString(Desc);
|
||||
}
|
||||
if (EventType != 0) {
|
||||
output.WriteRawTag(40);
|
||||
output.WriteInt32(EventType);
|
||||
}
|
||||
if (GuaranteedMapId != 0) {
|
||||
output.WriteRawTag(48);
|
||||
output.WriteInt32(GuaranteedMapId);
|
||||
}
|
||||
npc_.WriteTo(ref output, _repeated_npc_codec);
|
||||
if (RelatedCharacter != 0) {
|
||||
output.WriteRawTag(64);
|
||||
output.WriteInt32(RelatedCharacter);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
_unknownFields.WriteTo(ref output);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public int CalculateSize() {
|
||||
int size = 0;
|
||||
if (Id != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeInt32Size(Id);
|
||||
}
|
||||
if (GroupId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeInt32Size(GroupId);
|
||||
}
|
||||
if (OptionsRulesId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeInt32Size(OptionsRulesId);
|
||||
}
|
||||
if (Desc.Length != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeStringSize(Desc);
|
||||
}
|
||||
if (EventType != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeInt32Size(EventType);
|
||||
}
|
||||
if (GuaranteedMapId != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeInt32Size(GuaranteedMapId);
|
||||
}
|
||||
size += npc_.CalculateSize(_repeated_npc_codec);
|
||||
if (RelatedCharacter != 0) {
|
||||
size += 1 + pb::CodedOutputStream.ComputeInt32Size(RelatedCharacter);
|
||||
}
|
||||
if (_unknownFields != null) {
|
||||
size += _unknownFields.CalculateSize();
|
||||
}
|
||||
return size;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(StarTowerEvent other) {
|
||||
if (other == null) {
|
||||
return;
|
||||
}
|
||||
if (other.Id != 0) {
|
||||
Id = other.Id;
|
||||
}
|
||||
if (other.GroupId != 0) {
|
||||
GroupId = other.GroupId;
|
||||
}
|
||||
if (other.OptionsRulesId != 0) {
|
||||
OptionsRulesId = other.OptionsRulesId;
|
||||
}
|
||||
if (other.Desc.Length != 0) {
|
||||
Desc = other.Desc;
|
||||
}
|
||||
if (other.EventType != 0) {
|
||||
EventType = other.EventType;
|
||||
}
|
||||
if (other.GuaranteedMapId != 0) {
|
||||
GuaranteedMapId = other.GuaranteedMapId;
|
||||
}
|
||||
npc_.Add(other.npc_);
|
||||
if (other.RelatedCharacter != 0) {
|
||||
RelatedCharacter = other.RelatedCharacter;
|
||||
}
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
public void MergeFrom(pb::CodedInputStream input) {
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
input.ReadRawMessage(this);
|
||||
#else
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
if ((tag & 7) == 4) {
|
||||
// Abort on any end group tag.
|
||||
return;
|
||||
}
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
||||
break;
|
||||
case 8: {
|
||||
Id = input.ReadInt32();
|
||||
break;
|
||||
}
|
||||
case 16: {
|
||||
GroupId = input.ReadInt32();
|
||||
break;
|
||||
}
|
||||
case 24: {
|
||||
OptionsRulesId = input.ReadInt32();
|
||||
break;
|
||||
}
|
||||
case 34: {
|
||||
Desc = input.ReadString();
|
||||
break;
|
||||
}
|
||||
case 40: {
|
||||
EventType = input.ReadInt32();
|
||||
break;
|
||||
}
|
||||
case 48: {
|
||||
GuaranteedMapId = input.ReadInt32();
|
||||
break;
|
||||
}
|
||||
case 58:
|
||||
case 56: {
|
||||
npc_.AddEntriesFrom(input, _repeated_npc_codec);
|
||||
break;
|
||||
}
|
||||
case 64: {
|
||||
RelatedCharacter = input.ReadInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
|
||||
uint tag;
|
||||
while ((tag = input.ReadTag()) != 0) {
|
||||
if ((tag & 7) == 4) {
|
||||
// Abort on any end group tag.
|
||||
return;
|
||||
}
|
||||
switch(tag) {
|
||||
default:
|
||||
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
||||
break;
|
||||
case 8: {
|
||||
Id = input.ReadInt32();
|
||||
break;
|
||||
}
|
||||
case 16: {
|
||||
GroupId = input.ReadInt32();
|
||||
break;
|
||||
}
|
||||
case 24: {
|
||||
OptionsRulesId = input.ReadInt32();
|
||||
break;
|
||||
}
|
||||
case 34: {
|
||||
Desc = input.ReadString();
|
||||
break;
|
||||
}
|
||||
case 40: {
|
||||
EventType = input.ReadInt32();
|
||||
break;
|
||||
}
|
||||
case 48: {
|
||||
GuaranteedMapId = input.ReadInt32();
|
||||
break;
|
||||
}
|
||||
case 58:
|
||||
case 56: {
|
||||
npc_.AddEntriesFrom(ref input, _repeated_npc_codec);
|
||||
break;
|
||||
}
|
||||
case 64: {
|
||||
RelatedCharacter = input.ReadInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
#endregion Designer generated code
|
||||
Reference in New Issue
Block a user