forked from MagicBane/Server
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.7 KiB
52 lines
1.7 KiB
1 year ago
|
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
|
||
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
|
||
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
|
||
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
|
||
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
|
||
|
// Magicbane Emulator Project © 2013 - 2022
|
||
|
// www.magicbane.com
|
||
|
|
||
|
|
||
|
package engine.mobileAI.Threads;
|
||
1 year ago
|
|
||
1 year ago
|
import engine.objects.Mob;
|
||
|
import org.pmw.tinylog.Logger;
|
||
|
|
||
|
import java.util.concurrent.BlockingQueue;
|
||
|
import java.util.concurrent.DelayQueue;
|
||
|
|
||
11 months ago
|
public enum ReSpawner implements Runnable {
|
||
11 months ago
|
|
||
|
// MB Dev Notes:
|
||
|
//
|
||
|
// Thread acts as a throttle for messages to the client. Mobiles are
|
||
|
// respawned over a short time so as not to flood the client when
|
||
|
// an entire camp respawns at once.
|
||
|
|
||
1 year ago
|
RESPAWNER;
|
||
11 months ago
|
|
||
11 months ago
|
public static final BlockingQueue<Mob> respawnQueue = new DelayQueue<>();
|
||
1 year ago
|
|
||
|
@Override
|
||
|
public void run() {
|
||
|
|
||
|
while (true) {
|
||
|
|
||
|
try {
|
||
|
Mob mobile = respawnQueue.take();
|
||
|
mobile.respawn();
|
||
|
} catch (InterruptedException e) {
|
||
|
Logger.error(e.toString());
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
1 year ago
|
public static void start() {
|
||
1 year ago
|
Thread respawnThread;
|
||
1 year ago
|
respawnThread = new Thread(RESPAWNER);
|
||
1 year ago
|
respawnThread.setName("respawnThread");
|
||
|
respawnThread.start();
|
||
|
}
|
||
|
}
|