mirror of
https://github.com/ViaVersion/ViaBackwards.git
synced 2024-11-02 09:09:55 +01:00
Async mapping loader change
This commit is contained in:
parent
48a69f1411
commit
29908523b0
@ -15,8 +15,6 @@ import us.myles.ViaVersion.api.protocol.ProtocolRegistry;
|
|||||||
import us.myles.ViaVersion.api.remapper.PacketRemapper;
|
import us.myles.ViaVersion.api.remapper.PacketRemapper;
|
||||||
import us.myles.ViaVersion.packets.State;
|
import us.myles.ViaVersion.packets.State;
|
||||||
|
|
||||||
import java.util.concurrent.CompletableFuture;
|
|
||||||
|
|
||||||
public abstract class BackwardsProtocol extends Protocol {
|
public abstract class BackwardsProtocol extends Protocol {
|
||||||
|
|
||||||
protected BackwardsProtocol() {
|
protected BackwardsProtocol() {
|
||||||
@ -46,13 +44,6 @@ public abstract class BackwardsProtocol extends Protocol {
|
|||||||
* Waits for the given protocol to be loaded to then asynchronously execute the runnable for this protocol.
|
* Waits for the given protocol to be loaded to then asynchronously execute the runnable for this protocol.
|
||||||
*/
|
*/
|
||||||
protected void executeAsyncAfterLoaded(Class<? extends Protocol> protocolClass, Runnable runnable) {
|
protected void executeAsyncAfterLoaded(Class<? extends Protocol> protocolClass, Runnable runnable) {
|
||||||
CompletableFuture<Void> future = ProtocolRegistry.getMappingLoaderFuture(protocolClass);
|
ProtocolRegistry.addMappingLoaderFuture(getClass(), protocolClass, runnable);
|
||||||
if (future == null) {
|
|
||||||
runnable.run();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// If the protocol to depend on has been loaded, execute the new runnable async and schedule it for necessary completion
|
|
||||||
future.whenComplete((v, t) -> ProtocolRegistry.addMappingLoaderFuture(getClass(), runnable));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user