Package logisticspipes.network.packets.pipe

Source Code of logisticspipes.network.packets.pipe.FluidSupplierAmount

package logisticspipes.network.packets.pipe;

import logisticspipes.network.abstractpackets.IntegerCoordinatesPacket;
import logisticspipes.network.abstractpackets.ModernPacket;
import logisticspipes.pipes.PipeFluidSupplierMk2;
import logisticspipes.pipes.basic.LogisticsTileGenericPipe;
import logisticspipes.proxy.MainProxy;
import lombok.experimental.Accessors;
import net.minecraft.entity.player.EntityPlayer;

@Accessors(chain=true)
public class FluidSupplierAmount extends IntegerCoordinatesPacket {

  public FluidSupplierAmount(int id) {
    super(id);
  }

  @Override
  public ModernPacket template() {
    return new FluidSupplierAmount(getId());
  }

  @Override
  public void processPacket(EntityPlayer player) {
    final LogisticsTileGenericPipe pipe = this.getPipe(player.worldObj);
    if (pipe == null) {
      return;
    }
    if (!(pipe.pipe instanceof PipeFluidSupplierMk2)) {
      return;
    }
    if(MainProxy.isClient(player.worldObj)) {
      ((PipeFluidSupplierMk2) pipe.pipe).setAmount(getInteger());
    } else {
      ((PipeFluidSupplierMk2) pipe.pipe).changeFluidAmount(getInteger(), player);
    }
  }
}
TOP

Related Classes of logisticspipes.network.packets.pipe.FluidSupplierAmount

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.