mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
130 lines
3.5 KiB
Java
130 lines
3.5 KiB
Java
package com.hbm.tileentity.network;
|
|
|
|
import com.hbm.interfaces.IControlReceiver;
|
|
import com.hbm.inventory.container.ContainerCraneRouter;
|
|
import com.hbm.inventory.gui.GUICraneRouter;
|
|
import com.hbm.module.ModulePatternMatcher;
|
|
import com.hbm.tileentity.IGUIProvider;
|
|
import com.hbm.tileentity.TileEntityMachineBase;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
import net.minecraft.client.gui.GuiScreen;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.inventory.Container;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
import net.minecraft.util.Vec3;
|
|
import net.minecraft.world.World;
|
|
|
|
public class TileEntityCraneRouter extends TileEntityMachineBase implements IGUIProvider, IControlReceiver {
|
|
|
|
public ModulePatternMatcher[] patterns = new ModulePatternMatcher[6]; //why did i make six matchers???
|
|
public int[] modes = new int[6];
|
|
public static final int MODE_NONE = 0;
|
|
public static final int MODE_WHITELIST = 1;
|
|
public static final int MODE_BLACKLIST = 2;
|
|
public static final int MODE_WILDCARD = 3;
|
|
|
|
public TileEntityCraneRouter() {
|
|
super(5 * 6);
|
|
|
|
for(int i = 0; i < patterns.length; i++) {
|
|
patterns[i] = new ModulePatternMatcher(5);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public String getName() {
|
|
return "container.craneRouter";
|
|
}
|
|
|
|
@Override
|
|
public void updateEntity() {
|
|
|
|
if(!worldObj.isRemote) {
|
|
|
|
NBTTagCompound data = new NBTTagCompound();
|
|
for(int i = 0; i < patterns.length; i++) {
|
|
NBTTagCompound compound = new NBTTagCompound();
|
|
patterns[i].writeToNBT(compound);
|
|
data.setTag("pattern" + i, compound);
|
|
}
|
|
data.setIntArray("modes", this.modes);
|
|
this.networkPack(data, 15);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void networkUnpack(NBTTagCompound data) {
|
|
for(int i = 0; i < patterns.length; i++) {
|
|
NBTTagCompound compound = data.getCompoundTag("pattern" + i);
|
|
patterns[i].readFromNBT(compound);
|
|
}
|
|
this.modes = data.getIntArray("modes");
|
|
}
|
|
|
|
@Override
|
|
public Container provideContainer(int ID, EntityPlayer player, World world, int x, int y, int z) {
|
|
return new ContainerCraneRouter(player.inventory, this);
|
|
}
|
|
|
|
@Override
|
|
@SideOnly(Side.CLIENT)
|
|
public GuiScreen provideGUI(int ID, EntityPlayer player, World world, int x, int y, int z) {
|
|
return new GUICraneRouter(player.inventory, this);
|
|
}
|
|
|
|
public void nextMode(int index) {
|
|
|
|
int matcher = index / 5;
|
|
int mIndex = index % 5;
|
|
|
|
this.patterns[matcher].nextMode(worldObj, slots[index], mIndex);
|
|
}
|
|
|
|
public void initPattern(ItemStack stack, int index) {
|
|
|
|
int matcher = index / 5;
|
|
int mIndex = index % 5;
|
|
|
|
this.patterns[matcher].initPatternSmart(worldObj, stack, mIndex);
|
|
}
|
|
|
|
@Override
|
|
public void readFromNBT(NBTTagCompound nbt) {
|
|
super.readFromNBT(nbt);
|
|
|
|
for(int i = 0; i < patterns.length; i++) {
|
|
NBTTagCompound compound = nbt.getCompoundTag("pattern" + i);
|
|
patterns[i].readFromNBT(compound);
|
|
}
|
|
this.modes = nbt.getIntArray("modes");
|
|
}
|
|
|
|
@Override
|
|
public void writeToNBT(NBTTagCompound nbt) {
|
|
super.writeToNBT(nbt);
|
|
|
|
for(int i = 0; i < patterns.length; i++) {
|
|
NBTTagCompound compound = new NBTTagCompound();
|
|
patterns[i].writeToNBT(compound);
|
|
nbt.setTag("pattern" + i, compound);
|
|
}
|
|
nbt.setIntArray("modes", this.modes);
|
|
}
|
|
|
|
@Override
|
|
public boolean hasPermission(EntityPlayer player) {
|
|
return Vec3.createVectorHelper(xCoord - player.posX, yCoord - player.posY, zCoord - player.posZ).lengthVector() < 20;
|
|
}
|
|
|
|
@Override
|
|
public void receiveControl(NBTTagCompound data) {
|
|
int i = data.getInteger("toggle");
|
|
modes[i]++;
|
|
if(modes[i] > 3)
|
|
modes [i] = 0;
|
|
}
|
|
}
|