Package logisticspipes.network.packets.pipe

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

package logisticspipes.network.packets.pipe;

import java.io.IOException;

import logisticspipes.items.ItemUpgrade;
import logisticspipes.modules.ModuleCrafter;
import logisticspipes.network.LPDataInputStream;
import logisticspipes.network.LPDataOutputStream;
import logisticspipes.network.abstractpackets.ModernPacket;
import logisticspipes.network.abstractpackets.ModuleCoordinatesPacket;
import lombok.Getter;
import lombok.Setter;
import lombok.experimental.Accessors;
import net.minecraft.entity.player.EntityPlayer;

@Accessors(chain=true)
public class CraftingPipeUpdatePacket extends ModuleCoordinatesPacket {
 
  @Getter
  @Setter
  private int[] amount = new int[ItemUpgrade.MAX_LIQUID_CRAFTER];
 
  @Getter
  @Setter
  private int[] liquidSatelliteIdArray = new int[ItemUpgrade.MAX_LIQUID_CRAFTER];
 
  @Getter
  @Setter
  private int liquidSatelliteId = 0;
 
  @Getter
  @Setter
  private int satelliteId = 0;
 
  @Getter
  @Setter
  private int[] advancedSatelliteIdArray = new int[9];
 
  @Getter
  @Setter
  private int[] fuzzyCraftingFlagArray = new int[9];
 
  @Getter
  @Setter
  private int priority = 0;

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

  @Override
  public void processPacket(EntityPlayer player) {
    ModuleCrafter module = this.getLogisticsModule(player, ModuleCrafter.class);
    if(module == null) return;
    module.handleCraftingUpdatePacket(this);
  }

  @Override
  public void writeData(LPDataOutputStream data) throws IOException {
    super.writeData(data);
    data.writeIntegerArray(amount);
    data.writeIntegerArray(liquidSatelliteIdArray);
    data.writeInt(liquidSatelliteId);
    data.writeInt(satelliteId);
    data.writeIntegerArray(advancedSatelliteIdArray);
    data.writeIntegerArray(fuzzyCraftingFlagArray);
    data.writeInt(priority);
  }

  @Override
  public void readData(LPDataInputStream data) throws IOException {
    super.readData(data);
    amount = data.readIntegerArray();
    liquidSatelliteIdArray = data.readIntegerArray();
    liquidSatelliteId = data.readInt();
    satelliteId = data.readInt();
    advancedSatelliteIdArray = data.readIntegerArray();
    fuzzyCraftingFlagArray = data.readIntegerArray();
    priority = data.readInt();
  }
 
  @Override
  public ModernPacket template() {
    return new CraftingPipeUpdatePacket(getId());
  }
}
TOP

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

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.