More mappings

This commit is contained in:
Runemoro 2019-03-31 06:34:59 -04:00
parent 60c49258cc
commit 042f6f5827
8 changed files with 37 additions and 9 deletions

View File

@ -21,6 +21,8 @@ CLASS dgt net/minecraft/client/world/ClientWorld
ARG 4 radius
ARG 5 random
ARG 6 spawnBarrierParticles
METHOD a tickEntity (Lahz;)V
ARG 1 entity
METHOD a setScoreboard (Lcsg;)V
ARG 1 scoreboard
METHOD a playSound (Lev;Lyh;Lyj;FFZ)V

View File

@ -13,7 +13,7 @@ CLASS vf net/minecraft/server/network/ServerPlayerEntity
FIELD cp seenCredits Z
FIELD cq recipeBook Lym;
FIELD cu enteredNetherPos Lcrg;
FIELD cv lastCameraPosition Lfo;
FIELD cv cameraPosition Lfo;
FIELD cw containerSyncId I
FIELD d interactionManager Lvg;
FIELD g notInAnyWorld Z
@ -24,12 +24,12 @@ CLASS vf net/minecraft/server/network/ServerPlayerEntity
METHOD H isInTeleportationState ()Z
METHOD I onTeleportationDone ()V
METHOD L getAdvancementManager ()Lra;
METHOD M getLastCameraPosition ()Lfo;
METHOD M getCameraPosition ()Lfo;
METHOD a sendUnloadChunkPacket (Lbgi;)V
METHOD a sendInitialChunkPackets (Lbgi;Lka;Lka;)V
METHOD a sendBlockEntityUpdate (Lbsz;)V
METHOD a setLastCameraPosition (Lfo;)V
ARG 1 lastCameraPosition
METHOD a setCameraPosition (Lfo;)V
ARG 1 cameraPosition
METHOD a sendChatMessage (Ljm;Ljk;)V
METHOD a setClientSettings (Lnw;)V
METHOD c onStoppedTracking (Lahz;)V

View File

@ -26,10 +26,19 @@ CLASS ux net/minecraft/server/world/ChunkTicketManager
ARG 5 withinViewDistance
METHOD c isWithinViewDistance (I)Z
ARG 1 distance
CLASS net/minecraft/server/world/ChunkTicketManager$a DistanceFromTicketTracker
METHOD a update (I)I
ARG 1 maxSteps
CLASS net/minecraft/server/world/ChunkTicketManager$c ShouldEntityTickTracker
METHOD a update ()V
METHOD d isPlayerInChunkSection (J)Z
ARG 1 pos
FIELD a LOGGER Lorg/apache/logging/log4j/Logger;
FIELD c playersByChunkPos Lit/unimi/dsi/fastutil/longs/Long2ObjectMap;
FIELD d playersByChunkSectionPos Lit/unimi/dsi/fastutil/longs/Long2ObjectMap;
FIELD e ticketsByPosition Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;
FIELD f distanceFromTicketTracker Lux$a;
FIELD g shouldEntityTickTracker Lux$c;
FIELD h viewDistance I
FIELD i distanceFromNearestPlayerTracker Lux$b;
FIELD j nearbyChunkTicketUpdater Lux$d;
@ -45,6 +54,8 @@ CLASS ux net/minecraft/server/world/ChunkTicketManager
ARG 2 mainThreadExecutor
METHOD a purge ()V
METHOD a setViewDistance (I)V
METHOD a isUnloaded (J)Z
ARG 1 pos
METHOD a setLevel (JILuq;I)Luq;
ARG 1 pos
ARG 3 level
@ -54,6 +65,8 @@ CLASS ux net/minecraft/server/world/ChunkTicketManager
ARG 3 ticket
METHOD a setChunkForced (Lbgi;Z)V
ARG 2 forced
METHOD a shouldTickEntity (Lfo;)Z
ARG 1 pos
METHOD a handleChunkEnter (Lfo;Lvf;)V
ARG 1 pos
ARG 2 player

View File

