Protobuf...

This commit is contained in:
2026-05-10 13:39:01 -07:00
commit c1830ab510
421 changed files with 313428 additions and 0 deletions

392
CircuitLinkData.cs Normal file
View File

@@ -0,0 +1,392 @@
// <auto-generated>
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: circuits_v1/circuit_link_data.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 RecRoom.CircuitsV1.Protobuf {
/// <summary>Holder for reflection information generated from circuits_v1/circuit_link_data.proto</summary>
public static partial class CircuitLinkDataReflection {
#region Descriptor
/// <summary>File descriptor for circuits_v1/circuit_link_data.proto</summary>
public static pbr::FileDescriptor Descriptor {
get { return descriptor; }
}
private static pbr::FileDescriptor descriptor;
static CircuitLinkDataReflection() {
byte[] descriptorData = global::System.Convert.FromBase64String(
string.Concat(
"CiNjaXJjdWl0c192MS9jaXJjdWl0X2xpbmtfZGF0YS5wcm90bxILY2lyY3Vp",
"dHNfdjEiewoPQ2lyY3VpdExpbmtEYXRhEhYKDnNvdXJjZV9ub2RlX2lkGAEg",
"ASgFEhQKDGRlc3Rfbm9kZV9pZBgCIAEoBRISCgppbnB1dF9zbG90GAMgASgF",
"EhMKC291dHB1dF9zbG90GAQgASgFEhEKCWxpbmtfdHlwZRgFIAEoBUIeqgIb",
"UmVjUm9vbS5DaXJjdWl0c1YxLlByb3RvYnVmYgZwcm90bzM="));
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
new pbr::FileDescriptor[] { },
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
new pbr::GeneratedClrTypeInfo(typeof(global::RecRoom.CircuitsV1.Protobuf.CircuitLinkData), global::RecRoom.CircuitsV1.Protobuf.CircuitLinkData.Parser, new[]{ "SourceNodeId", "DestNodeId", "InputSlot", "OutputSlot", "LinkType" }, null, null, null, null)
}));
}
#endregion
}
#region Messages
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class CircuitLinkData : pb::IMessage<CircuitLinkData>
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
#endif
{
private static readonly pb::MessageParser<CircuitLinkData> _parser = new pb::MessageParser<CircuitLinkData>(() => new CircuitLinkData());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser<CircuitLinkData> Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::RecRoom.CircuitsV1.Protobuf.CircuitLinkDataReflection.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 CircuitLinkData() {
OnConstruction();
}
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public CircuitLinkData(CircuitLinkData other) : this() {
sourceNodeId_ = other.sourceNodeId_;
destNodeId_ = other.destNodeId_;
inputSlot_ = other.inputSlot_;
outputSlot_ = other.outputSlot_;
linkType_ = other.linkType_;
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public CircuitLinkData Clone() {
return new CircuitLinkData(this);
}
/// <summary>Field number for the "source_node_id" field.</summary>
public const int SourceNodeIdFieldNumber = 1;
private int sourceNodeId_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int SourceNodeId {
get { return sourceNodeId_; }
set {
sourceNodeId_ = value;
}
}
/// <summary>Field number for the "dest_node_id" field.</summary>
public const int DestNodeIdFieldNumber = 2;
private int destNodeId_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int DestNodeId {
get { return destNodeId_; }
set {
destNodeId_ = value;
}
}
/// <summary>Field number for the "input_slot" field.</summary>
public const int InputSlotFieldNumber = 3;
private int inputSlot_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int InputSlot {
get { return inputSlot_; }
set {
inputSlot_ = value;
}
}
/// <summary>Field number for the "output_slot" field.</summary>
public const int OutputSlotFieldNumber = 4;
private int outputSlot_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int OutputSlot {
get { return outputSlot_; }
set {
outputSlot_ = value;
}
}
/// <summary>Field number for the "link_type" field.</summary>
public const int LinkTypeFieldNumber = 5;
private int linkType_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int LinkType {
get { return linkType_; }
set {
linkType_ = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as CircuitLinkData);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(CircuitLinkData other) {
if (ReferenceEquals(other, null)) {
return false;
}
if (ReferenceEquals(other, this)) {
return true;
}
if (SourceNodeId != other.SourceNodeId) return false;
if (DestNodeId != other.DestNodeId) return false;
if (InputSlot != other.InputSlot) return false;
if (OutputSlot != other.OutputSlot) return false;
if (LinkType != other.LinkType) 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 (SourceNodeId != 0) hash ^= SourceNodeId.GetHashCode();
if (DestNodeId != 0) hash ^= DestNodeId.GetHashCode();
if (InputSlot != 0) hash ^= InputSlot.GetHashCode();
if (OutputSlot != 0) hash ^= OutputSlot.GetHashCode();
if (LinkType != 0) hash ^= LinkType.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 (SourceNodeId != 0) {
output.WriteRawTag(8);
output.WriteInt32(SourceNodeId);
}
if (DestNodeId != 0) {
output.WriteRawTag(16);
output.WriteInt32(DestNodeId);
}
if (InputSlot != 0) {
output.WriteRawTag(24);
output.WriteInt32(InputSlot);
}
if (OutputSlot != 0) {
output.WriteRawTag(32);
output.WriteInt32(OutputSlot);
}
if (LinkType != 0) {
output.WriteRawTag(40);
output.WriteInt32(LinkType);
}
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 (SourceNodeId != 0) {
output.WriteRawTag(8);
output.WriteInt32(SourceNodeId);
}
if (DestNodeId != 0) {
output.WriteRawTag(16);
output.WriteInt32(DestNodeId);
}
if (InputSlot != 0) {
output.WriteRawTag(24);
output.WriteInt32(InputSlot);
}
if (OutputSlot != 0) {
output.WriteRawTag(32);
output.WriteInt32(OutputSlot);
}
if (LinkType != 0) {
output.WriteRawTag(40);
output.WriteInt32(LinkType);
}
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 (SourceNodeId != 0) {
size += 1 + pb::CodedOutputStream.ComputeInt32Size(SourceNodeId);
}
if (DestNodeId != 0) {
size += 1 + pb::CodedOutputStream.ComputeInt32Size(DestNodeId);
}
if (InputSlot != 0) {
size += 1 + pb::CodedOutputStream.ComputeInt32Size(InputSlot);
}
if (OutputSlot != 0) {
size += 1 + pb::CodedOutputStream.ComputeInt32Size(OutputSlot);
}
if (LinkType != 0) {
size += 1 + pb::CodedOutputStream.ComputeInt32Size(LinkType);
}
if (_unknownFields != null) {
size += _unknownFields.CalculateSize();
}
return size;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(CircuitLinkData other) {
if (other == null) {
return;
}
if (other.SourceNodeId != 0) {
SourceNodeId = other.SourceNodeId;
}
if (other.DestNodeId != 0) {
DestNodeId = other.DestNodeId;
}
if (other.InputSlot != 0) {
InputSlot = other.InputSlot;
}
if (other.OutputSlot != 0) {
OutputSlot = other.OutputSlot;
}
if (other.LinkType != 0) {
LinkType = other.LinkType;
}
_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: {
SourceNodeId = input.ReadInt32();
break;
}
case 16: {
DestNodeId = input.ReadInt32();
break;
}
case 24: {
InputSlot = input.ReadInt32();
break;
}
case 32: {
OutputSlot = input.ReadInt32();
break;
}
case 40: {
LinkType = 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: {
SourceNodeId = input.ReadInt32();
break;
}
case 16: {
DestNodeId = input.ReadInt32();
break;
}
case 24: {
InputSlot = input.ReadInt32();
break;
}
case 32: {
OutputSlot = input.ReadInt32();
break;
}
case 40: {
LinkType = input.ReadInt32();
break;
}
}
}
}
#endif
}
#endregion
}
#endregion Designer generated code