72 lines
2.4 KiB
Java
72 lines
2.4 KiB
Java
/*
|
|
* This file is part of Applied Energistics 2.
|
|
* Copyright (c) 2013 - 2015, AlgorithmX2, All rights reserved.
|
|
*
|
|
* Applied Energistics 2 is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Applied Energistics 2 is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with Applied Energistics 2. If not, see <http://www.gnu.org/licenses/lgpl>.
|
|
*/
|
|
|
|
package appeng.debug;
|
|
|
|
|
|
import appeng.core.AELog;
|
|
import appeng.tile.AEBaseTile;
|
|
import net.minecraft.tileentity.ITickableTileEntity;
|
|
import net.minecraft.tileentity.TileEntityType;
|
|
import net.minecraft.util.math.ChunkPos;
|
|
import net.minecraft.world.World;
|
|
import net.minecraft.world.server.ServerWorld;
|
|
|
|
|
|
public class TileChunkLoader extends AEBaseTile implements ITickableTileEntity {
|
|
|
|
public TileChunkLoader(TileEntityType<?> tileEntityTypeIn) {
|
|
super(tileEntityTypeIn);
|
|
}
|
|
|
|
@Override
|
|
public void onLoad() {
|
|
super.onLoad();
|
|
|
|
World world = getWorld();
|
|
if (world instanceof ServerWorld) {
|
|
ChunkPos chunkPos = new ChunkPos(getPos());
|
|
((ServerWorld) world).forceChunk(chunkPos.x, chunkPos.z, true);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void remove() {
|
|
World world = getWorld();
|
|
if (world instanceof ServerWorld) {
|
|
ChunkPos chunkPos = new ChunkPos(getPos());
|
|
((ServerWorld) world).forceChunk(chunkPos.x, chunkPos.z, false);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void tick() {
|
|
// Validate the force-status
|
|
World world = getWorld();
|
|
if (world instanceof ServerWorld) {
|
|
ChunkPos chunkPos = new ChunkPos(getPos());
|
|
ServerWorld serverWorld = (ServerWorld) world;
|
|
|
|
if (!serverWorld.getForcedChunks().contains(chunkPos.asLong())) {
|
|
AELog.debug("Force-loading chunk @ %d,%d in %s", chunkPos.x, chunkPos.z, serverWorld.dimension.getType().getRegistryName());
|
|
serverWorld.forceChunk(chunkPos.x, chunkPos.z, false);
|
|
}
|
|
}
|
|
}
|
|
}
|