Package buildcraft.builders.gui

Source Code of buildcraft.builders.gui.ContainerArchitect

/**
* Copyright (c) 2011-2014, SpaceToad and the BuildCraft Team
* http://www.mod-buildcraft.com
*
* BuildCraft is distributed under the terms of the Minecraft Mod Public
* License 1.0, or MMPL. Please check the contents of the license located in
* http://www.mod-buildcraft.com/MMPL-1.0.txt
*/
package buildcraft.builders.gui;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.ICrafting;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.Slot;

import buildcraft.builders.TileArchitect;
import buildcraft.core.gui.BuildCraftContainer;
import buildcraft.core.gui.slots.SlotArchitect;
import buildcraft.core.gui.slots.SlotOutput;

public class ContainerArchitect extends BuildCraftContainer {

  protected IInventory playerIInventory;
  protected TileArchitect architect;
  protected int computingTime = 0;

  public ContainerArchitect(EntityPlayer player, TileArchitect template) {
    super(template.getSizeInventory());
    this.playerIInventory = player.inventory;
    this.architect = template;

    addSlotToContainer(new SlotArchitect(template, player, 0, 135, 35));
    addSlotToContainer(new SlotOutput(template, 1, 194, 35));

    for (int l = 0; l < 3; l++) {
      for (int k1 = 0; k1 < 9; k1++) {
        addSlotToContainer(new Slot(player.inventory, k1 + l * 9 + 9, 88 + k1 * 18, 84 + l * 18));
      }

    }

    for (int i1 = 0; i1 < 9; i1++) {
      addSlotToContainer(new Slot(player.inventory, i1, 88 + i1 * 18, 142));
    }
  }

  // FIXME: This is not called anymore

  @Override
  public void addCraftingToCrafters(ICrafting icrafting) {
    super.addCraftingToCrafters(icrafting);
    icrafting.sendProgressBarUpdate(this, 0, architect.getComputingProgressScaled(24));
  }


  @Override
  public void detectAndSendChanges() {
    super.detectAndSendChanges();

    for (int i = 0; i < crafters.size(); i++) {
      ICrafting icrafting = (ICrafting) crafters.get(i);
      if (computingTime != architect.getComputingProgressScaled(24)) {
        icrafting.sendProgressBarUpdate(this, 0, architect.getComputingProgressScaled(24));
      }
    }

    computingTime = architect.getComputingProgressScaled(24);
  }

  @Override
  public void updateProgressBar(int i, int j) {
    if (i == 0) {
      computingTime = j;
    }
  }

  @Override
  public boolean canInteractWith(EntityPlayer entityplayer) {
    return architect.isUseableByPlayer(entityplayer);
  }
}
TOP

Related Classes of buildcraft.builders.gui.ContainerArchitect

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.