ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/items/ItemMisc.java

130 lines
4.5 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("ItemMisc.java") is part of the Actually Additions mod for Minecraft.
2015-08-29 14:33:25 +02:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.items;
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
import de.ellpeck.actuallyadditions.mod.fluids.InitFluids;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.items.base.ItemBase;
import de.ellpeck.actuallyadditions.mod.items.metalists.TheMiscItems;
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
import net.minecraft.block.Block;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.item.EntityItem;
import net.minecraft.item.EnumRarity;
import net.minecraft.item.ItemStack;
2016-11-19 21:11:17 +01:00
import net.minecraft.util.NonNullList;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.math.BlockPos;
2019-05-02 09:08:15 +02:00
import net.minecraftforge.common.IRarity;
import net.minecraftforge.fluids.Fluid;
import net.minecraftforge.fluids.IFluidBlock;
2021-02-26 22:15:48 +01:00
import net.minecraftforge.fml.relauncher.OnlyIn;
2019-05-02 09:10:29 +02:00
public class ItemMisc extends ItemBase {
2016-06-17 23:50:38 +02:00
public static final TheMiscItems[] ALL_MISC_ITEMS = TheMiscItems.values();
2019-05-02 09:10:29 +02:00
public ItemMisc(String name) {
super(name);
2015-01-30 20:16:32 +01:00
this.setHasSubtypes(true);
}
@Override
2019-05-02 09:10:29 +02:00
public int getMetadata(int damage) {
2015-10-03 10:19:40 +02:00
return damage;
}
@Override
2019-05-02 09:10:29 +02:00
public String getTranslationKey(ItemStack stack) {
2021-02-27 16:33:00 +01:00
return stack.getItemDamage() >= ALL_MISC_ITEMS.length
? StringUtil.BUGGED_ITEM_NAME
: this.getTranslationKey() + "_" + ALL_MISC_ITEMS[stack.getItemDamage()].name;
2015-10-03 10:19:40 +02:00
}
@Override
2019-05-02 09:10:29 +02:00
public IRarity getForgeRarity(ItemStack stack) {
2021-02-27 16:33:00 +01:00
return stack.getItemDamage() >= ALL_MISC_ITEMS.length
? EnumRarity.COMMON
: ALL_MISC_ITEMS[stack.getItemDamage()].rarity;
}
@Override
2021-02-26 22:15:48 +01:00
@OnlyIn(Dist.CLIENT)
2019-05-02 09:10:29 +02:00
public void getSubItems(CreativeTabs tab, NonNullList<ItemStack> list) {
if (this.isInCreativeTab(tab)) {
for (int j = 0; j < ALL_MISC_ITEMS.length; j++) {
if (j != TheMiscItems.YOUTUBE_ICON.ordinal()) {
2017-06-17 00:48:49 +02:00
list.add(new ItemStack(this, 1, j));
}
2016-06-12 13:39:26 +02:00
}
}
}
@Override
2019-05-02 09:10:29 +02:00
protected void registerRendering() {
for (int i = 0; i < ALL_MISC_ITEMS.length; i++) {
String name = this.getRegistryName() + "_" + ALL_MISC_ITEMS[i].name;
2018-05-10 11:38:58 +02:00
ActuallyAdditions.PROXY.addRenderRegister(new ItemStack(this, 1, i), new ResourceLocation(name), "inventory");
}
}
@Override
2019-05-02 09:10:29 +02:00
public boolean onEntityItemUpdate(EntityItem entity) {
if (!entity.world.isRemote) {
ItemStack stack = entity.getItem();
2019-05-02 09:10:29 +02:00
if (stack != null) {
2016-09-13 20:40:26 +02:00
boolean isEmpowered = stack.getItemDamage() == TheMiscItems.EMPOWERED_CANOLA_SEED.ordinal();
2019-05-02 09:10:29 +02:00
if (stack.getItemDamage() == TheMiscItems.CRYSTALLIZED_CANOLA_SEED.ordinal() || isEmpowered) {
2016-09-13 20:40:26 +02:00
BlockPos pos = entity.getPosition();
2021-02-26 22:15:48 +01:00
BlockState state = entity.world.getBlockState(pos);
2016-09-13 20:40:26 +02:00
Block block = state.getBlock();
2019-05-02 09:10:29 +02:00
if (block instanceof IFluidBlock && block.getMetaFromState(state) == 0) {
Fluid fluid = ((IFluidBlock) block).getFluid();
2021-02-27 16:33:00 +01:00
if (fluid != null && fluid == (isEmpowered
? InitFluids.fluidCrystalOil
: InitFluids.fluidRefinedCanolaOil)) {
2016-09-13 20:40:26 +02:00
entity.setDead();
2021-02-27 16:33:00 +01:00
entity.world.setBlockState(pos, (isEmpowered
? InitFluids.blockEmpoweredOil
: InitFluids.blockCrystalOil).getDefaultState());
2016-09-13 20:40:26 +02:00
}
}
}
}
}
return super.onEntityItemUpdate(entity);
}
@Override
2019-05-02 09:10:29 +02:00
public boolean hasEffect(ItemStack stack) {
return stack.getItemDamage() == TheMiscItems.EMPOWERED_CANOLA_SEED.ordinal();
}
2019-02-27 19:53:05 +01:00
@Override
public int getItemBurnTime(ItemStack stack) {
2019-02-27 19:53:05 +01:00
int k = stack.getMetadata();
2021-02-27 16:33:00 +01:00
if (k == TheMiscItems.TINY_CHAR.ordinal()) {
return 200;
}
if (k == TheMiscItems.TINY_COAL.ordinal()) {
return 200;
}
if (k == TheMiscItems.BIOCOAL.ordinal()) {
return 800;
}
2019-02-27 19:53:05 +01:00
return super.getItemBurnTime(stack);
}
}