ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/tile/TileEntityPhantomRedstoneface.java
2017-01-01 16:23:27 +01:00

71 lines
2.6 KiB
Java

/*
* This file ("TileEntityPhantomRedstoneface.java") is part of the Actually Additions mod for Minecraft.
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
* http://ellpeck.de/actaddlicense
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
* © 2015-2017 Ellpeck
*/
package de.ellpeck.actuallyadditions.mod.tile;
import net.minecraft.block.Block;
import net.minecraft.block.state.IBlockState;
import net.minecraft.util.EnumFacing;
import net.minecraftforge.common.capabilities.Capability;
import java.util.Arrays;
public class TileEntityPhantomRedstoneface extends TileEntityPhantomface{
public final int[] providesStrong = new int[EnumFacing.values().length];
public final int[] providesWeak = new int[EnumFacing.values().length];
private final int[] lastProvidesStrong = new int[this.providesStrong.length];
private final int[] lastProvidesWeak = new int[this.providesWeak.length];
public TileEntityPhantomRedstoneface(){
super("redstoneface");
}
@Override
public void updateEntity(){
if(!this.world.isRemote){
if(this.isBoundThingInRange()){
IBlockState boundState = this.world.getBlockState(this.boundPosition);
if(boundState != null){
Block boundBlock = boundState.getBlock();
if(boundBlock != null){
for(int i = 0; i < EnumFacing.values().length; i++){
EnumFacing facing = EnumFacing.values()[i];
this.providesWeak[i] = boundBlock.getWeakPower(boundState, this.world, this.boundPosition, facing);
this.providesStrong[i] = boundBlock.getStrongPower(boundState, this.world, this.boundPosition, facing);
}
}
}
}
}
super.updateEntity();
}
@Override
protected boolean doesNeedUpdateSend(){
return super.doesNeedUpdateSend() || !Arrays.equals(this.providesStrong, this.lastProvidesStrong) || !Arrays.equals(this.providesWeak, this.lastProvidesWeak);
}
@Override
protected void onUpdateSent(){
System.arraycopy(this.providesWeak, 0, this.lastProvidesWeak, 0, this.providesWeak.length);
System.arraycopy(this.providesStrong, 0, this.lastProvidesStrong, 0, this.providesStrong.length);
super.onUpdateSent();
}
@Override
protected boolean isCapabilitySupported(Capability<?> capability){
return false;
}
}