/************************************************************************************ * Copyright (c) 2015 /// Project SWG /// www.projectswg.com * * * * ProjectSWG is the first NGE emulator for Star Wars Galaxies founded on * * July 7th, 2011 after SOE announced the official shutdown of Star Wars Galaxies. * * Our goal is to create an emulator which will provide a server for players to * * continue playing a game similar to the one they used to play. We are basing * * it on the final publish of the game prior to end-game events. * * * * This file is part of Holocore. * * * * -------------------------------------------------------------------------------- * * * * Holocore is free software: you can redistribute it and/or modify * * it under the terms of the GNU Affero General Public License as * * published by the Free Software Foundation, either version 3 of the * * License, or (at your option) any later version. * * * * Holocore is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU Affero General Public License for more details. * * * * You should have received a copy of the GNU Affero General Public License * * along with Holocore. If not, see . * * * ***********************************************************************************/ package resources.objects.awareness; import java.util.concurrent.atomic.AtomicInteger; import org.junit.Assert; import resources.objects.SWGObject; import resources.objects.awareness.TerrainMap.TerrainMapCallback; class MapCallback implements TerrainMapCallback { private final BlockingCounter withinRange = new BlockingCounter(); private final BlockingCounter outOfRange = new BlockingCounter(); private final BlockingCounter successfulMove = new BlockingCounter(); private final BlockingCounter failedMove = new BlockingCounter(); @Override public void onWithinRange(SWGObject obj, SWGObject inRange) { withinRange.increment(); } @Override public void onOutOfRange(SWGObject obj, SWGObject outRange) { outOfRange.increment(); } @Override public void onMoveSuccess(SWGObject obj) { successfulMove.increment(); } @Override public void onMoveFailure(SWGObject obj) { failedMove.increment(); } public void set(int withinRange, int outOfRange, int successful, int failed) { this.withinRange.set(withinRange); this.outOfRange.set(outOfRange); this.successfulMove.set(successful); this.failedMove.set(failed); } public int getWithinRange() { return withinRange.get(); } public int getOutOfRange() { return outOfRange.get(); } public int getSuccess() { return successfulMove.get(); } public int getFailed() { return failedMove.get(); } public void waitAndTest(int withinRange, int outOfRange, int successful, int failed, long timeout) { waitFor(withinRange, outOfRange, successful, failed, timeout); testAssert(withinRange, outOfRange, successful, failed); } public void waitFor(int withinRange, int outOfRange, int successful, int failed, long timeout) { long start = System.nanoTime(); this.withinRange.waitUntil(withinRange, timeout); this.outOfRange.waitUntil(outOfRange, timeout-(long)((System.nanoTime()-start)/1E6)); this.successfulMove.waitUntil(successful, timeout-(long)((System.nanoTime()-start)/1E6)); this.failedMove.waitUntil(failed, timeout-(long)((System.nanoTime()-start)/1E6)); } public void testAssert(int withinRange, int outOfRange, int successful, int failed) { Assert.assertEquals("TEST-WITHIN-RANGE", withinRange, this.withinRange.get()); Assert.assertEquals("TEST-OUT-OF-RANGE", outOfRange, this.outOfRange.get()); Assert.assertEquals("TEST-SUCCESSFUL-MOVE", successful, this.successfulMove.get()); Assert.assertEquals("TEST-FAILED-MOVE", failed, this.failedMove.get()); } private static class BlockingCounter { private final Object mutex; private final AtomicInteger integer; public BlockingCounter() { mutex = new Object(); integer = new AtomicInteger(0); } public boolean waitUntil(int value, long timeout) { long start = System.nanoTime(); while (timeout > 0 && integer.get() < value && waitForChange(timeout)) { timeout -= (long) ((System.nanoTime()-start)/1E6); start = System.nanoTime(); if (integer.get() >= value) return true; } return false; } public boolean waitForChange(long timeout) { synchronized (mutex) { int initial = integer.get(); try { mutex.wait(timeout); } catch (InterruptedException e) { return false; } return initial != integer.get(); } } public void increment() { integer.incrementAndGet(); synchronized (mutex) { mutex.notifyAll(); } } public int get() { return integer.get(); } public void set(int i) { integer.set(i); synchronized (mutex) { mutex.notifyAll(); } } } }