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-02-01 23:29:07 +01:00
|
|
|
package appeng.core;
|
|
|
|
|
2015-04-03 08:54:31 +02:00
|
|
|
|
2014-02-01 23:29:07 +01:00
|
|
|
import net.minecraft.creativetab.CreativeTabs;
|
2015-01-03 02:53:14 +01:00
|
|
|
import net.minecraft.init.Blocks;
|
2014-02-09 02:34:52 +01:00
|
|
|
import net.minecraft.item.Item;
|
2014-02-01 23:29:07 +01:00
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import appeng.api.AEApi;
|
|
|
|
import appeng.items.parts.ItemFacade;
|
|
|
|
|
2015-06-16 02:44:59 +02:00
|
|
|
import com.google.common.base.Optional;
|
|
|
|
|
2015-04-03 08:54:31 +02:00
|
|
|
|
2014-02-01 23:29:07 +01:00
|
|
|
public final class CreativeTabFacade extends CreativeTabs
|
|
|
|
{
|
|
|
|
|
|
|
|
public static CreativeTabFacade instance = null;
|
|
|
|
|
2015-04-03 08:54:31 +02:00
|
|
|
public CreativeTabFacade()
|
|
|
|
{
|
2014-02-01 23:29:07 +01:00
|
|
|
super( "appliedenergistics2.facades" );
|
|
|
|
}
|
|
|
|
|
2015-04-03 08:54:31 +02:00
|
|
|
public static void init()
|
|
|
|
{
|
|
|
|
instance = new CreativeTabFacade();
|
|
|
|
}
|
|
|
|
|
2014-02-09 02:34:52 +01:00
|
|
|
@Override
|
|
|
|
public Item getTabIconItem()
|
|
|
|
{
|
2014-12-29 15:13:47 +01:00
|
|
|
return this.getIconItemStack().getItem();
|
2014-02-09 02:34:52 +01:00
|
|
|
}
|
|
|
|
|
2014-02-01 23:29:07 +01:00
|
|
|
@Override
|
|
|
|
public ItemStack getIconItemStack()
|
|
|
|
{
|
2015-01-03 02:53:14 +01:00
|
|
|
final Optional<Item> maybeFacade = AEApi.instance().definitions().items().facade().maybeItem();
|
2015-04-03 08:54:31 +02:00
|
|
|
if( maybeFacade.isPresent() )
|
2015-01-03 02:53:14 +01:00
|
|
|
{
|
2015-04-03 08:54:31 +02:00
|
|
|
return ( (ItemFacade) maybeFacade.get() ).getCreativeTabIcon();
|
2015-01-03 02:53:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return new ItemStack( Blocks.planks );
|
2014-02-01 23:29:07 +01:00
|
|
|
}
|
|
|
|
}
|