79 lines
2.7 KiB
Java
79 lines
2.7 KiB
Java
|
package net.minecraft.network.protocol.game;
|
||
|
|
||
|
import net.minecraft.network.RegistryFriendlyByteBuf;
|
||
|
import net.minecraft.network.codec.StreamCodec;
|
||
|
import net.minecraft.network.protocol.Packet;
|
||
|
import net.minecraft.network.protocol.PacketType;
|
||
|
import net.minecraft.world.item.trading.MerchantOffers;
|
||
|
|
||
|
public class ClientboundMerchantOffersPacket implements Packet<ClientGamePacketListener> {
|
||
|
public static final StreamCodec<RegistryFriendlyByteBuf, ClientboundMerchantOffersPacket> STREAM_CODEC = Packet.codec(
|
||
|
ClientboundMerchantOffersPacket::write, ClientboundMerchantOffersPacket::new
|
||
|
);
|
||
|
private final int containerId;
|
||
|
private final MerchantOffers offers;
|
||
|
private final int villagerLevel;
|
||
|
private final int villagerXp;
|
||
|
private final boolean showProgress;
|
||
|
private final boolean canRestock;
|
||
|
|
||
|
public ClientboundMerchantOffersPacket(int p_132456_, MerchantOffers p_132457_, int p_132458_, int p_132459_, boolean p_132460_, boolean p_132461_) {
|
||
|
this.containerId = p_132456_;
|
||
|
this.offers = p_132457_.copy();
|
||
|
this.villagerLevel = p_132458_;
|
||
|
this.villagerXp = p_132459_;
|
||
|
this.showProgress = p_132460_;
|
||
|
this.canRestock = p_132461_;
|
||
|
}
|
||
|
|
||
|
private ClientboundMerchantOffersPacket(RegistryFriendlyByteBuf p_336176_) {
|
||
|
this.containerId = p_336176_.readContainerId();
|
||
|
this.offers = MerchantOffers.STREAM_CODEC.decode(p_336176_);
|
||
|
this.villagerLevel = p_336176_.readVarInt();
|
||
|
this.villagerXp = p_336176_.readVarInt();
|
||
|
this.showProgress = p_336176_.readBoolean();
|
||
|
this.canRestock = p_336176_.readBoolean();
|
||
|
}
|
||
|
|
||
|
private void write(RegistryFriendlyByteBuf p_333887_) {
|
||
|
p_333887_.writeContainerId(this.containerId);
|
||
|
MerchantOffers.STREAM_CODEC.encode(p_333887_, this.offers);
|
||
|
p_333887_.writeVarInt(this.villagerLevel);
|
||
|
p_333887_.writeVarInt(this.villagerXp);
|
||
|
p_333887_.writeBoolean(this.showProgress);
|
||
|
p_333887_.writeBoolean(this.canRestock);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public PacketType<ClientboundMerchantOffersPacket> type() {
|
||
|
return GamePacketTypes.CLIENTBOUND_MERCHANT_OFFERS;
|
||
|
}
|
||
|
|
||
|
public void handle(ClientGamePacketListener p_132467_) {
|
||
|
p_132467_.handleMerchantOffers(this);
|
||
|
}
|
||
|
|
||
|
public int getContainerId() {
|
||
|
return this.containerId;
|
||
|
}
|
||
|
|
||
|
public MerchantOffers getOffers() {
|
||
|
return this.offers;
|
||
|
}
|
||
|
|
||
|
public int getVillagerLevel() {
|
||
|
return this.villagerLevel;
|
||
|
}
|
||
|
|
||
|
public int getVillagerXp() {
|
||
|
return this.villagerXp;
|
||
|
}
|
||
|
|
||
|
public boolean showProgress() {
|
||
|
return this.showProgress;
|
||
|
}
|
||
|
|
||
|
public boolean canRestock() {
|
||
|
return this.canRestock;
|
||
|
}
|
||
|
}
|