HyCodeYourTale
classpublicPriority 3

SetChunkEnvironments

com.hypixel.hytale.protocol.packets.world.SetChunkEnvironments

implements Packet

7

Methods

7

Public Methods

3

Fields

3

Constructors

Constants

intFIXED_BLOCK_SIZE= 9
booleanIS_COMPRESSED= true
intMAX_SIZE= 4096014
intNULLABLE_BIT_FIELD_SIZE= 1
intPACKET_ID= 134
intVARIABLE_BLOCK_START= 9
intVARIABLE_FIELD_COUNT= 1

Constructors

public
SetChunkEnvironments()
public
SetChunkEnvironments(int x, int z, byte[] environments)
public
SetChunkEnvironments(SetChunkEnvironments other)

Methods

Public Methods (7)

publicstatic
int computeBytesConsumed(ByteBuf buf, int offset)
public
int computeSize()
@Override
public
boolean equals(Object obj)
@Override
public
int getId()
@Override
public
int hashCode()
@Override
public
void serialize(ByteBuf buf)
@Override
publicstatic
ValidationResult validateStructure(ByteBuf buffer, int offset)

Fields

Public Fields (3)

publicbyte[] environments
publicint x
publicint z

Inheritance

Parent
Current
Interface
Child

Use mouse wheel to zoom, drag to pan. Click nodes to navigate.

Related Classes

Source Code

package com.hypixel.hytale.protocol.packets.world;

import com.hypixel.hytale.protocol.Packet;
import com.hypixel.hytale.protocol.io.ProtocolException;
import com.hypixel.hytale.protocol.io.ValidationResult;
import com.hypixel.hytale.protocol.io.VarInt;
import io.netty.buffer.ByteBuf;
import java.util.Arrays;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;

public class SetChunkEnvironments implements Packet {
   public static final int PACKET_ID = 134;
   public static final boolean IS_COMPRESSED = true;
   public static final int NULLABLE_BIT_FIELD_SIZE = 1;
   public static final int FIXED_BLOCK_SIZE = 9;
   public static final int VARIABLE_FIELD_COUNT = 1;
   public static final int VARIABLE_BLOCK_START = 9;
   public static final int MAX_SIZE = 4096014;
   public int x;
   public int z;
   @Nullable
   public byte[] environments;

   @Override
   public int getId() {
      return 134;
   }

   public SetChunkEnvironments() {
   }

   public SetChunkEnvironments(int x, int z, @Nullable byte[] environments) {
      this.x = x;
      this.z = z;
      this.environments = environments;
   }

   public SetChunkEnvironments(@Nonnull SetChunkEnvironments other) {
      this.x = other.x;
      this.z = other.z;
      this.environments = other.environments;
   }

   @Nonnull
   public static SetChunkEnvironments deserialize(@Nonnull ByteBuf buf, int offset) {
      SetChunkEnvironments obj = new SetChunkEnvironments();
      byte nullBits = buf.getByte(offset);
      obj.x = buf.getIntLE(offset + 1);
      obj.z = buf.getIntLE(offset + 5);
      int pos = offset + 9;
      if ((nullBits & 1) != 0) {
         int environmentsCount = VarInt.peek(buf, pos);
         if (environmentsCount < 0) {
            throw ProtocolException.negativeLength("Environments", environmentsCount);
         }

         if (environmentsCount > 4096000) {
            throw ProtocolException.arrayTooLong("Environments", environmentsCount, 4096000);
         }

         int environmentsVarLen = VarInt.size(environmentsCount);
         if ((long)(pos + environmentsVarLen) + (long)environmentsCount * 1L > (long)buf.readableBytes()) {
            throw ProtocolException.bufferTooSmall("Environments", pos + environmentsVarLen + environmentsCount * 1, buf.readableBytes());
         }

         pos += environmentsVarLen;
         obj.environments = new byte[environmentsCount];

         for (int i = 0; i < environmentsCount; i++) {
            obj.environments[i] = buf.getByte(pos + i * 1);
         }

         pos += environmentsCount * 1;
      }

      return obj;
   }

   public static int computeBytesConsumed(@Nonnull ByteBuf buf, int offset) {
      byte nullBits = buf.getByte(offset);
      int pos = offset + 9;
      if ((nullBits & 1) != 0) {
         int arrLen = VarInt.peek(buf, pos);
         pos += VarInt.length(buf, pos) + arrLen * 1;
      }

      return pos - offset;
   }

   @Override
   public void serialize(@Nonnull ByteBuf buf) {
      byte nullBits = 0;
      if (this.environments != null) {
         nullBits = (byte)(nullBits | 1);
      }

      buf.writeByte(nullBits);
      buf.writeIntLE(this.x);
      buf.writeIntLE(this.z);
      if (this.environments != null) {
         if (this.environments.length > 4096000) {
            throw ProtocolException.arrayTooLong("Environments", this.environments.length, 4096000);
         }

         VarInt.write(buf, this.environments.length);

         for (byte item : this.environments) {
            buf.writeByte(item);
         }
      }
   }

   @Override
   public int computeSize() {
      int size = 9;
      if (this.environments != null) {
         size += VarInt.size(this.environments.length) + this.environments.length * 1;
      }

      return size;
   }

   public static ValidationResult validateStructure(@Nonnull ByteBuf buffer, int offset) {
      if (buffer.readableBytes() - offset < 9) {
         return ValidationResult.error("Buffer too small: expected at least 9 bytes");
      } else {
         byte nullBits = buffer.getByte(offset);
         int pos = offset + 9;
         if ((nullBits & 1) != 0) {
            int environmentsCount = VarInt.peek(buffer, pos);
            if (environmentsCount < 0) {
               return ValidationResult.error("Invalid array count for Environments");
            }

            if (environmentsCount > 4096000) {
               return ValidationResult.error("Environments exceeds max length 4096000");
            }

            pos += VarInt.length(buffer, pos);
            pos += environmentsCount * 1;
            if (pos > buffer.writerIndex()) {
               return ValidationResult.error("Buffer overflow reading Environments");
            }
         }

         return ValidationResult.OK;
      }
   }

   public SetChunkEnvironments clone() {
      SetChunkEnvironments copy = new SetChunkEnvironments();
      copy.x = this.x;
      copy.z = this.z;
      copy.environments = this.environments != null ? Arrays.copyOf(this.environments, this.environments.length) : null;
      return copy;
   }

   @Override
   public boolean equals(Object obj) {
      if (this == obj) {
         return true;
      } else {
         return !(obj instanceof SetChunkEnvironments other)
            ? false
            : this.x == other.x && this.z == other.z && Arrays.equals(this.environments, other.environments);
      }
   }

   @Override
   public int hashCode() {
      int result = 1;
      result = 31 * result + Integer.hashCode(this.x);
      result = 31 * result + Integer.hashCode(this.z);
      return 31 * result + Arrays.hashCode(this.environments);
   }
}