ppo-Pyramids-Training
/
com.unity.ml-agents
/Runtime
/Grpc
/CommunicatorObjects
/AgentInfoActionPair.cs
// <auto-generated> | |
// Generated by the protocol buffer compiler. DO NOT EDIT! | |
// source: mlagents_envs/communicator_objects/agent_info_action_pair.proto | |
// </auto-generated> | |
using pb = global::Google.Protobuf; | |
using pbc = global::Google.Protobuf.Collections; | |
using pbr = global::Google.Protobuf.Reflection; | |
using scg = global::System.Collections.Generic; | |
namespace Unity.MLAgents.CommunicatorObjects { | |
/// <summary>Holder for reflection information generated from mlagents_envs/communicator_objects/agent_info_action_pair.proto</summary> | |
internal static partial class AgentInfoActionPairReflection { | |
/// <summary>File descriptor for mlagents_envs/communicator_objects/agent_info_action_pair.proto</summary> | |
public static pbr::FileDescriptor Descriptor { | |
get { return descriptor; } | |
} | |
private static pbr::FileDescriptor descriptor; | |
static AgentInfoActionPairReflection() { | |
byte[] descriptorData = global::System.Convert.FromBase64String( | |
string.Concat( | |
"Cj9tbGFnZW50c19lbnZzL2NvbW11bmljYXRvcl9vYmplY3RzL2FnZW50X2lu", | |
"Zm9fYWN0aW9uX3BhaXIucHJvdG8SFGNvbW11bmljYXRvcl9vYmplY3RzGjNt", | |
"bGFnZW50c19lbnZzL2NvbW11bmljYXRvcl9vYmplY3RzL2FnZW50X2luZm8u", | |
"cHJvdG8aNW1sYWdlbnRzX2VudnMvY29tbXVuaWNhdG9yX29iamVjdHMvYWdl", | |
"bnRfYWN0aW9uLnByb3RvIpEBChhBZ2VudEluZm9BY3Rpb25QYWlyUHJvdG8S", | |
"OAoKYWdlbnRfaW5mbxgBIAEoCzIkLmNvbW11bmljYXRvcl9vYmplY3RzLkFn", | |
"ZW50SW5mb1Byb3RvEjsKC2FjdGlvbl9pbmZvGAIgASgLMiYuY29tbXVuaWNh", | |
"dG9yX29iamVjdHMuQWdlbnRBY3Rpb25Qcm90b0IlqgIiVW5pdHkuTUxBZ2Vu", | |
"dHMuQ29tbXVuaWNhdG9yT2JqZWN0c2IGcHJvdG8z")); | |
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, | |
new pbr::FileDescriptor[] { global::Unity.MLAgents.CommunicatorObjects.AgentInfoReflection.Descriptor, global::Unity.MLAgents.CommunicatorObjects.AgentActionReflection.Descriptor, }, | |
new pbr::GeneratedClrTypeInfo(null, new pbr::GeneratedClrTypeInfo[] { | |
new pbr::GeneratedClrTypeInfo(typeof(global::Unity.MLAgents.CommunicatorObjects.AgentInfoActionPairProto), global::Unity.MLAgents.CommunicatorObjects.AgentInfoActionPairProto.Parser, new[]{ "AgentInfo", "ActionInfo" }, null, null, null) | |
})); | |
} | |
} | |
internal sealed partial class AgentInfoActionPairProto : pb::IMessage<AgentInfoActionPairProto> { | |
private static readonly pb::MessageParser<AgentInfoActionPairProto> _parser = new pb::MessageParser<AgentInfoActionPairProto>(() => new AgentInfoActionPairProto()); | |
private pb::UnknownFieldSet _unknownFields; | |
[ | ]|
public static pb::MessageParser<AgentInfoActionPairProto> Parser { get { return _parser; } } | |
[ | ]|
public static pbr::MessageDescriptor Descriptor { | |
get { return global::Unity.MLAgents.CommunicatorObjects.AgentInfoActionPairReflection.Descriptor.MessageTypes[0]; } | |
} | |
[ | ]|
pbr::MessageDescriptor pb::IMessage.Descriptor { | |
get { return Descriptor; } | |
} | |
[ | ]|
public AgentInfoActionPairProto() { | |
OnConstruction(); | |
} | |
partial void OnConstruction(); | |
[ | ]|
public AgentInfoActionPairProto(AgentInfoActionPairProto other) : this() { | |
AgentInfo = other.agentInfo_ != null ? other.AgentInfo.Clone() : null; | |
ActionInfo = other.actionInfo_ != null ? other.ActionInfo.Clone() : null; | |
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); | |
} | |
[ | ]|
public AgentInfoActionPairProto Clone() { | |
return new AgentInfoActionPairProto(this); | |
} | |
/// <summary>Field number for the "agent_info" field.</summary> | |
public const int AgentInfoFieldNumber = 1; | |
private global::Unity.MLAgents.CommunicatorObjects.AgentInfoProto agentInfo_; | |
[ | ]|
public global::Unity.MLAgents.CommunicatorObjects.AgentInfoProto AgentInfo { | |
get { return agentInfo_; } | |
set { | |
agentInfo_ = value; | |
} | |
} | |
/// <summary>Field number for the "action_info" field.</summary> | |
public const int ActionInfoFieldNumber = 2; | |
private global::Unity.MLAgents.CommunicatorObjects.AgentActionProto actionInfo_; | |
[ | ]|
public global::Unity.MLAgents.CommunicatorObjects.AgentActionProto ActionInfo { | |
get { return actionInfo_; } | |
set { | |
actionInfo_ = value; | |
} | |
} | |
[ | ]|
public override bool Equals(object other) { | |
return Equals(other as AgentInfoActionPairProto); | |
} | |
[ | ]|
public bool Equals(AgentInfoActionPairProto other) { | |
if (ReferenceEquals(other, null)) { | |
return false; | |
} | |
if (ReferenceEquals(other, this)) { | |
return true; | |
} | |
if (!object.Equals(AgentInfo, other.AgentInfo)) return false; | |
if (!object.Equals(ActionInfo, other.ActionInfo)) return false; | |
return Equals(_unknownFields, other._unknownFields); | |
} | |
[ | ]|
public override int GetHashCode() { | |
int hash = 1; | |
if (agentInfo_ != null) hash ^= AgentInfo.GetHashCode(); | |
if (actionInfo_ != null) hash ^= ActionInfo.GetHashCode(); | |
if (_unknownFields != null) { | |
hash ^= _unknownFields.GetHashCode(); | |
} | |
return hash; | |
} | |
[ | ]|
public override string ToString() { | |
return pb::JsonFormatter.ToDiagnosticString(this); | |
} | |
[ | ]|
public void WriteTo(pb::CodedOutputStream output) { | |
if (agentInfo_ != null) { | |
output.WriteRawTag(10); | |
output.WriteMessage(AgentInfo); | |
} | |
if (actionInfo_ != null) { | |
output.WriteRawTag(18); | |
output.WriteMessage(ActionInfo); | |
} | |
if (_unknownFields != null) { | |
_unknownFields.WriteTo(output); | |
} | |
} | |
[ | ]|
public int CalculateSize() { | |
int size = 0; | |
if (agentInfo_ != null) { | |
size += 1 + pb::CodedOutputStream.ComputeMessageSize(AgentInfo); | |
} | |
if (actionInfo_ != null) { | |
size += 1 + pb::CodedOutputStream.ComputeMessageSize(ActionInfo); | |
} | |
if (_unknownFields != null) { | |
size += _unknownFields.CalculateSize(); | |
} | |
return size; | |
} | |
[ | ]|
public void MergeFrom(AgentInfoActionPairProto other) { | |
if (other == null) { | |
return; | |
} | |
if (other.agentInfo_ != null) { | |
if (agentInfo_ == null) { | |
agentInfo_ = new global::Unity.MLAgents.CommunicatorObjects.AgentInfoProto(); | |
} | |
AgentInfo.MergeFrom(other.AgentInfo); | |
} | |
if (other.actionInfo_ != null) { | |
if (actionInfo_ == null) { | |
actionInfo_ = new global::Unity.MLAgents.CommunicatorObjects.AgentActionProto(); | |
} | |
ActionInfo.MergeFrom(other.ActionInfo); | |
} | |
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); | |
} | |
[ | ]|
public void MergeFrom(pb::CodedInputStream input) { | |
uint tag; | |
while ((tag = input.ReadTag()) != 0) { | |
switch(tag) { | |
default: | |
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); | |
break; | |
case 10: { | |
if (agentInfo_ == null) { | |
agentInfo_ = new global::Unity.MLAgents.CommunicatorObjects.AgentInfoProto(); | |
} | |
input.ReadMessage(agentInfo_); | |
break; | |
} | |
case 18: { | |
if (actionInfo_ == null) { | |
actionInfo_ = new global::Unity.MLAgents.CommunicatorObjects.AgentActionProto(); | |
} | |
input.ReadMessage(actionInfo_); | |
break; | |
} | |
} | |
} | |
} | |
} | |
} | |