2014-11-14 12:02:52 +01:00
|
|
|
/*
|
|
|
|
* This file is part of Applied Energistics 2.
|
|
|
|
* Copyright (c) 2013 - 2014, AlgorithmX2, All rights reserved.
|
|
|
|
*
|
|
|
|
* Applied Energistics 2 is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Applied Energistics 2 is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* along with Applied Energistics 2. If not, see <http://www.gnu.org/licenses/lgpl>.
|
|
|
|
*/
|
|
|
|
|
2014-09-24 02:26:27 +02:00
|
|
|
package appeng.core;
|
|
|
|
|
2014-12-29 12:48:22 +01:00
|
|
|
|
2014-09-24 02:26:27 +02:00
|
|
|
import net.minecraft.creativetab.CreativeTabs;
|
|
|
|
import net.minecraft.init.Blocks;
|
|
|
|
import net.minecraft.item.Item;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2015-12-24 02:07:03 +01:00
|
|
|
|
2014-09-24 02:26:27 +02:00
|
|
|
import appeng.api.AEApi;
|
2015-01-03 02:53:14 +01:00
|
|
|
import appeng.api.definitions.IBlocks;
|
|
|
|
import appeng.api.definitions.IDefinitions;
|
|
|
|
import appeng.api.definitions.IItemDefinition;
|
|
|
|
import appeng.api.definitions.IItems;
|
|
|
|
import appeng.api.definitions.IMaterials;
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2014-12-29 12:48:22 +01:00
|
|
|
|
2014-09-24 02:26:27 +02:00
|
|
|
public final class CreativeTab extends CreativeTabs
|
|
|
|
{
|
|
|
|
public static CreativeTab instance = null;
|
|
|
|
|
2014-12-29 12:48:22 +01:00
|
|
|
public CreativeTab()
|
|
|
|
{
|
2014-09-24 02:26:27 +02:00
|
|
|
super( "appliedenergistics2" );
|
|
|
|
}
|
|
|
|
|
2015-10-08 15:42:42 +02:00
|
|
|
static void init()
|
2014-12-29 12:48:22 +01:00
|
|
|
{
|
|
|
|
instance = new CreativeTab();
|
|
|
|
}
|
|
|
|
|
2014-09-24 02:26:27 +02:00
|
|
|
@Override
|
|
|
|
public Item getTabIconItem()
|
|
|
|
{
|
2014-12-29 15:13:47 +01:00
|
|
|
return this.getIconItemStack().getItem();
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public ItemStack getIconItemStack()
|
|
|
|
{
|
2015-01-03 02:53:14 +01:00
|
|
|
final IDefinitions definitions = AEApi.instance().definitions();
|
|
|
|
final IBlocks blocks = definitions.blocks();
|
|
|
|
final IItems items = definitions.items();
|
|
|
|
final IMaterials materials = definitions.materials();
|
2014-12-29 12:48:22 +01:00
|
|
|
|
2015-01-03 02:53:14 +01:00
|
|
|
return this.findFirst( blocks.controller(), blocks.chest(), blocks.cellWorkbench(), blocks.fluix(), items.cell1k(), items.networkTool(), materials.fluixCrystal(), materials.certusQuartzCrystal() );
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
|
2015-09-30 14:24:40 +02:00
|
|
|
private ItemStack findFirst( final IItemDefinition... choices )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2015-09-30 14:24:40 +02:00
|
|
|
for( final IItemDefinition definition : choices )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2015-09-30 14:24:40 +02:00
|
|
|
for( final ItemStack definitionStack : definition.maybeStack( 1 ).asSet() )
|
2014-12-29 12:48:22 +01:00
|
|
|
{
|
2015-01-03 02:53:14 +01:00
|
|
|
return definitionStack;
|
2014-12-29 12:48:22 +01:00
|
|
|
}
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
|
2016-06-19 14:43:27 +02:00
|
|
|
return new ItemStack( Blocks.CHEST );
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|