blob: bb81c349a05e364f308dcab52cb7077a86651a1e (
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
|
package gtPlusPlus.xmod.gregtech.common.helpers;
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.minecraft.entity.player.EntityPlayerMP;
import net.minecraft.world.World;
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();
}
}
|