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-04-04 07:17:20 +02:00
|
|
|
package appeng.integration.modules;
|
2014-02-15 07:40:02 +01:00
|
|
|
|
2014-11-28 04:36:46 +01:00
|
|
|
|
2014-05-01 06:01:22 +02:00
|
|
|
import java.lang.reflect.Constructor;
|
|
|
|
import java.lang.reflect.InvocationTargetException;
|
2014-02-15 07:40:02 +01:00
|
|
|
import java.lang.reflect.Method;
|
2014-07-15 05:30:32 +02:00
|
|
|
import java.util.List;
|
2014-02-15 07:40:02 +01:00
|
|
|
|
2014-05-01 06:01:22 +02:00
|
|
|
import net.minecraft.client.Minecraft;
|
|
|
|
import net.minecraft.client.gui.FontRenderer;
|
2014-07-15 05:30:32 +02:00
|
|
|
import net.minecraft.client.gui.inventory.GuiContainer;
|
2014-05-01 06:01:22 +02:00
|
|
|
import net.minecraft.client.renderer.entity.RenderItem;
|
|
|
|
import net.minecraft.inventory.Slot;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2014-11-28 04:36:46 +01:00
|
|
|
|
|
|
|
import codechicken.nei.api.IStackPositioner;
|
|
|
|
import codechicken.nei.guihook.GuiContainerManager;
|
|
|
|
import codechicken.nei.guihook.IContainerTooltipHandler;
|
|
|
|
|
2014-07-15 05:30:32 +02:00
|
|
|
import appeng.client.gui.AEBaseMEGui;
|
2014-05-01 06:01:22 +02:00
|
|
|
import appeng.client.gui.implementations.GuiCraftingTerm;
|
2014-07-06 08:52:29 +02:00
|
|
|
import appeng.client.gui.implementations.GuiPatternTerm;
|
2014-08-14 03:26:41 +02:00
|
|
|
import appeng.core.AEConfig;
|
|
|
|
import appeng.core.features.AEFeature;
|
2014-05-19 04:36:08 +02:00
|
|
|
import appeng.integration.BaseModule;
|
2014-05-01 06:01:22 +02:00
|
|
|
import appeng.integration.abstraction.INEI;
|
2014-05-11 18:27:32 +02:00
|
|
|
import appeng.integration.modules.NEIHelpers.NEIAEShapedRecipeHandler;
|
|
|
|
import appeng.integration.modules.NEIHelpers.NEIAEShapelessRecipeHandler;
|
|
|
|
import appeng.integration.modules.NEIHelpers.NEICraftingHandler;
|
2014-08-14 03:26:41 +02:00
|
|
|
import appeng.integration.modules.NEIHelpers.NEIFacadeRecipeHandler;
|
2014-05-11 18:27:32 +02:00
|
|
|
import appeng.integration.modules.NEIHelpers.NEIGrinderRecipeHandler;
|
|
|
|
import appeng.integration.modules.NEIHelpers.NEIInscriberRecipeHandler;
|
|
|
|
import appeng.integration.modules.NEIHelpers.NEIWorldCraftingHandler;
|
2014-07-10 05:18:50 +02:00
|
|
|
import appeng.integration.modules.NEIHelpers.TerminalCraftingSlotFinder;
|
2014-02-15 07:40:02 +01:00
|
|
|
|
2014-10-04 08:08:28 +02:00
|
|
|
public class NEI extends BaseModule implements INEI, IContainerTooltipHandler
|
2014-02-15 07:40:02 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
public static NEI instance;
|
|
|
|
|
2014-04-06 10:20:30 +02:00
|
|
|
Class API;
|
|
|
|
|
2014-05-01 06:01:22 +02:00
|
|
|
// recipe handler...
|
|
|
|
Method registerRecipeHandler;
|
|
|
|
Method registerUsageHandler;
|
|
|
|
|
2014-04-06 10:20:30 +02:00
|
|
|
public NEI() throws ClassNotFoundException {
|
2014-05-19 04:36:08 +02:00
|
|
|
TestClass( GuiContainerManager.class );
|
|
|
|
TestClass( codechicken.nei.recipe.ICraftingHandler.class );
|
|
|
|
TestClass( codechicken.nei.recipe.IUsageHandler.class );
|
2014-04-06 10:20:30 +02:00
|
|
|
API = Class.forName( "codechicken.nei.api.API" );
|
|
|
|
}
|
|
|
|
|
2014-05-01 06:01:22 +02:00
|
|
|
public void registerRecipeHandler(Object o) throws IllegalAccessException, IllegalArgumentException, InvocationTargetException
|
|
|
|
{
|
|
|
|
registerRecipeHandler.invoke( API, o );
|
|
|
|
registerUsageHandler.invoke( API, o );
|
|
|
|
}
|
|
|
|
|
2014-02-15 07:40:02 +01:00
|
|
|
@Override
|
|
|
|
public void Init() throws Throwable
|
|
|
|
{
|
2014-11-04 02:05:09 +01:00
|
|
|
registerRecipeHandler = API.getDeclaredMethod( "registerRecipeHandler", codechicken.nei.recipe.ICraftingHandler.class );
|
|
|
|
registerUsageHandler = API.getDeclaredMethod( "registerUsageHandler", codechicken.nei.recipe.IUsageHandler.class );
|
2014-05-01 06:01:22 +02:00
|
|
|
|
|
|
|
registerRecipeHandler( new NEIAEShapedRecipeHandler() );
|
|
|
|
registerRecipeHandler( new NEIAEShapelessRecipeHandler() );
|
|
|
|
registerRecipeHandler( new NEIInscriberRecipeHandler() );
|
2014-05-01 07:32:58 +02:00
|
|
|
registerRecipeHandler( new NEIWorldCraftingHandler() );
|
|
|
|
registerRecipeHandler( new NEIGrinderRecipeHandler() );
|
2014-05-01 06:01:22 +02:00
|
|
|
|
2014-08-14 03:26:41 +02:00
|
|
|
if ( AEConfig.instance.isFeatureEnabled( AEFeature.Facades ) && AEConfig.instance.isFeatureEnabled( AEFeature.enableFacadeCrafting ) )
|
|
|
|
registerRecipeHandler( new NEIFacadeRecipeHandler() );
|
|
|
|
|
2014-07-15 05:30:32 +02:00
|
|
|
// large stack tooltips
|
|
|
|
GuiContainerManager.addTooltipHandler( this );
|
|
|
|
|
2014-05-01 06:01:22 +02:00
|
|
|
// crafting terminal...
|
2014-11-04 02:05:09 +01:00
|
|
|
Method registerGuiOverlay = API.getDeclaredMethod( "registerGuiOverlay", Class.class, String.class, IStackPositioner.class );
|
2014-05-01 06:01:22 +02:00
|
|
|
Class IOverlayHandler = Class.forName( "codechicken.nei.api.IOverlayHandler" );
|
|
|
|
Class DefaultOverlayHandler = NEICraftingHandler.class;
|
|
|
|
|
2014-11-04 02:05:09 +01:00
|
|
|
Method registerGuiOverlayHandler = API.getDeclaredMethod( "registerGuiOverlayHandler", Class.class, IOverlayHandler, String.class );
|
2014-07-10 05:18:50 +02:00
|
|
|
registerGuiOverlay.invoke( API, GuiCraftingTerm.class, "crafting", new TerminalCraftingSlotFinder() );
|
|
|
|
registerGuiOverlay.invoke( API, GuiPatternTerm.class, "crafting", new TerminalCraftingSlotFinder() );
|
2014-05-01 06:01:22 +02:00
|
|
|
|
2014-11-04 02:05:09 +01:00
|
|
|
Constructor DefaultOverlayHandlerConstructor = DefaultOverlayHandler.getConstructor( int.class, int.class );
|
2014-05-01 06:01:22 +02:00
|
|
|
registerGuiOverlayHandler.invoke( API, GuiCraftingTerm.class, DefaultOverlayHandlerConstructor.newInstance( 6, 75 ), "crafting" );
|
2014-07-06 08:52:29 +02:00
|
|
|
registerGuiOverlayHandler.invoke( API, GuiPatternTerm.class, DefaultOverlayHandlerConstructor.newInstance( 6, 75 ), "crafting" );
|
2014-02-15 07:40:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-11-04 12:36:16 +01:00
|
|
|
public void PostInit()
|
2014-02-15 07:40:02 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-05-01 06:01:22 +02:00
|
|
|
@Override
|
|
|
|
public void drawSlot(Slot s)
|
|
|
|
{
|
|
|
|
if ( s == null )
|
|
|
|
return;
|
|
|
|
|
|
|
|
ItemStack stack = s.getStack();
|
|
|
|
|
|
|
|
if ( stack == null )
|
|
|
|
return;
|
|
|
|
|
|
|
|
Minecraft mc = Minecraft.getMinecraft();
|
|
|
|
FontRenderer fontRenderer = mc.fontRenderer;
|
|
|
|
int x = s.xDisplayPosition;
|
|
|
|
int y = s.yDisplayPosition;
|
|
|
|
|
|
|
|
GuiContainerManager.drawItems.renderItemAndEffectIntoGUI( fontRenderer, mc.getTextureManager(), stack, x, y );
|
2014-11-28 04:36:46 +01:00
|
|
|
GuiContainerManager.drawItems.renderItemOverlayIntoGUI( fontRenderer, mc.getTextureManager(), stack, x, y, String.valueOf( stack.stackSize ) );
|
2014-05-01 06:01:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-09-28 11:47:17 +02:00
|
|
|
public RenderItem setItemRender(RenderItem renderItem)
|
2014-05-01 06:01:22 +02:00
|
|
|
{
|
2014-05-19 04:36:08 +02:00
|
|
|
try
|
|
|
|
{
|
|
|
|
RenderItem ri = GuiContainerManager.drawItems;
|
2014-09-28 11:47:17 +02:00
|
|
|
GuiContainerManager.drawItems = renderItem;
|
2014-05-19 04:36:08 +02:00
|
|
|
return ri;
|
|
|
|
}
|
|
|
|
catch (Throwable t)
|
|
|
|
{
|
|
|
|
throw new RuntimeException( "Invalid version of NEI, please update", t );
|
|
|
|
}
|
2014-05-01 06:01:22 +02:00
|
|
|
}
|
|
|
|
|
2014-07-15 05:30:32 +02:00
|
|
|
@Override
|
|
|
|
public List<String> handleItemDisplayName(GuiContainer arg0, ItemStack arg1, List<String> current)
|
|
|
|
{
|
|
|
|
return current;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-09-28 11:47:17 +02:00
|
|
|
public List<String> handleItemTooltip(GuiContainer guiScreen, ItemStack stack, int mouseX, int mouseY, List<String> currentToolTip)
|
2014-07-15 05:30:32 +02:00
|
|
|
{
|
|
|
|
if ( guiScreen instanceof AEBaseMEGui )
|
2014-09-28 11:47:17 +02:00
|
|
|
return ((AEBaseMEGui) guiScreen).handleItemTooltip( stack, mouseX, mouseY, currentToolTip );
|
2014-07-15 05:30:32 +02:00
|
|
|
|
2014-09-28 11:47:17 +02:00
|
|
|
return currentToolTip;
|
2014-07-15 05:30:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public List<String> handleTooltip(GuiContainer arg0, int arg1, int arg2, List<String> current)
|
|
|
|
{
|
|
|
|
return current;
|
|
|
|
}
|
|
|
|
|
2014-02-15 07:40:02 +01:00
|
|
|
}
|