Files
RecRoom.Protobuf/StudioFunctionPortDeclarationData.cs
2026-05-10 13:39:01 -07:00

313 lines
12 KiB
C#

// <auto-generated>
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: circuits_v2/studio_functions/studio_function_port_declaration_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 CircuitsV2.Protobuf {
/// <summary>Holder for reflection information generated from circuits_v2/studio_functions/studio_function_port_declaration_data.proto</summary>
public static partial class StudioFunctionPortDeclarationDataReflection {
#region Descriptor
/// <summary>File descriptor for circuits_v2/studio_functions/studio_function_port_declaration_data.proto</summary>
public static pbr::FileDescriptor Descriptor {
get { return descriptor; }
}
private static pbr::FileDescriptor descriptor;
static StudioFunctionPortDeclarationDataReflection() {
byte[] descriptorData = global::System.Convert.FromBase64String(
string.Concat(
"CkhjaXJjdWl0c192Mi9zdHVkaW9fZnVuY3Rpb25zL3N0dWRpb19mdW5jdGlv",
"bl9wb3J0X2RlY2xhcmF0aW9uX2RhdGEucHJvdG8SC2NpcmN1aXRzX3YyIuAC",
"CiFTdHVkaW9GdW5jdGlvblBvcnREZWNsYXJhdGlvbkRhdGESDAoEbmFtZRgB",
"IAEoCRJYCgR0eXBlGAIgASgOMkouY2lyY3VpdHNfdjIuU3R1ZGlvRnVuY3Rp",
"b25Qb3J0RGVjbGFyYXRpb25EYXRhLlN0dWRpb0Z1bmN0aW9uUGFyYW1ldGVy",
"VHlwZSLSAQobU3R1ZGlvRnVuY3Rpb25QYXJhbWV0ZXJUeXBlEggKBGJvb2wQ",
"ABIJCgVmbG9hdBABEgcKA2ludBACEgkKBXNob3J0EAMSCgoGc3RyaW5nEAQS",
"CAoEdWludBAFEgoKBnVzaG9ydBAGEgkKBUNvbG9yEAcSCwoHQ29sb3IzMhAI",
"EgsKB1ZlY3RvcjIQCRILCgdWZWN0b3IzEAoSDgoKUXVhdGVybmlvbhALEhUK",
"EVVuaXR5RW5naW5lT2JqZWN0EAwSDwoLUmVjTmV0SW1hZ2UQDUIWqgITQ2ly",
"Y3VpdHNWMi5Qcm90b2J1ZmIGcHJvdG8z"));
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
new pbr::FileDescriptor[] { },
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
new pbr::GeneratedClrTypeInfo(typeof(global::CircuitsV2.Protobuf.StudioFunctionPortDeclarationData), global::CircuitsV2.Protobuf.StudioFunctionPortDeclarationData.Parser, new[]{ "Name", "Type" }, null, new[]{ typeof(global::CircuitsV2.Protobuf.StudioFunctionPortDeclarationData.Types.StudioFunctionParameterType) }, null, null)
}));
}
#endregion
}
#region Messages
[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class StudioFunctionPortDeclarationData : pb::IMessage<StudioFunctionPortDeclarationData>
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
#endif
{
private static readonly pb::MessageParser<StudioFunctionPortDeclarationData> _parser = new pb::MessageParser<StudioFunctionPortDeclarationData>(() => new StudioFunctionPortDeclarationData());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser<StudioFunctionPortDeclarationData> Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::CircuitsV2.Protobuf.StudioFunctionPortDeclarationDataReflection.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 StudioFunctionPortDeclarationData() {
OnConstruction();
}
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public StudioFunctionPortDeclarationData(StudioFunctionPortDeclarationData other) : this() {
name_ = other.name_;
type_ = other.type_;
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public StudioFunctionPortDeclarationData Clone() {
return new StudioFunctionPortDeclarationData(this);
}
/// <summary>Field number for the "name" field.</summary>
public const int NameFieldNumber = 1;
private string name_ = "";
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public string Name {
get { return name_; }
set {
name_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
}
}
/// <summary>Field number for the "type" field.</summary>
public const int TypeFieldNumber = 2;
private global::CircuitsV2.Protobuf.StudioFunctionPortDeclarationData.Types.StudioFunctionParameterType type_ = global::CircuitsV2.Protobuf.StudioFunctionPortDeclarationData.Types.StudioFunctionParameterType.Bool;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public global::CircuitsV2.Protobuf.StudioFunctionPortDeclarationData.Types.StudioFunctionParameterType Type {
get { return type_; }
set {
type_ = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as StudioFunctionPortDeclarationData);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(StudioFunctionPortDeclarationData other) {
if (ReferenceEquals(other, null)) {
return false;
}
if (ReferenceEquals(other, this)) {
return true;
}
if (Name != other.Name) return false;
if (Type != other.Type) 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 (Name.Length != 0) hash ^= Name.GetHashCode();
if (Type != global::CircuitsV2.Protobuf.StudioFunctionPortDeclarationData.Types.StudioFunctionParameterType.Bool) hash ^= Type.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 (Name.Length != 0) {
output.WriteRawTag(10);
output.WriteString(Name);
}
if (Type != global::CircuitsV2.Protobuf.StudioFunctionPortDeclarationData.Types.StudioFunctionParameterType.Bool) {
output.WriteRawTag(16);
output.WriteEnum((int) Type);
}
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 (Name.Length != 0) {
output.WriteRawTag(10);
output.WriteString(Name);
}
if (Type != global::CircuitsV2.Protobuf.StudioFunctionPortDeclarationData.Types.StudioFunctionParameterType.Bool) {
output.WriteRawTag(16);
output.WriteEnum((int) Type);
}
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 (Name.Length != 0) {
size += 1 + pb::CodedOutputStream.ComputeStringSize(Name);
}
if (Type != global::CircuitsV2.Protobuf.StudioFunctionPortDeclarationData.Types.StudioFunctionParameterType.Bool) {
size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) Type);
}
if (_unknownFields != null) {
size += _unknownFields.CalculateSize();
}
return size;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(StudioFunctionPortDeclarationData other) {
if (other == null) {
return;
}
if (other.Name.Length != 0) {
Name = other.Name;
}
if (other.Type != global::CircuitsV2.Protobuf.StudioFunctionPortDeclarationData.Types.StudioFunctionParameterType.Bool) {
Type = other.Type;
}
_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 10: {
Name = input.ReadString();
break;
}
case 16: {
Type = (global::CircuitsV2.Protobuf.StudioFunctionPortDeclarationData.Types.StudioFunctionParameterType) input.ReadEnum();
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 10: {
Name = input.ReadString();
break;
}
case 16: {
Type = (global::CircuitsV2.Protobuf.StudioFunctionPortDeclarationData.Types.StudioFunctionParameterType) input.ReadEnum();
break;
}
}
}
}
#endif
#region Nested types
/// <summary>Container for nested types declared in the StudioFunctionPortDeclarationData message type.</summary>
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static partial class Types {
public enum StudioFunctionParameterType {
[pbr::OriginalName("bool")] Bool = 0,
[pbr::OriginalName("float")] Float = 1,
[pbr::OriginalName("int")] Int = 2,
[pbr::OriginalName("short")] Short = 3,
[pbr::OriginalName("string")] String = 4,
[pbr::OriginalName("uint")] Uint = 5,
[pbr::OriginalName("ushort")] Ushort = 6,
[pbr::OriginalName("Color")] Color = 7,
[pbr::OriginalName("Color32")] Color32 = 8,
[pbr::OriginalName("Vector2")] Vector2 = 9,
[pbr::OriginalName("Vector3")] Vector3 = 10,
[pbr::OriginalName("Quaternion")] Quaternion = 11,
[pbr::OriginalName("UnityEngineObject")] UnityEngineObject = 12,
[pbr::OriginalName("RecNetImage")] RecNetImage = 13,
}
}
#endregion
}
#endregion
}
#endregion Designer generated code