Record Class Structure.GenerationContext
java.lang.Object
java.lang.Record
net.minecraft.world.level.levelgen.structure.Structure.GenerationContext
- Enclosing class:
Structure
public static record Structure.GenerationContext(RegistryAccess registryAccess, ChunkGenerator chunkGenerator, BiomeSource biomeSource, RandomState randomState, StructureTemplateManager structureTemplateManager, WorldgenRandom random, long seed, ChunkPos chunkPos, LevelHeightAccessor heightAccessor, Predicate<Holder<Biome>> validBiome)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final BiomeSourceThe field for thebiomeSourcerecord component.private final ChunkGeneratorThe field for thechunkGeneratorrecord component.private final ChunkPosThe field for thechunkPosrecord component.private final LevelHeightAccessorThe field for theheightAccessorrecord component.private final WorldgenRandomThe field for therandomrecord component.private final RandomStateThe field for therandomStaterecord component.private final RegistryAccessThe field for theregistryAccessrecord component.private final longThe field for theseedrecord component.private final StructureTemplateManagerThe field for thestructureTemplateManagerrecord component.The field for thevalidBiomerecord component. -
Constructor Summary
ConstructorsConstructorDescriptionGenerationContext(RegistryAccess p_226632_, ChunkGenerator p_226633_, BiomeSource p_226634_, RandomState p_226635_, StructureTemplateManager p_226636_, long p_226637_, ChunkPos p_226638_, LevelHeightAccessor p_226639_, Predicate<Holder<Biome>> p_226640_) GenerationContext(RegistryAccess registryAccess, ChunkGenerator chunkGenerator, BiomeSource biomeSource, RandomState randomState, StructureTemplateManager structureTemplateManager, WorldgenRandom random, long seed, ChunkPos chunkPos, LevelHeightAccessor heightAccessor, Predicate<Holder<Biome>> validBiome) Creates an instance of aGenerationContextrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thebiomeSourcerecord component.Returns the value of thechunkGeneratorrecord component.chunkPos()Returns the value of thechunkPosrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theheightAccessorrecord component.private static WorldgenRandommakeRandom(long p_226654_, ChunkPos p_226655_) random()Returns the value of therandomrecord component.Returns the value of therandomStaterecord component.Returns the value of theregistryAccessrecord component.longseed()Returns the value of theseedrecord component.Returns the value of thestructureTemplateManagerrecord component.final StringtoString()Returns a string representation of this record class.Returns the value of thevalidBiomerecord component.
-
Field Details
-
registryAccess
The field for theregistryAccessrecord component. -
chunkGenerator
The field for thechunkGeneratorrecord component. -
biomeSource
The field for thebiomeSourcerecord component. -
randomState
The field for therandomStaterecord component. -
structureTemplateManager
The field for thestructureTemplateManagerrecord component. -
random
The field for therandomrecord component. -
seed
private final long seedThe field for theseedrecord component. -
chunkPos
The field for thechunkPosrecord component. -
heightAccessor
The field for theheightAccessorrecord component. -
validBiome
The field for thevalidBiomerecord component.
-
-
Constructor Details
-
GenerationContext
public GenerationContext(RegistryAccess p_226632_, ChunkGenerator p_226633_, BiomeSource p_226634_, RandomState p_226635_, StructureTemplateManager p_226636_, long p_226637_, ChunkPos p_226638_, LevelHeightAccessor p_226639_, Predicate<Holder<Biome>> p_226640_) -
GenerationContext
public GenerationContext(RegistryAccess registryAccess, ChunkGenerator chunkGenerator, BiomeSource biomeSource, RandomState randomState, StructureTemplateManager structureTemplateManager, WorldgenRandom random, long seed, ChunkPos chunkPos, LevelHeightAccessor heightAccessor, Predicate<Holder<Biome>> validBiome) Creates an instance of aGenerationContextrecord class.- Parameters:
registryAccess- the value for theregistryAccessrecord componentchunkGenerator- the value for thechunkGeneratorrecord componentbiomeSource- the value for thebiomeSourcerecord componentrandomState- the value for therandomStaterecord componentstructureTemplateManager- the value for thestructureTemplateManagerrecord componentrandom- the value for therandomrecord componentseed- the value for theseedrecord componentchunkPos- the value for thechunkPosrecord componentheightAccessor- the value for theheightAccessorrecord componentvalidBiome- the value for thevalidBiomerecord component
-
-
Method Details
-
makeRandom
-
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. -
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. -
equals
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 withObjects::equals(Object,Object); primitive components are compared with '=='. -
registryAccess
Returns the value of theregistryAccessrecord component.- Returns:
- the value of the
registryAccessrecord component
-
chunkGenerator
Returns the value of thechunkGeneratorrecord component.- Returns:
- the value of the
chunkGeneratorrecord component
-
biomeSource
Returns the value of thebiomeSourcerecord component.- Returns:
- the value of the
biomeSourcerecord component
-
randomState
Returns the value of therandomStaterecord component.- Returns:
- the value of the
randomStaterecord component
-
structureTemplateManager
Returns the value of thestructureTemplateManagerrecord component.- Returns:
- the value of the
structureTemplateManagerrecord component
-
random
Returns the value of therandomrecord component.- Returns:
- the value of the
randomrecord component
-
seed
public long seed()Returns the value of theseedrecord component.- Returns:
- the value of the
seedrecord component
-
chunkPos
Returns the value of thechunkPosrecord component.- Returns:
- the value of the
chunkPosrecord component
-
heightAccessor
Returns the value of theheightAccessorrecord component.- Returns:
- the value of the
heightAccessorrecord component
-
validBiome
Returns the value of thevalidBiomerecord component.- Returns:
- the value of the
validBiomerecord component
-