mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-17 18:34:23 +01:00
244 lines
8.1 KiB
Java
244 lines
8.1 KiB
Java
package com.minelittlepony.unicopia.item;
|
|
|
|
import java.util.List;
|
|
|
|
import javax.annotation.Nullable;
|
|
|
|
import com.minelittlepony.unicopia.Predicates;
|
|
import com.minelittlepony.unicopia.entity.EntitySpell;
|
|
import com.minelittlepony.unicopia.spell.IMagicEffect;
|
|
import com.minelittlepony.unicopia.spell.IUseAction;
|
|
import com.minelittlepony.unicopia.spell.SpellAffinity;
|
|
import com.minelittlepony.unicopia.spell.SpellCastResult;
|
|
import com.minelittlepony.unicopia.spell.IDispenceable;
|
|
import com.minelittlepony.unicopia.spell.SpellRegistry;
|
|
import com.minelittlepony.util.vector.VecHelper;
|
|
|
|
import net.minecraft.block.BlockDispenser;
|
|
import net.minecraft.client.resources.I18n;
|
|
import net.minecraft.client.util.ITooltipFlag;
|
|
import net.minecraft.creativetab.CreativeTabs;
|
|
import net.minecraft.dispenser.BehaviorDefaultDispenseItem;
|
|
import net.minecraft.dispenser.IBehaviorDispenseItem;
|
|
import net.minecraft.dispenser.IBlockSource;
|
|
import net.minecraft.entity.Entity;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.item.EnumRarity;
|
|
import net.minecraft.item.Item;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.util.math.BlockPos;
|
|
import net.minecraft.util.ActionResult;
|
|
import net.minecraft.util.EnumActionResult;
|
|
import net.minecraft.util.EnumFacing;
|
|
import net.minecraft.util.EnumHand;
|
|
import net.minecraft.util.NonNullList;
|
|
import net.minecraft.world.World;
|
|
|
|
public class ItemSpell extends Item implements ICastable {
|
|
private static final IBehaviorDispenseItem dispenserBehavior = new BehaviorDefaultDispenseItem() {
|
|
@Override
|
|
protected ItemStack dispenseStack(IBlockSource source, ItemStack stack) {
|
|
|
|
IDispenceable effect = SpellRegistry.instance().getDispenseActionFrom(stack);
|
|
|
|
if (effect == null) {
|
|
return super.dispenseStack(source, stack);
|
|
}
|
|
|
|
if (stack.getItem() instanceof ICastable) {
|
|
ICastable castable = (ICastable)stack.getItem();
|
|
|
|
SpellCastResult dispenceResult = castable.onDispenseSpell(source, stack, effect);
|
|
|
|
if (dispenceResult == SpellCastResult.DEFAULT) {
|
|
return super.dispenseStack(source, stack);
|
|
}
|
|
|
|
if (dispenceResult == SpellCastResult.PLACE) {
|
|
castable.castContainedSpell(source.getWorld(), source.getBlockPos(), stack, effect);
|
|
|
|
stack.shrink(1);
|
|
}
|
|
}
|
|
|
|
return stack;
|
|
}
|
|
};
|
|
|
|
protected String translationKey;
|
|
|
|
public ItemSpell(String domain, String name) {
|
|
super();
|
|
|
|
setMaxDamage(0);
|
|
setTranslationKey(name);
|
|
setRegistryName(domain, name);
|
|
setMaxStackSize(16);
|
|
|
|
setCreativeTab(CreativeTabs.BREWING);
|
|
|
|
BlockDispenser.DISPENSE_BEHAVIOR_REGISTRY.putObject(this, dispenserBehavior);
|
|
}
|
|
|
|
public Item setTranslationKey(String key) {
|
|
translationKey = key;
|
|
return super.setTranslationKey(key);
|
|
}
|
|
|
|
@Override
|
|
public boolean hasEffect(ItemStack stack) {
|
|
return SpellRegistry.stackHasEnchantment(stack);
|
|
}
|
|
|
|
@Override
|
|
public SpellCastResult onDispenseSpell(IBlockSource source, ItemStack stack, IDispenceable effect) {
|
|
EnumFacing facing = source.getBlockState().getValue(BlockDispenser.FACING);
|
|
BlockPos pos = source.getBlockPos().offset(facing);
|
|
|
|
return effect.onDispenced(pos, facing, source, getAffinity(stack));
|
|
}
|
|
|
|
@Override
|
|
public SpellCastResult onCastSpell(EntityPlayer player, World world, BlockPos pos, ItemStack stack, IMagicEffect effect, EnumFacing side, float hitX, float hitY, float hitZ) {
|
|
if (effect instanceof IUseAction) {
|
|
return ((IUseAction)effect).onUse(stack, getAffinity(stack), player, world, pos, side, hitX, hitY, hitZ);
|
|
}
|
|
|
|
return SpellCastResult.PLACE;
|
|
}
|
|
|
|
@Override
|
|
public EnumActionResult onItemUse(EntityPlayer player, World world, BlockPos pos, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ) {
|
|
|
|
if (hand != EnumHand.MAIN_HAND || !Predicates.MAGI.test(player)) {
|
|
return EnumActionResult.PASS;
|
|
}
|
|
|
|
ItemStack stack = player.getHeldItem(hand);
|
|
|
|
if (!SpellRegistry.stackHasEnchantment(stack)) {
|
|
return EnumActionResult.FAIL;
|
|
}
|
|
|
|
IMagicEffect effect = SpellRegistry.instance().getSpellFromItemStack(stack);
|
|
|
|
if (effect == null) {
|
|
return EnumActionResult.FAIL;
|
|
}
|
|
|
|
SpellCastResult result = onCastSpell(player, world, pos, stack, effect, side, hitX, hitY, hitZ);
|
|
|
|
if (!world.isRemote) {
|
|
pos = pos.offset(side);
|
|
|
|
if (result == SpellCastResult.PLACE) {
|
|
castContainedSpell(world, pos, stack, effect).setOwner(player);
|
|
}
|
|
}
|
|
|
|
if (result != SpellCastResult.NONE) {
|
|
if (!player.capabilities.isCreativeMode) {
|
|
stack.shrink(1);
|
|
}
|
|
|
|
return EnumActionResult.SUCCESS;
|
|
}
|
|
|
|
return EnumActionResult.FAIL;
|
|
}
|
|
|
|
@Override
|
|
public ActionResult<ItemStack> onItemRightClick(World world, EntityPlayer player, EnumHand hand) {
|
|
|
|
Entity target = VecHelper.getLookedAtEntity(player, 5);
|
|
|
|
ItemStack stack = player.getHeldItem(hand);
|
|
|
|
if (target == null) {
|
|
return new ActionResult<ItemStack>(EnumActionResult.PASS, stack);
|
|
}
|
|
|
|
if (!SpellRegistry.stackHasEnchantment(stack)) {
|
|
return new ActionResult<ItemStack>(EnumActionResult.FAIL, stack);
|
|
}
|
|
|
|
IUseAction effect = SpellRegistry.instance().getUseActionFrom(stack);
|
|
|
|
if (effect != null) {
|
|
SpellCastResult result = effect.onUse(stack, getAffinity(stack), player, world, target);
|
|
|
|
if (result != SpellCastResult.NONE) {
|
|
if (result == SpellCastResult.PLACE && !player.capabilities.isCreativeMode) {
|
|
stack.shrink(1);
|
|
}
|
|
|
|
return new ActionResult<ItemStack>(EnumActionResult.SUCCESS, stack);
|
|
}
|
|
}
|
|
|
|
return new ActionResult<ItemStack>(EnumActionResult.PASS, stack);
|
|
}
|
|
|
|
@Override
|
|
public void addInformation(ItemStack stack, @Nullable World worldIn, List<String> tooltip, ITooltipFlag flagIn) {
|
|
if (SpellRegistry.stackHasEnchantment(stack)) {
|
|
SpellAffinity affinity = getAffinity(stack);
|
|
|
|
tooltip.add(affinity.getColourCode() + I18n.format(String.format("%s.%s.tagline",
|
|
affinity.getTranslationKey(),
|
|
SpellRegistry.getKeyFromStack(stack)
|
|
)));
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public String getTranslationKey(ItemStack stack) {
|
|
return super.getTranslationKey();
|
|
}
|
|
|
|
@Override
|
|
public String getItemStackDisplayName(ItemStack stack) {
|
|
if (SpellRegistry.stackHasEnchantment(stack)) {
|
|
return I18n.format(getTranslationKey(stack) + ".enchanted.name", I18n.format(String.format("%s.%s.name",
|
|
getAffinity(stack).getTranslationKey(),
|
|
SpellRegistry.getKeyFromStack(stack)
|
|
)));
|
|
}
|
|
|
|
return super.getItemStackDisplayName(stack);
|
|
}
|
|
|
|
@Override
|
|
public void getSubItems(CreativeTabs tab, NonNullList<ItemStack> subItems) {
|
|
super.getSubItems(tab, subItems);
|
|
|
|
if (isInCreativeTab(tab)) {
|
|
for (String name : SpellRegistry.instance().getAllNames(getAffinity())) {
|
|
subItems.add(SpellRegistry.instance().enchantStack(new ItemStack(this, 1), name));
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public EnumRarity getRarity(ItemStack stack) {
|
|
if (SpellRegistry.stackHasEnchantment(stack)) {
|
|
return EnumRarity.UNCOMMON;
|
|
}
|
|
|
|
return super.getRarity(stack);
|
|
}
|
|
|
|
@Override
|
|
public boolean canFeed(EntitySpell entity, ItemStack stack) {
|
|
IMagicEffect effect = entity.getEffect();
|
|
|
|
return effect != null
|
|
&& entity.getAffinity() == getAffinity()
|
|
&& effect.getName().equals(SpellRegistry.getKeyFromStack(stack));
|
|
}
|
|
|
|
@Override
|
|
public SpellAffinity getAffinity() {
|
|
return SpellAffinity.GOOD;
|
|
}
|
|
}
|