Package net.minecraft.world
Interface HeightLimitView
- All Known Subinterfaces:
BlockRenderView,BlockView,Chunk,CollisionView,LunarWorldView,RegistryWorldView,ServerWorldAccess,StructureWorldAccess,WorldAccess,WorldView
- All Known Implementing Classes:
AlphaChunkIo.AlphaHeightLimitView,ChunkCache,ChunkRegion,ChunkRendererRegion,ClientWorld,DecoratorContext,EmptyBlockView,EmptyChunk,FlatChunkGeneratorConfig,ProtoChunk,ReadOnlyChunk,ServerWorld,World,WorldChunk
public interface HeightLimitView
A view with a height limit specification.
- Mappings:
Namespace Name official btxintermediary net/minecraft/class_5539named net/minecraft/world/HeightLimitView
-
Method Summary
Modifier and Type Method Description default intcountVerticalSections()Returns the number of sections, vertically, within this view.default intgetBottomSectionCoord()Returns the bottom section coordinate, inclusive, of this view.intgetBottomY()Returns the bottom Y level, or height, inclusive, of this view.intgetHeight()default intgetSectionIndex(int y)Returns a zero-based section index to which theylevel belongs.default intgetTopSectionCoord()Returns the top section coordinate, exclusive, of this view.default intgetTopY()Returns the top Y level, or height, exclusive, of this view.default booleanisOutOfHeightLimit(int y)Checks ifyis out of the height limit of this view.default booleanisOutOfHeightLimit(BlockPos pos)Checks ifposis out of the height limit of this view.default intsectionCoordToIndex(int coord)Converts a section coordinate to a zero-based section index.default intsectionIndexToCoord(int index)Converts a zero-based section index to a section coordinate.
-
Method Details
-
getHeight
int getHeight()Returns the difference in the minimum and maximum height.This is the number of blocks that can be modified in any vertical column within the view, or the vertical size, in blocks, of the view.
- Returns:
- the difference in the minimum and maximum height
- See Also:
getBottomY(),getTopY()- Mappings:
Namespace Name Mixin selector official mLbtx;m()Iintermediary method_31605Lnet/minecraft/class_5539;method_31605()Inamed getHeightLnet/minecraft/world/HeightLimitView;getHeight()I
-
getBottomY
int getBottomY()Returns the bottom Y level, or height, inclusive, of this view.- See Also:
getTopY(),getHeight()- Mappings:
Namespace Name Mixin selector official w_Lbtx;w_()Iintermediary method_31607Lnet/minecraft/class_5539;method_31607()Inamed getBottomYLnet/minecraft/world/HeightLimitView;getBottomY()I
-
getTopY
default int getTopY()Returns the top Y level, or height, exclusive, of this view.- See Also:
getBottomY(),getHeight()- Implementation Note:
- This implementation sums up the bottom Y and the height.
- Mappings:
Namespace Name Mixin selector official agLbtx;ag()Iintermediary method_31600Lnet/minecraft/class_5539;method_31600()Inamed getTopYLnet/minecraft/world/HeightLimitView;getTopY()I
-
countVerticalSections
default int countVerticalSections()Returns the number of sections, vertically, within this view.- Returns:
- the number of sections
- See Also:
getTopSectionCoord(),getBottomSectionCoord()- Mappings:
Namespace Name Mixin selector official ahLbtx;ah()Iintermediary method_32890Lnet/minecraft/class_5539;method_32890()Inamed countVerticalSectionsLnet/minecraft/world/HeightLimitView;countVerticalSections()I
-
getBottomSectionCoord
default int getBottomSectionCoord()Returns the bottom section coordinate, inclusive, of this view.- Returns:
- the bottom section coordinate
- See Also:
getTopSectionCoord(),getBottomY()- Implementation Note:
- This implementation passes the bottom Y
through
ChunkSectionPos.getSectionCoord(int). - Mappings:
Namespace Name Mixin selector official aiLbtx;ai()Iintermediary method_32891Lnet/minecraft/class_5539;method_32891()Inamed getBottomSectionCoordLnet/minecraft/world/HeightLimitView;getBottomSectionCoord()I
-
getTopSectionCoord
default int getTopSectionCoord()Returns the top section coordinate, exclusive, of this view.- Returns:
- the top section coordinate
- See Also:
getBottomSectionCoord(),getTopY()- Implementation Note:
- This implementation passes the top Y
through
ChunkSectionPos.getSectionCoord(int). - Mappings:
Namespace Name Mixin selector official ajLbtx;aj()Iintermediary method_31597Lnet/minecraft/class_5539;method_31597()Inamed getTopSectionCoordLnet/minecraft/world/HeightLimitView;getTopSectionCoord()I
-
isOutOfHeightLimit
Checks ifposis out of the height limit of this view.- Parameters:
pos- the position to check- Returns:
trueifposis out of bounds,falseotherwise.- See Also:
isOutOfHeightLimit(int)- Mappings:
Namespace Name Mixin selector official tLbtx;t(Lfx;)Zintermediary method_31606Lnet/minecraft/class_5539;method_31606(Lnet/minecraft/class_2338;)Znamed isOutOfHeightLimitLnet/minecraft/world/HeightLimitView;isOutOfHeightLimit(Lnet/minecraft/util/math/BlockPos;)Z
-
isOutOfHeightLimit
default boolean isOutOfHeightLimit(int y)Checks ifyis out of the height limit of this view.yis out of bounds if it's lower than the bottom or higher than or equal to the top.- Parameters:
y- the Y level to check- Returns:
trueifyis out of bounds,falseotherwise.- Mappings:
Namespace Name Mixin selector official dLbtx;d(I)Zintermediary method_31601Lnet/minecraft/class_5539;method_31601(I)Znamed isOutOfHeightLimitLnet/minecraft/world/HeightLimitView;isOutOfHeightLimit(I)Z
-
getSectionIndex
default int getSectionIndex(int y)Returns a zero-based section index to which theylevel belongs.- Returns:
- a zero-based index
- Mappings:
Namespace Name Mixin selector official eLbtx;e(I)Iintermediary method_31602Lnet/minecraft/class_5539;method_31602(I)Inamed getSectionIndexLnet/minecraft/world/HeightLimitView;getSectionIndex(I)I
-
sectionCoordToIndex
default int sectionCoordToIndex(int coord)Converts a section coordinate to a zero-based section index.- Parameters:
coord- the section coordinate- Returns:
- a zero-based index
- See Also:
the inverse operation sectionIndexToCoord- Mappings:
Namespace Name Mixin selector official fLbtx;f(I)Iintermediary method_31603Lnet/minecraft/class_5539;method_31603(I)Inamed sectionCoordToIndexLnet/minecraft/world/HeightLimitView;sectionCoordToIndex(I)I
-
sectionIndexToCoord
default int sectionIndexToCoord(int index)Converts a zero-based section index to a section coordinate.- Parameters:
index- the zero-based section index- Returns:
- a section coordinate
- See Also:
the inverse operation sectionCoordToIndex- Mappings:
Namespace Name Mixin selector official gLbtx;g(I)Iintermediary method_31604Lnet/minecraft/class_5539;method_31604(I)Inamed sectionIndexToCoordLnet/minecraft/world/HeightLimitView;sectionIndexToCoord(I)I
-