Package forestry.mail.gui

Source Code of forestry.mail.gui.ContainerTradeName

/*******************************************************************************
* Copyright (c) 2011-2014 SirSengir.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Lesser Public License v3
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/lgpl-3.0.txt
*
* Various Contributors including, but not limited to:
* SirSengir (original work), CovertJaguar, Player, Binnie, MysteriousAges
******************************************************************************/
package forestry.mail.gui;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.InventoryPlayer;

import forestry.core.gui.ContainerForestry;
import forestry.core.network.PacketIds;
import forestry.core.network.PacketPayload;
import forestry.core.network.PacketUpdate;
import forestry.core.proxy.Proxies;
import forestry.core.utils.InventoryAdapter;
import forestry.mail.gadgets.MachineTrader;
import forestry.api.mail.PostManager;
import forestry.api.mail.IMailAddress;

import org.apache.commons.lang3.StringUtils;

public class ContainerTradeName extends ContainerForestry {

  boolean isLinked;
  MachineTrader machine;

  public ContainerTradeName(InventoryPlayer player, MachineTrader tile) {
    super(new InventoryAdapter(0, "Empty"));
    machine = tile;
    isLinked = machine.isLinked();
  }

  public IMailAddress getAddress() {
    return machine.getAddress();
  }

  public void setAddress(String addressName) {

    if (StringUtils.isBlank(addressName))
      return;

    PacketPayload payload = new PacketPayload(0, 0, 1);
    payload.stringPayload[0] = addressName;

    PacketUpdate packet = new PacketUpdate(PacketIds.TRADING_ADDRESS_SET, payload);
    Proxies.net.sendToServer(packet);

    IMailAddress address = PostManager.postRegistry.getMailAddress(addressName);
    machine.setAddress(address);
  }

  public void handleSetAddress(PacketUpdate packet) {
    String addressName = packet.payload.stringPayload[0];
    IMailAddress address = PostManager.postRegistry.getMailAddress(addressName);
    machine.setAddress(address);
  }

  @Override
  public boolean canInteractWith(EntityPlayer entityplayer) {
    return true;
  }

}
TOP

Related Classes of forestry.mail.gui.ContainerTradeName

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.