campfire/Assets/Scripts/LoraxCuller.cs

60 lines
2.2 KiB
C#
Raw Normal View History

2020-04-20 03:14:45 +02:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class LoraxCuller : MonoBehaviour {
public Lorax[] Loraces;
public Transform ChunkKeepAliveTransformsParent;
private List<Transform> ChunkKeepAliveTransforms = new List<Transform>();
2020-04-20 11:31:15 +02:00
private List<GameObject>[] EnabledChunks;
2020-04-20 03:14:45 +02:00
private void Awake() {
2020-04-20 11:31:15 +02:00
EnabledChunks = new List<GameObject>[Loraces.Length];
2020-04-20 03:14:45 +02:00
foreach (Transform Child in ChunkKeepAliveTransformsParent) {
ChunkKeepAliveTransforms.Add(Child);
}
2020-04-20 11:31:15 +02:00
for (int LoraxIndex = 0; LoraxIndex < Loraces.Length; LoraxIndex++) {
EnabledChunks[LoraxIndex] = new List<GameObject>();
for (int ChunkIndex = 0; ChunkIndex < ChunkKeepAliveTransforms.Count; ChunkIndex++) {
EnabledChunks[LoraxIndex].Add(null);
}
}
2020-04-20 03:14:45 +02:00
}
private void Update() {
2020-04-20 20:22:14 +02:00
Hashtable Refs = new Hashtable();
2020-04-20 03:14:45 +02:00
for (int LoraxIndex = 0; LoraxIndex < Loraces.Length; LoraxIndex++) {
Lorax Lorax = Loraces[LoraxIndex];
for (int ChunkIndex = 0; ChunkIndex < ChunkKeepAliveTransforms.Count; ChunkIndex++) {
Vector3 KeepAlivePosition = ChunkKeepAliveTransforms[ChunkIndex].position;
GameObject NewChunk = Lorax.GetChunkAt(KeepAlivePosition.x, KeepAlivePosition.z);
2020-04-20 20:22:14 +02:00
GameObject OldChunk = EnabledChunks[LoraxIndex][ChunkIndex];
2020-04-20 11:31:15 +02:00
NewChunk.SetActive(true);
2020-04-20 20:22:14 +02:00
if (Refs.ContainsKey(NewChunk)) {
Refs[NewChunk] = (int)Refs[NewChunk] + 1;
} else {
Refs[NewChunk] = 1;
}
if (NewChunk != OldChunk && OldChunk != null) {
// No longer pointing to OldChunk, remove ref
if (Refs.ContainsKey(OldChunk)) {
Refs[OldChunk] = (int)Refs[OldChunk] - 1;
} else {
Refs[OldChunk] = -1;
}
}
2020-04-20 11:31:15 +02:00
EnabledChunks[LoraxIndex][ChunkIndex] = NewChunk;
2020-04-20 03:14:45 +02:00
}
}
2020-04-20 20:22:14 +02:00
foreach (GameObject Key in Refs.Keys) {
if ((int)Refs[Key] < 0) {
Key.SetActive(false);
}
}
2020-04-20 03:14:45 +02:00
}
}