Added mappings for Dimension (#439)

This commit is contained in:
Siphalor 2019-02-05 19:05:28 +01:00 committed by Adrian Siekierka
parent 283f41bd21
commit 60b0d0a61f
5 changed files with 36 additions and 0 deletions

View File

@ -17,6 +17,7 @@ CLASS dfa net/minecraft/client/render/BackgroundRenderer
METHOD a getColorAsBuffer ()Ljava/nio/FloatBuffer;
METHOD a renderBackground (F)V
ARG 1 tickDelta
METHOD a applyFog (IF)V
METHOD a updateColorNotInWater (Lahe;Lbcq;F)V
ARG 1 camera
ARG 2 world

View File

@ -42,6 +42,8 @@ CLASS dfb net/minecraft/client/render/GameRenderer
METHOD a onCameraEntitySet (Lahe;)V
METHOD a showFloatingItem (Laxi;)V
ARG 1 item
METHOD a (Ldff;FDDD)V
ARG 2 tickDelta
METHOD a loadShader (Lqd;)V
METHOD b disableShader ()V
METHOD b renderCenter (FJ)V

View File

@ -60,7 +60,9 @@ CLASS dff net/minecraft/client/render/WorldRenderer
ARG 14 blue
ARG 15 alpha
METHOD a renderSky (F)V
ARG 1 tickDelta
METHOD a renderClouds (FDDD)V
ARG 1 tickDelta
METHOD a scheduleChunkRender (IIIZ)V
METHOD a updateChunks (J)V
METHOD a renderWorldBorder (Lahe;F)V

View File

@ -2,6 +2,7 @@ CLASS ur net/minecraft/server/world/ServerWorld
FIELD A server Lnet/minecraft/server/MinecraftServer;
FIELD C entityTracker Lum;
FIELD D entitiesByUuid Ljava/util/Map;
FIELD F idleTimeout I
FIELD G portalForcer Lbdc;
FIELD H blockTickScheduler Lbde;
FIELD I fluidTickScheduler Lbde;
@ -11,6 +12,7 @@ CLASS ur net/minecraft/server/world/ServerWorld
METHOD <init> (Lnet/minecraft/server/MinecraftServer;Ljava/util/concurrent/Executor;Lcjd;Lcjc;Lbti;Laff;Lvc;)V
ARG 1 server
METHOD B getPersistentStateManager ()Lcjb;
METHOD D getForcedChunks ()Lit/unimi/dsi/fastutil/longs/LongSet;
METHOD a init (Lbcv;)V
ARG 1 levelInfo
METHOD a save (Lzc;ZZ)V
@ -18,6 +20,10 @@ CLASS ur net/minecraft/server/world/ServerWorld
METHOD ak shouldSpawnNpcs ()Z
METHOD al shouldSpawnAnimals ()Z
METHOD am sendBlockActions ()V
METHOD b setChunkForced (IIZ)Z
ARG 1 x
ARG 2 z
ARG 3 force
METHOD d getScoreboard ()Lqs;
METHOD m_ tickScheduledTicks ()V
METHOD n saveLevel ()V

View File

@ -1,20 +1,45 @@
CLASS bth net/minecraft/world/dimension/Dimension
FIELD a MOON_PHASE_TO_SIZE [F
FIELD b world Lbcq;
FIELD c waterVaporizes Z
FIELD d isNether Z
FIELD f type Lbti;
FIELD g backgroundColor [F
METHOD <init> (Lbcq;Lbti;)V
ARG 1 world
ARG 2 type
METHOD a getBackgroundColor (FF)[F
ARG 1 skyAngle
ARG 2 tickDelta
METHOD a shouldRenderFog (II)Z
ARG 1 entityX
ARG 2 entityZ
METHOD a getTopSpawningBlockPosition (IIZ)Let;
ARG 1 x
ARG 2 z
ARG 3 checkMobSpawnValidity
METHOD a getMoonPhase (J)I
ARG 1 time
METHOD a getSkyAngle (JF)F
ARG 1 timeOfDay
ARG 3 delta
METHOD a getSpawningBlockInChunk (Lbcd;Z)Let;
ARG 1 chunkPos
ARG 2 checkMobSpawnValidity
METHOD a onEntityAdded (Lut;)V
METHOD b getFogColor (FF)Lcmw;
ARG 1 skyAngle
ARG 2 tickDelta
METHOD b onEntityRemoved (Lut;)V
METHOD d getForcedSpawnPoint ()Let;
METHOD e getHorizonShadingRatio ()D
METHOD f doesWaterVaporize ()Z
METHOD g hasSkyLight ()Z
METHOD h isNether ()Z
METHOD j createWorldBorder ()Lbsb;
METHOD k saveWorldData ()V
METHOD l update ()V
METHOD m createChunkGenerator ()Lbse;
METHOD n hasVisibleSky ()Z
METHOD o canPlayersSleep ()Z
METHOD p getType ()Lbti;