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

119 lines
4.4 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.block.state.IBlockState;
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;
2016-01-07 18:20:59 +01:00
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
public class ItemMisc extends ItemBase{
2016-06-17 23:50:38 +02:00
public static final TheMiscItems[] ALL_MISC_ITEMS = TheMiscItems.values();
public ItemMisc(String name){
super(name);
2015-01-30 20:16:32 +01:00
this.setHasSubtypes(true);
}
@Override
2015-10-03 10:19:40 +02:00
public int getMetadata(int damage){
return damage;
}
@Override
2018-08-04 04:22:20 +02:00
public String getTranslationKey(ItemStack stack){
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
}
2015-10-03 10:19:40 +02:00
@Override
2019-05-02 09:08:15 +02:00
public IRarity getForgeRarity(ItemStack stack){
2016-06-17 23:50:38 +02:00
return stack.getItemDamage() >= ALL_MISC_ITEMS.length ? EnumRarity.COMMON : ALL_MISC_ITEMS[stack.getItemDamage()].rarity;
}
@Override
2015-01-30 20:16:32 +01:00
@SideOnly(Side.CLIENT)
public void getSubItems(CreativeTabs tab, NonNullList<ItemStack> list){
if(this.isInCreativeTab(tab)){
2017-06-17 00:48:49 +02:00
for(int j = 0; j < ALL_MISC_ITEMS.length; j++){
if(j != TheMiscItems.YOUTUBE_ICON.ordinal()){
list.add(new ItemStack(this, 1, j));
}
2016-06-12 13:39:26 +02:00
}
}
}
@Override
protected void registerRendering(){
2016-06-17 23:50:38 +02:00
for(int i = 0; i < ALL_MISC_ITEMS.length; i++){
2016-11-19 23:12:22 +01:00
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
public boolean onEntityItemUpdate(EntityItem entity){
2016-11-26 21:32:27 +01:00
if(!entity.world.isRemote){
ItemStack stack = entity.getItem();
2016-09-13 20:40:26 +02:00
if(stack != null){
boolean isEmpowered = stack.getItemDamage() == TheMiscItems.EMPOWERED_CANOLA_SEED.ordinal();
if(stack.getItemDamage() == TheMiscItems.CRYSTALLIZED_CANOLA_SEED.ordinal() || isEmpowered){
BlockPos pos = entity.getPosition();
2016-11-26 21:32:27 +01:00
IBlockState state = entity.world.getBlockState(pos);
2016-09-13 20:40:26 +02:00
Block block = state.getBlock();
2016-09-13 20:40:26 +02:00
if(block instanceof IFluidBlock && block.getMetaFromState(state) == 0){
Fluid fluid = ((IFluidBlock)block).getFluid();
if(fluid != null && fluid == (isEmpowered ? InitFluids.fluidCrystalOil : InitFluids.fluidRefinedCanolaOil)){
2016-09-13 20:40:26 +02:00
entity.setDead();
2016-11-26 21:32:27 +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
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();
if(k == TheMiscItems.TINY_CHAR.ordinal()) return 200;
if(k == TheMiscItems.TINY_COAL.ordinal()) return 200;
2018-01-20 19:38:59 +01:00
if(k == TheMiscItems.BIOCOAL.ordinal()) return 800;
2019-02-27 19:53:05 +01:00
return super.getItemBurnTime(stack);
}
}