resonant-induction/APIs/universalelectricity/prefab/block/BlockRotatable.java

83 lines
2.5 KiB
Java
Raw Normal View History

package universalelectricity.prefab.block;
import net.minecraft.block.material.Material;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.util.MathHelper;
import net.minecraft.world.World;
import net.minecraftforge.common.ForgeDirection;
2013-10-23 19:16:48 +02:00
/** A block that can rotate based on placed position and wrenching.
*
* @author Calclavia */
public abstract class BlockRotatable extends BlockTile implements IRotatableBlock
{
2013-10-23 19:16:48 +02:00
public BlockRotatable(int id, Material material)
{
super(id, material);
}
2013-10-23 19:16:48 +02:00
@Override
public void onBlockPlacedBy(World world, int x, int y, int z, EntityLivingBase entityLiving, ItemStack itemStack)
{
int angle = MathHelper.floor_double((entityLiving.rotationYaw * 4.0F / 360.0F) + 0.5D) & 3;
int change = 3;
2013-10-23 19:16:48 +02:00
switch (angle)
{
case 0:
change = 2;
break;
2013-10-23 19:16:48 +02:00
case 1:
change = 5;
break;
2013-10-23 19:16:48 +02:00
case 2:
change = 3;
break;
2013-10-23 19:16:48 +02:00
case 3:
change = 4;
break;
}
2013-10-23 19:16:48 +02:00
world.setBlockMetadataWithNotify(x, y, z, change, 3);
}
2013-10-23 19:16:48 +02:00
@Override
public boolean onUseWrench(World world, int x, int y, int z, EntityPlayer par5EntityPlayer, int side, float hitX, float hitY, float hitZ)
{
this.rotateBlock(world, x, y, z, ForgeDirection.getOrientation(side));
return true;
}
2013-10-23 19:16:48 +02:00
public static boolean rotateBlock(World worldObj, int x, int y, int z, ForgeDirection axis, int mask)
{
int rotMeta = worldObj.getBlockMetadata(x, y, z);
int masked = rotMeta & ~mask;
ForgeDirection orientation = ForgeDirection.getOrientation(rotMeta & mask);
ForgeDirection rotated = orientation.getRotation(axis);
worldObj.setBlockMetadataWithNotify(x, y, z, rotated.ordinal() & mask | masked, 3);
return true;
}
@Override
public boolean onSneakMachineActivated(World world, int x, int y, int z, EntityPlayer entityPlayer, int side, float hitX, float hitY, float hitZ)
{
return false;
}
@Override
public ForgeDirection getDirection(World world, int x, int y, int z)
{
return ForgeDirection.getOrientation(world.getBlockMetadata(x, y, z));
}
@Override
public void setDirection(World world, int x, int y, int z, ForgeDirection direction)
{
world.setBlockMetadataWithNotify(x, y, z, direction.ordinal(), 3);
}
}