2015-08-29 14:33:25 +02:00
|
|
|
/*
|
|
|
|
* This file ("BlockLampPowerer.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://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
|
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2015-11-02 20:55:19 +01:00
|
|
|
* © 2015 Ellpeck
|
2015-08-29 14:33:25 +02:00
|
|
|
*/
|
|
|
|
|
2015-07-07 11:31:13 +02:00
|
|
|
package ellpeck.actuallyadditions.blocks;
|
|
|
|
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2015-12-03 20:15:07 +01:00
|
|
|
import ellpeck.actuallyadditions.blocks.base.BlockBase;
|
2015-08-28 22:18:46 +02:00
|
|
|
import ellpeck.actuallyadditions.util.ModUtil;
|
|
|
|
import ellpeck.actuallyadditions.util.WorldPos;
|
|
|
|
import ellpeck.actuallyadditions.util.WorldUtil;
|
2015-07-07 11:31:13 +02:00
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.block.BlockPistonBase;
|
|
|
|
import net.minecraft.block.material.Material;
|
|
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
|
|
|
import net.minecraft.entity.EntityLivingBase;
|
|
|
|
import net.minecraft.item.EnumRarity;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.util.IIcon;
|
|
|
|
import net.minecraft.world.IBlockAccess;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
|
|
|
|
2015-12-03 20:15:07 +01:00
|
|
|
public class BlockLampPowerer extends BlockBase{
|
2015-07-07 11:31:13 +02:00
|
|
|
|
2015-10-28 14:46:04 +01:00
|
|
|
@SideOnly(Side.CLIENT)
|
2015-07-07 11:31:13 +02:00
|
|
|
private IIcon frontIcon;
|
|
|
|
|
2015-12-03 20:15:07 +01:00
|
|
|
public BlockLampPowerer(String name){
|
|
|
|
super(Material.rock, name);
|
2015-07-07 11:31:13 +02:00
|
|
|
this.setHarvestLevel("pickaxe", 0);
|
|
|
|
this.setHardness(1.5F);
|
|
|
|
this.setResistance(10.0F);
|
|
|
|
this.setStepSound(soundTypeStone);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-10-28 14:46:04 +01:00
|
|
|
@SideOnly(Side.CLIENT)
|
2015-10-03 10:19:40 +02:00
|
|
|
public IIcon getIcon(IBlockAccess world, int x, int y, int z, int side){
|
|
|
|
int meta = world.getBlockMetadata(x, y, z);
|
|
|
|
if(side == meta){
|
|
|
|
return this.frontIcon;
|
|
|
|
}
|
|
|
|
return this.blockIcon;
|
2015-07-07 11:31:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-10-28 14:46:04 +01:00
|
|
|
@SideOnly(Side.CLIENT)
|
2015-07-07 11:31:13 +02:00
|
|
|
public IIcon getIcon(int side, int meta){
|
2015-10-03 10:16:18 +02:00
|
|
|
if(side == 3){
|
|
|
|
return this.frontIcon;
|
|
|
|
}
|
2015-07-07 11:31:13 +02:00
|
|
|
return this.blockIcon;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-10-03 10:19:40 +02:00
|
|
|
public void onNeighborBlockChange(World world, int x, int y, int z, Block block){
|
|
|
|
this.updateLamp(world, x, y, z);
|
2015-07-07 11:31:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onBlockAdded(World world, int x, int y, int z){
|
|
|
|
this.updateLamp(world, x, y, z);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-10-03 10:19:40 +02:00
|
|
|
public void onBlockPlacedBy(World world, int x, int y, int z, EntityLivingBase player, ItemStack stack){
|
|
|
|
int rotation = BlockPistonBase.determineOrientation(world, x, y, z, player);
|
|
|
|
world.setBlockMetadataWithNotify(x, y, z, rotation, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void registerBlockIcons(IIconRegister iconReg){
|
2015-12-03 20:15:07 +01:00
|
|
|
this.blockIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getBaseName());
|
|
|
|
this.frontIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getBaseName()+"Front");
|
2015-07-07 11:31:13 +02:00
|
|
|
}
|
|
|
|
|
2015-10-23 16:48:56 +02:00
|
|
|
@Override
|
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
|
|
|
return EnumRarity.rare;
|
|
|
|
}
|
|
|
|
|
2015-07-07 11:31:13 +02:00
|
|
|
private void updateLamp(World world, int x, int y, int z){
|
|
|
|
if(!world.isRemote){
|
2015-10-05 16:53:28 +02:00
|
|
|
WorldPos coords = WorldUtil.getCoordsFromSide(ForgeDirection.getOrientation(world.getBlockMetadata(x, y, z)), world, x, y, z, 0);
|
2015-07-07 12:49:34 +02:00
|
|
|
if(coords != null && coords.getBlock() instanceof BlockColoredLamp){
|
|
|
|
if(world.isBlockIndirectlyGettingPowered(x, y, z)){
|
|
|
|
if(!((BlockColoredLamp)coords.getBlock()).isOn){
|
|
|
|
world.setBlock(coords.getX(), coords.getY(), coords.getZ(), InitBlocks.blockColoredLampOn, world.getBlockMetadata(coords.getX(), coords.getY(), coords.getZ()), 2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
if(((BlockColoredLamp)coords.getBlock()).isOn){
|
|
|
|
world.setBlock(coords.getX(), coords.getY(), coords.getZ(), InitBlocks.blockColoredLamp, world.getBlockMetadata(coords.getX(), coords.getY(), coords.getZ()), 2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-07-07 11:31:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|