minecraft-src/net/minecraft/util/profiling/ContinuousProfiler.java
2025-07-04 01:41:11 +03:00

35 lines
840 B
Java

package net.minecraft.util.profiling;
import java.util.function.IntSupplier;
import java.util.function.LongSupplier;
public class ContinuousProfiler {
private final LongSupplier realTime;
private final IntSupplier tickCount;
private ProfileCollector profiler = InactiveProfiler.INSTANCE;
public ContinuousProfiler(LongSupplier realTime, IntSupplier tickCount) {
this.realTime = realTime;
this.tickCount = tickCount;
}
public boolean isEnabled() {
return this.profiler != InactiveProfiler.INSTANCE;
}
public void disable() {
this.profiler = InactiveProfiler.INSTANCE;
}
public void enable() {
this.profiler = new ActiveProfiler(this.realTime, this.tickCount, true);
}
public ProfilerFiller getFiller() {
return this.profiler;
}
public ProfileResults getResults() {
return this.profiler.getResults();
}
}