Spaces:
Build error
Build error
File size: 1,810 Bytes
d46f4a3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
package net.minecraft.client.multiplayer;
import net.minecraft.client.player.LocalPlayer;
import net.minecraft.client.renderer.LevelRenderer;
import net.minecraft.core.BlockPos;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
@OnlyIn(Dist.CLIENT)
public class LevelLoadStatusManager {
private final LocalPlayer player;
private final ClientLevel level;
private final LevelRenderer levelRenderer;
private LevelLoadStatusManager.Status status = LevelLoadStatusManager.Status.WAITING_FOR_SERVER;
public LevelLoadStatusManager(LocalPlayer p_312813_, ClientLevel p_310113_, LevelRenderer p_311686_) {
this.player = p_312813_;
this.level = p_310113_;
this.levelRenderer = p_311686_;
}
public void tick() {
switch (this.status) {
case WAITING_FOR_PLAYER_CHUNK:
BlockPos blockpos = this.player.blockPosition();
boolean flag = this.level.isOutsideBuildHeight(blockpos.getY());
if (flag || this.levelRenderer.isSectionCompiled(blockpos) || this.player.isSpectator() || !this.player.isAlive()) {
this.status = LevelLoadStatusManager.Status.LEVEL_READY;
}
case WAITING_FOR_SERVER:
case LEVEL_READY:
}
}
public boolean levelReady() {
return this.status == LevelLoadStatusManager.Status.LEVEL_READY;
}
public void loadingPacketsReceived() {
if (this.status == LevelLoadStatusManager.Status.WAITING_FOR_SERVER) {
this.status = LevelLoadStatusManager.Status.WAITING_FOR_PLAYER_CHUNK;
}
}
@OnlyIn(Dist.CLIENT)
static enum Status {
WAITING_FOR_SERVER,
WAITING_FOR_PLAYER_CHUNK,
LEVEL_READY;
}
} |