您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
66 行
2.1 KiB
66 行
2.1 KiB
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
/// CoreBrain which decides actions via communication with an external system such as Python.
|
|
public class CoreBrainExternal : ScriptableObject, CoreBrain
|
|
{
|
|
/**< Reference to the brain that uses this CoreBrainExternal */
|
|
public Brain brain;
|
|
|
|
ExternalCommunicator coord;
|
|
|
|
/// Creates the reference to the brain
|
|
public void SetBrain(Brain b)
|
|
{
|
|
brain = b;
|
|
}
|
|
|
|
/// Generates the communicator for the Academy if none was present and
|
|
/// subscribe to ExternalCommunicator if it was present.
|
|
public void InitializeCoreBrain()
|
|
{
|
|
if (brain.gameObject.transform.parent.gameObject.GetComponent<Academy>().communicator == null)
|
|
{
|
|
coord = null;
|
|
throw new UnityAgentsException(string.Format("The brain {0} was set to" +
|
|
" External mode" +
|
|
" but Unity was unable to read the" +
|
|
" arguments passed at launch.", brain.gameObject.name));
|
|
}
|
|
else if (brain.gameObject.transform.parent.gameObject.GetComponent<Academy>().communicator is ExternalCommunicator)
|
|
{
|
|
coord = (ExternalCommunicator)brain.gameObject.transform.parent.gameObject.GetComponent<Academy>().communicator;
|
|
coord.SubscribeBrain(brain);
|
|
}
|
|
|
|
}
|
|
|
|
/// Uses the communicator to retrieve the actions, memories and values and
|
|
/// sends them to the agents
|
|
public void DecideAction()
|
|
{
|
|
if (coord != null)
|
|
{
|
|
brain.SendActions(coord.GetDecidedAction(brain.gameObject.name));
|
|
brain.SendMemories(coord.GetMemories(brain.gameObject.name));
|
|
brain.SendValues(coord.GetValues(brain.gameObject.name));
|
|
}
|
|
}
|
|
|
|
/// Uses the communicator to send the states, observations, rewards and
|
|
/// dones outside of Unity
|
|
public void SendState()
|
|
{
|
|
if (coord != null)
|
|
{
|
|
coord.giveBrainInfo(brain);
|
|
}
|
|
}
|
|
|
|
/// Nothing needs to appear in the inspector
|
|
public void OnInspector()
|
|
{
|
|
|
|
}
|
|
}
|