Record Class PNXProtoWorld

java.lang.Object
java.lang.Record
cn.nukkit.level.terra.delegate.PNXProtoWorld
All Implemented Interfaces:
com.dfsek.terra.api.Handle, com.dfsek.terra.api.world.chunk.generation.ProtoWorld, com.dfsek.terra.api.world.info.WorldProperties, com.dfsek.terra.api.world.ReadableWorld, com.dfsek.terra.api.world.World, com.dfsek.terra.api.world.WritableWorld

@PowerNukkitXOnly @Since("1.6.0.0-PNX") public record PNXProtoWorld(com.dfsek.terra.api.world.ServerWorld serverWorld, int centerChunkX, int centerChunkZ) extends Record implements com.dfsek.terra.api.world.chunk.generation.ProtoWorld
  • Constructor Summary

    Constructors
    Constructor
    Description
    PNXProtoWorld(com.dfsek.terra.api.world.ServerWorld serverWorld, int centerChunkX, int centerChunkZ)
    Creates an instance of a PNXProtoWorld record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Returns the value of the centerChunkX record component.
    int
    Returns the value of the centerChunkZ record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    com.dfsek.terra.api.world.biome.generation.BiomeProvider
     
    com.dfsek.terra.api.block.entity.BlockEntity
    getBlockEntity(int i, int i1, int i2)
     
    com.dfsek.terra.api.block.state.BlockState
    getBlockState(int i, int i1, int i2)
     
    com.dfsek.terra.api.world.chunk.generation.ChunkGenerator
     
     
    int
     
    int
     
    com.dfsek.terra.api.config.ConfigPack
     
    long
     
    com.dfsek.terra.api.world.ServerWorld
     
    final int
    Returns a hash code value for this object.
    com.dfsek.terra.api.world.ServerWorld
    Returns the value of the serverWorld record component.
    void
    setBlockState(int x, int y, int z, com.dfsek.terra.api.block.state.BlockState blockState, boolean b)
     
    com.dfsek.terra.api.entity.Entity
    spawnEntity(double v, double v1, double v2, com.dfsek.terra.api.entity.EntityType entityType)
     
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface com.dfsek.terra.api.world.ReadableWorld

    getBlockEntity, getBlockEntity, getBlockState, getBlockState

    Methods inherited from interface com.dfsek.terra.api.world.WritableWorld

    buffer, buffer, column, setBlockState, setBlockState, setBlockState, setBlockState, setBlockState, setBlockState, setBlockState, setBlockState, setBlockState, spawnEntity
  • Constructor Details

    • PNXProtoWorld

      public PNXProtoWorld(com.dfsek.terra.api.world.ServerWorld serverWorld, int centerChunkX, int centerChunkZ)
      Creates an instance of a PNXProtoWorld record class.
      Parameters:
      serverWorld - the value for the serverWorld record component
      centerChunkX - the value for the centerChunkX record component
      centerChunkZ - the value for the centerChunkZ record component
  • Method Details

    • centerChunkX

      public int centerChunkX()
      Returns the value of the centerChunkX record component.
      Specified by:
      centerChunkX in interface com.dfsek.terra.api.world.chunk.generation.ProtoWorld
      Returns:
      the value of the centerChunkX record component
    • centerChunkZ

      public int centerChunkZ()
      Returns the value of the centerChunkZ record component.
      Specified by:
      centerChunkZ in interface com.dfsek.terra.api.world.chunk.generation.ProtoWorld
      Returns:
      the value of the centerChunkZ record component
    • getWorld

      public com.dfsek.terra.api.world.ServerWorld getWorld()
      Specified by:
      getWorld in interface com.dfsek.terra.api.world.chunk.generation.ProtoWorld
    • setBlockState

      public void setBlockState(int x, int y, int z, com.dfsek.terra.api.block.state.BlockState blockState, boolean b)
      Specified by:
      setBlockState in interface com.dfsek.terra.api.world.WritableWorld
    • spawnEntity

      public com.dfsek.terra.api.entity.Entity spawnEntity(double v, double v1, double v2, com.dfsek.terra.api.entity.EntityType entityType)
      Specified by:
      spawnEntity in interface com.dfsek.terra.api.world.WritableWorld
    • getBlockState

      public com.dfsek.terra.api.block.state.BlockState getBlockState(int i, int i1, int i2)
      Specified by:
      getBlockState in interface com.dfsek.terra.api.world.ReadableWorld
    • getBlockEntity

      public com.dfsek.terra.api.block.entity.BlockEntity getBlockEntity(int i, int i1, int i2)
      Specified by:
      getBlockEntity in interface com.dfsek.terra.api.world.ReadableWorld
    • getGenerator

      public com.dfsek.terra.api.world.chunk.generation.ChunkGenerator getGenerator()
      Specified by:
      getGenerator in interface com.dfsek.terra.api.world.World
    • getBiomeProvider

      public com.dfsek.terra.api.world.biome.generation.BiomeProvider getBiomeProvider()
      Specified by:
      getBiomeProvider in interface com.dfsek.terra.api.world.World
    • getPack

      public com.dfsek.terra.api.config.ConfigPack getPack()
      Specified by:
      getPack in interface com.dfsek.terra.api.world.World
    • getSeed

      public long getSeed()
      Specified by:
      getSeed in interface com.dfsek.terra.api.world.info.WorldProperties
    • getMaxHeight

      public int getMaxHeight()
      Specified by:
      getMaxHeight in interface com.dfsek.terra.api.world.info.WorldProperties
    • getMinHeight

      public int getMinHeight()
      Specified by:
      getMinHeight in interface com.dfsek.terra.api.world.info.WorldProperties
    • getHandle

      public ChunkManager getHandle()
      Specified by:
      getHandle in interface com.dfsek.terra.api.Handle
    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • serverWorld

      public com.dfsek.terra.api.world.ServerWorld serverWorld()
      Returns the value of the serverWorld record component.
      Returns:
      the value of the serverWorld record component