All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.minestom.server.thread.TickSchedulerThread Maven / Gradle / Ivy

package net.minestom.server.thread;

import net.minestom.server.MinecraftServer;
import net.minestom.server.ServerProcess;
import org.jetbrains.annotations.ApiStatus;

import java.util.concurrent.locks.LockSupport;

@ApiStatus.Internal
public final class TickSchedulerThread extends MinestomThread {
    private final ServerProcess serverProcess;

    private final long startTickNs = System.nanoTime();
    private long tick = 1;

    public TickSchedulerThread(ServerProcess serverProcess) {
        super(MinecraftServer.THREAD_NAME_TICK_SCHEDULER);
        this.serverProcess = serverProcess;
    }

    @Override
    public void run() {
        final long tickNs = (long) (MinecraftServer.TICK_MS * 1e6);
        while (serverProcess.isAlive()) {
            final long tickStart = System.nanoTime();
            try {
                serverProcess.ticker().tick(tickStart);
            } catch (Exception e) {
                serverProcess.exception().handleException(e);
            }
            fixTickRate(tickNs);
        }
    }

    private void fixTickRate(long tickNs) {
        long nextTickNs = startTickNs + (tickNs * tick);
        if (System.nanoTime() < nextTickNs) {
            while (true) {
                // Checks in every 1/10 ms to see if the current time has reached the next scheduled time.
                Thread.yield();
                LockSupport.parkNanos(100000);
                long currentNs = System.nanoTime();
                if (currentNs >= nextTickNs) {
                    break;
                }
            }
        }
        tick++;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy