2014-03-02 09:35:11 +01:00
|
|
|
package appeng.debug;
|
|
|
|
|
|
|
|
import java.util.EnumSet;
|
|
|
|
|
2014-03-09 04:35:53 +01:00
|
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
2014-03-02 09:35:11 +01:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.util.ChatComponentText;
|
|
|
|
import net.minecraft.world.World;
|
2014-03-09 04:35:53 +01:00
|
|
|
import appeng.client.texture.MissingIcon;
|
2014-03-02 09:35:11 +01:00
|
|
|
import appeng.core.features.AEFeature;
|
|
|
|
import appeng.helpers.MeteoritePlacer;
|
|
|
|
import appeng.items.AEBaseItem;
|
|
|
|
import appeng.util.Platform;
|
|
|
|
|
|
|
|
public class ToolMeteoritePlacer extends AEBaseItem
|
|
|
|
{
|
|
|
|
|
|
|
|
public ToolMeteoritePlacer() {
|
|
|
|
super( ToolMeteoritePlacer.class );
|
2014-09-20 23:26:30 +02:00
|
|
|
setFeature( EnumSet.of( AEFeature.UnsupportedDeveloperTools, AEFeature.Creative ) );
|
2014-03-02 09:35:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onItemUseFirst(ItemStack stack, EntityPlayer player, World world, int x, int y, int z, int side, float hitX, float hitY, float hitZ)
|
|
|
|
{
|
|
|
|
if ( Platform.isClient() )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
MeteoritePlacer mp = new MeteoritePlacer();
|
2014-08-07 08:47:42 +02:00
|
|
|
boolean worked = mp.spawnMeteorite( new MeteoritePlacer.StandardWorld( world ), x, y, z );
|
2014-03-02 09:35:11 +01:00
|
|
|
|
|
|
|
if ( !worked )
|
2014-09-21 00:37:04 +02:00
|
|
|
player.addChatMessage( new ChatComponentText( "Un-suitable Location." ) );
|
2014-03-02 09:35:11 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-03-09 04:35:53 +01:00
|
|
|
@Override
|
|
|
|
public void registerIcons(IIconRegister par1IconRegister)
|
|
|
|
{
|
|
|
|
itemIcon = new MissingIcon( this );
|
|
|
|
}
|
|
|
|
|
2014-03-02 09:35:11 +01:00
|
|
|
}
|