2015-06-23 22:29:05 +00:00
package gregtech.common.tools ;
2015-04-23 16:14:22 +00:00
2015-06-23 22:29:05 +00:00
import gregtech.api.enums.Materials ;
import gregtech.api.interfaces.IIconContainer ;
import gregtech.api.items.GT_MetaGenerated_Tool ;
2015-04-23 16:14:22 +00:00
2015-06-23 22:29:05 +00:00
import java.util.List ;
import net.minecraft.block.Block ;
import net.minecraft.block.material.Material ;
import net.minecraft.entity.Entity ;
import net.minecraft.entity.EntityLivingBase ;
import net.minecraft.entity.monster.EntitySnowman ;
import net.minecraft.entity.player.EntityPlayer ;
import net.minecraft.entity.player.EntityPlayerMP ;
import net.minecraft.item.Item ;
import net.minecraft.item.ItemStack ;
import net.minecraft.server.management.ItemInWorldManager ;
import net.minecraft.util.ChatComponentText ;
import net.minecraft.util.EnumChatFormatting ;
import net.minecraft.util.IChatComponent ;
import net.minecraft.world.World ;
2015-04-23 16:14:22 +00:00
import net.minecraftforge.event.world.BlockEvent ;
2015-06-23 22:29:05 +00:00
import net.minecraftforge.event.world.BlockEvent.HarvestDropsEvent ;
public class GT_Tool_Plow
extends GT_Tool
{
private ThreadLocal < Object > sIsHarvestingRightNow = new ThreadLocal ( ) ;
public float getNormalDamageAgainstEntity ( float aOriginalDamage , Entity aEntity , ItemStack aStack , EntityPlayer aPlayer )
{
return ( aEntity instanceof EntitySnowman ) ? aOriginalDamage * 4 . 0F : aOriginalDamage ;
}
public float getBaseDamage ( )
{
return 1 . 0F ;
}
public boolean isMinableBlock ( Block aBlock , byte aMetaData )
{
String tTool = aBlock . getHarvestTool ( aMetaData ) ;
return ( ( tTool ! = null ) & & ( tTool . equals ( " plow " ) ) ) | | ( aBlock . getMaterial ( ) = = Material . snow ) | | ( aBlock . getMaterial ( ) = = Material . craftedSnow ) ;
}
public int convertBlockDrops ( List < ItemStack > aDrops , ItemStack aStack , EntityPlayer aPlayer , Block aBlock , int aX , int aY , int aZ , byte aMetaData , int aFortune , boolean aSilkTouch , BlockEvent . HarvestDropsEvent aEvent )
{
int rConversions = 0 ;
if ( ( this . sIsHarvestingRightNow . get ( ) = = null ) & & ( ( aPlayer instanceof EntityPlayerMP ) ) )
{
this . sIsHarvestingRightNow . set ( this ) ;
for ( int i = - 1 ; i < 2 ; i + + ) {
for ( int j = - 1 ; j < 2 ; j + + ) {
for ( int k = - 1 ; k < 2 ; k + + ) {
if ( ( ( i ! = 0 ) | | ( j ! = 0 ) | | ( k ! = 0 ) ) & & ( aStack . getItem ( ) . getDigSpeed ( aStack , aPlayer . worldObj . getBlock ( aX + i , aY + j , aZ + k ) , aPlayer . worldObj . getBlockMetadata ( aX + i , aY + j , aZ + k ) ) > 0 . 0F ) & & ( ( ( EntityPlayerMP ) aPlayer ) . theItemInWorldManager . tryHarvestBlock ( aX + i , aY + j , aZ + k ) ) ) {
rConversions + + ;
}
}
}
}
this . sIsHarvestingRightNow . set ( null ) ;
}
return rConversions ;
}
public IIconContainer getIcon ( boolean aIsToolHead , ItemStack aStack )
{
return aIsToolHead ? GT_MetaGenerated_Tool . getPrimaryMaterial ( aStack ) . mIconSet . mTextures [ gregtech . api . enums . OrePrefixes . toolHeadPlow . mTextureIndex ] : GT_MetaGenerated_Tool . getSecondaryMaterial ( aStack ) . mIconSet . mTextures [ gregtech . api . enums . OrePrefixes . stick . mTextureIndex ] ;
}
public short [ ] getRGBa ( boolean aIsToolHead , ItemStack aStack )
{
return aIsToolHead ? GT_MetaGenerated_Tool . getPrimaryMaterial ( aStack ) . mRGBa : GT_MetaGenerated_Tool . getSecondaryMaterial ( aStack ) . mRGBa ;
}
public IChatComponent getDeathMessage ( EntityLivingBase aPlayer , EntityLivingBase aEntity )
{
return new ChatComponentText ( EnumChatFormatting . GREEN + aPlayer . getCommandSenderName ( ) + EnumChatFormatting . WHITE + " plew through the yard of " + EnumChatFormatting . RED + aEntity . getCommandSenderName ( ) + EnumChatFormatting . WHITE ) ;
}
}
2015-04-23 16:14:22 +00:00
/ * Location : F : \ Torrent \ minecraft \ jd - gui - 0 . 3 . 6 . windows \ gregtech_1 . 7 . 10 - 5 . 07 . 07 - dev . jar
* Qualified Name : gregtech . common . tools . GT_Tool_Plow
* JD - Core Version : 0 . 7 . 0 . 1
* /