aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/common/helpers/CraftingHelper.java
blob: e06636e168a1f00ea255c87203698bb49fd5bf78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package gtPlusPlus.xmod.gregtech.common.helpers;

import net.minecraft.entity.player.EntityPlayerMP;
import net.minecraft.world.World;
import net.minecraft.world.WorldServer;

import gtPlusPlus.api.objects.Logger;
import gtPlusPlus.core.lib.CORE;
import gtPlusPlus.xmod.gregtech.common.helpers.autocrafter.AC_Helper_Container;
import gtPlusPlus.xmod.gregtech.common.helpers.autocrafter.AC_Helper_Utils;
import gtPlusPlus.xmod.gregtech.common.tileentities.machines.multi.production.GT4Entity_AutoCrafter;
import net.minecraftforge.common.util.FakePlayerFactory;

public class CraftingHelper{

	public final String mInventoryName;
	public final int mPosX;
	public final int mPosY;
	public final int mPosZ;
	public final GT4Entity_AutoCrafter crafter;
	public final World world;
	public final EntityPlayerMP player;
	public final AC_Helper_Container inventory;

	public CraftingHelper(GT4Entity_AutoCrafter AC){
		Logger.INFO("[A-C] Created a crafting helper.");
		crafter = AC;
		AC_Helper_Utils.addCrafter(AC);
		//Get some variables.
		world = AC.getBaseMetaTileEntity().getWorld();
		mPosX = AC.getBaseMetaTileEntity().getXCoord();
		mPosY = AC.getBaseMetaTileEntity().getYCoord();
		mPosZ = AC.getBaseMetaTileEntity().getZCoord();
		//Create Fake player to handle crating.
		
		player = CORE.getFakePlayer(world);
		//Set storage container
		inventory = new AC_Helper_Container(player.inventory, world, mPosX, mPosY, mPosZ);
		mInventoryName = inventory.getMatrix().getInventoryName();

	}
}