NaturesAura/src/main/java/de/ellpeck/naturesaura/items/ItemAuraBottle.java

128 lines
5.2 KiB
Java
Raw Normal View History

2018-11-08 13:50:45 +01:00
package de.ellpeck.naturesaura.items;
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
2018-11-11 13:26:19 +01:00
import de.ellpeck.naturesaura.api.aura.chunk.IAuraChunk;
import de.ellpeck.naturesaura.api.aura.type.IAuraType;
import de.ellpeck.naturesaura.reg.IColorProvidingItem;
2019-10-20 22:30:49 +02:00
import net.minecraft.block.DispenserBlock;
import net.minecraft.block.BlockState;
import net.minecraft.client.renderer.color.IItemColor;
2019-10-20 22:30:49 +02:00
import net.minecraft.item.ItemGroup;
import net.minecraft.dispenser.DefaultDispenseItemBehavior;
import net.minecraft.dispenser.IBlockSource;
2019-10-20 22:30:49 +02:00
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.util.SoundEvents;
2018-11-08 13:50:45 +01:00
import net.minecraft.item.ItemStack;
2019-10-20 22:30:49 +02:00
import net.minecraft.nbt.CompoundNBT;
import net.minecraft.util.Direction;
2018-11-08 13:50:45 +01:00
import net.minecraft.util.NonNullList;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.SoundCategory;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.RayTraceResult;
2019-10-20 22:30:49 +02:00
import net.minecraft.client.resources.I18n;
import net.minecraft.world.World;
2018-11-08 13:50:45 +01:00
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.event.entity.player.PlayerInteractEvent;
2019-10-20 22:30:49 +02:00
import net.minecraftforge.eventbus.api.SubscribeEvent;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
2018-11-08 13:50:45 +01:00
public class ItemAuraBottle extends ItemImpl implements IColorProvidingItem {
2018-11-08 13:50:45 +01:00
public ItemAuraBottle() {
super("aura_bottle");
MinecraftForge.EVENT_BUS.register(this);
2019-10-20 22:30:49 +02:00
DispenserBlock.DISPENSE_BEHAVIOR_REGISTRY.putObject(ModItems.BOTTLE_TWO, new DefaultDispenseItemBehavior() {
@Override
protected ItemStack dispenseStack(IBlockSource source, ItemStack stack) {
World world = source.getWorld();
2019-10-20 22:30:49 +02:00
BlockState state = source.getBlockState();
Direction facing = state.getValue(DispenserBlock.FACING);
BlockPos offset = source.getBlockPos().offset(facing);
2019-10-20 22:30:49 +02:00
BlockState offsetState = world.getBlockState(offset);
ItemStack dispense = stack.splitStack(1);
if (offsetState.getBlock().isAir(offsetState, world, offset)) {
if (IAuraChunk.getAuraInArea(world, offset, 30) >= 100000) {
dispense = setType(new ItemStack(ItemAuraBottle.this), IAuraType.forWorld(world));
BlockPos spot = IAuraChunk.getHighestSpot(world, offset, 30, offset);
IAuraChunk.getAuraChunk(world, spot).drainAura(spot, 20000);
}
}
2019-10-20 22:30:49 +02:00
doDispense(world, dispense, 6, facing, DispenserBlock.getDispensePosition(source));
return stack;
}
});
2018-11-08 13:50:45 +01:00
}
@SubscribeEvent
public void onRightClick(PlayerInteractEvent.RightClickItem event) {
ItemStack held = event.getItemStack();
2018-11-20 10:54:38 +01:00
if (held.isEmpty() || held.getItem() != ModItems.BOTTLE_TWO)
2018-11-08 13:50:45 +01:00
return;
2019-10-20 22:30:49 +02:00
PlayerEntity player = event.getEntityPlayer();
2018-11-08 13:50:45 +01:00
RayTraceResult ray = this.rayTrace(player.world, player, true);
if (ray != null && ray.typeOfHit == RayTraceResult.Type.BLOCK)
return;
BlockPos pos = player.getPosition();
if (IAuraChunk.getAuraInArea(player.world, pos, 30) < 100000)
2018-11-08 13:50:45 +01:00
return;
if (!player.world.isRemote) {
held.shrink(1);
player.inventory.addItemStackToInventory(
setType(new ItemStack(this), IAuraType.forWorld(player.world)));
2018-11-08 13:50:45 +01:00
2018-11-11 13:26:19 +01:00
BlockPos spot = IAuraChunk.getHighestSpot(player.world, pos, 30, pos);
IAuraChunk.getAuraChunk(player.world, spot).drainAura(spot, 20000);
2018-11-08 13:50:45 +01:00
player.world.playSound(null, player.posX, player.posY, player.posZ,
SoundEvents.ITEM_BOTTLE_FILL_DRAGONBREATH, SoundCategory.PLAYERS, 1F, 1F);
}
player.swingArm(event.getHand());
}
@Override
2019-10-20 22:30:49 +02:00
public void getSubItems(ItemGroup tab, NonNullList<ItemStack> items) {
2018-11-08 13:50:45 +01:00
if (this.isInCreativeTab(tab)) {
for (IAuraType type : NaturesAuraAPI.AURA_TYPES.values()) {
2018-11-08 13:50:45 +01:00
ItemStack stack = new ItemStack(this);
setType(stack, type);
items.add(stack);
}
}
}
@Override
public String getItemStackDisplayName(ItemStack stack) {
return I18n.translateToLocal(this.getUnlocalizedNameInefficiently(stack) + "." + getType(stack).getName() + ".name").trim();
2018-11-08 13:50:45 +01:00
}
public static IAuraType getType(ItemStack stack) {
2018-11-08 13:50:45 +01:00
if (!stack.hasTagCompound())
return NaturesAuraAPI.TYPE_OTHER;
String type = stack.getTagCompound().getString("stored_type");
if (type.isEmpty())
return NaturesAuraAPI.TYPE_OTHER;
return NaturesAuraAPI.AURA_TYPES.get(new ResourceLocation(type));
2018-11-08 13:50:45 +01:00
}
public static ItemStack setType(ItemStack stack, IAuraType type) {
2018-11-08 13:50:45 +01:00
if (!stack.hasTagCompound())
2019-10-20 22:30:49 +02:00
stack.setTagCompound(new CompoundNBT());
stack.getTagCompound().setString("stored_type", type.getName().toString());
2018-11-08 13:50:45 +01:00
return stack;
}
@Override
2019-10-20 22:30:49 +02:00
@OnlyIn(Dist.CLIENT)
public IItemColor getItemColor() {
return (stack, tintIndex) -> tintIndex > 0 ? getType(stack).getColor() : 0xFFFFFF;
}
2018-11-08 13:50:45 +01:00
}