forked from pclewis/mcpatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
good.log
7966 lines (7938 loc) · 404 KB
/
good.log
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
MCPatcher version is 2.4.4_01
OS: Linux 3.6.7-4.fc16.x86_64 amd64
JVM: Sun Microsystems Inc. 1.6.0_37 (64 bit)
Classpath: out/artifacts/mcpatcher/mcpatcher.jar
Minecraft version is 1.4.5 (md5 b15e2b2b6b4629f0d99a95b6b44412a0)
Analyzing /home/prupe/.minecraft/bin/minecraft-1.4.5.jar (1920 files)
GameSettings matches asl.class
GLAllocation matches arp.class
createDirectByteBuffer matches c (I)Ljava/nio/ByteBuffer;
Minecraft matches net/minecraft/client/Minecraft.class
Minecraft matches net/minecraft/client/Minecraft.class
runGameLoop matches J ()V
startGame matches a ()V
Minecraft matches net/minecraft/client/Minecraft.class
runGameLoop matches J ()V
startGame matches a ()V
Minecraft matches net/minecraft/client/Minecraft.class
runGameLoop matches J ()V
startGame matches a ()V
Minecraft matches net/minecraft/client/Minecraft.class
Minecraft matches net/minecraft/client/Minecraft.class
runGameLoop matches J ()V
Minecraft matches net/minecraft/client/Minecraft.class
Minecraft matches net/minecraft/client/Minecraft.class
Minecraft matches net/minecraft/client/Minecraft.class
TexturePackList matches bec.class
updateAvailableTexturePacks matches c ()V
TexturePackList matches bec.class
updateAvailableTexturePacks matches c ()V
TexturePackDefault matches bdy.class
TexturePackDefault matches bdy.class
TexturePackBase matches bdx.class
getInputStream matches a (Ljava/lang/String;)Ljava/io/InputStream;
TexturePackBase matches bdx.class
getInputStream matches a (Ljava/lang/String;)Ljava/io/InputStream;
TexturePackFolder matches bea.class
getInputStream matches a (Ljava/lang/String;)Ljava/io/InputStream;
TexturePackFolder matches bea.class
getInputStream matches a (Ljava/lang/String;)Ljava/io/InputStream;
TexturePackCustom matches bdz.class
getInputStream matches a (Ljava/lang/String;)Ljava/io/InputStream;
TexturePackCustom matches bdz.class
getInputStream matches a (Ljava/lang/String;)Ljava/io/InputStream;
FontRenderer matches atj.class
<init> matches <init> (Lasl;Ljava/lang/String;Lbap;Z)V
FontRenderer matches atj.class
renderString matches b (Ljava/lang/String;IIIZ)I
WorldServerMP matches ayh.class
EntityDropParticleFX matches ayu.class
onUpdate matches j_ ()V
EntityFX matches aze.class
EntityRainFX matches azs.class
EntityBubbleFX matches ayr.class
EntitySplashFX matches azn.class
EntityAuraFX matches azp.class
EntitySuspendFX matches azo.class
WorldServer matches azf.class
WorldServer matches azf.class
EntityPortalFX matches azi.class
EntityReddustFX matches azj.class
ItemRenderer matches baj.class
ItemRenderer matches baj.class
renderItem matches a (Lmd;Lum;I)V
RenderBlocks matches baq.class
renderStandardBlockWithAmbientOcclusion matches a (Lamj;IIIFFF)Z
renderStandardBlockWithColorMultiplier matches c (Lamj;IIIFFF)Z
RenderBlocks matches baq.class
renderBlockRedstoneWire matches i (Lamj;III)Z
renderBlockFallingSand matches a (Lamj;Lxv;IIII)V
renderBlockFluids matches p (Lamj;III)Z
RenderBlocks matches baq.class
renderBlockPane matches a (Lami;III)Z
renderStandardBlock matches q (Lamj;III)Z
RenderBlocks matches baq.class
renderStandardBlockWithAmbientOcclusion matches a (Lamj;IIIFFF)Z
EntityRenderer matches bac.class
updateFogColor matches i (F)V
updateLightmap matches h (F)V
getNightVisionStrength1 matches a (Lqx;F)F
EntityRenderer matches bac.class
disableLightmap matches a (D)V
renderWorld matches a (FJ)V
enableLightmap matches b (D)V
renderRainSnow matches d (F)V
Tessellator matches bao.class
draw matches a ()I
addVertexWithUV matches a (DDDDD)V
startDrawingQuads matches b ()V
addVertex matches a (DDD)V
startDrawing matches b (I)V
setTextureUV matches a (DD)V
Tessellator matches bao.class
draw matches a ()I
addVertexWithUV matches a (DDDDD)V
reset matches d ()V
startDrawingQuads matches b ()V
addVertex matches a (DDD)V
startDrawing matches b (I)V
setTextureUV matches a (DD)V
RenderEngine matches bap.class
deleteTexture matches a (I)V
RenderEngine matches bap.class
deleteTexture matches a (I)V
RenderEngine matches bap.class
deleteTexture matches a (I)V
updateDynamicTextures matches a ()V
refreshTextures matches b ()V
RenderEngine matches bap.class
RenderEngine matches bap.class
RenderGlobal matches bak.class
renderSky matches a (F)V
renderClouds matches b (F)V
RenderGlobal matches bak.class
renderSky matches a (F)V
RenderGlobal matches bak.class
sortAndRender matches a (Lmd;ID)I
loadRenderers matches a ()V
renderAllRenderLists matches a (ID)V
WorldRenderer matches azy.class
updateRenderer matches a ()V
WorldRenderer matches azy.class
updateRenderer matches a ()V
TileEntitySignRenderer matches bdi.class
renderTileSignEntityAt matches a (Lann;DDDF)V
Render matches bbk.class
RenderLiving matches bby.class
doRenderLiving matches a (Lmd;DDDFF)V
RenderEnderman matches bbi.class
RenderSnowman matches bci.class
doRenderLiving matches a (Lmd;DDDFF)V
renderEquippedItems1 matches a (Lpg;F)V
RenderMooshroom matches bbz.class
doRenderLiving matches a (Lmd;DDDFF)V
loadTexture matches a (Ljava/lang/String;)V
renderEquippedItems1 matches a (Lpb;F)V
RenderWolf matches bcr.class
RenderXPOrb matches bbl.class
render matches a (Llz;DDDFF)V
RenderSpider matches bcj.class
Compass matches bcu.class
TextureFX matches bcv.class
onTick matches a ()V
FlowLava matches bcx.class
onTick matches a ()V
FlowWater matches bda.class
onTick matches a ()V
Portal matches bcz.class
onTick matches a ()V
StillWater matches bdb.class
onTick matches a ()V
Watch matches bct.class
onTick matches a ()V
StillLava matches bcy.class
onTick matches a ()V
Fire matches bcw.class
onTick matches a ()V
NBTTagCompound matches bq.class
Potion matches ll.class
setPotionName matches b (Ljava/lang/String;)Lll;
Entity matches lq.class
setPositionAndRotation matches a (DDDFF)V
Entity matches lq.class
setPositionAndRotation matches a (DDDFF)V
EntityList matches lv.class
EntityLiving matches md.class
setPositionAndRotation matches a (DDDFF)V
EntityLiving matches md.class
setPositionAndRotation matches a (DDDFF)V
EntitySheep matches pe.class
ItemArmor matches st.class
ItemDye matches tw.class
Item matches uk.class
getColorFromDamage matches a (Lum;I)I
ItemSpawnerEgg matches ur.class
getItemNameIS matches j (Lum;)Ljava/lang/String;
getColorFromDamage matches a (Lum;I)I
ItemBlock matches vl.class
getColorFromDamage matches a (Lum;I)I
PotionHelper matches vs.class
RecipesDyedArmor matches vz.class
ColorizerFoliage matches xr.class
World matches xv.class
getSkyColor matches a (Llq;F)Laob;
getSunAngle matches b (F)F
World matches xv.class
getRainStrength matches j (F)F
IBlockAccess matches yf.class
IBlockAccess matches yf.class
IBlockAccess matches yf.class
IBlockAccess matches yf.class
BiomeGenBase matches yr.class
getTemperaturef matches j ()F
getRainfallf matches i ()F
setBiomeName matches a (Ljava/lang/String;)Lyr;
WorldChunkManager matches yw.class
BiomeGenSwamp matches zj.class
getTemperaturef matches j ()F
getRainfallf matches i ()F
setBiomeName matches a (Ljava/lang/String;)Lyr;
WorldProvider matches aaj.class
getFogColor matches b (FF)Laob;
WorldProviderHell matches aak.class
getFogColor matches b (FF)Laob;
WorldProviderEnd matches aam.class
getFogColor matches b (FF)Laob;
MapColor matches agd.class
BlockCauldron matches ajc.class
colorMultiplier matches b (Lyf;III)I
BlockGrass matches akc.class
getBlockTexture matches d (Lyf;IIII)I
BlockLeaves matches akm.class
colorMultiplier matches b (Lyf;III)I
BlockFluid matches akq.class
colorMultiplier matches b (Lyf;III)I
BlockMycelium matches akz.class
getBlockTexture matches d (Lyf;IIII)I
BlockRedstoneWire matches alo.class
randomDisplayTick matches a (Lxv;IIILjava/util/Random;)V
colorMultiplier matches b (Lyf;III)I
BlockStem matches amb.class
getRenderColor matches g_ (I)I
Block matches amj.class
Block matches amj.class
colorMultiplier matches b (Lyf;III)I
getRenderColor matches g_ (I)I
Block matches amj.class
<init> matches <init> (ILagb;)V
getBlockTextureFromSideAndMetadata matches a (II)I
getBlockTexture matches d (Lyf;IIII)I
Block matches amj.class
shouldSideBeRendered matches a (Lyf;IIII)Z
getRenderBlockPass matches n ()I
BlockLilyPad matches amy.class
Analyzing /home/prupe/.minecraft/bin/minecraft-1.4.5.jar (5 dependent classes)
ITexturePack matches beb.class (pass 2)
ITexturePack matches beb.class (pass 2)
ColorizerWater matches yp.class (pass 2)
loadColorBuffer matches a ([I)V
ColorizerGrass matches xu.class (pass 2)
loadColorBuffer matches a ([I)V
ColorizerFoliage matches xr.class (pass 2)
loadColorBuffer matches a ([I)V
Analyzing /home/prupe/.minecraft/bin/minecraft-1.4.5.jar (methods and fields)
Minecraft (net/minecraft/client/Minecraft.class)
Minecraft (net/minecraft/client/Minecraft.class)
field texturePackList matches C Lbec;
field renderEngine matches o Lbap;
RenderEngine (bap.class)
TexturePackList (bec.class)
method setTexturePack matches a (Lbeb;)Z
field selectedTexturePack matches g Lbeb;
field defaultTexturePack matches a Lbeb;
ITexturePack (beb.class)
method getInputStream matches a (Ljava/lang/String;)Ljava/io/InputStream;
TexturePackBase (bdx.class)
field file matches a Ljava/io/File;
field texturePackFileName matches e Ljava/lang/String;
TexturePackDefault (bdy.class)
TexturePackCustom (bdz.class)
field zipFile matches e Ljava/util/zip/ZipFile;
TexturePackFolder (bea.class)
Minecraft (net/minecraft/client/Minecraft.class)
field texturePackList matches C Lbec;
field renderEngine matches o Lbap;
RenderEngine (bap.class)
TexturePackList (bec.class)
method setTexturePack matches a (Lbeb;)Z
field selectedTexturePack matches g Lbeb;
field defaultTexturePack matches a Lbeb;
ITexturePack (beb.class)
method getInputStream matches a (Ljava/lang/String;)Ljava/io/InputStream;
TexturePackBase (bdx.class)
field file matches a Ljava/io/File;
field texturePackFileName matches e Ljava/lang/String;
TexturePackDefault (bdy.class)
TexturePackCustom (bdz.class)
field zipFile matches e Ljava/util/zip/ZipFile;
TexturePackFolder (bea.class)
RenderEngine (bap.class)
field imageData matches g Ljava/nio/ByteBuffer;
field textureList matches h Ljava/util/List;
field clampTexture matches a Z
field blurTexture matches b Z
method registerTextureFX matches a (Lbcv;)V
method readTextureImage matches a (Ljava/io/InputStream;)Ljava/awt/image/BufferedImage;
method setupTexture matches a (Ljava/awt/image/BufferedImage;I)V
method getTexture matches b (Ljava/lang/String;)I
method getImageRGB matches a (Ljava/awt/image/BufferedImage;[I)[I
method readTextureImageData matches a (Ljava/lang/String;)[I
method allocateAndSetupTexture matches a (Ljava/awt/image/BufferedImage;)I
method updateDynamicTexture matches a (Lbcv;I)I
TextureFX (bcv.class)
field imageData matches d [B
field tileNumber matches e I
field tileSize matches h I
field tileImage matches i I
method bindImage matches a (Lbap;)V
Compass (bcu.class)
field currentAngle matches a D
field targetAngle matches b D
Fire (bcw.class)
StillLava (bcy.class)
FlowLava (bcx.class)
StillWater (bdb.class)
FlowWater (bda.class)
ItemRenderer (baj.class)
Watch (bct.class)
Portal (bcz.class)
Minecraft (net/minecraft/client/Minecraft.class)
field renderEngine matches o Lbap;
GLAllocation (arp.class)
ColorizerWater (yp.class)
field colorBuffer matches a [I
ColorizerGrass (xu.class)
field colorBuffer matches a [I
ColorizerFoliage (xr.class)
field colorBuffer matches a [I
Minecraft (net/minecraft/client/Minecraft.class)
field fontRenderer matches p Latj;
field alternateFontRenderer matches q Latj;
field renderEngine matches o Lbap;
field gameSettings matches y Lasl;
FontRenderer (atj.class)
method getStringWidth matches a (Ljava/lang/String;)I
method getCharWidth matches a (C)I
RenderEngine (bap.class)
GameSettings (asl.class)
Block (amj.class)
field blockID matches cm I
field blocksList matches p [Lamj;
method getBlockTexture matches d (Lyf;IIII)I
BlockGrass (akc.class)
BlockMycelium (akz.class)
IBlockAccess (yf.class)
method getBlockId matches a (III)I
method getBlockMetadata matches h (III)I
method getBlockMaterial matches g (III)Lagb;
RenderBlocks (baq.class)
field blockAccess matches a Lyf;
RenderLiving (bby.class)
RenderSpider (bcj.class)
RenderEnderman (bbi.class)
Entity (lq.class)
field entityId matches k I
field nextEntityID matches b I
EntityLiving (md.class)
method getEntityTexture matches O ()Ljava/lang/String;
method writeToNBT matches b (Lbq;)V
method readFromNBT matches a (Lbq;)V
NBTTagCompound (bq.class)
method getLong matches f (Ljava/lang/String;)J
method setLong matches a (Ljava/lang/String;J)V
method getInteger matches e (Ljava/lang/String;)I
method setInteger matches a (Ljava/lang/String;I)V
Tessellator (bao.class)
field instance matches a Lbao;
Render (bbk.class)
method loadTexture matches a (Ljava/lang/String;)V
RenderSnowman (bci.class)
RenderMooshroom (bbz.class)
Minecraft (net/minecraft/client/Minecraft.class)
field worldServer matches i Lazf;
IBlockAccess (yf.class)
method getBlockId matches a (III)I
method getBlockMetadata matches h (III)I
method getBiomeGenAt matches a (II)Lyr;
Block (amj.class)
field blockID matches cm I
field blocksList matches p [Lamj;
BiomeGenBase (yr.class)
method getGrassColor matches k ()I
method getFoliageColor matches l ()I
field color matches z I
BiomeGenSwamp (zj.class)
BlockFluid (akq.class)
BlockCauldron (ajc.class)
Item (uk.class)
ItemBlock (vl.class)
field blockID matches a I
ItemRenderer (baj.class)
Potion (ll.class)
PotionHelper (vs.class)
ColorizerFoliage (xr.class)
BlockLeaves (akm.class)
World (xv.class)
method getWorldChunkManager matches t ()Lyw;
WorldServer (azf.class)
field world matches a Lxv;
WorldProvider (aaj.class)
WorldProviderHell (aak.class)
WorldProviderEnd (aam.class)
WorldChunkManager (yw.class)
method getBiomeGenAt matches a (II)Lyr;
Entity (lq.class)
field worldObj matches p Lxv;
EntityFX (aze.class)
EntityRainFX (azs.class)
EntityDropParticleFX (ayu.class)
EntitySplashFX (azn.class)
EntityBubbleFX (ayr.class)
EntitySuspendFX (azo.class)
EntityPortalFX (azi.class)
EntityAuraFX (azp.class)
EntityLiving (md.class)
EntityRenderer (bac.class)
BlockLilyPad (amy.class)
BlockRedstoneWire (alo.class)
RenderBlocks (baq.class)
method renderBlockCauldron matches a (Lajc;III)Z
EntityReddustFX (azj.class)
RenderGlobal (bak.class)
BlockStem (amb.class)
MapColor (agd.class)
field mapColorArray matches a [Lagd;
field colorValue matches p I
field colorIndex matches q I
ItemDye (tw.class)
field dyeColorNames matches a [Ljava/lang/String;
field dyeColors matches b [I
EntitySheep (pe.class)
field fleeceColorTable matches d [[F
ItemArmor (st.class)
RenderWolf (bcr.class)
RecipesDyedArmor (vz.class)
EntityList (lv.class)
method addMapping matches a (Ljava/lang/Class;Ljava/lang/String;III)V
ItemSpawnerEgg (ur.class)
FontRenderer (atj.class)
TileEntitySignRenderer (bdi.class)
RenderXPOrb (bbl.class)
Minecraft (net/minecraft/client/Minecraft.class)
field renderEngine matches o Lbap;
RenderEngine (bap.class)
method getTexture matches b (Ljava/lang/String;)I
method allocateAndSetupTexture matches a (Ljava/awt/image/BufferedImage;)I
IBlockAccess (yf.class)
method getBlockId matches a (III)I
method getBlockMetadata matches h (III)I
Block (amj.class)
field blockID matches cm I
field blocksList matches p [Lamj;
field blockMaterial matches cB Lagb;
Tessellator (bao.class)
field instance matches a Lbao;
field instance matches a Lbao;
RenderBlocks (baq.class)
field blockAccess matches a Lyf;
method renderBottomFace matches a (Lamj;DDDI)V
method renderTopFace matches b (Lamj;DDDI)V
method renderNorthFace matches c (Lamj;DDDI)V
method renderSouthFace matches d (Lamj;DDDI)V
method renderWestFace matches e (Lamj;DDDI)V
method renderEastFace matches f (Lamj;DDDI)V
method drawCrossedSquares matches a (Lamj;IDDDF)V
WorldRenderer (azy.class)
Minecraft (net/minecraft/client/Minecraft.class)
field worldServer matches i Lazf;
World (xv.class)
method getWorldTime matches G ()J
WorldServerMP (ayh.class)
WorldServer (azf.class)
field world matches a Lxv;
RenderGlobal (bak.class)
Minecraft (net/minecraft/client/Minecraft.class)
Block (amj.class)
field blockID matches cm I
field blocksList matches p [Lamj;
IBlockAccess (yf.class)
method getBlockId matches a (III)I
method getBlockMetadata matches h (III)I
WorldRenderer (azy.class)
field skipRenderPass matches m [Z
EntityRenderer (bac.class)
RenderGlobal (bak.class)
RenderBlocks (baq.class)
8 available mods:
[YES] __Base 1.0 - Internal mod required by the patcher.
[YES] __TexturePackBase 1.1 - Internal mod required by the patcher.
[YES] HD Textures 1.5 - Provides support for high-resolution texture packs and custom animations.
[YES] HD Font 1.4 - Provides support for higher resolution fonts.
[YES] Better Grass 1.1 - Improves the look of the sides of grass blocks. Inspired by MrMessiah's mod.
[YES] Random Mobs 1.4 - Randomize mob skins if texture pack supports it. Based on Balthichou's mod.
[YES] Custom Colors 1.4 - Gives texture packs control over hardcoded colors in the game.
[YES] Connected Textures 1.5 - Connects adjacent blocks of the same type.
[YES] Better Skies 1.1 - Adds support for custom skyboxes.
[YES] Better Glass 1.9 - Enables partial transparency for glass blocks.
#### Class map:
__Base
class Minecraft (net/minecraft/client/Minecraft.class)
class net.minecraft.client.Minecraft alias for Minecraft
__TexturePackBase
class ITexturePack (beb.class)
method getInputStream -> a (Ljava/lang/String;)Ljava/io/InputStream;
class Minecraft (net/minecraft/client/Minecraft.class)
method runGameLoop -> J ()V
method startGame -> a ()V
field renderEngine -> o Lbap;
field texturePackList -> C Lbec;
class RenderEngine (bap.class)
method deleteTexture -> a (I)V
class TexturePackBase (bdx.class) implements ITexturePack
method getInputStream -> a (Ljava/lang/String;)Ljava/io/InputStream;
field file -> a Ljava/io/File;
field texturePackFileName -> e Ljava/lang/String;
class TexturePackCustom (bdz.class) extends TexturePackBase
method getInputStream -> a (Ljava/lang/String;)Ljava/io/InputStream;
field file -> a Ljava/io/File;
field texturePackFileName -> e Ljava/lang/String;
field zipFile -> e Ljava/util/zip/ZipFile;
class TexturePackDefault (bdy.class) extends TexturePackBase
method getInputStream -> a (Ljava/lang/String;)Ljava/io/InputStream;
field file -> a Ljava/io/File;
field texturePackFileName -> e Ljava/lang/String;
class TexturePackFolder (bea.class) extends TexturePackBase
method getInputStream -> a (Ljava/lang/String;)Ljava/io/InputStream;
field file -> a Ljava/io/File;
field texturePackFileName -> e Ljava/lang/String;
class TexturePackList (bec.class)
method setTexturePack -> a (Lbeb;)Z
method updateAvailableTexturePacks -> c ()V
field defaultTexturePack -> a Lbeb;
field selectedTexturePack -> g Lbeb;
class net.minecraft.client.Minecraft alias for Minecraft
class net.minecraft.src.ITexturePack alias for ITexturePack
class net.minecraft.src.RenderEngine alias for RenderEngine
class net.minecraft.src.TexturePackBase alias for TexturePackBase
class net.minecraft.src.TexturePackCustom alias for TexturePackCustom
class net.minecraft.src.TexturePackDefault alias for TexturePackDefault
class net.minecraft.src.TexturePackFolder alias for TexturePackFolder
class net.minecraft.src.TexturePackList alias for TexturePackList
HD Textures
class ColorizerFoliage (xr.class)
method loadColorBuffer -> a ([I)V
field colorBuffer -> a [I
class ColorizerGrass (xu.class)
method loadColorBuffer -> a ([I)V
field colorBuffer -> a [I
class ColorizerWater (yp.class)
method loadColorBuffer -> a ([I)V
field colorBuffer -> a [I
class Compass (bcu.class) extends TextureFX
method bindImage -> a (Lbap;)V
method onTick -> a ()V
field currentAngle -> a D
field imageData -> d [B
field targetAngle -> b D
field tileImage -> i I
field tileNumber -> e I
field tileSize -> h I
class Fire (bcw.class) extends TextureFX
method bindImage -> a (Lbap;)V
method onTick -> a ()V
field imageData -> d [B
field tileImage -> i I
field tileNumber -> e I
field tileSize -> h I
class FlowLava (bcx.class) extends TextureFX
method bindImage -> a (Lbap;)V
method onTick -> a ()V
field imageData -> d [B
field tileImage -> i I
field tileNumber -> e I
field tileSize -> h I
class FlowWater (bda.class) extends TextureFX
method bindImage -> a (Lbap;)V
method onTick -> a ()V
field imageData -> d [B
field tileImage -> i I
field tileNumber -> e I
field tileSize -> h I
class GLAllocation (arp.class)
method createDirectByteBuffer -> c (I)Ljava/nio/ByteBuffer;
class ITexturePack (beb.class)
method getInputStream -> a (Ljava/lang/String;)Ljava/io/InputStream;
class ItemRenderer (baj.class)
class Minecraft (net/minecraft/client/Minecraft.class)
method runGameLoop -> J ()V
method startGame -> a ()V
field renderEngine -> o Lbap;
field texturePackList -> C Lbec;
class Portal (bcz.class) extends TextureFX
method bindImage -> a (Lbap;)V
method onTick -> a ()V
field imageData -> d [B
field tileImage -> i I
field tileNumber -> e I
field tileSize -> h I
class RenderEngine (bap.class)
method allocateAndSetupTexture -> a (Ljava/awt/image/BufferedImage;)I
method deleteTexture -> a (I)V
method getImageRGB -> a (Ljava/awt/image/BufferedImage;[I)[I
method getTexture -> b (Ljava/lang/String;)I
method readTextureImage -> a (Ljava/io/InputStream;)Ljava/awt/image/BufferedImage;
method readTextureImageData -> a (Ljava/lang/String;)[I
method refreshTextures -> b ()V
method registerTextureFX -> a (Lbcv;)V
method setupTexture -> a (Ljava/awt/image/BufferedImage;I)V
method updateDynamicTexture -> a (Lbcv;I)I
method updateDynamicTextures -> a ()V
field blurTexture -> b Z
field clampTexture -> a Z
field imageData -> g Ljava/nio/ByteBuffer;
field textureList -> h Ljava/util/List;
class StillLava (bcy.class) extends TextureFX
method bindImage -> a (Lbap;)V
method onTick -> a ()V
field imageData -> d [B
field tileImage -> i I
field tileNumber -> e I
field tileSize -> h I
class StillWater (bdb.class) extends TextureFX
method bindImage -> a (Lbap;)V
method onTick -> a ()V
field imageData -> d [B
field tileImage -> i I
field tileNumber -> e I
field tileSize -> h I
class TextureFX (bcv.class)
method bindImage -> a (Lbap;)V
method onTick -> a ()V
field imageData -> d [B
field tileImage -> i I
field tileNumber -> e I
field tileSize -> h I
class TexturePackBase (bdx.class) implements ITexturePack
method getInputStream -> a (Ljava/lang/String;)Ljava/io/InputStream;
field file -> a Ljava/io/File;
field texturePackFileName -> e Ljava/lang/String;
class TexturePackCustom (bdz.class) extends TexturePackBase
method getInputStream -> a (Ljava/lang/String;)Ljava/io/InputStream;
field file -> a Ljava/io/File;
field texturePackFileName -> e Ljava/lang/String;
field zipFile -> e Ljava/util/zip/ZipFile;
class TexturePackDefault (bdy.class) extends TexturePackBase
method getInputStream -> a (Ljava/lang/String;)Ljava/io/InputStream;
field file -> a Ljava/io/File;
field texturePackFileName -> e Ljava/lang/String;
class TexturePackFolder (bea.class) extends TexturePackBase
method getInputStream -> a (Ljava/lang/String;)Ljava/io/InputStream;
field file -> a Ljava/io/File;
field texturePackFileName -> e Ljava/lang/String;
class TexturePackList (bec.class)
method setTexturePack -> a (Lbeb;)Z
method updateAvailableTexturePacks -> c ()V
field defaultTexturePack -> a Lbeb;
field selectedTexturePack -> g Lbeb;
class Watch (bct.class) extends TextureFX
method bindImage -> a (Lbap;)V
method onTick -> a ()V
field imageData -> d [B
field tileImage -> i I
field tileNumber -> e I
field tileSize -> h I
class net.minecraft.client.Minecraft alias for Minecraft
class net.minecraft.src.ColorizerFoliage alias for ColorizerFoliage
class net.minecraft.src.ColorizerGrass alias for ColorizerGrass
class net.minecraft.src.ColorizerWater alias for ColorizerWater
class net.minecraft.src.Compass alias for Compass
class net.minecraft.src.Fire alias for Fire
class net.minecraft.src.FlowLava alias for FlowLava
class net.minecraft.src.FlowWater alias for FlowWater
class net.minecraft.src.GLAllocation alias for GLAllocation
class net.minecraft.src.ITexturePack alias for ITexturePack
class net.minecraft.src.ItemRenderer alias for ItemRenderer
class net.minecraft.src.Portal alias for Portal
class net.minecraft.src.RenderEngine alias for RenderEngine
class net.minecraft.src.StillLava alias for StillLava
class net.minecraft.src.StillWater alias for StillWater
class net.minecraft.src.TextureFX alias for TextureFX
class net.minecraft.src.TexturePackBase alias for TexturePackBase
class net.minecraft.src.TexturePackCustom alias for TexturePackCustom
class net.minecraft.src.TexturePackDefault alias for TexturePackDefault
class net.minecraft.src.TexturePackFolder alias for TexturePackFolder
class net.minecraft.src.TexturePackList alias for TexturePackList
class net.minecraft.src.Watch alias for Watch
HD Font
class FontRenderer (atj.class)
method <init> -> <init> (Lasl;Ljava/lang/String;Lbap;Z)V
method getCharWidth -> a (C)I
method getStringWidth -> a (Ljava/lang/String;)I
field FONT_HEIGHT -> b I
field charWidth -> d [I
field fontTextureName -> a I
field isUnicode -> l Z
class GameSettings (asl.class)
class Minecraft (net/minecraft/client/Minecraft.class)
field alternateFontRenderer -> q Latj;
field fontRenderer -> p Latj;
field gameSettings -> y Lasl;
field renderEngine -> o Lbap;
class RenderEngine (bap.class)
class net.minecraft.client.Minecraft alias for Minecraft
class net.minecraft.src.FontRenderer alias for FontRenderer
class net.minecraft.src.GameSettings alias for GameSettings
class net.minecraft.src.RenderEngine alias for RenderEngine
Better Grass
class Block (amj.class)
method getBlockTexture -> d (Lyf;IIII)I
field blockID -> cm I
field blocksList -> p [Lamj;
class BlockGrass (akc.class)
method getBlockTexture -> d (Lyf;IIII)I
class BlockMycelium (akz.class)
method getBlockTexture -> d (Lyf;IIII)I
class IBlockAccess (yf.class)
method getBlockId -> a (III)I
method getBlockMaterial -> g (III)Lagb;
method getBlockMetadata -> h (III)I
class Material (agb.class)
field builtSnow -> x Lagb;
field snow -> w Lagb;
class RenderBlocks (baq.class)
method renderStandardBlockWithAmbientOcclusion -> a (Lamj;IIIFFF)Z
method renderStandardBlockWithColorMultiplier -> c (Lamj;IIIFFF)Z
field blockAccess -> a Lyf;
class net.minecraft.src.Block alias for Block
class net.minecraft.src.BlockGrass alias for BlockGrass
class net.minecraft.src.BlockMycelium alias for BlockMycelium
class net.minecraft.src.IBlockAccess alias for IBlockAccess
class net.minecraft.src.Material alias for Material
class net.minecraft.src.RenderBlocks alias for RenderBlocks
Random Mobs
class Block (amj.class)
field mushroomRed -> aj Laix;
class BlockFlower (aix.class)
class Entity (lq.class)
method setPositionAndRotation -> a (DDDFF)V
field entityId -> k I
field nextEntityID -> b I
field posX -> t D
field posY -> u D
field posZ -> v D
field prevPosX -> q D
field prevPosY -> r D
field prevPosZ -> s D
class EntityLiving (md.class) extends Entity
method getEntityTexture -> O ()Ljava/lang/String;
method readFromNBT -> a (Lbq;)V
method setPositionAndRotation -> a (DDDFF)V
method writeToNBT -> b (Lbq;)V
field entityId -> k I
field nextEntityID -> b I
field posX -> t D
field posY -> u D
field posZ -> v D
field prevPosX -> q D
field prevPosY -> r D
field prevPosZ -> s D
class EntityMooshroom (pb.class)
class EntitySnowman (pg.class)
class NBTTagCompound (bq.class)
method getInteger -> e (Ljava/lang/String;)I
method getLong -> f (Ljava/lang/String;)J
method setInteger -> a (Ljava/lang/String;I)V
method setLong -> a (Ljava/lang/String;J)V
class Render (bbk.class)
method loadTexture -> a (Ljava/lang/String;)V
class RenderBlocks (baq.class)
method renderBlockAsItem -> a (Lamj;IF)V
class RenderEnderman (bbi.class)
class RenderLiving (bby.class) extends Render
method doRenderLiving -> a (Lmd;DDDFF)V
method loadTexture -> a (Ljava/lang/String;)V
class RenderMooshroom (bbz.class) extends RenderLiving
method doRenderLiving -> a (Lmd;DDDFF)V
method loadTexture -> a (Ljava/lang/String;)V
method renderEquippedItems1 -> a (Lpb;F)V
field renderBlocks -> c Lbaq;
class RenderSnowman (bci.class) extends RenderLiving
method doRenderLiving -> a (Lmd;DDDFF)V
method loadTexture -> a (Ljava/lang/String;)V
method renderEquippedItems1 -> a (Lpg;F)V
class RenderSpider (bcj.class)
class Tessellator (bao.class)
method addVertex -> a (DDD)V
method addVertexWithUV -> a (DDDDD)V
method draw -> a ()I
method setTextureUV -> a (DD)V
method startDrawing -> b (I)V
method startDrawingQuads -> b ()V
field instance -> a Lbao;
class net.minecraft.src.Block alias for Block
class net.minecraft.src.BlockFlower alias for BlockFlower
class net.minecraft.src.Entity alias for Entity
class net.minecraft.src.EntityLiving alias for EntityLiving
class net.minecraft.src.EntityMooshroom alias for EntityMooshroom
class net.minecraft.src.EntitySnowman alias for EntitySnowman
class net.minecraft.src.NBTTagCompound alias for NBTTagCompound
class net.minecraft.src.Render alias for Render
class net.minecraft.src.RenderBlocks alias for RenderBlocks
class net.minecraft.src.RenderEnderman alias for RenderEnderman
class net.minecraft.src.RenderLiving alias for RenderLiving
class net.minecraft.src.RenderMooshroom alias for RenderMooshroom
class net.minecraft.src.RenderSnowman alias for RenderSnowman
class net.minecraft.src.RenderSpider alias for RenderSpider
class net.minecraft.src.Tessellator alias for Tessellator
Custom Colors
class BiomeGenBase (yr.class)
method getFoliageColor -> l ()I
method getGrassColor -> k ()I
method getRainfallf -> i ()F
method getTemperaturef -> j ()F
method setBiomeName -> a (Ljava/lang/String;)Lyr;
field biomeID -> N I
field biomeName -> y Ljava/lang/String;
field color -> z I
field rainfall -> G F
field temperature -> F F
field waterColorMultiplier -> H I
class BiomeGenSwamp (zj.class) extends BiomeGenBase
method getFoliageColor -> l ()I
method getGrassColor -> k ()I
method getRainfallf -> i ()F
method getTemperaturef -> j ()F
method setBiomeName -> a (Ljava/lang/String;)Lyr;
field biomeID -> N I
field biomeName -> y Ljava/lang/String;
field color -> z I
field rainfall -> G F
field temperature -> F F
field waterColorMultiplier -> H I
class Block (amj.class)
method colorMultiplier -> b (Lyf;III)I
method getRenderColor -> g_ (I)I
field blockID -> cm I
field blocksList -> p [Lamj;
class BlockCauldron (ajc.class) extends Block
method colorMultiplier -> b (Lyf;III)I
method getRenderColor -> g_ (I)I
field blockID -> cm I
field blocksList -> p [Lamj;
class BlockFluid (akq.class)
method colorMultiplier -> b (Lyf;III)I
class BlockLeaves (akm.class)
method colorMultiplier -> b (Lyf;III)I
class BlockLilyPad (amy.class)
class BlockRedstoneWire (alo.class) extends Block
method colorMultiplier -> b (Lyf;III)I
method getRenderColor -> g_ (I)I
method randomDisplayTick -> a (Lxv;IIILjava/util/Random;)V
field blockID -> cm I
field blocksList -> p [Lamj;
class BlockStem (amb.class)
method getRenderColor -> g_ (I)I
class ColorizerFoliage (xr.class)
method getFoliageColorBirch -> b ()I
method getFoliageColorPine -> a ()I
class Entity (lq.class)
method setPositionAndRotation -> a (DDDFF)V
field posX -> t D
field posY -> u D
field posZ -> v D
field prevPosX -> q D
field prevPosY -> r D
field prevPosZ -> s D
field worldObj -> p Lxv;
class EntityAuraFX (azp.class) extends EntityFX
method setPositionAndRotation -> a (DDDFF)V
field particleBlue -> j F
field particleGreen -> i F
field particleRed -> h F
field posX -> t D
field posY -> u D
field posZ -> v D
field prevPosX -> q D
field prevPosY -> r D
field prevPosZ -> s D
field worldObj -> p Lxv;
class EntityBubbleFX (ayr.class) extends EntityFX
method setPositionAndRotation -> a (DDDFF)V
field particleBlue -> j F
field particleGreen -> i F
field particleRed -> h F
field posX -> t D
field posY -> u D
field posZ -> v D
field prevPosX -> q D
field prevPosY -> r D
field prevPosZ -> s D
field worldObj -> p Lxv;
class EntityClientPlayerMP (ayk.class)
method isPotionActive -> a (Lll;)Z
class EntityDropParticleFX (ayu.class) extends EntityFX
method onUpdate -> j_ ()V
method setPositionAndRotation -> a (DDDFF)V
field particleBlue -> j F
field particleGreen -> i F
field particleRed -> h F
field posX -> t D
field posY -> u D
field posZ -> v D
field prevPosX -> q D
field prevPosY -> r D
field prevPosZ -> s D
field timer -> aw I
field worldObj -> p Lxv;
class EntityFX (aze.class) extends Entity
method setPositionAndRotation -> a (DDDFF)V
field particleBlue -> j F
field particleGreen -> i F
field particleRed -> h F
field posX -> t D
field posY -> u D
field posZ -> v D
field prevPosX -> q D
field prevPosY -> r D
field prevPosZ -> s D
field worldObj -> p Lxv;
class EntityList (lv.class)
method addMapping -> a (Ljava/lang/Class;Ljava/lang/String;III)V
method getEntityString -> b (I)Ljava/lang/String;
class EntityLiving (md.class) extends Entity
method setPositionAndRotation -> a (DDDFF)V
field posX -> t D
field posY -> u D
field posZ -> v D
field prevPosX -> q D
field prevPosY -> r D
field prevPosZ -> s D
field worldObj -> p Lxv;
class EntityPlayer (qx.class)
class EntityPortalFX (azi.class) extends EntityFX
method setPositionAndRotation -> a (DDDFF)V
field particleBlue -> j F
field particleGreen -> i F
field particleRed -> h F
field posX -> t D
field posY -> u D
field posZ -> v D
field prevPosX -> q D
field prevPosY -> r D
field prevPosZ -> s D
field worldObj -> p Lxv;
class EntityRainFX (azs.class) extends EntityFX
method setPositionAndRotation -> a (DDDFF)V
field particleBlue -> j F
field particleGreen -> i F
field particleRed -> h F
field posX -> t D
field posY -> u D
field posZ -> v D
field prevPosX -> q D
field prevPosY -> r D
field prevPosZ -> s D
field worldObj -> p Lxv;
class EntityReddustFX (azj.class)
class EntityRenderer (bac.class)
method getNightVisionStrength1 -> a (Lqx;F)F
method updateFogColor -> i (F)V
method updateLightmap -> h (F)V
field fogColorBlue -> p F
field fogColorGreen -> o F
field fogColorRed -> n F
field lightmapColors -> Q [I
field lightmapTexture -> d I
field mc -> r Lnet/minecraft/client/Minecraft;
field torchFlickerX -> e F
class EntitySheep (pe.class)
field fleeceColorTable -> d [[F
class EntitySplashFX (azn.class) extends EntityRainFX
method setPositionAndRotation -> a (DDDFF)V
field particleBlue -> j F
field particleGreen -> i F
field particleRed -> h F
field posX -> t D
field posY -> u D
field posZ -> v D
field prevPosX -> q D
field prevPosY -> r D
field prevPosZ -> s D
field worldObj -> p Lxv;
class EntitySuspendFX (azo.class) extends EntityFX
method setPositionAndRotation -> a (DDDFF)V
field particleBlue -> j F
field particleGreen -> i F
field particleRed -> h F
field posX -> t D
field posY -> u D
field posZ -> v D
field prevPosX -> q D
field prevPosY -> r D
field prevPosZ -> s D
field worldObj -> p Lxv;
class EntityXPOrb (lz.class)
class FontRenderer (atj.class)
method renderString -> b (Ljava/lang/String;IIIZ)I
field charWidth -> d [I
field colorCode -> g [I
field fontTextureName -> a I