19w12a mappings (#541)

* 19w12a mappings

* More mappings

* Overlay

* Debug renderers

* Tasks

* Map remaining tasks

* Goals

* 3 more classes

* fix

* Fix package
This commit is contained in:
Runemoro 2019-03-21 13:27:13 -04:00 committed by Modmuss50
parent a9b520515c
commit 1d060729ff
78 changed files with 304 additions and 77 deletions

View File

@ -1 +0,0 @@
CLASS ajq

View File

@ -1 +0,0 @@
CLASS ako

View File

@ -1 +0,0 @@
CLASS akv

View File

@ -1 +0,0 @@
CLASS amn

View File

@ -1 +0,0 @@
CLASS amw

View File

@ -1 +0,0 @@
CLASS anl

View File

@ -1 +0,0 @@
CLASS anm

View File

@ -1 +0,0 @@
CLASS cky

View File

@ -1,2 +0,0 @@
CLASS crw
CLASS crw$b RunMode

View File

@ -1 +0,0 @@
CLASS dmn

View File

@ -1 +0,0 @@
CLASS dmv

View File

@ -23,7 +23,7 @@ CLASS cua net/minecraft/client/MinecraftClient
FIELD Z session Lcul;
FIELD aA framebuffer Lcsf;
FIELD aB spriteAtlas Ldtb;
FIELD aC soundLoader Ldwp;
FIELD aC soundManager Ldwp;
FIELD aD musicTracker Ldwk;
FIELD aE fontManager Lcwo;
FIELD aF splashTextLoader Ldtv;
@ -83,6 +83,7 @@ CLASS cua net/minecraft/client/MinecraftClient
FIELD m particleManager Ldhr;
FIELD n textRenderer Lcus;
FIELD o currentScreen Lcyi;
FIELD p overlay Lcyd;
FIELD q gameRenderer Ldje;
FIELD r debugRenderer Ldmp;
FIELD s attackCooldown I
@ -107,7 +108,7 @@ CLASS cua net/minecraft/client/MinecraftClient
METHOD M getSpriteAtlas ()Ldtb;
METHOD N is64Bit ()Z
METHOD O isPaused ()Z
METHOD P getSoundLoader ()Ldwp;
METHOD P getSoundManager ()Ldwp;
METHOD R getMusicType ()Ldwk$a;
METHOD S getSessionService ()Lcom/mojang/authlib/minecraft/MinecraftSessionService;
METHOD T getSkinProvider ()Ldtu;

View File

@ -10,8 +10,10 @@ CLASS dvd net/minecraft/client/audio/AbstractSoundInstance
FIELD i repeat Z
FIELD j repeatDelay I
FIELD k attenuationType Ldvp$a;
FIELD n accessor Ldwq;
FIELD n soundSet Ldwq;
METHOD <init> (Lqq;Lyi;)V
ARG 1 soundId
ARG 2 category
METHOD <init> (Lyg;Lyi;)V
ARG 1 sound
ARG 2 category

View File

@ -0,0 +1,8 @@
CLASS crz net/minecraft/client/audio/AlUtil
FIELD a LOGGER Lorg/apache/logging/log4j/Logger;
METHOD a getErrorMessage (I)Ljava/lang/String;
ARG 0 errorCode
METHOD a checkErrors (Ljava/lang/String;)Z
ARG 0 sectionName
METHOD a getFormatId (Ljavax/sound/sampled/AudioFormat;)I
ARG 0 format

View File

@ -1,6 +1,9 @@
CLASS dvs net/minecraft/client/audio/AmbientSoundLoops
CLASS dvs$a MusicLoop
FIELD o player Ldir;
METHOD <init> (Ldir;Lyg;)V
ARG 1 player
ARG 2 soundEvent
CLASS dvs$b Underwater
FIELD o player Ldir;
FIELD p transitionTimer I

View File

@ -0,0 +1,3 @@
CLASS dvr net/minecraft/client/audio/AmbientSoundManager
FIELD a player Ldir;
FIELD b soundManager Ldwp;

View File

@ -0,0 +1,3 @@
CLASS dwi net/minecraft/client/audio/AudioStream
METHOD a getFormat ()Ljavax/sound/sampled/AudioFormat;
METHOD b getBuffer ()Ljava/nio/ByteBuffer;

View File

@ -0,0 +1,17 @@
CLASS dwj net/minecraft/client/audio/Channel
CLASS dwj$a SourceManager
FIELD b source Lcrv;
FIELD c stopped Z
METHOD a isStopped ()Z
METHOD a run (Ljava/util/function/Consumer;)V
ARG 1 action
METHOD b close ()V
FIELD a sourceLists Ljava/util/Set;
FIELD b soundEngine Lcrw;
FIELD c executor Ljava/util/concurrent/Executor;
METHOD <init> (Lcrw;Ljava/util/concurrent/Executor;)V
ARG 1 soundEngine
ARG 2 executor
METHOD a tick ()V
METHOD a execute (Ljava/util/function/Consumer;)V
METHOD b close ()V

View File

@ -1,3 +1,5 @@
CLASS dvg net/minecraft/client/audio/ElytraSoundInstance
FIELD o player Ldir;
FIELD p tickCount I
METHOD <init> (Ldir;)V
ARG 1 player

View File

@ -0,0 +1,10 @@
CLASS crx net/minecraft/client/audio/Listener
FIELD b volume F
METHOD a getVolume ()F
METHOD a setVolume (F)V
ARG 1 volume
METHOD a setPosition (Lcqo;)V
ARG 1 position
METHOD a setOrientation (Lcqo;Lcqo;)V
ARG 1 from
ARG 2 to

View File

@ -1,3 +1,4 @@
CLASS dwo net/minecraft/client/audio/ListenerSoundInstance
METHOD a onSoundPlayed (Ldvp;Ldwq;)V
ARG 1 sound
ARG 2 soundSet

View File

@ -3,3 +3,4 @@ CLASS dvk net/minecraft/client/audio/MinecartSoundInstance
FIELD p minecart Lawk;
METHOD <init> (Lauv;Lawk;)V
ARG 1 player
ARG 2 minecart

View File

@ -3,6 +3,10 @@ CLASS dwk net/minecraft/client/audio/MusicTracker
FIELD i sound Lyg;
FIELD j minDelay I
FIELD k maxDelay I
METHOD <init> (Ljava/lang/String;ILyg;II)V
ARG 3 soundEvent
ARG 4 minDelay
ARG 5 maxDelay
METHOD a getSound ()Lyg;
METHOD b getMinDelay ()I
METHOD c getMaxDelay ()I
@ -10,6 +14,9 @@ CLASS dwk net/minecraft/client/audio/MusicTracker
FIELD b client Lcua;
FIELD c current Ldvp;
FIELD d timeUntilNextSong I
METHOD <init> (Lcua;)V
ARG 1 client
METHOD a tick ()V
METHOD a play (Ldwk$a;)V
METHOD b stop ()V
METHOD b isPlayingType (Ldwk$a;)Z

View File

@ -0,0 +1,18 @@
CLASS cry net/minecraft/client/audio/OggAudioStream
CLASS cry$a ChannelList
FIELD a buffers Ljava/util/List;
FIELD b size I
FIELD d buffer Ljava/nio/ByteBuffer;
METHOD a getBuffer ()Ljava/nio/ByteBuffer;
METHOD a addChannel (F)V
METHOD b init ()V
FIELD a pointer J
FIELD b format Ljavax/sound/sampled/AudioFormat;
FIELD c inputStream Ljava/io/InputStream;
FIELD d buffer Ljava/nio/ByteBuffer;
METHOD <init> (Ljava/io/InputStream;)V
ARG 1 inputStream
METHOD a readOggFile (Lcry$a;)Z
METHOD a readChannels (Ljava/nio/FloatBuffer;Lcry$a;)V
METHOD a readChannels (Ljava/nio/FloatBuffer;Ljava/nio/FloatBuffer;Lcry$a;)V
METHOD c readHeader ()Z

View File

@ -3,6 +3,8 @@ CLASS dvm net/minecraft/client/audio/Sound
FIELD a FILE Ldvm$a;
FIELD b EVENT Ldvm$a;
FIELD c name Ljava/lang/String;
METHOD <init> (Ljava/lang/String;ILjava/lang/String;)V
ARG 3 name
METHOD a getByName (Ljava/lang/String;)Ldvm$a;
FIELD a id Lqq;
FIELD b volume F

View File

@ -1,3 +1,5 @@
CLASS dwr net/minecraft/client/audio/SoundContainer
METHOD a addTo (Ldwm;)V
ARG 1 soundSystem
METHOD e getWeight ()I
METHOD k getSound ()Ljava/lang/Object;

View File

@ -0,0 +1,9 @@
CLASS csa net/minecraft/client/audio/SoundData
FIELD a buffer Ljava/nio/ByteBuffer;
FIELD b format Ljavax/sound/sampled/AudioFormat;
FIELD d bufferPointer I
METHOD <init> (Ljava/nio/ByteBuffer;Ljavax/sound/sampled/AudioFormat;)V
ARG 1 buffer
ARG 2 format
METHOD a getBufferPointer ()Ljava/util/OptionalInt;
METHOD b close ()V

View File

@ -0,0 +1,11 @@
CLASS crw net/minecraft/client/audio/SoundEngine
CLASS crw$a
FIELD b sources Ljava/util/Set;
METHOD b close ()V
CLASS crw$b RunMode
FIELD a LOGGER Lorg/apache/logging/log4j/Logger;
FIELD f listener Lcrx;
METHOD a init ()V
METHOD a release (Lcrv;)V
METHOD b close ()V
METHOD c getListener ()Lcrx;

View File

@ -3,7 +3,7 @@ CLASS dvp net/minecraft/client/audio/SoundInstance
FIELD a NONE Ldvp$a;
FIELD b LINEAR Ldvp$a;
METHOD a getId ()Lqq;
METHOD a getAccess (Ldwp;)Ldwq;
METHOD a getSoundSet (Ldwp;)Ldwq;
METHOD b getSound ()Ldvm;
METHOD c getCategory ()Lyi;
METHOD d isRepeatable ()Z

View File

@ -1,31 +1,2 @@
CLASS dwp net/minecraft/client/audio/SoundLoader
CLASS dwp$a Result
FIELD a loadedSounds Ljava/util/Map;
METHOD a addTo (Ljava/util/Map;Ldwm;)V
FIELD a SOUND_MISSING Ldvm;
FIELD b LOGGER Lorg/apache/logging/log4j/Logger;
FIELD c GSON Lcom/google/gson/Gson;
FIELD d TYPE Ljava/lang/reflect/ParameterizedType;
FIELD e sounds Ljava/util/Map;
FIELD f soundManager Ldwm;
METHOD a getKeys ()Ljava/util/Collection;
METHOD a updateListenerPosition (Lctq;)V
METHOD a play (Ldvp;)V
METHOD a play (Ldvp;I)V
ARG 1 sound
ARG 2 volume
METHOD a registerListener (Ldwo;)V
METHOD a readSounds (Ljava/io/InputStream;)Ljava/util/Map;
METHOD a get (Lqq;)Ldwq;
METHOD a stopSounds (Lqq;Lyi;)V
METHOD a updateSoundVolume (Lyi;F)V
ARG 1 category
METHOD b pause ()V
METHOD b isSoundResourcePresent (Ldvm;Lqq;Lxb;)Z
METHOD b stop (Ldvp;)V
METHOD b unregisterListener (Ldwo;)V
METHOD c stopAll ()V
METHOD c isPlaying (Ldvp;)Z
METHOD d deinitialize ()V
METHOD e update ()V
METHOD f resume ()V
CLASS dwl net/minecraft/client/audio/SoundLoader
FIELD b loadedSounds Ljava/util/Map;

View File

@ -1,30 +1,31 @@
CLASS dwm net/minecraft/client/audio/SoundManager
FIELD a MARKER Lorg/apache/logging/log4j/Marker;
CLASS dwp net/minecraft/client/audio/SoundManager
CLASS dwp$a Result
FIELD a loadedSounds Ljava/util/Map;
METHOD a addTo (Ljava/util/Map;Ldwm;)V
FIELD a SOUND_MISSING Ldvm;
FIELD b LOGGER Lorg/apache/logging/log4j/Logger;
FIELD c unknownSounds Ljava/util/Set;
FIELD d loader Ldwp;
FIELD e settings Lcue;
FIELD f initialized Z
FIELD l ticks I
FIELD o tickingSounds Ljava/util/List;
FIELD r listeners Ljava/util/List;
METHOD <init> (Ldwp;Lcue;Lxb;)V
ARG 1 loader
METHOD a reloadSounds ()V
FIELD c GSON Lcom/google/gson/Gson;
FIELD d TYPE Ljava/lang/reflect/ParameterizedType;
FIELD e sounds Ljava/util/Map;
FIELD f soundSystem Ldwm;
METHOD a getKeys ()Ljava/util/Collection;
METHOD a updateListenerPosition (Lctq;)V
METHOD a play (Ldvp;)V
METHOD a play (Ldvp;I)V
ARG 1 sound
ARG 2 volume
METHOD a registerListener (Ldwo;)V
METHOD a readSounds (Ljava/io/InputStream;)Ljava/util/Map;
METHOD a get (Lqq;)Ldwq;
METHOD a stopSounds (Lqq;Lyi;)V
METHOD a getSoundVolume (Lyi;)F
METHOD a updateSoundVolume (Lyi;F)V
METHOD b deinitialize ()V
METHOD b isPlaying (Ldvp;)Z
ARG 1 category
METHOD b pauseAll ()V
METHOD b isSoundResourcePresent (Ldvm;Lqq;Lxb;)Z
METHOD b stop (Ldvp;)V
METHOD b unregisterListener (Ldwo;)V
METHOD c stopAll ()V
METHOD c play (Ldvp;)V
METHOD d update ()V
METHOD d getAdjustedPitch (Ldvp;)F
METHOD e getAdjustedVolume (Ldvp;)F
METHOD g initializeSystem ()V
METHOD c isPlaying (Ldvp;)Z
METHOD d close ()V
METHOD e tick ()V
METHOD f playAll ()V

View File

@ -0,0 +1,41 @@
CLASS dwm net/minecraft/client/audio/SoundSystem
FIELD a MARKER Lorg/apache/logging/log4j/Marker;
FIELD b LOGGER Lorg/apache/logging/log4j/Logger;
FIELD c unknownSounds Ljava/util/Set;
FIELD d loader Ldwp;
FIELD e settings Lcue;
FIELD f initialized Z
FIELD g soundEngine Lcrw;
FIELD h listener Lcrx;
FIELD i soundLoader Ldwl;
FIELD j taskQueue Ldwn;
FIELD k channel Ldwj;
FIELD l ticks I
FIELD n lastPlayedSounds Lcom/google/common/collect/Multimap;
FIELD o tickingSounds Ljava/util/List;
FIELD r listeners Ljava/util/List;
FIELD s streamedSounds Ljava/util/List;
METHOD <init> (Ldwp;Lcue;Lxb;)V
ARG 1 loader
METHOD a reloadSounds ()V
METHOD a updateListenerPosition (Lctq;)V
METHOD a addStreamedSound (Ldvm;)V
METHOD a stop (Ldvp;)V
METHOD a play (Ldvp;I)V
ARG 1 sound
ARG 2 volume
METHOD a registerListener (Ldwo;)V
METHOD a stopSounds (Lqq;Lyi;)V
METHOD a getSoundVolume (Lyi;)F
METHOD a updateSoundVolume (Lyi;F)V
METHOD b close ()V
METHOD b isPlaying (Ldvp;)Z
METHOD b unregisterListener (Ldwo;)V
METHOD c stopAll ()V
METHOD c play (Ldvp;)V
METHOD d tick ()V
METHOD d getAdjustedPitch (Ldvp;)F
METHOD e pauseAll ()V
METHOD e getAdjustedVolume (Ldvp;)F
METHOD f playAll ()V
METHOD g initializeSystem ()V

View File

@ -0,0 +1,6 @@
CLASS dwn net/minecraft/client/audio/SoundTaskQueue
FIELD a thread Ljava/lang/Thread;
FIELD b stopped Z
METHOD a restart ()V
METHOD b createThread ()Ljava/lang/Thread;
METHOD c waitForStop ()V

View File

@ -0,0 +1,17 @@
CLASS crv net/minecraft/client/audio/Source
FIELD a LOGGER Lorg/apache/logging/log4j/Logger;
FIELD b pointer I
FIELD c playing Z
METHOD <init> (I)V
ARG 1 pointer
METHOD a setPitch (F)V
METHOD a setPosition (Lcqo;)V
METHOD a setLooping (Z)V
METHOD b close ()V
METHOD b setVolume (F)V
METHOD b setRelative (Z)V
METHOD d pause ()V
METHOD e play ()V
METHOD f stop ()V
METHOD g isStopped ()Z
METHOD j getSourceState ()I

View File

@ -0,0 +1 @@
CLASS cyd net/minecraft/client/gui/Overlay

View File

@ -1,6 +1,7 @@
CLASS dir net/minecraft/client/network/ClientPlayerEntity
FIELD cd stats Lyr;
FIELD ce recipeBook Lctr;
FIELD cf tickables Ljava/util/List;
FIELD cg clientPermissionLevel I
FIELD cr serverBrand Ljava/lang/String;
FIELD cv activeHand Lags;

View File

@ -56,5 +56,6 @@ CLASS dje net/minecraft/client/render/GameRenderer
METHOD k getMapRenderer ()Lcuv;
METHOD l getClient ()Lcua;
METHOD m getViewDistance ()F
METHOD n getCamera ()Lctq;
METHOD p updateWorldIcon ()V
METHOD q shouldRenderBlockOutline ()Z

View File

@ -0,0 +1,2 @@
CLASS dmv net/minecraft/client/render/debug/BlockOutlineDebugRenderer
FIELD a client Lcua;

View File

@ -0,0 +1,5 @@
CLASS dmn net/minecraft/client/render/debug/ChunkLoadingDebugRenderer
CLASS dmn$a ServerData
FIELD a client Lcua;
FIELD b lastUpdateTime D
FIELD d serverData Ldmn$a;

View File

@ -11,6 +11,8 @@ CLASS dmp net/minecraft/client/render/debug/DebugRenderer
FIELD h structureDebugRenderer Ldmw;
FIELD i skyLightDebugRenderer Ldmp$a;
FIELD j worldGenAttemptDebugRenderer Ldmp$a;
FIELD k blockOutlineDebugRenderer Ldmp$a;
FIELD l chunkLoadingDebugRenderer Ldmp$a;
FIELD m pointsOfInterestDebugRenderer Ldmx;
FIELD n goalSelectorDebugRenderer Ldmq;
FIELD o showChunkBorder Z

View File

@ -2,3 +2,4 @@ CLASS dmx net/minecraft/client/render/debug/PointOfInterestDebugRenderer
FIELD c pointsOfInterest Ljava/util/Map;
METHOD a addPointOfInterest (Ldmx$a;)V
METHOD a removePointOfInterest (Lev;)V
METHOD b getCamera ()Lctq;

View File

@ -0,0 +1 @@
CLASS dqo net/minecraft/client/render/entity/model/ModelWithHat

View File

@ -0,0 +1,6 @@
CLASS no net/minecraft/client/util/DebugNameGenerator
FIELD a ADJECTIVES [Ljava/lang/String;
FIELD b NOUNS [Ljava/lang/String;
METHOD a getRandom (Ljava/util/Random;[Ljava/lang/String;)Ljava/lang/String;
METHOD a getDebugName (Ljava/util/UUID;)Ljava/lang/String;
METHOD b createRandomForUUID (Ljava/util/UUID;)Ljava/util/Random;

View File

@ -0,0 +1 @@
CLASS ahf net/minecraft/entity/DamageUtil

View File

@ -191,7 +191,7 @@ CLASS ahy net/minecraft/entity/Entity
METHOD aX getItemsHand ()Ljava/lang/Iterable;
METHOD aY getItemsArmor ()Ljava/lang/Iterable;
METHOD aZ getItemsEquipped ()Ljava/lang/Iterable;
METHOD aa updateLogic ()V
METHOD aa baseTick ()V
METHOD ab getMaxPortalTime ()I
METHOD ac setOnFireFromLava ()V
METHOD ad extinguish ()V
@ -244,7 +244,7 @@ CLASS ahy net/minecraft/entity/Entity
METHOD bF getComponentHoverEvent ()Ljp;
METHOD bG getBoundingBox ()Lcqj;
METHOD bI getStandingEyeHeight ()F
METHOD bJ getPos ()Lev;
METHOD bJ getBlockPos ()Lev;
METHOD bK getPosVector ()Lcqo;
METHOD bL getEntityWorld ()Lbgf;
METHOD bM getServer ()Lnet/minecraft/server/MinecraftServer;
@ -292,6 +292,7 @@ CLASS ahy net/minecraft/entity/Entity
METHOD c setSilent (Z)V
METHOD cb getWidth ()F
METHOD cc getHeight ()F
METHOD cd getPos ()Lcqo;
METHOD ce getVelocity ()Lcqo;
METHOD d setVelocity (Lcqo;)V
METHOD d saveToTag (Lib;)Z
@ -318,7 +319,7 @@ CLASS ahy net/minecraft/entity/Entity
METHOD g getPitch (F)F
METHOD g burn (I)V
METHOD g distanceTo (Lahy;)F
METHOD h update ()V
METHOD h tick ()V
METHOD h setVelocityClient (DDD)V
ARG 1 x
ARG 3 y

View File

@ -0,0 +1 @@
CLASS avm net/minecraft/entity/ProjectileUtil

View File

@ -1,2 +0,0 @@
CLASS apb net/minecraft/entity/ai/AiUtil
METHOD b isWater (Lev;Laio;)Z

View File

@ -0,0 +1,4 @@
CLASS akl net/minecraft/entity/ai/GoToNearbyPositionTask
FIELD a memoryModuleType Laod;
FIELD c maxDistance I
FIELD d nextRunTime J

View File

@ -0,0 +1,7 @@
CLASS apb net/minecraft/entity/ai/PathfindingUtil
METHOD a findTarget (Laio;II)Lcqo;
METHOD a findTarget (Laio;IILcqo;ZDLjava/util/function/ToDoubleFunction;)Lcqo;
METHOD a findTargetStraight (Laio;IILjava/util/function/ToDoubleFunction;)Lcqo;
METHOD b findTargetStraight (Laio;II)Lcqo;
METHOD b isWater (Lev;Laio;)Z
METHOD c findTarget (Laio;IILcqo;)Lcqo;

View File

@ -21,7 +21,8 @@ CLASS aiw net/minecraft/entity/ai/brain/Brain
METHOD b forget (Laod;)V
METHOD b setActivity (Lawe;)V
METHOD b stopAllTasks (Lvd;Laih;)V
METHOD c getMemory (Laod;)Ljava/util/Optional;
METHOD c hasActivity (Lawe;)Z
METHOD d getMemory (Laod;)Ljava/util/Optional;
METHOD d getOptionalMemory (Laod;)Ljava/util/Optional;
METHOD d tick (Lvd;Laih;)V
METHOD f clone ()Laiw;

View File

@ -0,0 +1 @@
CLASS aot net/minecraft/entity/ai/brain/sensor/SecondaryPointsOfInterestSensor

View File

@ -0,0 +1 @@
CLASS ajp net/minecraft/entity/ai/brain/task/FarmerVillagerTask

View File

@ -0,0 +1,5 @@
CLASS ajq net/minecraft/entity/ai/brain/task/FindEntityTask
FIELD c mobType Laic;
FIELD d maxDistanceSq I
FIELD e filter Ljava/util/function/Predicate;
FIELD g memoryModuleType Laod;

View File

@ -0,0 +1,3 @@
CLASS ako net/minecraft/entity/ai/brain/task/GatherItemsVillagerTask
FIELD a items Ljava/util/Set;
METHOD a getGatherableItems (Laui;Laui;)Ljava/util/Set;

View File

@ -0,0 +1,2 @@
CLASS akm net/minecraft/entity/ai/brain/task/GoToRandomMemorizedPositionTask
FIELD f nextRunTime J

View File

@ -0,0 +1,6 @@
CLASS ajx net/minecraft/entity/ai/brain/task/GoToSleepingChildTask
METHOD b findVisibleChild (Laih;)Laih;
METHOD c isSleepingChild (Laih;)Z
METHOD d hasInteractionTarget (Laih;)Z
METHOD d getVisibleMobs (Laio;)Ljava/util/List;
METHOD e canSeeChild (Laio;)Z

View File

@ -0,0 +1,8 @@
CLASS ajj net/minecraft/entity/ai/brain/task/LookTargetUtil
METHOD a lookAtAndWalkTowardsEachOther (Laih;Laih;)V
METHOD a canSee (Laiw;Laih;)Z
METHOD a canSee (Laiw;Laod;Laic;)Z
METHOD b lookAtEachOther (Laih;Laih;)V
METHOD c lookAt (Laih;Laih;)V
METHOD d walkTowardsEachOther (Laih;Laih;)V
METHOD e walkTowards (Laih;Laih;)V

View File

@ -0,0 +1,2 @@
CLASS akv net/minecraft/entity/ai/brain/task/VillagerWorkTask
FIELD a ticks I

View File

@ -0,0 +1 @@
CLASS anl net/minecraft/entity/ai/goal/FlyAroundGoal

View File

@ -0,0 +1 @@
CLASS alv net/minecraft/entity/ai/goal/FlyToOwnerGoal

View File

@ -0,0 +1 @@
CLASS amb net/minecraft/entity/ai/goal/GoToEntityGoal

View File

@ -0,0 +1,4 @@
CLASS amn net/minecraft/entity/ai/goal/GoToEntityTargetGoal
FIELD a owner Laio;
FIELD b target Laih;
FIELD g maxDistance F

View File

@ -1,4 +1,4 @@
CLASS amm
CLASS amm net/minecraft/entity/ai/goal/GoToWalkTargetGoal
FIELD a mob Laio;
FIELD b x D
FIELD c y D

View File

@ -1,4 +1,5 @@
CLASS aly net/minecraft/entity/ai/goal/Goal
CLASS net/minecraft/entity/ai/goal/Goal$a ControlBit
FIELD a controlBits Ljava/util/EnumSet;
METHOD C_ canStop ()Z
METHOD a canStart ()Z

View File

@ -0,0 +1 @@
CLASS amw net/minecraft/entity/ai/goal/SwimAroundGoal

View File

@ -0,0 +1,2 @@
CLASS anm net/minecraft/entity/ai/goal/WanderAroundFarGoal
FIELD h farWanderProbability F

View File

@ -9,7 +9,9 @@ CLASS aii net/minecraft/entity/mob/MobEntity
FIELD bH lootTableSeed J
FIELD bI holdingEntity Lahy;
FIELD bK leashTag Lib;
FIELD bL walkTarget Lev;
FIELD b MOB_FLAGS Lqf;
FIELD bM walkTargetRange F
FIELD bt moveControl Lald;
FIELD bu jumpControl Lalb;
FIELD bv navigation Laoj;
@ -48,6 +50,8 @@ CLASS aii net/minecraft/entity/mob/MobEntity
METHOD a getPathNodeTypeWeight (Lclv;)F
METHOD a setPathNodeTypeWeight (Lclv;F)V
ARG 1 type
METHOD a isInWalkTargetRange (Lev;)Z
METHOD a setWalkTarget (Lev;I)V
METHOD a detachLeash (ZZ)V
ARG 1 sendPacket
METHOD b attachLeash (Lahy;Z)V
@ -58,6 +62,10 @@ CLASS aii net/minecraft/entity/mob/MobEntity
METHOD c spawnsTooManyForEachTry (I)Z
ARG 1 count
METHOD dA isPersistent ()Z
METHOD dB isInWalkTargetRange ()Z
METHOD dC getWalkTarget ()Lev;
METHOD dD getWalkTargetRange ()F
METHOD dF hasWalkTargetRange ()Z
METHOD dH isLeashed ()Z
METHOD dI getHoldingEntity ()Lahy;
METHOD dJ isAiDisabled ()Z

View File

@ -12,6 +12,7 @@ CLASS vd net/minecraft/server/world/ServerWorld
FIELD L wanderingTraderManager Laup;
FIELD b savingDisabled Z
FIELD c raidManager Lawc;
FIELD d villageManager Lape;
FIELD v LOGGER Lorg/apache/logging/log4j/Logger;
FIELD w globalEntities Ljava/util/List;
FIELD x entitiesById Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;

View File

@ -0,0 +1,5 @@
CLASS nn net/minecraft/sortme/DebugRendererInfoManager
FIELD a LOGGER Lorg/apache/logging/log4j/Logger;
METHOD a sendPathfindingData (Lbgf;Laii;Lclz;F)V
METHOD a sendBlockUpdate (Lbgf;Lev;)V
METHOD a sendStructureStart (Lbgg;Lche;)V

View File

@ -0,0 +1,3 @@
CLASS k net/minecraft/sortme/WorldNameProvider
FIELD a RESERVED_WINDOWS_NAMES Ljava/util/Set;
METHOD a transformWorldName (Ljava/nio/file/Path;Ljava/lang/String;)Ljava/lang/String;

View File

@ -2,7 +2,7 @@ CLASS agc net/minecraft/util/Actor
CLASS agc$1
METHOD a (Ljava/lang/Object;)V
ARG 1 message
METHOD a (Ljava/lang/Object;)V
METHOD a send (Ljava/lang/Object;)V
ARG 1 message
METHOD a createConsumerActor (Ljava/lang/String;Ljava/util/function/Consumer;)Lagc;
METHOD a createAndSendFutureActor (Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture;

View File

@ -0,0 +1,2 @@
CLASS dvf net/minecraft/util/ClientPlayerTickable
METHOD a tick ()V

View File

@ -8,7 +8,7 @@ CLASS aga net/minecraft/util/ThreadTaskQueue
METHOD a executeFuture (Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture;
METHOD a executeFuture (Ljava/util/function/Supplier;)Ljava/util/concurrent/CompletableFuture;
METHOD aw isOffThread ()Z
METHOD ax thread ()Ljava/lang/Thread;
METHOD ax getThread ()Ljava/lang/Thread;
METHOD bc isOnThread ()Z
METHOD be clear ()V
METHOD bf executeTaskQueue ()V

View File

@ -0,0 +1,8 @@
CLASS aku net/minecraft/util/WeightedList
CLASS aku$a Entry
FIELD c weight I
METHOD b getElement ()Ljava/lang/Object;
FIELD a entries Ljava/util/List;
FIELD b random Ljava/util/Random;
METHOD a add (Ljava/lang/Object;I)V
METHOD b stream ()Ljava/util/stream/Stream;

View File

@ -0,0 +1,2 @@
CLASS ape net/minecraft/village/VillageManager
METHOD a tick ()V

View File

@ -141,6 +141,7 @@ CLASS bgf net/minecraft/world/World
ARG 3 radius
ARG 4 skipExistingChunks
METHOD a addBlockEntities (Ljava/util/Collection;)V
METHOD a tickEntity (Ljava/util/function/Consumer;Lahy;)V
METHOD a sendPacket (Lka;)V
ARG 1 packet
METHOD a setMobSpawnOptions (ZZ)V

View File

@ -0,0 +1 @@
CLASS cky net/minecraft/world/biome/layer/AddIslandLayer

View File

@ -1,4 +1,4 @@
CLASS ckp net/minecraft/world/biome/BiomeGroupToBiomeLayer
CLASS ckp net/minecraft/world/biome/layer/BiomeGroupToBiomeLayer
FIELD a BIRCH_FOREST_ID I
FIELD b DESERT_ID I
FIELD c MOUNTAINS_ID I