-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBetterObjectPool.cs
168 lines (140 loc) · 5.15 KB
/
BetterObjectPool.cs
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
// By Anish Dhesikan
public abstract class BetterObjectPool : MonoBehaviour {
public GameObject objectPrefab;
// initialMax: How many objects should the pool initially contain?
public int initialMax = 100;
// minInPool: What is the smallest number of items this pool should contain at any point?
public int minInPool = 20;
/*
* -- How does it work? --
* You can set 3 thresholds: lowerBound, middleBound, and upperBound.
* At any time, if the percent of active objects from the pool hits
* the lowerBound or upperBound thresholds, the object pool will begin to dynamically
* create or destroy objects to get the number back to the middle threshold.
* Try out the demo in ExampleScenes for more info.
*/
public float upperBound = 0.75f; // between 0 and 1
public float middleBound = 0.5f; // between 0 and 1
public float lowerBound = 0.25f; // between 0 and 1
// maxInstantiatesPerFrame: How many times can Instantiate() be called in a single frame?
// For mobile and for best performance in general, keep this number low.
// Currently, numbers less than 1 are not supported.
public int maxInstantiatesPerFrame = 1;
// maxDestroysPerFrame: How many times can Destroy() be called in a single frame?
// For mobile and for best performance in general, keep this number low.
// Currently, numbers less than 1 are not supported.
public int maxDestroysPerFrame = 1;
protected HashSet<GameObject> activeObjectPool = new HashSet<GameObject>();
protected Transform activeObjectPoolParent;
protected List<GameObject> inactiveObjectPool = new List<GameObject>();
protected Transform inactiveObjectPoolParent;
private int totalCount = 0;
private float percentActive = 1;
// Use this for initialization
public virtual void Awake () {
activeObjectPoolParent = new GameObject ("ActiveObjectPool " + objectPrefab.name).transform;
inactiveObjectPoolParent = new GameObject ("InactiveObjectPool" + objectPrefab.name).transform;
inactiveObjectPoolParent.gameObject.SetActive (false);
InstantiateMultiple (Mathf.FloorToInt(initialMax * middleBound));
}
// Update is called once per frame
public virtual void Update () {
UpdatePercentActive ();
if (percentActive > upperBound) {
StopAllCoroutines ();
StartCoroutine (ScaleUp());
} else if (percentActive < lowerBound) {
StopAllCoroutines ();
StartCoroutine (ScaleDown());
}
}
IEnumerator ScaleUp () {
while (percentActive > middleBound) {
//Mathf.FloorToInt (Mathf.Pow (totalCount, 0.5f))
int numToInstantiate = Mathf.Min (maxInstantiatesPerFrame, Mathf.CeilToInt(totalCount / 200f));
InstantiateMultiple (numToInstantiate);
UpdatePercentActive ();
yield return 0;
}
}
IEnumerator ScaleDown () {
if (percentActive > 0 && totalCount > minInPool) {
while (percentActive < middleBound) {
DestroyMultiple (maxDestroysPerFrame);
UpdatePercentActive ();
yield return 0;
}
}
}
public virtual bool ObjectIsActive (GameObject instance) {
return activeObjectPool.Contains (instance);
}
public virtual void RemoveInstanceFromPool (GameObject instance) {
StopAllCoroutines ();
activeObjectPool.Remove (instance);
inactiveObjectPool.Add (instance);
instance.transform.parent = inactiveObjectPoolParent;
}
public virtual GameObject GetInstanceFromPool () {
StopAllCoroutines ();
GameObject curObject = null;
if (inactiveObjectPool.Count <= 0) {
InstantiateOne ();
}
curObject = inactiveObjectPool [0] as GameObject;
// curObject.SetActive (true);
inactiveObjectPool.Remove (curObject);
activeObjectPool.Add (curObject);
curObject.transform.parent = activeObjectPoolParent;
return curObject;
}
public virtual GameObject GetInstanceFromPool (Vector3 position, Quaternion rotation) {
GameObject curObject = GetInstanceFromPool ();
if (curObject != null) {
curObject.transform.position = position;
curObject.transform.rotation = rotation;
}
return curObject;
}
// Instantiates, deactivates, and adds one to the pool
private void InstantiateOne () {
GameObject newObject = Instantiate (objectPrefab) as GameObject;
// newObject.SetActive (false);
inactiveObjectPool.Add (newObject);
newObject.transform.parent = inactiveObjectPoolParent;
totalCount++;
}
private void InstantiateMultiple (int count) {
for (int i = 0; i < count; i++) {
InstantiateOne ();
}
}
private void DestroyOne () {
if (inactiveObjectPool.Count > 0) {
GameObject curObject = inactiveObjectPool [0] as GameObject;
inactiveObjectPool.Remove (curObject);
DestroyImmediate (curObject);
totalCount--;
}
}
private void DestroyMultiple (int count) {
for (int i = 0; i < count; i++) {
DestroyOne ();
}
}
public string GetInfoText () {
return "Percent Active: " + percentActive * 100 + "%" + "\n" +
"Number Active: " + activeObjectPool.Count + "\n" +
"Number Inactive: " + inactiveObjectPool.Count;
}
private void UpdatePercentActive () {
percentActive = (float) activeObjectPool.Count / totalCount;
// if (percentActive < lowerBound) {
// Debug.Log ("Percent Active: " + percentActive);
// Debug.Log ("TotalCount: " + totalCount);
// }
}
}