Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make btree actually Poolable #140

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion gdx-ai/src/com/badlogic/gdx/ai/btree/BehaviorTree.java
Original file line number Diff line number Diff line change
Expand Up @@ -172,11 +172,12 @@ public void notifyChildAdded (Task<E> task, int index) {

@Override
public void reset() {
// first call super reset to free child
super.reset();
removeListeners();
this.rootTask = null;
this.object = null;
this.listeners = null;
super.reset();
}

private static final class GuardEvaluator<E> extends Task<E> {
Expand Down
3 changes: 2 additions & 1 deletion gdx-ai/src/com/badlogic/gdx/ai/btree/BranchTask.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,9 @@ protected Task<E> copyTo (Task<E> task) {

@Override
public void reset() {
children.clear();
// first call super reset to free child
super.reset();
children.clear();
}

}
3 changes: 2 additions & 1 deletion gdx-ai/src/com/badlogic/gdx/ai/btree/Decorator.java
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,9 @@ protected Task<E> copyTo (Task<E> task) {

@Override
public void reset() {
child = null;
// first call super reset to free child
super.reset();
child = null;
}

}
3 changes: 2 additions & 1 deletion gdx-ai/src/com/badlogic/gdx/ai/btree/LoopDecorator.java
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,9 @@ public void childRunning (Task<E> runningTask, Task<E> reporter) {

@Override
public void reset() {
loop = false;
// first call super reset to free child
super.reset();
loop = false;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,11 @@ protected Task<E>[] createRandomChildren () {

@Override
public void reset() {
// first call super reset to free child
super.reset();
this.currentChildIndex = 0;
this.runningChild = null;
this.randomChildren = null;
super.reset();
}

}
25 changes: 24 additions & 1 deletion gdx-ai/src/com/badlogic/gdx/ai/btree/Task.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

import com.badlogic.gdx.ai.btree.annotation.TaskConstraint;
import com.badlogic.gdx.utils.Pool.Poolable;
import com.badlogic.gdx.utils.Pools;
import com.badlogic.gdx.utils.reflect.ClassReflection;
import com.badlogic.gdx.utils.reflect.ReflectionException;

Expand Down Expand Up @@ -69,7 +70,7 @@ public enum Status {
* };
* </code>
* </pre> */
public static TaskCloner TASK_CLONER = null;
public static TaskCloner TASK_CLONER = new PoolsTaskCloner();

/** The status of this task. */
protected Status status = Status.FRESH;
Expand Down Expand Up @@ -281,10 +282,32 @@ public Task<E> cloneTask () {

@Override
public void reset() {
// free child
if (TASK_CLONER != null) {
int childCount = getChildCount();
for (int i = 0; i < childCount; i++) {
TASK_CLONER.freeTask(getChild(i));
}
}
control = null;
guard = null;
status = Status.FRESH;
tree = null;
}

public static class PoolsTaskCloner implements TaskCloner{

@Override
public <T> Task<T> cloneTask(Task<T> task) {
Task poolTask = Pools.obtain(task.getClass());
task.copyTo(poolTask);
poolTask.guard = task.guard == null ? null : task.guard.cloneTask();
return poolTask;
}

@Override
public <T> void freeTask(Task<T> task) {
Pools.free(task);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ protected Task<E> copyTo (Task<E> task) {

@Override
public void reset() {
runningChild = null;
// first call super reset to free child
super.reset();
runningChild = null;
}
}
3 changes: 2 additions & 1 deletion gdx-ai/src/com/badlogic/gdx/ai/btree/branch/Parallel.java
Original file line number Diff line number Diff line change
Expand Up @@ -241,12 +241,13 @@ public void execute(Parallel<?> parallel) {

@Override
public void reset() {
// first call super reset to free child
super.reset();
policy = Policy.Sequence;
orchestrator = Orchestrator.Resume;
noRunningTasks = true;
lastResult = null;
currentChildIndex = 0;
super.reset();
}

/** The enumeration of the policies supported by the {@link Parallel} task. */
Expand Down
3 changes: 2 additions & 1 deletion gdx-ai/src/com/badlogic/gdx/ai/btree/decorator/Include.java
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,9 @@ private Task<E> createSubtreeRootTask () {

@Override
public void reset() {
// first call super reset to free child
super.reset();
lazy = false;
subtree = null;
super.reset();
}
}
3 changes: 2 additions & 1 deletion gdx-ai/src/com/badlogic/gdx/ai/btree/decorator/Random.java
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,9 @@ protected Task<E> copyTo (Task<E> task) {

@Override
public void reset() {
// first call super reset to free child
super.reset();
this.p = 0;
this.success = ConstantFloatDistribution.ZERO_POINT_FIVE;
super.reset();
}
}
3 changes: 2 additions & 1 deletion gdx-ai/src/com/badlogic/gdx/ai/btree/decorator/Repeat.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,9 @@ protected Task<E> copyTo (Task<E> task) {

@Override
public void reset() {
// first call super reset to free child
super.reset();
count = 0;
times = null;
super.reset();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,10 @@ protected Task<E> copyTo (Task<E> task) {

@Override
public void reset() {
// first call super reset to free child
super.reset();
name = null;
semaphore = null;
semaphoreAcquired = false;
super.reset();
}
}
3 changes: 2 additions & 1 deletion gdx-ai/src/com/badlogic/gdx/ai/btree/leaf/Wait.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,11 @@ protected Task<E> copyTo (Task<E> task) {

@Override
public void reset() {
// first call super reset to free child
super.reset();
seconds = ConstantFloatDistribution.ZERO;
startTime = 0;
timeout = 0;
super.reset();
}

}