mirror of
https://github.com/raphaeIl/Novaria.git
synced 2025-12-15 16:04:48 +01:00
458 lines
15 KiB
C#
458 lines
15 KiB
C#
// <auto-generated>
|
|
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
// source: InfinityTowerMsg.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 InfinityTowerMsg.proto</summary>
|
|
public static partial class InfinityTowerMsgReflection {
|
|
|
|
#region Descriptor
|
|
/// <summary>File descriptor for InfinityTowerMsg.proto</summary>
|
|
public static pbr::FileDescriptor Descriptor {
|
|
get { return descriptor; }
|
|
}
|
|
private static pbr::FileDescriptor descriptor;
|
|
|
|
static InfinityTowerMsgReflection() {
|
|
byte[] descriptorData = global::System.Convert.FromBase64String(
|
|
string.Concat(
|
|
"ChZJbmZpbml0eVRvd2VyTXNnLnByb3RvIoQBChBJbmZpbml0eVRvd2VyTXNn",
|
|
"EgoKAmlkGAEgASgFEg0KBXRpdGxlGAIgASgJEg8KB2NvbnRlbnQYAyABKAkS",
|
|
"DAoEdHlwZRgEIAEoBRITCgtkYXlfb2Zfd2VlaxgFIAMoBRIRCgljb25kaXRp",
|
|
"b24YBiABKAUSDgoGcGFyYW1zGAcgASgJQg6qAgtOb3ZhLkNsaWVudGIGcHJv",
|
|
"dG8z"));
|
|
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
|
new pbr::FileDescriptor[] { },
|
|
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
|
new pbr::GeneratedClrTypeInfo(typeof(global::Nova.Client.InfinityTowerMsg), global::Nova.Client.InfinityTowerMsg.Parser, new[]{ "Id", "Title", "Content", "Type", "DayOfWeek", "Condition", "Params" }, null, null, null, null)
|
|
}));
|
|
}
|
|
#endregion
|
|
|
|
}
|
|
#region Messages
|
|
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
|
|
public sealed partial class InfinityTowerMsg : pb::IMessage<InfinityTowerMsg>
|
|
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
|
, pb::IBufferMessage
|
|
#endif
|
|
{
|
|
private static readonly pb::MessageParser<InfinityTowerMsg> _parser = new pb::MessageParser<InfinityTowerMsg>(() => new InfinityTowerMsg());
|
|
private pb::UnknownFieldSet _unknownFields;
|
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
public static pb::MessageParser<InfinityTowerMsg> 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.InfinityTowerMsgReflection.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 InfinityTowerMsg() {
|
|
OnConstruction();
|
|
}
|
|
|
|
partial void OnConstruction();
|
|
|
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
public InfinityTowerMsg(InfinityTowerMsg other) : this() {
|
|
id_ = other.id_;
|
|
title_ = other.title_;
|
|
content_ = other.content_;
|
|
type_ = other.type_;
|
|
dayOfWeek_ = other.dayOfWeek_.Clone();
|
|
condition_ = other.condition_;
|
|
params_ = other.params_;
|
|
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
|
}
|
|
|
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
public InfinityTowerMsg Clone() {
|
|
return new InfinityTowerMsg(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 "title" field.</summary>
|
|
public const int TitleFieldNumber = 2;
|
|
private string title_ = "";
|
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
public string Title {
|
|
get { return title_; }
|
|
set {
|
|
title_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
|
}
|
|
}
|
|
|
|
/// <summary>Field number for the "content" field.</summary>
|
|
public const int ContentFieldNumber = 3;
|
|
private string content_ = "";
|
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
public string Content {
|
|
get { return content_; }
|
|
set {
|
|
content_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
|
}
|
|
}
|
|
|
|
/// <summary>Field number for the "type" field.</summary>
|
|
public const int TypeFieldNumber = 4;
|
|
private int type_;
|
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
public int Type {
|
|
get { return type_; }
|
|
set {
|
|
type_ = value;
|
|
}
|
|
}
|
|
|
|
/// <summary>Field number for the "day_of_week" field.</summary>
|
|
public const int DayOfWeekFieldNumber = 5;
|
|
private static readonly pb::FieldCodec<int> _repeated_dayOfWeek_codec
|
|
= pb::FieldCodec.ForInt32(42);
|
|
private readonly pbc::RepeatedField<int> dayOfWeek_ = new pbc::RepeatedField<int>();
|
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
public pbc::RepeatedField<int> DayOfWeek {
|
|
get { return dayOfWeek_; }
|
|
}
|
|
|
|
/// <summary>Field number for the "condition" field.</summary>
|
|
public const int ConditionFieldNumber = 6;
|
|
private int condition_;
|
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
public int Condition {
|
|
get { return condition_; }
|
|
set {
|
|
condition_ = value;
|
|
}
|
|
}
|
|
|
|
/// <summary>Field number for the "params" field.</summary>
|
|
public const int ParamsFieldNumber = 7;
|
|
private string params_ = "";
|
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
public string Params {
|
|
get { return params_; }
|
|
set {
|
|
params_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
|
}
|
|
}
|
|
|
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
public override bool Equals(object other) {
|
|
return Equals(other as InfinityTowerMsg);
|
|
}
|
|
|
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
public bool Equals(InfinityTowerMsg other) {
|
|
if (ReferenceEquals(other, null)) {
|
|
return false;
|
|
}
|
|
if (ReferenceEquals(other, this)) {
|
|
return true;
|
|
}
|
|
if (Id != other.Id) return false;
|
|
if (Title != other.Title) return false;
|
|
if (Content != other.Content) return false;
|
|
if (Type != other.Type) return false;
|
|
if(!dayOfWeek_.Equals(other.dayOfWeek_)) return false;
|
|
if (Condition != other.Condition) return false;
|
|
if (Params != other.Params) 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 (Title.Length != 0) hash ^= Title.GetHashCode();
|
|
if (Content.Length != 0) hash ^= Content.GetHashCode();
|
|
if (Type != 0) hash ^= Type.GetHashCode();
|
|
hash ^= dayOfWeek_.GetHashCode();
|
|
if (Condition != 0) hash ^= Condition.GetHashCode();
|
|
if (Params.Length != 0) hash ^= Params.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 (Title.Length != 0) {
|
|
output.WriteRawTag(18);
|
|
output.WriteString(Title);
|
|
}
|
|
if (Content.Length != 0) {
|
|
output.WriteRawTag(26);
|
|
output.WriteString(Content);
|
|
}
|
|
if (Type != 0) {
|
|
output.WriteRawTag(32);
|
|
output.WriteInt32(Type);
|
|
}
|
|
dayOfWeek_.WriteTo(output, _repeated_dayOfWeek_codec);
|
|
if (Condition != 0) {
|
|
output.WriteRawTag(48);
|
|
output.WriteInt32(Condition);
|
|
}
|
|
if (Params.Length != 0) {
|
|
output.WriteRawTag(58);
|
|
output.WriteString(Params);
|
|
}
|
|
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 (Title.Length != 0) {
|
|
output.WriteRawTag(18);
|
|
output.WriteString(Title);
|
|
}
|
|
if (Content.Length != 0) {
|
|
output.WriteRawTag(26);
|
|
output.WriteString(Content);
|
|
}
|
|
if (Type != 0) {
|
|
output.WriteRawTag(32);
|
|
output.WriteInt32(Type);
|
|
}
|
|
dayOfWeek_.WriteTo(ref output, _repeated_dayOfWeek_codec);
|
|
if (Condition != 0) {
|
|
output.WriteRawTag(48);
|
|
output.WriteInt32(Condition);
|
|
}
|
|
if (Params.Length != 0) {
|
|
output.WriteRawTag(58);
|
|
output.WriteString(Params);
|
|
}
|
|
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 (Title.Length != 0) {
|
|
size += 1 + pb::CodedOutputStream.ComputeStringSize(Title);
|
|
}
|
|
if (Content.Length != 0) {
|
|
size += 1 + pb::CodedOutputStream.ComputeStringSize(Content);
|
|
}
|
|
if (Type != 0) {
|
|
size += 1 + pb::CodedOutputStream.ComputeInt32Size(Type);
|
|
}
|
|
size += dayOfWeek_.CalculateSize(_repeated_dayOfWeek_codec);
|
|
if (Condition != 0) {
|
|
size += 1 + pb::CodedOutputStream.ComputeInt32Size(Condition);
|
|
}
|
|
if (Params.Length != 0) {
|
|
size += 1 + pb::CodedOutputStream.ComputeStringSize(Params);
|
|
}
|
|
if (_unknownFields != null) {
|
|
size += _unknownFields.CalculateSize();
|
|
}
|
|
return size;
|
|
}
|
|
|
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
public void MergeFrom(InfinityTowerMsg other) {
|
|
if (other == null) {
|
|
return;
|
|
}
|
|
if (other.Id != 0) {
|
|
Id = other.Id;
|
|
}
|
|
if (other.Title.Length != 0) {
|
|
Title = other.Title;
|
|
}
|
|
if (other.Content.Length != 0) {
|
|
Content = other.Content;
|
|
}
|
|
if (other.Type != 0) {
|
|
Type = other.Type;
|
|
}
|
|
dayOfWeek_.Add(other.dayOfWeek_);
|
|
if (other.Condition != 0) {
|
|
Condition = other.Condition;
|
|
}
|
|
if (other.Params.Length != 0) {
|
|
Params = other.Params;
|
|
}
|
|
_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 18: {
|
|
Title = input.ReadString();
|
|
break;
|
|
}
|
|
case 26: {
|
|
Content = input.ReadString();
|
|
break;
|
|
}
|
|
case 32: {
|
|
Type = input.ReadInt32();
|
|
break;
|
|
}
|
|
case 42:
|
|
case 40: {
|
|
dayOfWeek_.AddEntriesFrom(input, _repeated_dayOfWeek_codec);
|
|
break;
|
|
}
|
|
case 48: {
|
|
Condition = input.ReadInt32();
|
|
break;
|
|
}
|
|
case 58: {
|
|
Params = input.ReadString();
|
|
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 18: {
|
|
Title = input.ReadString();
|
|
break;
|
|
}
|
|
case 26: {
|
|
Content = input.ReadString();
|
|
break;
|
|
}
|
|
case 32: {
|
|
Type = input.ReadInt32();
|
|
break;
|
|
}
|
|
case 42:
|
|
case 40: {
|
|
dayOfWeek_.AddEntriesFrom(ref input, _repeated_dayOfWeek_codec);
|
|
break;
|
|
}
|
|
case 48: {
|
|
Condition = input.ReadInt32();
|
|
break;
|
|
}
|
|
case 58: {
|
|
Params = input.ReadString();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
#endif
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
}
|
|
|
|
#endregion Designer generated code
|