@ -1,4 +1,4 @@
CLASS vh net/minecraft/server/world/chunk/light/ServerLightingProvider
CLASS vh net/minecraft/server/world/ServerLightingProvider
FIELD a LOGGER Lorg/apache/logging/log4j/Logger;
METHOD a light (Lbwk;Z)Ljava/util/concurrent/CompletableFuture;
METHOD a (Lev;I)V

View File

@ -34,6 +34,7 @@ CLASS ve net/minecraft/server/world/ServerWorld
ARG 1 x
ARG 2 z
ARG 3 create
METHOD a tickEntity (Lahz;)V
METHOD a handleInteraction (Lapt;Lahz;Lait;)V
ARG 1 interaction
ARG 3 observer
@ -50,6 +51,7 @@ CLASS ve net/minecraft/server/world/ServerWorld
METHOD a getOccupiedPointOfInterestDistance (Lfo;)I
ARG 1 pos
METHOD a getEntity (Ljava/util/UUID;)Lahz;
METHOD a tick (Ljava/util/function/BooleanSupplier;)V
METHOD a save (Lzr;ZZ)V
ARG 1 progressListener
METHOD ac resetWeather ()V

View File

@ -32,7 +32,7 @@ CLASS ur net/minecraft/server/world/ThreadedAnvilChunkStorage
FIELD l chunkGenerator Lbwl;
FIELD m persistentStateManagerFactory Ljava/util/function/Supplier;
FIELD n pointOfInterestStorage Lapw;
FIELD o fullChunks Lit/unimi/dsi/fastutil/longs/LongSet;
FIELD o unloadedChunks Lit/unimi/dsi/fastutil/longs/LongSet;
FIELD p posToHolderCopyOutdated Z
FIELD q chunkTaskPrioritySystem Lut;
FIELD r worldgenActor Lagd;
@ -67,11 +67,15 @@ CLASS ur net/minecraft/server/world/ThreadedAnvilChunkStorage
ARG 2 packet
METHOD a getDebugString (Lbgi;)Ljava/lang/String;
ARG 1 pos
METHOD a getChebyshevDistance (Lbgi;II)I
ARG 0 pos
ARG 1 x
ARG 2 z
METHOD a createChunkRegionFuture (Lbgi;ILjava/util/function/IntFunction;)Ljava/util/concurrent/CompletableFuture;
ARG 1 centerChunk
ARG 2 margin
ARG 3 distanceToStatus
METHOD a getSquaredHorizontalDistance (Lbgi;Lahz;)D
METHOD a getSquaredDistance (Lbgi;Lahz;)D
ARG 0 pos
ARG 1 entity
METHOD a save (Lbwk;)V
@ -106,6 +110,13 @@ CLASS ur net/minecraft/server/world/ThreadedAnvilChunkStorage
ARG 2 packet
METHOD b createEntityTickingChunkFuture (Lbgi;)Ljava/util/concurrent/CompletableFuture;
ARG 1 pos
METHOD b getChebyshevDistance (Lbgi;Lahz;)I
ARG 0 pos
ARG 1 entity
METHOD b getChebyshevDistance (Lbgi;Lvf;Z)I
ARG 0 pos
ARG 1 player
ARG 2 useCameraPosition
METHOD b doesNotGenerateChunks (Lvf;)Z
ARG 1 player
METHOD c getTotalChunksLoadedCount ()I

View File

@ -83,4 +83,4 @@ CLASS bwi net/minecraft/world/border/WorldBorder
METHOD p getShrinkingSpeed ()D
METHOD q getWarningTime ()I
METHOD r getWarningBlocks ()I
METHOD s update ()V
METHOD s tick ()V

View File

@ -8,7 +8,7 @@ CLASS bwo net/minecraft/world/chunk/ChunkManager
ARG 3 status
ARG 4 create
METHOD a getWorldChunk (IIZ)Lbww;
METHOD a isEntityInLoadedChunk (Lahz;)Z
METHOD a shouldTickEntity (Lahz;)Z
METHOD a setChunkForced (Lbgi;Z)V
ARG 1 pos
ARG 2 forced