55 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| package net.minecraft.network.protocol.game;
 | |
| 
 | |
| import java.util.List;
 | |
| import net.minecraft.network.RegistryFriendlyByteBuf;
 | |
| import net.minecraft.network.codec.ByteBufCodecs;
 | |
| import net.minecraft.network.codec.StreamCodec;
 | |
| import net.minecraft.network.protocol.Packet;
 | |
| import net.minecraft.network.protocol.PacketType;
 | |
| import net.minecraft.world.item.crafting.display.RecipeDisplayEntry;
 | |
| 
 | |
| public record ClientboundRecipeBookAddPacket(List<ClientboundRecipeBookAddPacket.Entry> entries, boolean replace) implements Packet<ClientGamePacketListener> {
 | |
| 	public static final StreamCodec<RegistryFriendlyByteBuf, ClientboundRecipeBookAddPacket> STREAM_CODEC = StreamCodec.composite(
 | |
| 		ClientboundRecipeBookAddPacket.Entry.STREAM_CODEC.apply(ByteBufCodecs.list()),
 | |
| 		ClientboundRecipeBookAddPacket::entries,
 | |
| 		ByteBufCodecs.BOOL,
 | |
| 		ClientboundRecipeBookAddPacket::replace,
 | |
| 		ClientboundRecipeBookAddPacket::new
 | |
| 	);
 | |
| 
 | |
| 	@Override
 | |
| 	public PacketType<ClientboundRecipeBookAddPacket> type() {
 | |
| 		return GamePacketTypes.CLIENTBOUND_RECIPE_BOOK_ADD;
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Passes this Packet on to the PacketListener for processing.
 | |
| 	 */
 | |
| 	public void handle(ClientGamePacketListener handler) {
 | |
| 		handler.handleRecipeBookAdd(this);
 | |
| 	}
 | |
| 
 | |
| 	public record Entry(RecipeDisplayEntry contents, byte flags) {
 | |
| 		public static final byte FLAG_NOTIFICATION = 1;
 | |
| 		public static final byte FLAG_HIGHLIGHT = 2;
 | |
| 		public static final StreamCodec<RegistryFriendlyByteBuf, ClientboundRecipeBookAddPacket.Entry> STREAM_CODEC = StreamCodec.composite(
 | |
| 			RecipeDisplayEntry.STREAM_CODEC,
 | |
| 			ClientboundRecipeBookAddPacket.Entry::contents,
 | |
| 			ByteBufCodecs.BYTE,
 | |
| 			ClientboundRecipeBookAddPacket.Entry::flags,
 | |
| 			ClientboundRecipeBookAddPacket.Entry::new
 | |
| 		);
 | |
| 
 | |
| 		public Entry(RecipeDisplayEntry contents, boolean notification, boolean highlight) {
 | |
| 			this(contents, (byte)((notification ? 1 : 0) | (highlight ? 2 : 0)));
 | |
| 		}
 | |
| 
 | |
| 		public boolean notification() {
 | |
| 			return (this.flags & 1) != 0;
 | |
| 		}
 | |
| 
 | |
| 		public boolean highlight() {
 | |
| 			return (this.flags & 2) != 0;
 | |
| 		}
 | |
| 	}
 | |
| }
 |