File size: 1,440 Bytes
05c9ac2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
using UnityEngine;
using UnityEngine.UI;
using Unity.MLAgents;
public class FoodCollectorSettings : MonoBehaviour
{
[HideInInspector]
public GameObject[] agents;
[HideInInspector]
public FoodCollectorArea[] listArea;
public int totalScore;
public Text scoreText;
StatsRecorder m_Recorder;
public void Awake()
{
Academy.Instance.OnEnvironmentReset += EnvironmentReset;
m_Recorder = Academy.Instance.StatsRecorder;
}
void EnvironmentReset()
{
ClearObjects(GameObject.FindGameObjectsWithTag("food"));
ClearObjects(GameObject.FindGameObjectsWithTag("badFood"));
agents = GameObject.FindGameObjectsWithTag("agent");
listArea = FindObjectsOfType<FoodCollectorArea>();
foreach (var fa in listArea)
{
fa.ResetFoodArea(agents);
}
totalScore = 0;
}
void ClearObjects(GameObject[] objects)
{
foreach (var food in objects)
{
Destroy(food);
}
}
public void Update()
{
scoreText.text = $"Score: {totalScore}";
// Send stats via SideChannel so that they'll appear in TensorBoard.
// These values get averaged every summary_frequency steps, so we don't
// need to send every Update() call.
if ((Time.frameCount % 100) == 0)
{
m_Recorder.Add("TotalScore", totalScore);
}
}
}
|