MCPcopy Create free account

hub / github.com/Hypejet/Jet / functions

Functions1,964 in github.com/Hypejet/Jet

↓ 3 callersMethodmaximumPlayers
Gets a maximum amount of players, which can be on the server at once. <p>Note that this value by default is used only for server list pinging.</p> @
api/src/main/java/net/hypejet/jet/configuration/ServerConfiguration.java:31
↓ 3 callersMethodpacketClass
Gets a class of the client packet that this handler handles. @return the class @since 1.0
server/src/main/java/net/hypejet/jet/server/network/packet/handler/ClientPacketHandler.java:36
↓ 3 callersMethodpausePacketReading
Blocks a thread responsible for decoding and reading packets until {@link #resumePacketReading()} is called. @throws IllegalStateException if the cal
server/src/main/java/net/hypejet/jet/server/network/packet/reader/ClientPacketReader.java:84
↓ 3 callersMethodplayerList
Gets a {@linkplain PlayerList player list} of the server. @return the player list @since 1.0
server/src/main/java/net/hypejet/jet/server/JetMinecraftServer.java:174
↓ 3 callersMethodport
Gets a port that the server should bind to. @return the port @since 1.0
server/src/main/java/net/hypejet/jet/server/configuration/unparsed/UnparsedServerConfiguration.java:156
↓ 3 callersMethodreadBytes
Reads bytes from {@linkplain ByteBuf a byte buf}. @param buf the byte buf @param length an amount of bytes to read @return the bytes @since 1.0
server/src/main/java/net/hypejet/jet/server/util/NetworkUtil.java:38
↓ 3 callersMethodreducedDebugInfo
Gets whether information displayed on the debug screen of clients should be reduced. @return {@code true} if the information should be reduced, {@cod
server/src/main/java/net/hypejet/jet/server/configuration/unparsed/UnparsedServerConfiguration.java:254
↓ 3 callersMethodregistries
Gets a {@linkplain Collection collection} of all registered {@linkplain JetMinecraftRegistry registries}. @return the collection @since 1.0
server/src/main/java/net/hypejet/jet/server/registry/JetRegistryManager.java:263
↓ 3 callersMethodregistryManager
Gets {@linkplain RegistryManager a registry manager} of the server. @return the registry manager @since 1.0
api/src/main/java/net/hypejet/jet/MinecraftServer.java:91
↓ 3 callersMethodresourcePackHandler
Gets {@linkplain ResourcePackHandler a resource pack handler} that should be used for resource pack management of this audience. @return the resource
server/src/main/java/net/hypejet/jet/server/util/game/audience/PacketReceivingCommonAudience.java:92
↓ 3 callersMethodrun
Runs the generators. @param serverPath an output directory of generated Java server source files, {@code null} if these files shoul
data/generator/src/main/java/net/hypejet/jet/data/generator/Generators.java:148
↓ 3 callersMethodscoreMap
(@NonNull String objective)
server/src/main/java/net/hypejet/jet/server/scoreboard/JetScoreboard.java:212
↓ 3 callersMethodscoreboardName
Gets a name that this {@linkplain Entity entity} uses in {@linkplain Score score} management of {@linkplain Scoreboard scoreboards}. @return the name
api/src/main/java/net/hypejet/jet/entity/Entity.java:151
↓ 3 callersMethodsettings
Gets clientside {@linkplain Settings settings} of this {@linkplain Player player}. @return the clientside settings @since 1.0
api/src/main/java/net/hypejet/jet/entity/player/Player.java:50
↓ 3 callersMethodsimulationDistance
Gets a chunk distance within the server and clients should process entities. @return the distance @since 1.0
server/src/main/java/net/hypejet/jet/server/configuration/unparsed/UnparsedServerConfiguration.java:234
↓ 3 callersMethodskyLightData
Gets {@linkplain List a list} containing an array with skylight data for each section of the chunk with a bit set in the skylight mask, starting with
server/src/main/java/net/hypejet/jet/server/world/chunk/light/LightSerializationData.java:142
↓ 3 callersMethodskyLightMask
Gets a bitset containing bits for each section of the chunk, a section below the lowest section and a section above the highest section, each bit set
server/src/main/java/net/hypejet/jet/server/world/chunk/light/LightSerializationData.java:93
↓ 3 callersMethodsynchronize
Sends a request to the client to synchronize clientside {@linkplain Position position} and velocity {@linkplain Vector vector} with the specified valu
server/src/main/java/net/hypejet/jet/server/entity/player/movement/PlayerMovementSynchronizer.java:56
↓ 3 callersMethodtoBuilder
Creates {@linkplain Builder a nibble array builder} and fills it with all values from this {@linkplain NibbleArray nibble array}. @return the nibble
api/src/main/java/net/hypejet/jet/util/array/NibbleArray.java:87
↓ 3 callersMethodupdateRawPositionAndVelocity
Updates a {@linkplain Position position} and a velocity {@linkplain Vector vector} of this {@linkplain JetEntity entity} without sending any updates t
server/src/main/java/net/hypejet/jet/server/entity/JetEntity.java:227
↓ 3 callersMethodvalidateCoordinateValue
Validates whether a value specified is valid for a coordinate relative to {@linkplain AbstractChunkPalette a chunk palette} of this type. @param valu
server/src/main/java/net/hypejet/jet/server/world/chunk/palette/type/ChunkPaletteType.java:126
↓ 3 callersMethodvalueCountMap
Gets a map, which maps all light-level values to their count in this storage. @return the map @since 1.0
server/src/main/java/net/hypejet/jet/server/world/chunk/light/storage/AbstractLightStorage.java:104
↓ 3 callersMethodwithUpdates
Creates a copy of this {@linkplain LightSectionList light section list} with updates specified applied. @param skyLightUpdates a map which maps chunk
server/src/main/java/net/hypejet/jet/server/world/chunk/light/LightSectionList.java:133
↓ 3 callersMethodwithUpdates
Creates a new {@linkplain JetLightSection light section} with updates specified that should be applied to the skylight storage and to the block light
server/src/main/java/net/hypejet/jet/server/world/chunk/light/JetLightSection.java:41
↓ 3 callersMethodwithUpdates
Creates a new {@linkplain BitStorage bit storage}, which is a copy of this bit storage with updates specified applied. @param updates the updates @re
server/src/main/java/net/hypejet/jet/server/util/storage/BitStorage.java:122
↓ 3 callersMethodwithView
Creates a copy of this {@linkplain Position position} with the specified yaw and pitch angles. @param yaw the yaw angle that the position should have
api/src/main/java/net/hypejet/jet/world/coordinate/Position.java:82
↓ 3 callersMethodwriter
Gets {@linkplain ArgumentWriter an argument writer}, which writes {@linkplain ArgumentType an argument type} specified. @param argumentTypeClass a cl
server/src/main/java/net/hypejet/jet/server/command/argument/ArgumentWriterRegistry.java:53
↓ 2 callersMethodaddEntity
Adds the specified {@linkplain JetEntity entity} to this {@linkplain JetWorld world}. @param entity the entity to add to this world @throws IllegalAr
server/src/main/java/net/hypejet/jet/server/world/JetWorld.java:135
↓ 2 callersMethodaddViewer
Adds {@linkplain JetPlayer a player} specified to {@linkplain Set a set} of viewers of this {@linkplain JetScoreboard scoreboard}. Moreover, {@linkpla
server/src/main/java/net/hypejet/jet/server/scoreboard/JetScoreboard.java:173
↓ 2 callersMethodargumentTypeClass
Gets a class of the argument type that this writer reads and writes. @return the class @since 1.0
server/src/main/java/net/hypejet/jet/server/command/argument/ArgumentWriter.java:49
↓ 2 callersMethodassertUpdated
(@NonNull LightSectionList previousList, @NonNull LightSectionList newList,
server/src/test/java/net/hypejet/jet/server/test/world/chunk/light/LightSectionListTest.java:78
↓ 2 callersMethodassertValidUpdateData
(@NonNull LightSectionList updatedList, @NonNull LightType lightType,
server/src/test/java/net/hypejet/jet/server/test/world/chunk/light/LightSerializationDataTest.java:188
↓ 2 callersMethodauthors
Gets {@linkplain Set a set} of authors of the plugin. @return the set @since 1.0
api/src/main/java/net/hypejet/jet/plugin/Plugin.java:40
↓ 2 callersMethodbind
Creates and binds a {@linkplain Channel channel} for this {@linkplain NetworkManager network manager}. @since 1.0 @see Channel
server/src/main/java/net/hypejet/jet/server/network/NetworkManager.java:77
↓ 2 callersMethodbiome
Gets a {@linkplain Holder.Reference holder referencing to} a {@linkplain Biome biome} present at a {@linkplain BiomePosition biome position} associate
server/src/main/java/net/hypejet/jet/server/world/acquisition/worldmap/WorldMapAcquisitionImpl.java:164
↓ 2 callersMethodbiomePalette
Gets {@linkplain ChunkPalette a chunk palette}, which stores biomes of this chunk section. @return the chunk palette @since 1.0
api/src/main/java/net/hypejet/jet/world/chunk/section/ChunkSection.java:29
↓ 2 callersMethodbiomePalette
Gets a chunk palette of biomes of this chunk section. @return the chunk palette @since 1.0
server/src/main/java/net/hypejet/jet/server/world/chunk/section/JetChunkSection.java:85
↓ 2 callersMethodblockEntity
Gets data of a block entity of a block at {@linkplain BlockPosition a block position} specified in {@linkplain JetChunk a chunk} specified. @param po
server/src/main/java/net/hypejet/jet/server/world/acquisition/worldmap/WorldMapAcquisitionImpl.java:149
↓ 2 callersMethodblockLightLevel
Gets a value specifying a block light level of a block which is in this {@linkplain JetChunk chunk} at {@linkplain ChunkRelativeBlockPosition a chunk-
server/src/main/java/net/hypejet/jet/server/world/chunk/JetChunk.java:235
↓ 2 callersMethodblockState
Gets {@linkplain BlockState a block state} of a block, which is in this {@linkplain JetChunk chunk} at {@linkplain ChunkRelativeBlockPosition a chunk-
server/src/main/java/net/hypejet/jet/server/world/chunk/JetChunk.java:181
↓ 2 callersMethodblockStatePalette
Gets a chunk palette of block states of this chunk section. @return the chunk palette @since 1.0
server/src/main/java/net/hypejet/jet/server/world/chunk/section/JetChunkSection.java:74
↓ 2 callersMethodblockStateRegistry
Gets a {@linkplain BlockStateRegistry block state registry} containing all possible {@linkplain net.hypejet.jet.world.block.BlockState block states} t
api/src/main/java/net/hypejet/jet/registry/RegistryManager.java:37
↓ 2 callersMethodblockY
Gets the rounded down value of {@code Y} axis of this {@linkplain Coordinate coordinate}. @return the rounded down {@code Y} axis value @since 1.0
api/src/main/java/net/hypejet/jet/world/coordinate/Coordinate.java:77
↓ 2 callersMethodbroadcastCommandUpdate
()
server/src/main/java/net/hypejet/jet/server/command/JetCommandManager.java:224
↓ 2 callersMethodbuild
()
server/src/main/java/net/hypejet/jet/server/world/chunk/builder/JetChunkBuilder.java:160
↓ 2 callersMethodchunkSectionBuilder
Gets {@linkplain ChunkSectionBuilder a chunk section builder} of {@linkplain JetChunkSection a chunk section} that the chunk should have at an index s
server/src/main/java/net/hypejet/jet/server/world/chunk/builder/JetChunkBuilder.java:209
↓ 2 callersMethodcontents
Gets contents of this {@linkplain HolderSet holder set}. @param registry a registry that should provide holders if this holder set does not store the
api/src/main/java/net/hypejet/jet/registry/holder/HolderSet.java:30
↓ 2 callersMethodcreate
Creates a {@linkplain Vector vector} with the specified {@code X}, {@code Y} and {@code Z} axis values. @param x the {@code X} axis value that the ve
api/src/main/java/net/hypejet/jet/world/coordinate/Vector.java:48
↓ 2 callersMethodcreate
Creates {@linkplain HeightMap a height map} for {@linkplain ChunkSectionList a chunk section list} specified. @param type a type that the height map
server/src/main/java/net/hypejet/jet/server/world/chunk/heightmap/HeightMap.java:178
↓ 2 callersMethodcreateBitShiftCount
(long index)
api/src/main/java/net/hypejet/jet/util/array/NibbleArray.java:170
↓ 2 callersMethodcreateChunkSectionBuilder
Creates a new {@linkplain ChunkSectionBuilder chunk section builder} with a default {@linkplain BlockState block state} and {@linkplain Biome biome} s
server/src/main/java/net/hypejet/jet/server/world/chunk/builder/JetChunkBuilder.java:236
↓ 2 callersMethodcreateChunkSectionCoordinateValue
Creates a chunk-section position value for an absolute value specified. @param value the absolute value @param paletteType a chunk palette type, whos
server/src/main/java/net/hypejet/jet/server/world/coordinate/chunk/section/ChunkSectionPosition.java:48
↓ 2 callersMethodcreateChunkSectionPaletteUpdateMap
( @NonNull Map<P, ? extends E> updates, @NonNull DimensionType dimensionType, @NonNull
server/src/main/java/net/hypejet/jet/server/world/chunk/section/ChunkSectionList.java:209
↓ 2 callersMethodcreateConstantName
(@NonNull ResourceLocation location)
data/generator/src/main/java/net/hypejet/jet/data/generator/generator/generators/KeyDefinitionGenerator.java:151
↓ 2 callersMethodcreateDataIndex
(int elementIndex)
server/src/main/java/net/hypejet/jet/server/util/storage/BitStorage.java:198
↓ 2 callersMethodcreateDataValuePositionBitShift
(int elementIndex)
server/src/main/java/net/hypejet/jet/server/util/storage/BitStorage.java:202
↓ 2 callersMethodcreateDeclarationPacket
()
server/src/main/java/net/hypejet/jet/server/command/JetCommandManager.java:234
↓ 2 callersMethodcreateDefaultServerListDescription
()
server/src/main/java/net/hypejet/jet/server/configuration/unparsed/UnparsedServerConfiguration.java:312
↓ 2 callersMethodcreateDefaultUnsupportedVersionMessage
()
server/src/main/java/net/hypejet/jet/server/configuration/unparsed/UnparsedServerConfiguration.java:305
↓ 2 callersMethodcreateDirect
Creates {@linkplain LightStorage a light storage} for {@linkplain NibbleArray a nibble array} of light-level values specified. <p>Indices of the nibb
api/src/main/java/net/hypejet/jet/world/chunk/factory/light/LightStorageFactory.java:25
↓ 2 callersMethodcreateElementArray
Creates an array containing registry indices of elements of this palette. @return the array @since 1.0
server/src/main/java/net/hypejet/jet/server/world/chunk/palette/AbstractChunkPalette.java:187
↓ 2 callersMethodcreateEventLoop
Creates {@linkplain MultithreadEventLoopGroup a multi-threaded event loop group}, which supports this transport. @return the event loop group @since
server/src/main/java/net/hypejet/jet/server/network/netty/transport/NettyTransportType.java:74
↓ 2 callersMethodcreateIndexToLightStorageMap
( @NonNull Set<ChunkRelativeBlockPosition> affectedBlockPositions, @NonNull DimensionType dimensio
server/src/main/java/net/hypejet/jet/server/world/chunk/light/LightSerializationData.java:284
↓ 2 callersMethodcreateIndexToLightUpdatesMap
( @NonNull Object2ByteMap<ChunkRelativeBlockPosition> updates )
server/src/main/java/net/hypejet/jet/server/world/chunk/light/LightSectionList.java:225
↓ 2 callersMethodcreateNoSuchObjectiveException
(@NonNull String name)
server/src/main/java/net/hypejet/jet/server/scoreboard/JetScoreboard.java:230
↓ 2 callersMethodcreatePackedArrayLength
(long length)
api/src/main/java/net/hypejet/jet/util/array/NibbleArray.java:142
↓ 2 callersMethodcreateSpawnInfo
(@NotNull JetWorld world, @Nullable GameMode gameMode, @N
server/src/main/java/net/hypejet/jet/server/entity/player/JetPlayer.java:421
↓ 2 callersMethodcreateTagsPacket
()
server/src/main/java/net/hypejet/jet/server/registry/JetRegistryManager.java:286
↓ 2 callersMethodcreateTransfersNotAllowedMessage
()
server/src/main/java/net/hypejet/jet/server/configuration/unparsed/UnparsedServerConfiguration.java:320
↓ 2 callersMethodcreatedPackedArrayIndex
(@IntRange(from = 0, to = MAXIMUM_INDEX) long index)
api/src/main/java/net/hypejet/jet/util/array/NibbleArray.java:156
↓ 2 callersMethoddefaultAddress
()
server/src/main/java/net/hypejet/jet/server/configuration/unparsed/UnparsedServerConfiguration.java:316
↓ 2 callersMethoddefaultBlockState
Gets a default {@linkplain BlockState block state} of the specified {@linkplain BlockType block type}. @param blockType the holder referencing to the
api/src/main/java/net/hypejet/jet/registry/blockstate/BlockStateRegistry.java:24
↓ 2 callersMethoddefaultScoreboard
Gets {@linkplain Scoreboard a scoreboard} instance that is used as an initial scoreboard (if no other initial scoreboard was specified in {@linkplain
api/src/main/java/net/hypejet/jet/scoreboard/ScoreboardManager.java:25
↓ 2 callersMethoddependencies
Gets {@linkplain Set a set} of dependencies of the plugin. @return the set @since 1.0
api/src/main/java/net/hypejet/jet/plugin/Plugin.java:48
↓ 2 callersMethoddisplayedObjectivesHandler
(@NonNull JetPlayer player)
server/src/main/java/net/hypejet/jet/server/scoreboard/JetScoreboard.java:219
↓ 2 callersMethoddistance
(int first, int second)
api/src/main/java/net/hypejet/jet/world/coordinate/chunk/ChunkPosition.java:34
↓ 2 callersMethodelementCount
Gets a number of elements that palettes of this type store. @return the number @since 1.0
server/src/main/java/net/hypejet/jet/server/world/chunk/palette/type/ChunkPaletteType.java:114
↓ 2 callersMethodelementRegistryIndex
Gets a registry index of the element that this chunk palette returns for each position. @return the element registry index @since 1.0
server/src/main/java/net/hypejet/jet/server/world/chunk/palette/SingleValuedChunkPalette.java:79
↓ 2 callersMethodenforceSecureProfile
Gets whether only clients with signed public key from Mojang should be able to join the server. @return {@code true} if only clients with the key sho
server/src/main/java/net/hypejet/jet/server/configuration/unparsed/UnparsedServerConfiguration.java:264
↓ 2 callersMethodensureAirNotOpaque
(@NonNull HeightMapType type)
server/src/test/java/net/hypejet/jet/server/test/world/chunk/heightmap/HeightMapTest.java:170
↓ 2 callersMethodensureOpaque
(@NonNull HeightMapType type, @NonNull JetBlockState opaqueBlockState)
server/src/test/java/net/hypejet/jet/server/test/world/chunk/heightmap/HeightMapTest.java:175
↓ 2 callersMethodensurePermittedAndLocked
()
server/src/main/java/net/hypejet/jet/server/entity/acquisition/respawn/WriteRespawnScreenEnabledAcquisition.java:58
↓ 2 callersMethodentityId
Gets a numeric identifier of this {@linkplain Entity entity}, unique to a {@linkplain MinecraftServer server} that this {@linkplain Entity entity} is
api/src/main/java/net/hypejet/jet/entity/Entity.java:42
↓ 2 callersMethodeventNode
()
server/src/main/java/net/hypejet/jet/server/JetMinecraftServer.java:84
↓ 2 callersMethodexecute
Executes a command with the specified input. @param input the command input @param source the command source that sent the specified command input @s
server/src/main/java/net/hypejet/jet/server/command/JetCommandManager.java:150
↓ 2 callersMethodfindHeightAndCreateElement
(int startingBlockY, @NonNull ChunkSectionList chunkSectionList,
server/src/main/java/net/hypejet/jet/server/world/chunk/heightmap/HeightMap.java:200
↓ 2 callersMethodfrom
Creates an absolute {@linkplain BlockPosition block position} from {@linkplain ChunkRelativeBlockPosition a chunk-relative block position}, which is r
server/src/main/java/net/hypejet/jet/server/util/coordinate/AbsolutePositionUtil.java:31
↓ 2 callersMethodgenerate
Generates a {@linkplain TypeSpec type spec} of the type. @return the generated type spec @since 1.0
data/generator/src/main/java/net/hypejet/jet/data/generator/generator/CodeGenerator.java:23
↓ 2 callersMethodhandle
Handles the packet. @param packet the packet @param session a session, during which the packet is handled @since 1.0
server/src/main/java/net/hypejet/jet/server/network/packet/handler/ClientPacketHandler.java:47
↓ 2 callersMethodhandlePositionFromClient
Updates {@linkplain Position position} of this {@linkplain JetPlayer player} with the specified value, which comes from the client. @param position t
server/src/main/java/net/hypejet/jet/server/entity/player/JetPlayer.java:401
↓ 2 callersMethodhandleState
Handles a status of loading a resource pack. @param uniqueId a unique identifier of the resource pack @param status the status @param audience an aud
server/src/main/java/net/hypejet/jet/server/network/session/pack/ResourcePackHandler.java:151
↓ 2 callersMethodhardcore
Gets whether the server is in hardcore mode. @return {@code true} if the server is in hardcore mode, {@code false} otherwise @since 1.0
api/src/main/java/net/hypejet/jet/configuration/ServerConfiguration.java:39
↓ 2 callersMethodincrementValue
(@NonNull Object2ShortMap<K> map, @NonNull K key)
server/src/main/java/net/hypejet/jet/server/world/chunk/palette/AbstractChunkPalette.java:286
↓ 2 callersMethodincrementValue
(@NonNull Byte2ShortMap map, byte key)
server/src/main/java/net/hypejet/jet/server/world/chunk/light/storage/AbstractLightStorage.java:143
↓ 2 callersMethodindexOf
Gets a registry index of the specified {@linkplain BlockState block state}. @param blockState the block state @return the registry index @throws Ille
server/src/main/java/net/hypejet/jet/server/registry/blockstate/JetBlockStateRegistry.java:151
↓ 2 callersMethodindexSpecification
Gets an {@linkplain IndexSpecification index specification} specifying registry indices for elements of this palette. @return the index specification
server/src/main/java/net/hypejet/jet/server/world/chunk/palette/AbstractChunkPalette.java:110
↓ 2 callersMethodinitializeChildren
Initializes children of the command node. @param children the children @throws IllegalStateException if the children nodes have been already initiali
server/src/main/java/net/hypejet/jet/server/network/packet/packets/server/play/ServerDeclareCommandsPlayPacket.java:91
↓ 2 callersMethodinvalidLengthException
(int length)
server/src/main/java/net/hypejet/jet/server/network/codec/other/StringNetworkCodec.java:76
↓ 2 callersMethodisBlockLightFilled
(int index)
server/src/test/java/net/hypejet/jet/server/test/world/chunk/light/LightSerializationDataTest.java:184
↓ 2 callersMethodisCancelled
Gets whether the event has been cancelled. @return {@code} if the event was cancelled, {@code} otherwise @since 1.0
api/src/main/java/net/hypejet/jet/event/events/CancellableEvent.java:30
← previousnext →201–300 of 1,964, ranked by callers