-
Notifications
You must be signed in to change notification settings - Fork 2
/
client.tsrg
4082 lines (4082 loc) · 107 KB
/
client.tsrg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#
# Beta 1.7.3 Mappings
#
aa net/minecraft/container/PlayerContainer
a craftMatrix
b craftResult
c isSinglePlayer
ab net/minecraft/client/gui/SmallGuiButton
i options
a ()Lht; getOptions
ac net/minecraft/block/FullSnowBlock
ad net/minecraft/json/exception/JsonSelectorMismatchException
ae net/minecraft/client/particle/NoteParticle
af net/minecraft/network/packet/PlayerPositionPacket
ag net/minecraft/client/render/MobSpawnerRenderer
b entities
a (Lcy;DDDF)V renderMobSpawner
ah net/minecraft/block/TntBlock
ai net/minecraft/network/packet/MapDataPacket
aj net/minecraft/client/sound/step/SandStepSound
ak net/minecraft/block/PortalBlock
a_ (Lfd;III)Z createPortal
al net/minecraft/client/sound/step/StoneStepSound
am net/minecraft/world/generator/PerlinNoiseGenerator
a x
b y
c z
d permutations
a (DDD)D generateNoise
a (IDDD)D gradient
b (DDD)D lerp
a net/minecraft/network/packet/UseEntityPacket
a playerId
b targetEntityId
c isLeftClick
an net/minecraft/json/JsonParser
ao net/minecraft/json/exception/JsonPathMismatchException
ap net/minecraft/world/generator/TallGrassWorldGenerator
aq net/minecraft/world/MaterialLogic
ar net/minecraft/entity/WaterEntity
as net/minecraft/util/CompressedStreamTools
at net/minecraft/json/JsonNodeType
au net/minecraft/item/Pickaxe
av net/minecraft/item/CompassTexture
aw net/minecraft/item/TickableTexture
a ()V tick
ax net/minecraft/map/MapCoord
ay net/minecraft/world/SkyWorldProvider
az net/minecraft/block/tile/DispenserTileEntity
a contents
b random
b ()Liz; getRandomStackFromInventory()
ba net/minecraft/json/LeafFunctor
bb net/minecraft/client/render/ItemRenderer
f random
a (IIIIII)V renderTexturedQuad
a (Lhl;DDDFF)V renderItem
a (Lnw;IIIII)V renderQuad
a (Lsj;Lji;IIIII)V drawItemIntoGui
a (Lsj;Lji;Liz;II)V renderItemIntoGUI
b (Lsj;Lji;Liz;II)V renderItemOverlayIntoGUI
bc net/minecraft/item/BucketItem
a isFull
bd net/minecraft/client/CanvasIsomPreview
be net/minecraft/world/generator/FlowerWorldGenerator
a plantBlockId
bf net/minecraft/world/chunk/AbstractChunkLoader
a (Lfd;II)Llm; loadChunk
a (Lfd;Llm;)V saveChunk
b (Lfd;Llm;)V saveExtraChunkData
b ()V saveExtraData
bg net/minecraft/entity/AnimalEntity
bh net/minecraft/client/sound/SoundPoolEntry
a soundName
b soundUrl
bi net/minecraft/item/ClothItem
bj net/minecraft/entity/SpawnListEntry
a entityClass
b spawnRarityRate
bk net/minecraft/block/LeafBlock
a adjacentTreeBlocks
c baseIndexInPNG
a (Z)V setGraphicsLevel
h (Lfd;III)V removeLeaves
bl net/minecraft/item/ShearsItem
bm net/minecraft/container/FurnaceContainer
a furnace
b cookTime
c burnTime
h itemBurnTime
b net/minecraft/achievement/AchievementMap
bn net/minecraft/achievement/DistanceStatType
bo net/minecraft/achievement/TimeStatType
bp net/minecraft/entity/GhastEntity
a courseChangeCooldown
b waypointX
c waypointY
d waypointZ
e prevAttackCounter
f attackCounter
g targetedEntity
h aggroCooldown
a (DDDD)Z isCourseTraversable
bq net/minecraft/achievement/SimpleStatType
br net/minecraft/world/chunk/ChunkCoordinates
a x
b y
c z
a (III)D getSqDistanceTo
a (Lbr;)I compareChunkCoordinate
bs net/minecraft/block/RedstoneOreBlock
bt net/minecraft/util/Vec3D
a x
b y
c z
d vectorList
e nextVector
a (DDD)Lbt; createVectorHelper
a (F)V rotateAroundX
a (Lbt;D)Lbt; getIntermediateWithXValue
a (Lbt;)Lbt; subtract
b (DDD)Lbt; createVector
b (F)V rotateAroundY
b (Lbt;D)Lbt; getIntermediateWithYValue
b (Lbt;)Lbt; crossProduct
b ()V initialize
c (DDD)Lbt; addVector
c (Lbt;D)Lbt; getIntermediateWithZValue
c (Lbt;)D distanceTo
c ()Lbt; normalize
d (DDD)D squareDistanceTo
d (D lengthVector
d (Lbt;)D squareDistanceTo
e (DDD)Lbt; setComponents
bu net/minecraft/item/ToolMaterial
a WOOD
b STONE
c IRON
d EMERALD
e GOLD
f harvestLevel
g maxUses
h efficiency
i damage
a ()I getMaxUses
b ()F getEfficiencyOnProperMaterial
c ()I getDamageVsEntity
d ()I getHarvestLevel
bv net/minecraft/block/PressurePlateBlock
bw net/minecraft/client/render/Renderer
a modelBase
b renderManager
c shadowSize
e renderBlocks
a (Leq;DDD)V renderOffsetAABB
a (Leq;)V renderAABB
a (Ljava/lang/String;Ljava/lang/String;)Z loadDownloadableImageTexture
a (Ljava/lang/String;)V loadTexture
a ()Lsj; getFontRendererFromRenderManager
a (Lsn;DDDFF)V render
a (Lsn;DDDF)V renderEntityOnFire
a (Lth;)V setRenderManager
a (Luu;DDDIIIFFDDD)V renderShadowOnBlock
b ()Lfd; getWorldFromRenderManager
b (Lsn;DDDFF)V doRenderShadowAndFire
c (Lsn;DDDFF)V renderShadow
bx net/minecraft/entity/CowEntity
by net/minecraft/entity/SnowballEntity
bz net/minecraft/item/SoupItem
ca net/minecraft/network/packet/BedPacket
cb net/minecraft/client/PanelCrashReport
cc net/minecraft/world/generator/NoiseGenerator2
a (D)I wrap
cd net/minecraft/container/ChestContainer
ce net/minecraft/client/gui/UnusedGui
a messageA
i messageB
cf net/minecraft/entity/FireballEntity
cg net/minecraft/client/particle/LavaParticleTexture
ch net/minecraft/client/gui/GameOverGui
ci net/minecraft/client/gui/ItemStatSlotGui
cj net/minecraft/achievement/StatsSyncher
b (Ljava/util/Map;)V syncStatsFile
ck net/minecraft/item/ItemBlock
a blockId
cl net/minecraft/world/chunk/ChunkProvider
a (II)Z chunkExists
a (Lcl;II)V populate
a (ZLyb;)Z saveChunks
a ()Z unloadOldChunks
b (II)Llm; provideChunk
b ()Z canSave
c (II)Llm; prepareChunk
c ()Ljava/lang/String; toString
cm net/minecraft/world/chunk/ChunkFolderPattern
c net/minecraft/entity/LightningBoltEntity
cn net/minecraft/entity/SpiderEntity
co net/minecraft/client/gui/OptionsGui
a screenTitle
i parentScreen
j options
cp net/minecraft/item/AbstractMapItem
cq net/minecraft/world/AnimalSpawner
a nightEntities
b eligibleChunks
a (Lfd;II)Lwf; getRandomSpawningPoint
a (Lfd;Ljava/util/List;)Z sleepingSpawn
a (Lfd;ZZ)I spawn
a (Llk;Lfd;III)Z canCreatureSpawnAtLocation
a (Lls;Lfd;FFF)V creatureInit
cr net/minecraft/client/particle/BubbleParticle
cs net/minecraft/item/FishingRodItem
ct net/minecraft/client/sound/StepSound
a ()Ljava/lang/String; stepSoundDir
b ()F getVolume
c ()F getPitch
cu net/minecraft/client/control/MouseFilter
cv net/minecraft/client/render/BlockRenderer
a fancyGrass
c blockAcceess
d overrideBlockTexture
e flipTexture
f renderAllFaces
m enableAO
n lightValue
o xNegLightValueAO
p yNegLightValueAO
q zNegLightValueAO
r xPosLightValueAO
s yPosLightValueAO
t zPosLightValueAO
cw net/minecraft/util/Status
a OK
b NOT_POSSIBLE_HERE
c NOT_POSSIBLE_NOW
d TOO_FAR_AWAY
e OTHER_PROBLEM
cx net/minecraft/client/render/OpenGlCapsChecker
a tryCheckOcclusionCapable
a ()Z checkARBOcclusion
cy net/minecraft/block/tileentity/MobSpawnerTileEntity
a delay
b yaw
c pitch
i entityId
a ()Ljava/lang/String; getEntityId
a (Ljava/lang/String;)V setEntityId
b ()Z isPlayerInRange
d ()V updateDelay
cz net/minecraft/util/DownloadResourcesThread
a resourcesFolder
b minecraft
c closing
a (Ljava/io/File;Ljava/lang/String;)V loadResource
a (Ljava/net/URL;Ljava/io/File;J)V downloadResource
a (Ljava/net/URL;Ljava/lang/String;JI)V downloadAndInstallResource
a ()V reloadResources
b ()V closeMinecraft
da net/minecraft/client/gui/ScreenGui
a selectedButton
b minecraft
c width
d height
e controlList
g fontRenderer
a (CI)V keyType
a (IIF)V drawScreen
a (III)V mouseClicked
a (I)V drawWorldBackground
a (Lke;)V actionPerformed
a (Lnet/minecraft/client/Minecraft;II)V setWorldAndResolution
a ()V updateScreen
a (ZI)V deleteWorld
b (III)V mouseMovedOrUp
b (I)V drawBackground
b ()V initGui
c ()Z doesGuiPauseGame
d ()Ljava/lang/String; getClipboardString
e ()V handleInput
f ()V handleMouseInput
g ()V handleKeyboardInput
h ()V onGuiClosed
i ()V drawDefaultBackground
j ()V selectNextField
db net/minecraft/block/RedstoneTorchBlock
a torchActive
b torchUpdates
a (Lfd;IIIZ)Z checkForBurnout
dc net/minecraft/entity/SinglePlayerEntity
a movementInput
b minecraft
a (IZ)V handleKeyPress
a (Ljava/lang/String;)V sendChatMessage
d (III)Z isBlockTranslucent
d_ (I)V setHealth
o_ ()V resetPlayerKeyState
s ()I getPlayerArmorValue
dd net/minecraft/block/MobSpawnerBlock
de net/minecraft/client/gui/TexturePackSlotGui
a parentTexturePackGui
df net/minecraft/world/generator/NoiseGenerator
dg net/minecraft/client/render/SnowballRenderer
a itemIndex
dh net/minecraft/entity/pathfinding/EntityPath
a length
b points
c index
a (Lsn;)Lbt; getPosition
a ()V incrementIndex
b ()Z isFinished
di net/minecraft/network/packet/CollectPacket
a collectedEntityId
b collectorEntityId
dj net/minecraft/world/generator/LakeGenerator
dk net/minecraft/client/render/WorldRenderer
A isChunkLit
a worldObj
b chunksUpdated
B tileEntityRenderers
C glRenderList
c x
d y
e z
D tessellator
E isInitialized
f sizeWidth
F tileEntities
g sizeHeight
h sizeDepth
i posXMinus
j posYMinus
k posZMinus
l posXClip
m posYClip
n posZClip
o isInFrustum
p skipRenderPass
q posXPlus
r posYPlus
s posZPlus
t rendererRadius
u needsUpdate
v rendererBoundingBox
w chunkIndex
x isVisible
y isWaitingOnOcclusionQuery
z glOcclusionQuery
a (III)V setPosition
a (I)I getGLCallListForPass
a (Lsn;)F distanceToEntitySquared
a (Lyn;)V updateInFrustrum
a ()V updateRenderer
b ()V setDontDraw
d ()V callOcclusionQueryList
e ()Z skipAllRenderPasses
f ()V markDirty
g ()V setupGLTranslation
dl net/minecraft/entity/SheepEntity
a woolColorTable
a (Ljava/util/Random;)I getRandomWoolColor
a (Z)V setSheared
e_ (I)V setWoolColor
r ()I getWoolColor
s ()Z isSheared
dm net/minecraft/item/SnowBallItem
d net/minecraft/entity/pathfinding/PathPoint
a x
b y
c z
d index
e totalPathDistance
f distanceToNext
g distanceToTarget
h previous
i isFirst
j hash
a (Ld;)F distanceTo
a ()Z isAssigned
dn net/minecraft/client/render/ParticleRenderer
a world
b particleLayers
c renderer
d random
a (IIIII)V addBlockDestroyEffects
a (IIII)V addBlockHitEffects
a (Lfd;)V clearEffects
a (Lsn;F)V renderParticles
a (Lxw;)V addEffect
a ()V updateEffects
b ()Ljava/lang/String; getStatistics
do net/minecraft/achievement/StatCollector
a localizedName
a (Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String; translateToLocalFormatted
a (Ljava/lang/String;)Ljava/lang/String; translateToLocal
dp net/minecraft/block/LadderBlock
dq net/minecraft/item/Tool
a material
bk blocksEffectiveAgainst
bl efficiency
bm damage
dr net/minecraft/client/render/AbstractClippingHelper
a frustum
b projectionMatrix
c modelviewMatrix
d clippingMatrix
a (DDDDDD)Z isBoxInFrustum
ds net/minecraft/client/render/PlayerRenderer
a bipedModel
g chestplateModel
h armorModel
i armorFilenamePrefix
a (Lgs;DDDFF)V renderPlayer
a (Lgs;DDD)V renderName
a (Lgs;F)V renderSpecials
a (Lgs;IF)Z setArmorModel
b ()V drawFirstPersonHand
dt net/minecraft/crafting/Recipe
a ()I getRecipeSize
a (Lmq;)Z matches
b ()Liz; getRecipeOutput
b (Lmq;)Liz; getCraftingResult
du net/minecraft/client/gui/ParticleGui
dv net/minecraft/client/gui/StatsGui
dw net/minecraft/container/Container
e slots
f windowId
a (I)Liz; getStackInSlot
a (ILiz;)V putStackInSlot
a (Lgp;)V addSlot
a (Lgs;)V onCraftGuiClosed
a ([Liz;)V putStacksInSlots
a (Llw;)V onCraftMatrixChanged
a ()V updateCraftingResults
b (I)Lgp; getSlot
b (Lgs;)Z isUsableByPlayer
dx net/minecraft/world/MapColor
a mapColorArray
b airColor
c grassColor
d sandColor
e clothColor
f tntColor
g iceColor
h ironColor
i leafColor
j snowColor
k clayColor
l dirtColor
m stoneColor
n waterColor
o woodColor
p colorValue
q colorIndex
dy net/minecraft/client/render/PaintingRenderer
dz net/minecraft/world/chunk/ChunkFile
ea net/minecraft/client/render/model/SheepModel1
eb net/minecraft/unknown/SkyBlock
a SKY
b BLOCK
ec net/minecraft/crafting/Crafter
ed net/minecraft/json/JsonArrayNodeBuilder
ee net/minecraft/block/WoolBlock
ef net/minecraft/network/packet/MapChunkPacket
a x
b y
c z
d xSize
e ySize
f zSize
g chunk
h chunkSize
eg net/minecraft/block/tileentity/JukeboxTileEntity
a record
eh net/minecraft/client/render/model/PigModel
ei net/minecraft/world/WorldInfo
a randomSeed
b spawnX
c spawnY
d spawnZ
e worldTime
f lastTimePlayed
g sizeOnDisk
h playerTag
i dimension
j levelName
k saveVersion
l raining
m rainTime
n thundering
o thunderTime
a (III)V setSpawn
a (I)V setSpawnX
a (J)V setWorldTime
a (Ljava/lang/String;)V setWorldName
a (Ljava/util/List;)Lnu; getNBTTagCompoundWithPlayer
a (Lnu;Lnu;)V updateTagCompound
a ()Lnu; getNBTTagCompound
a (Lnu;)V setPlayerNBTTagCompound
a (Z)V setThundering
b (I)V setSpawnY
b ()J getRandomSeed
b (J)V setSizeOnDisk
b (Z)V setRaining
c ()I getSpawnX
c (I)V setSpawnZ
d ()I getSpawnY
d (I)V setSaveVersion
e ()I getSpawnZ
e (I)V setThunderTime
f (I)V setRainTime
f ()J getWorldTime
g ()J getSizeOnDisk
h ()Lnu; getPlayerNBTTagCompound
i ()I getDimension
j ()Ljava/lang/String; getWorldName
k ()I getSaveVersion
l ()J getLastTimePlayed
m ()Z getThundering
n ()I getThunderTime
o ()Z getRaining
p ()I getRainTime
ej net/minecraft/client/render/model/ZombieModel
ek net/minecraft/util/ImageDownloader
a image
b referenceCount
c textureName
d textureSetupComplete
el net/minecraft/json/CompactJsonFormatter
em net/minecraft/client/particle/PickupParticle
e net/minecraft/block/ChestBlock
a random
en net/minecraft/item/SlabItem
eo net/minecraft/block/StoneBlock
ep net/minecraft/achievement/AchievementList
a minDisplayColumn
b minDisplayRow
c maxDisplayColumn
d maxDisplayRow
e achievementList
f OPEN_INVENTORY
g MINE_WOOD
h BUILD_WORK_BENCH
i BUILD_PICKAXE
j BUILD_FURNACE
k ACQUIRE_IRON
l BUILD_HOE
m MAKE_BREAD
n BAKE_CAKE
o BUILD_BETTER_PICKAXE
p COOK_FISH
q ON_A_RAIL
r BUILD_SWORD
s KILL_ENEMY
t KILL_COW
u FLY_PIG
a ()V doNothing()
eq net/minecraft/client/render/AxisAlignedBB
a minX
b minY
c minZ
d maxX
e maxY
f maxZ
g boundingBoxes
h numBoundingBoxesInUse
a (DDDDDD)Leq; getBoundingBox
a (DDD)Leq; addCoord
a (Lbt;)Z isVecInside
a (Leq;D)D calculateXOffset
a (Leq;)Z intersectsWith
b (DDDDDD)Leq; getBoundingBoxFromPool
b (DDD)Leq; expand
b (Lbt;)Z isVecInYZ
b (Leq;D)D calculateYOffset
b (Leq;)V setBB
b ()V clearBoundingBoxPool
c (DDDDDD)Leq; setBounds
c (DDD)Leq; getOffsetBoundingBox
c ()D getAverageEdgeLength
c (Lbt;)Z isVecInXZ
c (Leq;D)D calculateZOffset
d (DDD)Leq; offset
d (Lbt;)Z isVecInXY
d ()Leq; copy
er net/minecraft/world/generator/DungeonWorldGenerator
a (Ljava/util/Random;)Liz; chooseChestItem
b (Ljava/util/Random;)Ljava/lang/String; chooseEntity
es net/minecraft/client/render/SquidRenderer
et net/minecraft/json/PositionedNode
eu net/minecraft/network/packet/UpdateHealthPacket
ev net/minecraft/network/packet/PlayerPositionRotationPacket
ew net/minecraft/world/chunk/ChunkCache
a chunkX
b chunkZ
c chunkArray
d worldObj
a (IIIZ)I getLightValue0
d (III)I getLightValue
ex net/minecraft/client/gui/ConnectionFailedGui
a errorMessage
i errorDetail
ey net/minecraft/crafting/FurnaceRecipes
a smeltingBase
b smeltingList
a (I)Liz; getSmeltingResult
a (ILiz;)V addSmelting
a ()Ley; smelting
b ()Ljava/util/Map; getSmeltingList
ez net/minecraft/client/render/model/BoatModel
a sides
fa net/minecraft/network/packet/WeatherPacket
fb net/minecraft/block/ObsidianBlock
fc net/minecraft/block/PumpkinBlock
a type
fd net/minecraft/world/World
A lightingUpdatesScheduled
a scheduledUpdatesAreImmediate
b loadedEntityList
B multiplayerWorld
C lightingToUpdate
c loadedTileEntityList
d playerEntities
D unloadedEntityList
E scheduledTickTreeSet
e weatherEffects
F scheduledTickSet
f skylightSubtracted
I lockTimestamp
i prevRainingStrength
J allPlayersSleeping
j rainingStrength
K collidingBoundingBoxes
k prevThunderingStrength
l thunderingStrength
M lightingUpdatesCounter
N spawnHostileMobs
o editingBlocks
O spawnPeacefulMobs
p autosavePeriod
P positionsToUpdate
q difficultySetting
Q soundCounter
r random
s isNewWorld
t worldProvider
u worldAccesses
v chunkProvider
w saveHandler
x worldInfo
y findingSpawnPoint
a (DDDD)Lgs; getClosestPlayer
a (DDDLjava/lang/String;FF)V playSoundEffect
a (F)I calculateSkylightSubtracted
a (IIIIII[B)V setChunkData
a (IIIIII)Z checkChunksExist
a (IIIII)Z setBlockAndMetadata
a (IIIIZI)Z canBlockBePlacedAt
a (IIILow;)V setBlockTileEntity
a (II)I getFirstUncoveredBlock
a (IIIZ)I getBlockLightValue0
a (J)V setWorldTime
a (Lbr;)V setSpawnPoint
a (Lbt;Lbt;)Lvf; rayTraceBlocks
a (Lbt;Lbt;Z)Lvf; rayTraceBlocks0
a (Leb;IIIIII)V scheduleLightingUpdate
a (Leb;IIIIIIZ)V scheduleLightingUpdate0
a (Leb;III)I getSavedLightValue
a (Leb;IIII)V neighborLightPropagationChanged
a (Leq;Lln;Lsn;)Z handleMaterialAcceleration
a (Leq;Lln;)Z isMaterialInBB
a (Leq;)Z checkIfAABBIsClear
a (Lgs;IIII)V onBlockHit
a (Lgs;)V spawnPlayerWithLoadedChunks
a (Ljava/lang/Class;Leq;)Ljava/util/List; getEntitiesWithinAABB
a (Ljava/lang/Class;Ljava/lang/String;)Lhm; loadItemData
a (Ljava/lang/String;DDDDDD)V spawnParticle
a (Ljava/lang/String;III)V playRecord
a (Ljava/lang/String;)Lgs; getPlayerEntityByName
a (Ljava/lang/String;Lhm;)V setItemData
a (Lpm;)V addWorldAccess
a (Lsn;DDDF)Lqx; createExplosion
a (Lsn;DDDFZ)Lqx; newExplosion
a (Lsn;D)Lgs; getClosestPlayerToEntity
a (Lsn;IIIF)Ldh; getEntityPathToXYZ
a (Lsn;Leq;)Ljava/util/List; getCollidingBoundingBoxes
a (Lsn;Ljava/lang/String;FF)V playSoundAtEntity
a (Lsn;Lsn;F)Ldh; getPathToEntity
a (Lsn;)Z addWeatherEffect
a (Lsn;Z)V updateEntityWithOptionalForce
a (Lyb;)V saveWorldIndirectly
a (ZLyb;)V saveWorld
A ()Z isAllPlayersFullyAsleep
a (Z)Z tickUpdates
a (ZZ)V setAllowedMobSpawns
b (F)F getCelestialAngle
b (IIIIII)V markBlocksDirty
b (IIIII)Z setBlockAndMetadataWithNotify
b (IIII)Z doChunksNearChunkExist
b (II)Llm; getChunkFromBlockCoords
b ()Lcl; getChunkProvider
b (Leb;IIII)V setLightValue
b (Leq;Lln;)Z isAABBInMaterial
b (Leq;)Z getIsAnyLiquid
b (Ljava/lang/Class;)I countEntities
b (Ljava/lang/String;)I getUniqueDataId
b (Lpm;)V removeWorldAccess
b (Lsn;Leq;)Ljava/util/List; getEntitiesWithinAABBExcludingEntity
b (Lsn;)Z entityJoinedWorld
c (IIIII)V scheduleBlockUpdate
c (IIII)Z setBlock
c (II)Llm; getChunkFromChunkCoords
c (Leq;)Z isBoundingBoxBurning
c (Lsn;)V obtainEntitySkin
c ()V getInitialSpawnLocation
d (F)Lbt; getFogColor
d (IIIII)V playNoteAt
d (IIII)V setBlockMetadataWithNotify
d (II)I getHeightValue
d (III)Z isAirBlock
d (Lsn;)V releaseEntitySkin
D ()V saveLevel
d ()V setSpawnLocation
e (F)F getStarBrightness
e (IIII)Z setBlockMetadata
e (II)I findTopSolidBlock
e (Lsn;)V setEntityDead
e ()V doNothing
f (IIII)Z setBlockWithNotify
f (II)Z chunkExists
f (Lsn;)V updateEntity
F ()V stopPrecipitation
f ()Z isDaytime
g (IIII)V notifyBlockChange
g (Lsn;)V joinEntityInSurroundings
g ()V updateEntities
h (IIII)V markBlocksDirtyVertical
i (IIII)V notifyBlocksOfNeighborChange
i (III)Z blockExists
j (IIII)Z isBlockProvidingPowerTo
j (III)V markBlockNeedsUpdate
j ()Z updatingLighting
k (IIII)Z isBlockIndirectlyProvidingPowerTo
k (III)V markBlockAsNeedsUpdate
k ()V calculateInitialSkylight
l (IIII)V notifyBlockOfNeighborChange
l (III)Z canBlockSeeTheSky
l ()V tick
m (III)I getFullBlockLightValue
m ()V updateWeather
n (III)I getBlockLightValue
n ()V updateBlocksAndPlayCaveSounds
o (III)Z canExistingBlockSeeTheSky
o ()Ljava/util/List; getLoadedEntityList
p (III)V removeBlockTileEntity
q (III)V randomDisplayUpdates
q ()V sendQuittingDisconnectingPacket
r (III)Z isBlockGettingPowered
r ()V checkSessionLock
s (III)Z isBlockIndirectlyGettingPowered
s ()J getRandomSeed
t (III)Z canBlockBeRainedOn
t ()J getWorldTime
u ()Lbr; getSpawnPoint
v ()V updateEntityList
w ()Lcl; getIChunkProvider
x ()Lei; getWorldInfo
y ()V updateAllPlayersSleepingFlag
z ()V wakeUpAllPlayers
fe net/minecraft/client/render/BoatRenderer
a boatModel
ff net/minecraft/entity/IEntity
fg net/minecraft/client/particle/LavaParticle
fh net/minecraft/client/render/model/BipedModel
a bipedHead
b bipedHeadwear
c bipedBody
d bipedRightArm
e bipedLeftArm
f bipedRightLeg
g bipedLeftLeg
h bipedEars
i bipedCloak
l isSneak
a (F)V renderEars
b (F)V renderCloak
fi net/minecraft/block/CraftingTableBlock
fj net/minecraft/client/gui/CreateWorldGui
i textboxWorldName
j textboxSeed
l folderName
m createClicked
a (Lnl;Ljava/lang/String;)Ljava/lang/String; generateFolderName
fk net/minecraft/block/GlassBlock
fl net/minecraft/world/generator/MineableWorldGenerator
a blockId
b blockAmount
fm net/minecraft/world/SaveHandler
a logger
b saveDirectory
c playersDirectory
e NOW
a ()Ljava/io/File; getSaveDirectory
f net/minecraft/json/JsonStringNodeBuilder
fn net/minecraft/network/packet/DoorUpdatePacket
fo net/minecraft/block/JukeboxBlock
f (Lfd;IIII)V ejectRecord
fp net/minecraft/client/chat/ChatAllowedCharacters
a ALLOWED_CHARACTERS
b SPECIAL_CHARACTERS
a ()Ljava/lang/String; getAllowedCharacters
# synthetic class
fq net/minecraft/client/settings/OptionsMappingHelper
a optionMappings
fr net/minecraft/entity/SkeletonEntity
a defaultHeldItem
fs net/minecraft/world/generator/DesertBiomeGenerator
ft net/minecraft/client/gui/TexturePackGui
a guiScreen
j fileLocation
l guiTexturePackSlot
fu net/minecraft/client/gui/MainMenuGui
a random
i updateCounter
j splashText
l multiplayerButton
fv net/minecraft/world/generator/BaseMapGenerator
b random
fw net/minecraft/entity/pathfinding/Pathfinder
a worldMap
b path
c pointMap
d pathOptions
a (III)Ld; openPoint
a (Ld;Ld;)Ldh; createEntityPath
a (Lsn;DDDF)Ldh; createEntityPathTo
a (Lsn;IIIF)Ldh; createEntityPathTo
a (Lsn;IIILd;I)Ld; getSafePoint
a (Lsn;IIILd;)I getVerticalOffset
a (Lsn;Ld;Ld;Ld;F)Ldh; addToPath
a (Lsn;Lsn;F)Ldh; createEntityPathTo
b (Lsn;Ld;Ld;Ld;F)I findPathOptions
fx net/minecraft/world/generator/CactusWorldGenerator
fy net/minecraft/client/gui/MojangLogoCanvas
a logo
fz net/minecraft/entity/BoatEntity
a boatCurrentDamage
b boatTimeSinceHit
c boatRockDirection
ga net/minecraft/client/gui/SlotStatsBlockGui
gb net/minecraft/entity/CreeperEntity
a timeSinceIgnited
b lastActiveTime
a_ (F)F setCreeperFlashTime
e (I)V setCreeperState
s ()Z isPowered
v ()I getCreeperState
gc net/minecraft/client/gui/ChatGui
a message
i updates
gd net/minecraft/world/generator/GlowstoneGenerator1
ge net/minecraft/client/render/GLAllocation
a displayLists
b textureNames
a (I)I generateDisplayLists
a ()V deleteTexturesAndDisplayLists
gf net/minecraft/item/ItemStatsSorter
gg net/minecraft/client/gui/DownloadTerrainGui
a netHandler
i updates
gh net/minecraft/client/gui/MultiplayerSleepGui
gi net/minecraft/entity/WolfEntity
a looksWithInterest
f isWolfShaking
h timeWolfIsShaking
i prevTimeWolfIsShaking
a (FF)F getShakeAngle
A ()Ljava/lang/String; getWolfOwner
a (Ljava/lang/String;)V setWolfOwner
a (Z)V showHeartsOrSmokeFX
b_ (F)F getShadingWhileShaking
B ()Z isWolfSitting
b (Z)V setWolfSitting
c (F)F getInterestedAngle
c (Lsn;F)V getPathOrWalkableBlock
C ()Z isWolfAngry
c (Z)V setWolfAngry
D ()Z isWolfTamed
d (Z)V setWolfTamed
v ()Z getWolfShaking
z ()F setTailRotation
gj net/minecraft/network/packet/EntityVelocityPacket
a entityId
b motionX
c motionY
d motionZ
gk net/minecraft/block/SandBlock
a fallInstantly
c_ (Lfd;III)Z canFallBelow
h (Lfd;III)V tryToFall
gl net/minecraft/client/particle/FootstepParticle
gm net/minecraft/item/Item
aa CHAIN_BOOTS
aA REDSTONE
ab IRON_HELMET
aB SNOWBALL
aC BOAT
ac IRON_CHESTPLATE
aD LEATH
ad IRON_LEGGINGS
ae IRON_BOOTS
aE MILK_BUCKET
aF BRICK
af DIAMOND_HELMET
aG CLAY
ag DIAMOND_CHESTPLATE
ah DIAMOND_LEGGINGS
aH SUGARCANE
ai DIAMOND_BOOTS
aI PAPER
aJ BOOK
aj GOLD_HELMET
ak GOLD_CHESTPLATE
aK SLIME_BALL
al GOLD_LEGGINGS
aL CHEST_MINECART
am GOLD_BOOTS
aM POWERED_RAILS
A DIAMOND_AXE
a maxDamage
aN EGG
an FLINT
aO COMPASS
ao RAW_PORKCHOP
aP FISHING_ROD
ap COOKED_PORKCHOP
aq PAINTING
aQ CLOCK
ar GOLDEN_APPLE
aR GLOWSTONE_DUST
aS RAW_FISH
as SIGN
at WOODEN_DOOR
aT COOKED_FISH
au BUCKET
aU DYE
aV BONE
av WATER_BUCKET
aw LAVA_BUCKET
aW SUGAR
aX CAKE
ax MINECART
aY BED
ay SADDLE
az IRON_DOOR
aZ REDSTONE_REPEATER
ba COOKIE
bb MAP
bc SHEARS
bd RECORD_13
be RECORD_CAT
bf shiftedIndex
bg maxStackSize
bh iconIndex
bi isFull3D
bj hasSubtypes
bk containerItem
bl name
b random
B STICK
C EMPTY_BOWL
c ITEMS_LIST
D SOUP_BOWL
d IRON_SHOVEL
e IRON_PICKAXE
E GOLD_SWORD
f IRON_AXE
F GOLD_SHOVEL
g FLINT_AND_STEEL
G GOLD_PICKAXE
h APPLE
H GOLD_AXE
i BOX
I STRING
j ARROW
J FEATHER
k COAL
K GUN_POWDER
l DIAMOND
L WOODEN_HOE
M STONE_HOE
m IRON_INGOT
N IRON_HOE
n GOLD_INGOT
O DIAMOND_HOE
o IRON_SWORD
P GOLD_HOE
p WOODEN_SWORD
Q SEEDS
q WOODEN_SHOVEL
r WOODEN_PICKAXE