2014-01-20 10:41:37 -06:00
|
|
|
package appeng.parts;
|
|
|
|
|
|
|
|
import java.util.EnumSet;
|
|
|
|
import java.util.Random;
|
|
|
|
|
|
|
|
import net.minecraft.entity.Entity;
|
|
|
|
import net.minecraft.entity.EntityLivingBase;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.util.Vec3;
|
|
|
|
import net.minecraft.world.World;
|
2014-02-08 19:34:52 -06:00
|
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
2014-01-20 10:41:37 -06:00
|
|
|
import appeng.api.parts.SelectedPart;
|
2014-07-20 22:45:08 -05:00
|
|
|
import appeng.api.util.AEColor;
|
2014-02-06 23:51:19 -06:00
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2014-01-20 10:41:37 -06:00
|
|
|
|
|
|
|
public interface ICableBusContainer
|
|
|
|
{
|
|
|
|
|
|
|
|
int isProvidingStrongPower(ForgeDirection opposite);
|
|
|
|
|
|
|
|
int isProvidingWeakPower(ForgeDirection opposite);
|
|
|
|
|
|
|
|
boolean canConnectRedstone(EnumSet<ForgeDirection> of);
|
|
|
|
|
|
|
|
void onEntityCollision(Entity e);
|
|
|
|
|
|
|
|
boolean activate(EntityPlayer player, Vec3 vecFromPool);
|
|
|
|
|
|
|
|
void onNeighborChanged();
|
|
|
|
|
|
|
|
boolean isSolidOnSide(ForgeDirection side);
|
|
|
|
|
|
|
|
boolean isEmpty();
|
|
|
|
|
|
|
|
SelectedPart selectPart(Vec3 v3);
|
|
|
|
|
2014-07-20 22:45:08 -05:00
|
|
|
boolean recolourBlock(ForgeDirection side, AEColor colour, EntityPlayer who);
|
2014-01-20 10:41:37 -06:00
|
|
|
|
|
|
|
boolean isLadder(EntityLivingBase entity);
|
|
|
|
|
2014-02-06 23:51:19 -06:00
|
|
|
@SideOnly(Side.CLIENT)
|
2014-01-20 10:41:37 -06:00
|
|
|
void randomDisplayTick(World world, int x, int y, int z, Random r);
|
|
|
|
|
|
|
|
int getLightValue();
|
|
|
|
|
|
|
|
}
|