Files
DanhengServer-OpenSource/Proto/MatchThreeBirdInfo.cs
2025-01-15 23:20:16 +08:00

347 lines
11 KiB
C#

// <auto-generated>
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: MatchThreeBirdInfo.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 EggLink.DanhengServer.Proto {
/// <summary>Holder for reflection information generated from MatchThreeBirdInfo.proto</summary>
public static partial class MatchThreeBirdInfoReflection {
#region Descriptor
/// <summary>File descriptor for MatchThreeBirdInfo.proto</summary>
public static pbr::FileDescriptor Descriptor {
get { return descriptor; }
}
private static pbr::FileDescriptor descriptor;
static MatchThreeBirdInfoReflection() {
byte[] descriptorData = global::System.Convert.FromBase64String(
string.Concat(
"ChhNYXRjaFRocmVlQmlyZEluZm8ucHJvdG8iWQoSTWF0Y2hUaHJlZUJpcmRJ",
"bmZvEhYKDmJpcmRfdG9wX3Njb3JlGAggASgNEg0KBWNvdW50GAwgASgNEgsK",
"A3BvcxgJIAEoDRIPCgdiaXJkX2lkGAMgASgNQh6qAhtFZ2dMaW5rLkRhbmhl",
"bmdTZXJ2ZXIuUHJvdG9iBnByb3RvMw=="));
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
new pbr::FileDescriptor[] { },
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
new pbr::GeneratedClrTypeInfo(typeof(global::EggLink.DanhengServer.Proto.MatchThreeBirdInfo), global::EggLink.DanhengServer.Proto.MatchThreeBirdInfo.Parser, new[]{ "BirdTopScore", "Count", "Pos", "BirdId" }, null, null, null, null)
}));
}
#endregion
}
#region Messages
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class MatchThreeBirdInfo : pb::IMessage<MatchThreeBirdInfo>
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
#endif
{
private static readonly pb::MessageParser<MatchThreeBirdInfo> _parser = new pb::MessageParser<MatchThreeBirdInfo>(() => new MatchThreeBirdInfo());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser<MatchThreeBirdInfo> Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::EggLink.DanhengServer.Proto.MatchThreeBirdInfoReflection.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 MatchThreeBirdInfo() {
OnConstruction();
}
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public MatchThreeBirdInfo(MatchThreeBirdInfo other) : this() {
birdTopScore_ = other.birdTopScore_;
count_ = other.count_;
pos_ = other.pos_;
birdId_ = other.birdId_;
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public MatchThreeBirdInfo Clone() {
return new MatchThreeBirdInfo(this);
}
/// <summary>Field number for the "bird_top_score" field.</summary>
public const int BirdTopScoreFieldNumber = 8;
private uint birdTopScore_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public uint BirdTopScore {
get { return birdTopScore_; }
set {
birdTopScore_ = value;
}
}
/// <summary>Field number for the "count" field.</summary>
public const int CountFieldNumber = 12;
private uint count_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public uint Count {
get { return count_; }
set {
count_ = value;
}
}
/// <summary>Field number for the "pos" field.</summary>
public const int PosFieldNumber = 9;
private uint pos_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public uint Pos {
get { return pos_; }
set {
pos_ = value;
}
}
/// <summary>Field number for the "bird_id" field.</summary>
public const int BirdIdFieldNumber = 3;
private uint birdId_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public uint BirdId {
get { return birdId_; }
set {
birdId_ = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as MatchThreeBirdInfo);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(MatchThreeBirdInfo other) {
if (ReferenceEquals(other, null)) {
return false;
}
if (ReferenceEquals(other, this)) {
return true;
}
if (BirdTopScore != other.BirdTopScore) return false;
if (Count != other.Count) return false;
if (Pos != other.Pos) return false;
if (BirdId != other.BirdId) 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 (BirdTopScore != 0) hash ^= BirdTopScore.GetHashCode();
if (Count != 0) hash ^= Count.GetHashCode();
if (Pos != 0) hash ^= Pos.GetHashCode();
if (BirdId != 0) hash ^= BirdId.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 (BirdId != 0) {
output.WriteRawTag(24);
output.WriteUInt32(BirdId);
}
if (BirdTopScore != 0) {
output.WriteRawTag(64);
output.WriteUInt32(BirdTopScore);
}
if (Pos != 0) {
output.WriteRawTag(72);
output.WriteUInt32(Pos);
}
if (Count != 0) {
output.WriteRawTag(96);
output.WriteUInt32(Count);
}
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 (BirdId != 0) {
output.WriteRawTag(24);
output.WriteUInt32(BirdId);
}
if (BirdTopScore != 0) {
output.WriteRawTag(64);
output.WriteUInt32(BirdTopScore);
}
if (Pos != 0) {
output.WriteRawTag(72);
output.WriteUInt32(Pos);
}
if (Count != 0) {
output.WriteRawTag(96);
output.WriteUInt32(Count);
}
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 (BirdTopScore != 0) {
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(BirdTopScore);
}
if (Count != 0) {
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Count);
}
if (Pos != 0) {
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(Pos);
}
if (BirdId != 0) {
size += 1 + pb::CodedOutputStream.ComputeUInt32Size(BirdId);
}
if (_unknownFields != null) {
size += _unknownFields.CalculateSize();
}
return size;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(MatchThreeBirdInfo other) {
if (other == null) {
return;
}
if (other.BirdTopScore != 0) {
BirdTopScore = other.BirdTopScore;
}
if (other.Count != 0) {
Count = other.Count;
}
if (other.Pos != 0) {
Pos = other.Pos;
}
if (other.BirdId != 0) {
BirdId = other.BirdId;
}
_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) {
switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
case 24: {
BirdId = input.ReadUInt32();
break;
}
case 64: {
BirdTopScore = input.ReadUInt32();
break;
}
case 72: {
Pos = input.ReadUInt32();
break;
}
case 96: {
Count = input.ReadUInt32();
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) {
switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
case 24: {
BirdId = input.ReadUInt32();
break;
}
case 64: {
BirdTopScore = input.ReadUInt32();
break;
}
case 72: {
Pos = input.ReadUInt32();
break;
}
case 96: {
Count = input.ReadUInt32();
break;
}
}
}
}
#endif
}
#endregion
}
#endregion Designer generated code