BloodMagic/src/main/java/WayofTime/bloodmagic/incense/IncenseAltarComponent.java
Nick 6c729db70c Initial 1.9 commit
This DOES NOT BUILD. Do not even attempt.

Almost everything has been ported besides the block/item packages. Then it's a matter of testing what broke.
2016-03-17 13:00:46 -07:00

63 lines
1.6 KiB
Java

package WayofTime.bloodmagic.incense;
import net.minecraft.block.Block;
import net.minecraft.block.state.IBlockState;
import net.minecraft.util.EnumFacing;
import net.minecraft.util.math.BlockPos;
public class IncenseAltarComponent
{
public final BlockPos offsetPos;
public final Block block;
public final IBlockState state;
public IncenseAltarComponent(BlockPos offsetPos, Block block, IBlockState state)
{
this.offsetPos = offsetPos;
this.block = block;
this.state = state;
}
public boolean doesBlockMatch(Block block, IBlockState state)
{
return this.block == block && block.getMetaFromState(state) == this.block.getMetaFromState(this.state);
}
/**
* Base rotation is north.
*/
public BlockPos getOffset(EnumFacing rotation)
{
return new BlockPos(this.getX(rotation), offsetPos.getY(), this.getZ(rotation));
}
public int getX(EnumFacing direction)
{
switch (direction)
{
case EAST:
return -this.offsetPos.getZ();
case SOUTH:
return -this.offsetPos.getX();
case WEST:
return this.offsetPos.getZ();
default:
return this.offsetPos.getX();
}
}
public int getZ(EnumFacing direction)
{
switch (direction)
{
case EAST:
return this.offsetPos.getX();
case SOUTH:
return -this.offsetPos.getZ();
case WEST:
return -this.offsetPos.getX();
default:
return this.offsetPos.getZ();
}
}
}