mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
56 lines
1.5 KiB
Java
56 lines
1.5 KiB
Java
package com.hbm.blocks.machine;
|
|
|
|
import com.hbm.blocks.BlockDummyable;
|
|
import com.hbm.tileentity.TileEntityProxyCombo;
|
|
import com.hbm.tileentity.machine.TileEntityTowerLarge;
|
|
|
|
import net.minecraft.block.material.Material;
|
|
import net.minecraft.tileentity.TileEntity;
|
|
import net.minecraft.world.World;
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
|
|
|
public class MachineTowerLarge extends BlockDummyable {
|
|
|
|
public MachineTowerLarge(Material mat) {
|
|
super(mat);
|
|
}
|
|
|
|
@Override
|
|
public TileEntity createNewTileEntity(World p_149915_1_, int meta) {
|
|
|
|
if(meta >= 12)
|
|
return new TileEntityTowerLarge();
|
|
|
|
if(meta >= 8)
|
|
return new TileEntityProxyCombo(false, false, true);
|
|
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public int[] getDimensions() {
|
|
return new int[] {12, 0, 4, 4, 4, 4};
|
|
}
|
|
|
|
@Override
|
|
public int getOffset() {
|
|
return 4;
|
|
}
|
|
|
|
@Override
|
|
public void fillSpace(World world, int x, int y, int z, ForgeDirection dir, int o) {
|
|
super.fillSpace(world, x, y, z, dir, o);
|
|
|
|
x = x + dir.offsetX * o;
|
|
z = z + dir.offsetZ * o;
|
|
|
|
for(int i = 2; i <= 6; i++) {
|
|
ForgeDirection dr2 = ForgeDirection.getOrientation(i);
|
|
ForgeDirection rot = dr2.getRotation(ForgeDirection.UP);
|
|
this.makeExtra(world, x + dr2.offsetX * 4, y, z + dr2.offsetZ * 4);
|
|
this.makeExtra(world, x + dr2.offsetX * 4 + rot.offsetX * 3, y, z + dr2.offsetZ * 4 + rot.offsetZ * 3);
|
|
this.makeExtra(world, x + dr2.offsetX * 4 + rot.offsetX * -3, y, z + dr2.offsetZ * 4 + rot.offsetZ * -3);
|
|
}
|
|
}
|
|
}
|