cn.nukkit.network.protocol.BiomeDefinitionListPacket Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powernukkit Show documentation
Show all versions of powernukkit Show documentation
A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.
package cn.nukkit.network.protocol;
import cn.nukkit.Nukkit;
import com.google.common.io.ByteStreams;
import lombok.ToString;
import java.io.InputStream;
@ToString(exclude = "tag")
public class BiomeDefinitionListPacket extends DataPacket {
public static final byte NETWORK_ID = ProtocolInfo.BIOME_DEFINITION_LIST_PACKET;
private static final byte[] TAG;
static {
try {
InputStream inputStream = Nukkit.class.getClassLoader().getResourceAsStream("biome_definitions.dat");
if (inputStream == null) {
throw new AssertionError("Could not find biome_definitions.dat");
}
//noinspection UnstableApiUsage
TAG = ByteStreams.toByteArray(inputStream);
} catch (Exception e) {
throw new AssertionError("Error whilst loading biome_definitions.dat", e);
}
}
public byte[] tag = TAG;
@Override
public byte pid() {
return NETWORK_ID;
}
@Override
public void decode() {
}
@Override
public void encode() {
this.reset();
this.put(tag);
}
}