blob: 3e0bbce88eb03eb2bd9caee10fc0cd59aad60669 (
plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
|
// class version 50.0 (50)
// access flags 0x421
public abstract class net/minecraft/client/gui/inventory/GuiContainer extends net/minecraft/client/gui/GuiScreen {
// compiled from: GuiContainer.java
@Lcpw/mods/fml/relauncher/SideOnly;(value=Lcpw/mods/fml/relauncher/Side;.CLIENT)
// access flags 0x1C
protected final static Lnet/minecraft/util/ResourceLocation; field_147001_a
// access flags 0x4
protected I xSize
// access flags 0x4
protected I ySize
// access flags 0x1
public Lnet/minecraft/inventory/Container; inventorySlots
// access flags 0x4
protected I guiLeft
// access flags 0x4
protected I guiTop
// access flags 0x2
private Lnet/minecraft/inventory/Slot; theSlot
// access flags 0x2
private Lnet/minecraft/inventory/Slot; clickedSlot
// access flags 0x2
private Z isRightMouseClick
// access flags 0x2
private Lnet/minecraft/item/ItemStack; draggedStack
// access flags 0x2
private I field_147011_y
// access flags 0x2
private I field_147010_z
// access flags 0x2
private Lnet/minecraft/inventory/Slot; returningStackDestSlot
// access flags 0x2
private J returningStackTime
// access flags 0x2
private Lnet/minecraft/item/ItemStack; returningStack
// access flags 0x2
private Lnet/minecraft/inventory/Slot; field_146985_D
// access flags 0x2
private J field_146986_E
// access flags 0x14
protected final Ljava/util/Set; field_147008_s
// access flags 0x4
protected Z field_147007_t
// access flags 0x2
private I field_146987_F
// access flags 0x2
private I field_146988_G
// access flags 0x2
private Z field_146995_H
// access flags 0x2
private I field_146996_I
// access flags 0x2
private J field_146997_J
// access flags 0x2
private Lnet/minecraft/inventory/Slot; field_146998_K
// access flags 0x2
private I field_146992_L
// access flags 0x2
private Z field_146993_M
// access flags 0x2
private Lnet/minecraft/item/ItemStack; field_146994_N
// access flags 0x1A
private final static Ljava/lang/String; __OBFID = "CL_00000737"
// access flags 0x1
public Lcodechicken/nei/guihook/GuiContainerManager; manager
// access flags 0x1
public <init>(Lnet/minecraft/inventory/Container;)V
L0
LINENUMBER 69 L0
ALOAD 0
INVOKESPECIAL net/minecraft/client/gui/GuiScreen.<init> ()V
L1
LINENUMBER 31 L1
ALOAD 0
SIPUSH 176
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.xSize : I
L2
LINENUMBER 33 L2
ALOAD 0
SIPUSH 166
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.ySize : I
L3
LINENUMBER 55 L3
ALOAD 0
NEW java/util/HashSet
DUP
INVOKESPECIAL java/util/HashSet.<init> ()V
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147008_s : Ljava/util/Set;
L4
LINENUMBER 70 L4
ALOAD 0
ALOAD 1
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.inventorySlots : Lnet/minecraft/inventory/Container;
L5
LINENUMBER 71 L5
ALOAD 0
ICONST_1
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146995_H : Z
L6
LINENUMBER 72 L6
RETURN
L7
LOCALVARIABLE this Lnet/minecraft/client/gui/inventory/GuiContainer; L0 L7 0
LOCALVARIABLE p_i1072_1_ Lnet/minecraft/inventory/Container; L0 L7 1
MAXSTACK = 3
MAXLOCALS = 2
// access flags 0x1
public initGui()V
L0
LINENUMBER 79 L0
ALOAD 0
INVOKESPECIAL net/minecraft/client/gui/GuiScreen.initGui ()V
L1
LINENUMBER 80 L1
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
GETFIELD net/minecraft/client/Minecraft.thePlayer : Lnet/minecraft/client/entity/EntityClientPlayerMP;
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.inventorySlots : Lnet/minecraft/inventory/Container;
PUTFIELD net/minecraft/client/entity/EntityClientPlayerMP.openContainer : Lnet/minecraft/inventory/Container;
L2
LINENUMBER 81 L2
ALOAD 0
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.width : I
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.xSize : I
ISUB
ICONST_2
IDIV
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.guiLeft : I
L3
LINENUMBER 82 L3
ALOAD 0
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.height : I
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.ySize : I
ISUB
ICONST_2
IDIV
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.guiTop : I
L4
LINENUMBER 83 L4
RETURN
L5
LOCALVARIABLE this Lnet/minecraft/client/gui/inventory/GuiContainer; L0 L5 0
MAXSTACK = 3
MAXLOCALS = 1
// access flags 0x1
public drawScreen(IIF)V
L0
LINENUMBER 189 L0
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.manager : Lcodechicken/nei/guihook/GuiContainerManager;
INVOKEVIRTUAL codechicken/nei/guihook/GuiContainerManager.preDraw ()V
L1
LINENUMBER 90 L1
ALOAD 0
INVOKEVIRTUAL net/minecraft/client/gui/inventory/GuiContainer.drawDefaultBackground ()V
L2
LINENUMBER 91 L2
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.guiLeft : I
ISTORE 4
L3
LINENUMBER 92 L3
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.guiTop : I
ISTORE 5
L4
LINENUMBER 93 L4
ALOAD 0
FLOAD 3
ILOAD 1
ILOAD 2
INVOKEVIRTUAL net/minecraft/client/gui/inventory/GuiContainer.drawGuiContainerBackgroundLayer (FII)V
L5
LINENUMBER 94 L5
LDC 32826
INVOKESTATIC org/lwjgl/opengl/GL11.glDisable (I)V
L6
LINENUMBER 95 L6
INVOKESTATIC net/minecraft/client/renderer/RenderHelper.disableStandardItemLighting ()V
L7
LINENUMBER 96 L7
SIPUSH 2896
INVOKESTATIC org/lwjgl/opengl/GL11.glDisable (I)V
L8
LINENUMBER 97 L8
SIPUSH 2929
INVOKESTATIC org/lwjgl/opengl/GL11.glDisable (I)V
L9
LINENUMBER 98 L9
ALOAD 0
ILOAD 1
ILOAD 2
FLOAD 3
INVOKESPECIAL net/minecraft/client/gui/GuiScreen.drawScreen (IIF)V
L10
LINENUMBER 99 L10
INVOKESTATIC net/minecraft/client/renderer/RenderHelper.enableGUIStandardItemLighting ()V
L11
LINENUMBER 100 L11
INVOKESTATIC org/lwjgl/opengl/GL11.glPushMatrix ()V
L12
LINENUMBER 101 L12
ILOAD 4
I2F
ILOAD 5
I2F
FCONST_0
INVOKESTATIC org/lwjgl/opengl/GL11.glTranslatef (FFF)V
L13
LINENUMBER 102 L13
FCONST_1
FCONST_1
FCONST_1
FCONST_1
INVOKESTATIC org/lwjgl/opengl/GL11.glColor4f (FFFF)V
L14
LINENUMBER 103 L14
LDC 32826
INVOKESTATIC org/lwjgl/opengl/GL11.glEnable (I)V
L15
LINENUMBER 104 L15
ALOAD 0
ACONST_NULL
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.theSlot : Lnet/minecraft/inventory/Slot;
L16
LINENUMBER 105 L16
SIPUSH 240
ISTORE 6
L17
LINENUMBER 106 L17
SIPUSH 240
ISTORE 7
L18
LINENUMBER 107 L18
GETSTATIC net/minecraft/client/renderer/OpenGlHelper.lightmapTexUnit : I
ILOAD 6
I2F
FCONST_1
FDIV
ILOAD 7
I2F
FCONST_1
FDIV
INVOKESTATIC net/minecraft/client/renderer/OpenGlHelper.setLightmapTextureCoords (IFF)V
L19
LINENUMBER 108 L19
FCONST_1
FCONST_1
FCONST_1
FCONST_1
INVOKESTATIC org/lwjgl/opengl/GL11.glColor4f (FFFF)V
L20
LINENUMBER 111 L20
ICONST_0
ISTORE 8
L21
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I F I I I I I] []
ILOAD 8
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.inventorySlots : Lnet/minecraft/inventory/Container;
GETFIELD net/minecraft/inventory/Container.inventorySlots : Ljava/util/List;
INVOKEINTERFACE java/util/List.size ()I
IF_ICMPGE L22
L23
LINENUMBER 113 L23
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.inventorySlots : Lnet/minecraft/inventory/Container;
GETFIELD net/minecraft/inventory/Container.inventorySlots : Ljava/util/List;
ILOAD 8
INVOKEINTERFACE java/util/List.get (I)Ljava/lang/Object;
CHECKCAST net/minecraft/inventory/Slot
ASTORE 9
L24
LINENUMBER 114 L24
ALOAD 0
ALOAD 9
INVOKESPECIAL net/minecraft/client/gui/inventory/GuiContainer.func_146977_a (Lnet/minecraft/inventory/Slot;)V
L25
LINENUMBER 116 L25
ALOAD 0
ALOAD 9
ILOAD 1
ILOAD 2
INVOKESPECIAL net/minecraft/client/gui/inventory/GuiContainer.isMouseOverSlot (Lnet/minecraft/inventory/Slot;II)Z
IFEQ L26
ALOAD 9
INVOKEVIRTUAL net/minecraft/inventory/Slot.func_111238_b ()Z
IFEQ L26
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.manager : Lcodechicken/nei/guihook/GuiContainerManager;
ILOAD 1
ILOAD 2
INVOKEVIRTUAL codechicken/nei/guihook/GuiContainerManager.objectUnderMouse (II)Z
IFNE L26
L27
LINENUMBER 118 L27
ALOAD 0
ALOAD 9
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.theSlot : Lnet/minecraft/inventory/Slot;
L28
LINENUMBER 119 L28
SIPUSH 2896
INVOKESTATIC org/lwjgl/opengl/GL11.glDisable (I)V
L29
LINENUMBER 120 L29
SIPUSH 2929
INVOKESTATIC org/lwjgl/opengl/GL11.glDisable (I)V
L30
LINENUMBER 121 L30
ALOAD 9
GETFIELD net/minecraft/inventory/Slot.xDisplayPosition : I
ISTORE 10
L31
LINENUMBER 122 L31
ALOAD 9
GETFIELD net/minecraft/inventory/Slot.yDisplayPosition : I
ISTORE 11
L32
LINENUMBER 123 L32
ICONST_1
ICONST_1
ICONST_1
ICONST_0
INVOKESTATIC org/lwjgl/opengl/GL11.glColorMask (ZZZZ)V
L33
LINENUMBER 124 L33
ALOAD 0
ILOAD 10
ILOAD 11
ILOAD 10
BIPUSH 16
IADD
ILOAD 11
BIPUSH 16
IADD
LDC -2130706433
LDC -2130706433
INVOKEVIRTUAL net/minecraft/client/gui/inventory/GuiContainer.drawGradientRect (IIIIII)V
L34
LINENUMBER 125 L34
ICONST_1
ICONST_1
ICONST_1
ICONST_1
INVOKESTATIC org/lwjgl/opengl/GL11.glColorMask (ZZZZ)V
L35
LINENUMBER 126 L35
SIPUSH 2896
INVOKESTATIC org/lwjgl/opengl/GL11.glEnable (I)V
L36
LINENUMBER 127 L36
SIPUSH 2929
INVOKESTATIC org/lwjgl/opengl/GL11.glEnable (I)V
L26
LINENUMBER 111 L26
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I F I I I I I net/minecraft/inventory/Slot] []
IINC 8 1
GOTO L21
L22
LINENUMBER 133 L22
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I F I I I I I] []
SIPUSH 2896
INVOKESTATIC org/lwjgl/opengl/GL11.glDisable (I)V
L37
LINENUMBER 134 L37
ALOAD 0
ILOAD 1
ILOAD 2
INVOKEVIRTUAL net/minecraft/client/gui/inventory/GuiContainer.drawGuiContainerForegroundLayer (II)V
L38
LINENUMBER 135 L38
SIPUSH 2896
INVOKESTATIC org/lwjgl/opengl/GL11.glEnable (I)V
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.manager : Lcodechicken/nei/guihook/GuiContainerManager;
ILOAD 1
ILOAD 2
INVOKEVIRTUAL codechicken/nei/guihook/GuiContainerManager.renderObjects (II)V
L39
LINENUMBER 136 L39
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
GETFIELD net/minecraft/client/Minecraft.thePlayer : Lnet/minecraft/client/entity/EntityClientPlayerMP;
GETFIELD net/minecraft/client/entity/EntityClientPlayerMP.inventory : Lnet/minecraft/entity/player/InventoryPlayer;
ASTORE 8
L40
LINENUMBER 137 L40
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.draggedStack : Lnet/minecraft/item/ItemStack;
IFNONNULL L41
ALOAD 8
INVOKEVIRTUAL net/minecraft/entity/player/InventoryPlayer.getItemStack ()Lnet/minecraft/item/ItemStack;
GOTO L42
L41
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I F I I I I net/minecraft/entity/player/InventoryPlayer] []
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.draggedStack : Lnet/minecraft/item/ItemStack;
L42
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I F I I I I net/minecraft/entity/player/InventoryPlayer] [net/minecraft/item/ItemStack]
ASTORE 9
L43
LINENUMBER 139 L43
ALOAD 9
IFNULL L44
L45
LINENUMBER 141 L45
BIPUSH 8
ISTORE 10
L46
LINENUMBER 142 L46
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.draggedStack : Lnet/minecraft/item/ItemStack;
IFNONNULL L47
BIPUSH 8
GOTO L48
L47
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I F I I I I net/minecraft/entity/player/InventoryPlayer net/minecraft/item/ItemStack I] []
BIPUSH 16
L48
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I F I I I I net/minecraft/entity/player/InventoryPlayer net/minecraft/item/ItemStack I] [I]
ISTORE 11
L49
LINENUMBER 143 L49
ACONST_NULL
ASTORE 12
L50
LINENUMBER 145 L50
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.draggedStack : Lnet/minecraft/item/ItemStack;
IFNULL L51
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.isRightMouseClick : Z
IFEQ L51
L52
LINENUMBER 147 L52
ALOAD 9
INVOKEVIRTUAL net/minecraft/item/ItemStack.copy ()Lnet/minecraft/item/ItemStack;
ASTORE 9
L53
LINENUMBER 148 L53
ALOAD 9
ALOAD 9
GETFIELD net/minecraft/item/ItemStack.stackSize : I
I2F
FCONST_2
FDIV
INVOKESTATIC net/minecraft/util/MathHelper.ceiling_float_int (F)I
PUTFIELD net/minecraft/item/ItemStack.stackSize : I
GOTO L54
L51
LINENUMBER 150 L51
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I F I I I I net/minecraft/entity/player/InventoryPlayer net/minecraft/item/ItemStack I I N] []
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147007_t : Z
IFEQ L54
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147008_s : Ljava/util/Set;
INVOKEINTERFACE java/util/Set.size ()I
ICONST_1
IF_ICMPLE L54
L55
LINENUMBER 152 L55
ALOAD 9
INVOKEVIRTUAL net/minecraft/item/ItemStack.copy ()Lnet/minecraft/item/ItemStack;
ASTORE 9
L56
LINENUMBER 153 L56
ALOAD 9
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146996_I : I
PUTFIELD net/minecraft/item/ItemStack.stackSize : I
L57
LINENUMBER 155 L57
ALOAD 9
GETFIELD net/minecraft/item/ItemStack.stackSize : I
IFNE L54
L58
LINENUMBER 157 L58
NEW java/lang/StringBuilder
DUP
INVOKESPECIAL java/lang/StringBuilder.<init> ()V
LDC ""
INVOKEVIRTUAL java/lang/StringBuilder.append (Ljava/lang/String;)Ljava/lang/StringBuilder;
GETSTATIC net/minecraft/util/EnumChatFormatting.YELLOW : Lnet/minecraft/util/EnumChatFormatting;
INVOKEVIRTUAL java/lang/StringBuilder.append (Ljava/lang/Object;)Ljava/lang/StringBuilder;
LDC "0"
INVOKEVIRTUAL java/lang/StringBuilder.append (Ljava/lang/String;)Ljava/lang/StringBuilder;
INVOKEVIRTUAL java/lang/StringBuilder.toString ()Ljava/lang/String;
ASTORE 12
L54
LINENUMBER 161 L54
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I F I I I I net/minecraft/entity/player/InventoryPlayer net/minecraft/item/ItemStack I I java/lang/String] []
ALOAD 0
ALOAD 9
ILOAD 1
ILOAD 4
ISUB
ILOAD 10
ISUB
ILOAD 2
ILOAD 5
ISUB
ILOAD 11
ISUB
ALOAD 12
INVOKESPECIAL net/minecraft/client/gui/inventory/GuiContainer.drawItemStack (Lnet/minecraft/item/ItemStack;IILjava/lang/String;)V
L44
LINENUMBER 164 L44
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I F I I I I net/minecraft/entity/player/InventoryPlayer net/minecraft/item/ItemStack] []
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.returningStack : Lnet/minecraft/item/ItemStack;
IFNULL L59
L60
LINENUMBER 166 L60
INVOKESTATIC net/minecraft/client/Minecraft.getSystemTime ()J
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.returningStackTime : J
LSUB
L2F
LDC 100.0
FDIV
FSTORE 10
L61
LINENUMBER 168 L61
FLOAD 10
FCONST_1
FCMPL
IFLT L62
L63
LINENUMBER 170 L63
FCONST_1
FSTORE 10
L64
LINENUMBER 171 L64
ALOAD 0
ACONST_NULL
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.returningStack : Lnet/minecraft/item/ItemStack;
L62
LINENUMBER 174 L62
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I F I I I I net/minecraft/entity/player/InventoryPlayer net/minecraft/item/ItemStack F] []
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.returningStackDestSlot : Lnet/minecraft/inventory/Slot;
GETFIELD net/minecraft/inventory/Slot.xDisplayPosition : I
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147011_y : I
ISUB
ISTORE 11
L65
LINENUMBER 175 L65
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.returningStackDestSlot : Lnet/minecraft/inventory/Slot;
GETFIELD net/minecraft/inventory/Slot.yDisplayPosition : I
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147010_z : I
ISUB
ISTORE 12
L66
LINENUMBER 176 L66
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147011_y : I
ILOAD 11
I2F
FLOAD 10
FMUL
F2I
IADD
ISTORE 13
L67
LINENUMBER 177 L67
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147010_z : I
ILOAD 12
I2F
FLOAD 10
FMUL
F2I
IADD
ISTORE 14
L68
LINENUMBER 178 L68
ALOAD 0
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.returningStack : Lnet/minecraft/item/ItemStack;
ILOAD 13
ILOAD 14
ACONST_NULL
CHECKCAST java/lang/String
INVOKESPECIAL net/minecraft/client/gui/inventory/GuiContainer.drawItemStack (Lnet/minecraft/item/ItemStack;IILjava/lang/String;)V
L59
LINENUMBER 181 L59
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I F I I I I net/minecraft/entity/player/InventoryPlayer net/minecraft/item/ItemStack] []
INVOKESTATIC org/lwjgl/opengl/GL11.glPopMatrix ()V
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.manager : Lcodechicken/nei/guihook/GuiContainerManager;
ILOAD 1
ILOAD 2
INVOKEVIRTUAL codechicken/nei/guihook/GuiContainerManager.renderToolTips (II)V
SIPUSH 2896
INVOKESTATIC org/lwjgl/opengl/GL11.glEnable (I)V
L69
LINENUMBER 190 L69
SIPUSH 2929
INVOKESTATIC org/lwjgl/opengl/GL11.glEnable (I)V
L70
LINENUMBER 191 L70
INVOKESTATIC net/minecraft/client/renderer/RenderHelper.enableStandardItemLighting ()V
L71
LINENUMBER 192 L71
RETURN
L72
LOCALVARIABLE j1 I L31 L26 10
LOCALVARIABLE k1 I L32 L26 11
LOCALVARIABLE slot Lnet/minecraft/inventory/Slot; L24 L26 9
LOCALVARIABLE i1 I L21 L22 8
LOCALVARIABLE b0 B L46 L44 10
LOCALVARIABLE s Ljava/lang/String; L50 L44 12
LOCALVARIABLE k1 I L49 L44 11
LOCALVARIABLE f1 F L61 L59 10
LOCALVARIABLE j2 I L66 L59 12
LOCALVARIABLE l1 I L67 L59 13
LOCALVARIABLE i2 I L68 L59 14
LOCALVARIABLE k1 I L65 L59 11
LOCALVARIABLE itemstack1 Lnet/minecraft/item/ItemStack; L0 L0 10
LOCALVARIABLE this Lnet/minecraft/client/gui/inventory/GuiContainer; L1 L72 0
LOCALVARIABLE p_73863_1_ I L1 L72 1
LOCALVARIABLE p_73863_2_ I L1 L72 2
LOCALVARIABLE p_73863_3_ F L1 L72 3
LOCALVARIABLE k I L3 L72 4
LOCALVARIABLE l I L4 L72 5
LOCALVARIABLE short1 S L17 L72 6
LOCALVARIABLE short2 S L18 L72 7
LOCALVARIABLE inventoryplayer Lnet/minecraft/entity/player/InventoryPlayer; L40 L72 8
LOCALVARIABLE itemstack Lnet/minecraft/item/ItemStack; L43 L72 9
MAXSTACK = 7
MAXLOCALS = 15
// access flags 0x2
private drawItemStack(Lnet/minecraft/item/ItemStack;IILjava/lang/String;)V
L0
LINENUMBER 196 L0
FCONST_0
FCONST_0
LDC 32.0
INVOKESTATIC org/lwjgl/opengl/GL11.glTranslatef (FFF)V
L1
LINENUMBER 197 L1
ALOAD 0
LDC 500.0
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.zLevel : F
L2
LINENUMBER 198 L2
GETSTATIC net/minecraft/client/gui/inventory/GuiContainer.itemRender : Lnet/minecraft/client/renderer/entity/RenderItem;
LDC 500.0
PUTFIELD net/minecraft/client/renderer/entity/RenderItem.zLevel : F
L3
LINENUMBER 199 L3
ACONST_NULL
ASTORE 5
L4
LINENUMBER 200 L4
ALOAD 1
IFNULL L5
ALOAD 1
INVOKEVIRTUAL net/minecraft/item/ItemStack.getItem ()Lnet/minecraft/item/Item;
ALOAD 1
INVOKEVIRTUAL net/minecraft/item/Item.getFontRenderer (Lnet/minecraft/item/ItemStack;)Lnet/minecraft/client/gui/FontRenderer;
ASTORE 5
L5
LINENUMBER 201 L5
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/item/ItemStack I I java/lang/String net/minecraft/client/gui/FontRenderer] []
ALOAD 5
IFNONNULL L6
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.fontRendererObj : Lnet/minecraft/client/gui/FontRenderer;
ASTORE 5
L6
LINENUMBER 202 L6
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/item/ItemStack I I java/lang/String net/minecraft/client/gui/FontRenderer] []
GETSTATIC net/minecraft/client/gui/inventory/GuiContainer.itemRender : Lnet/minecraft/client/renderer/entity/RenderItem;
ALOAD 5
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
INVOKEVIRTUAL net/minecraft/client/Minecraft.getTextureManager ()Lnet/minecraft/client/renderer/texture/TextureManager;
ALOAD 1
ILOAD 2
ILOAD 3
INVOKEVIRTUAL net/minecraft/client/renderer/entity/RenderItem.renderItemAndEffectIntoGUI (Lnet/minecraft/client/gui/FontRenderer;Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/item/ItemStack;II)V
L7
LINENUMBER 203 L7
GETSTATIC net/minecraft/client/gui/inventory/GuiContainer.itemRender : Lnet/minecraft/client/renderer/entity/RenderItem;
ALOAD 5
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
INVOKEVIRTUAL net/minecraft/client/Minecraft.getTextureManager ()Lnet/minecraft/client/renderer/texture/TextureManager;
ALOAD 1
ILOAD 2
ILOAD 3
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.draggedStack : Lnet/minecraft/item/ItemStack;
IFNONNULL L8
ICONST_0
GOTO L9
L8
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/item/ItemStack I I java/lang/String net/minecraft/client/gui/FontRenderer] [net/minecraft/client/renderer/entity/RenderItem net/minecraft/client/gui/FontRenderer net/minecraft/client/renderer/texture/TextureManager net/minecraft/item/ItemStack I I]
BIPUSH 8
L9
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/item/ItemStack I I java/lang/String net/minecraft/client/gui/FontRenderer] [net/minecraft/client/renderer/entity/RenderItem net/minecraft/client/gui/FontRenderer net/minecraft/client/renderer/texture/TextureManager net/minecraft/item/ItemStack I I I]
ISUB
ALOAD 4
INVOKEVIRTUAL net/minecraft/client/renderer/entity/RenderItem.renderItemOverlayIntoGUI (Lnet/minecraft/client/gui/FontRenderer;Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/item/ItemStack;IILjava/lang/String;)V
L10
LINENUMBER 204 L10
ALOAD 0
FCONST_0
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.zLevel : F
L11
LINENUMBER 205 L11
GETSTATIC net/minecraft/client/gui/inventory/GuiContainer.itemRender : Lnet/minecraft/client/renderer/entity/RenderItem;
FCONST_0
PUTFIELD net/minecraft/client/renderer/entity/RenderItem.zLevel : F
L12
LINENUMBER 206 L12
RETURN
L13
LOCALVARIABLE this Lnet/minecraft/client/gui/inventory/GuiContainer; L0 L13 0
LOCALVARIABLE p_146982_1_ Lnet/minecraft/item/ItemStack; L0 L13 1
LOCALVARIABLE p_146982_2_ I L0 L13 2
LOCALVARIABLE p_146982_3_ I L0 L13 3
LOCALVARIABLE p_146982_4_ Ljava/lang/String; L0 L13 4
LOCALVARIABLE font Lnet/minecraft/client/gui/FontRenderer; L4 L13 5
MAXSTACK = 7
MAXLOCALS = 6
// access flags 0x4
protected drawGuiContainerForegroundLayer(II)V
L0
LINENUMBER 211 L0
RETURN
L1
LOCALVARIABLE this Lnet/minecraft/client/gui/inventory/GuiContainer; L0 L1 0
LOCALVARIABLE p_146979_1_ I L0 L1 1
LOCALVARIABLE p_146979_2_ I L0 L1 2
MAXSTACK = 0
MAXLOCALS = 3
// access flags 0x404
protected abstract drawGuiContainerBackgroundLayer(FII)V
// access flags 0x2
private func_146977_a(Lnet/minecraft/inventory/Slot;)V
L0
LINENUMBER 217 L0
ALOAD 1
GETFIELD net/minecraft/inventory/Slot.xDisplayPosition : I
ISTORE 2
L1
LINENUMBER 218 L1
ALOAD 1
GETFIELD net/minecraft/inventory/Slot.yDisplayPosition : I
ISTORE 3
L2
LINENUMBER 219 L2
ALOAD 1
INVOKEVIRTUAL net/minecraft/inventory/Slot.getStack ()Lnet/minecraft/item/ItemStack;
ASTORE 4
L3
LINENUMBER 220 L3
ICONST_0
ISTORE 5
L4
LINENUMBER 221 L4
ALOAD 1
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.clickedSlot : Lnet/minecraft/inventory/Slot;
IF_ACMPNE L5
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.draggedStack : Lnet/minecraft/item/ItemStack;
IFNULL L5
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.isRightMouseClick : Z
IFNE L5
ICONST_1
GOTO L6
L5
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/inventory/Slot I I net/minecraft/item/ItemStack I] []
ICONST_0
L6
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/inventory/Slot I I net/minecraft/item/ItemStack I] [I]
ISTORE 6
L7
LINENUMBER 222 L7
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
GETFIELD net/minecraft/client/Minecraft.thePlayer : Lnet/minecraft/client/entity/EntityClientPlayerMP;
GETFIELD net/minecraft/client/entity/EntityClientPlayerMP.inventory : Lnet/minecraft/entity/player/InventoryPlayer;
INVOKEVIRTUAL net/minecraft/entity/player/InventoryPlayer.getItemStack ()Lnet/minecraft/item/ItemStack;
ASTORE 7
L8
LINENUMBER 223 L8
ACONST_NULL
ASTORE 8
L9
LINENUMBER 225 L9
ALOAD 1
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.clickedSlot : Lnet/minecraft/inventory/Slot;
IF_ACMPNE L10
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.draggedStack : Lnet/minecraft/item/ItemStack;
IFNULL L10
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.isRightMouseClick : Z
IFEQ L10
ALOAD 4
IFNULL L10
L11
LINENUMBER 227 L11
ALOAD 4
INVOKEVIRTUAL net/minecraft/item/ItemStack.copy ()Lnet/minecraft/item/ItemStack;
ASTORE 4
L12
LINENUMBER 228 L12
ALOAD 4
DUP
GETFIELD net/minecraft/item/ItemStack.stackSize : I
ICONST_2
IDIV
PUTFIELD net/minecraft/item/ItemStack.stackSize : I
GOTO L13
L10
LINENUMBER 230 L10
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/inventory/Slot I I net/minecraft/item/ItemStack I I net/minecraft/item/ItemStack N] []
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147007_t : Z
IFEQ L13
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147008_s : Ljava/util/Set;
ALOAD 1
INVOKEINTERFACE java/util/Set.contains (Ljava/lang/Object;)Z
IFEQ L13
ALOAD 7
IFNULL L13
L14
LINENUMBER 232 L14
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147008_s : Ljava/util/Set;
INVOKEINTERFACE java/util/Set.size ()I
ICONST_1
IF_ICMPNE L15
L16
LINENUMBER 234 L16
RETURN
L15
LINENUMBER 237 L15
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/inventory/Slot I I net/minecraft/item/ItemStack I I net/minecraft/item/ItemStack N] []
ALOAD 1
ALOAD 7
ICONST_1
INVOKESTATIC net/minecraft/inventory/Container.func_94527_a (Lnet/minecraft/inventory/Slot;Lnet/minecraft/item/ItemStack;Z)Z
IFEQ L17
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.inventorySlots : Lnet/minecraft/inventory/Container;
ALOAD 1
INVOKEVIRTUAL net/minecraft/inventory/Container.canDragIntoSlot (Lnet/minecraft/inventory/Slot;)Z
IFEQ L17
L18
LINENUMBER 239 L18
ALOAD 7
INVOKEVIRTUAL net/minecraft/item/ItemStack.copy ()Lnet/minecraft/item/ItemStack;
ASTORE 4
L19
LINENUMBER 240 L19
ICONST_1
ISTORE 5
L20
LINENUMBER 241 L20
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147008_s : Ljava/util/Set;
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146987_F : I
ALOAD 4
ALOAD 1
INVOKEVIRTUAL net/minecraft/inventory/Slot.getStack ()Lnet/minecraft/item/ItemStack;
IFNONNULL L21
ICONST_0
GOTO L22
L21
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/inventory/Slot I I net/minecraft/item/ItemStack I I net/minecraft/item/ItemStack N] [java/util/Set I net/minecraft/item/ItemStack]
ALOAD 1
INVOKEVIRTUAL net/minecraft/inventory/Slot.getStack ()Lnet/minecraft/item/ItemStack;
GETFIELD net/minecraft/item/ItemStack.stackSize : I
L22
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/inventory/Slot I I net/minecraft/item/ItemStack I I net/minecraft/item/ItemStack N] [java/util/Set I net/minecraft/item/ItemStack I]
INVOKESTATIC net/minecraft/inventory/Container.func_94525_a (Ljava/util/Set;ILnet/minecraft/item/ItemStack;I)V
L23
LINENUMBER 243 L23
ALOAD 4
GETFIELD net/minecraft/item/ItemStack.stackSize : I
ALOAD 4
INVOKEVIRTUAL net/minecraft/item/ItemStack.getMaxStackSize ()I
IF_ICMPLE L24
L25
LINENUMBER 245 L25
NEW java/lang/StringBuilder
DUP
INVOKESPECIAL java/lang/StringBuilder.<init> ()V
GETSTATIC net/minecraft/util/EnumChatFormatting.YELLOW : Lnet/minecraft/util/EnumChatFormatting;
INVOKEVIRTUAL java/lang/StringBuilder.append (Ljava/lang/Object;)Ljava/lang/StringBuilder;
LDC ""
INVOKEVIRTUAL java/lang/StringBuilder.append (Ljava/lang/String;)Ljava/lang/StringBuilder;
ALOAD 4
INVOKEVIRTUAL net/minecraft/item/ItemStack.getMaxStackSize ()I
INVOKEVIRTUAL java/lang/StringBuilder.append (I)Ljava/lang/StringBuilder;
INVOKEVIRTUAL java/lang/StringBuilder.toString ()Ljava/lang/String;
ASTORE 8
L26
LINENUMBER 246 L26
ALOAD 4
ALOAD 4
INVOKEVIRTUAL net/minecraft/item/ItemStack.getMaxStackSize ()I
PUTFIELD net/minecraft/item/ItemStack.stackSize : I
L24
LINENUMBER 249 L24
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/inventory/Slot I I net/minecraft/item/ItemStack I I net/minecraft/item/ItemStack java/lang/String] []
ALOAD 4
GETFIELD net/minecraft/item/ItemStack.stackSize : I
ALOAD 1
INVOKEVIRTUAL net/minecraft/inventory/Slot.getSlotStackLimit ()I
IF_ICMPLE L13
L27
LINENUMBER 251 L27
NEW java/lang/StringBuilder
DUP
INVOKESPECIAL java/lang/StringBuilder.<init> ()V
GETSTATIC net/minecraft/util/EnumChatFormatting.YELLOW : Lnet/minecraft/util/EnumChatFormatting;
INVOKEVIRTUAL java/lang/StringBuilder.append (Ljava/lang/Object;)Ljava/lang/StringBuilder;
LDC ""
INVOKEVIRTUAL java/lang/StringBuilder.append (Ljava/lang/String;)Ljava/lang/StringBuilder;
ALOAD 1
INVOKEVIRTUAL net/minecraft/inventory/Slot.getSlotStackLimit ()I
INVOKEVIRTUAL java/lang/StringBuilder.append (I)Ljava/lang/StringBuilder;
INVOKEVIRTUAL java/lang/StringBuilder.toString ()Ljava/lang/String;
ASTORE 8
L28
LINENUMBER 252 L28
ALOAD 4
ALOAD 1
INVOKEVIRTUAL net/minecraft/inventory/Slot.getSlotStackLimit ()I
PUTFIELD net/minecraft/item/ItemStack.stackSize : I
GOTO L13
L17
LINENUMBER 257 L17
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/inventory/Slot I I net/minecraft/item/ItemStack I I net/minecraft/item/ItemStack N] []
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147008_s : Ljava/util/Set;
ALOAD 1
INVOKEINTERFACE java/util/Set.remove (Ljava/lang/Object;)Z
POP
L29
LINENUMBER 258 L29
ALOAD 0
INVOKESPECIAL net/minecraft/client/gui/inventory/GuiContainer.func_146980_g ()V
L13
LINENUMBER 262 L13
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/inventory/Slot I I net/minecraft/item/ItemStack I I net/minecraft/item/ItemStack java/lang/String] []
ALOAD 0
LDC 100.0
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.zLevel : F
L30
LINENUMBER 263 L30
GETSTATIC net/minecraft/client/gui/inventory/GuiContainer.itemRender : Lnet/minecraft/client/renderer/entity/RenderItem;
LDC 100.0
PUTFIELD net/minecraft/client/renderer/entity/RenderItem.zLevel : F
L31
LINENUMBER 265 L31
ALOAD 4
IFNONNULL L32
L33
LINENUMBER 267 L33
ALOAD 1
INVOKEVIRTUAL net/minecraft/inventory/Slot.getBackgroundIconIndex ()Lnet/minecraft/util/IIcon;
ASTORE 9
L34
LINENUMBER 269 L34
ALOAD 9
IFNULL L32
L35
LINENUMBER 271 L35
SIPUSH 2896
INVOKESTATIC org/lwjgl/opengl/GL11.glDisable (I)V
L36
LINENUMBER 272 L36
SIPUSH 3042
INVOKESTATIC org/lwjgl/opengl/GL11.glEnable (I)V
L37
LINENUMBER 273 L37
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
INVOKEVIRTUAL net/minecraft/client/Minecraft.getTextureManager ()Lnet/minecraft/client/renderer/texture/TextureManager;
GETSTATIC net/minecraft/client/renderer/texture/TextureMap.locationItemsTexture : Lnet/minecraft/util/ResourceLocation;
INVOKEVIRTUAL net/minecraft/client/renderer/texture/TextureManager.bindTexture (Lnet/minecraft/util/ResourceLocation;)V
L38
LINENUMBER 274 L38
ALOAD 0
ILOAD 2
ILOAD 3
ALOAD 9
BIPUSH 16
BIPUSH 16
INVOKEVIRTUAL net/minecraft/client/gui/inventory/GuiContainer.drawTexturedModelRectFromIcon (IILnet/minecraft/util/IIcon;II)V
L39
LINENUMBER 275 L39
SIPUSH 3042
INVOKESTATIC org/lwjgl/opengl/GL11.glDisable (I)V
L40
LINENUMBER 276 L40
SIPUSH 2896
INVOKESTATIC org/lwjgl/opengl/GL11.glEnable (I)V
L41
LINENUMBER 277 L41
ICONST_1
ISTORE 6
L32
LINENUMBER 281 L32
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/inventory/Slot I I net/minecraft/item/ItemStack I I net/minecraft/item/ItemStack java/lang/String] []
ILOAD 6
IFNE L42
L43
LINENUMBER 283 L43
ILOAD 5
IFEQ L44
L45
LINENUMBER 285 L45
ILOAD 2
ILOAD 3
ILOAD 2
BIPUSH 16
IADD
ILOAD 3
BIPUSH 16
IADD
LDC -2130706433
INVOKESTATIC net/minecraft/client/gui/inventory/GuiContainer.drawRect (IIIII)V
L44
LINENUMBER 288 L44
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/inventory/Slot I I net/minecraft/item/ItemStack I I net/minecraft/item/ItemStack java/lang/String] []
SIPUSH 2929
INVOKESTATIC org/lwjgl/opengl/GL11.glEnable (I)V
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.manager : Lcodechicken/nei/guihook/GuiContainerManager;
ALOAD 1
INVOKEVIRTUAL codechicken/nei/guihook/GuiContainerManager.renderSlotUnderlay (Lnet/minecraft/inventory/Slot;)V
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.manager : Lcodechicken/nei/guihook/GuiContainerManager;
ALOAD 1
ALOAD 4
ILOAD 2
ILOAD 3
ALOAD 8
INVOKEVIRTUAL codechicken/nei/guihook/GuiContainerManager.drawSlotItem (Lnet/minecraft/inventory/Slot;Lnet/minecraft/item/ItemStack;IILjava/lang/String;)V
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.manager : Lcodechicken/nei/guihook/GuiContainerManager;
ALOAD 1
INVOKEVIRTUAL codechicken/nei/guihook/GuiContainerManager.renderSlotOverlay (Lnet/minecraft/inventory/Slot;)V
L42
LINENUMBER 293 L42
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/inventory/Slot I I net/minecraft/item/ItemStack I I net/minecraft/item/ItemStack java/lang/String] []
GETSTATIC net/minecraft/client/gui/inventory/GuiContainer.itemRender : Lnet/minecraft/client/renderer/entity/RenderItem;
FCONST_0
PUTFIELD net/minecraft/client/renderer/entity/RenderItem.zLevel : F
L46
LINENUMBER 294 L46
ALOAD 0
FCONST_0
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.zLevel : F
L47
LINENUMBER 295 L47
RETURN
L48
LOCALVARIABLE iicon Lnet/minecraft/util/IIcon; L34 L32 9
LOCALVARIABLE this Lnet/minecraft/client/gui/inventory/GuiContainer; L0 L48 0
LOCALVARIABLE p_146977_1_ Lnet/minecraft/inventory/Slot; L0 L48 1
LOCALVARIABLE i I L1 L48 2
LOCALVARIABLE j I L2 L48 3
LOCALVARIABLE itemstack Lnet/minecraft/item/ItemStack; L3 L48 4
LOCALVARIABLE flag Z L4 L48 5
LOCALVARIABLE flag1 Z L7 L48 6
LOCALVARIABLE itemstack1 Lnet/minecraft/item/ItemStack; L8 L48 7
LOCALVARIABLE s Ljava/lang/String; L9 L48 8
MAXSTACK = 6
MAXLOCALS = 10
// access flags 0x2
private func_146980_g()V
L0
LINENUMBER 299 L0
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
GETFIELD net/minecraft/client/Minecraft.thePlayer : Lnet/minecraft/client/entity/EntityClientPlayerMP;
GETFIELD net/minecraft/client/entity/EntityClientPlayerMP.inventory : Lnet/minecraft/entity/player/InventoryPlayer;
INVOKEVIRTUAL net/minecraft/entity/player/InventoryPlayer.getItemStack ()Lnet/minecraft/item/ItemStack;
ASTORE 1
L1
LINENUMBER 301 L1
ALOAD 1
IFNULL L2
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147007_t : Z
IFEQ L2
L3
LINENUMBER 303 L3
ALOAD 0
ALOAD 1
GETFIELD net/minecraft/item/ItemStack.stackSize : I
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146996_I : I
L4
LINENUMBER 307 L4
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147008_s : Ljava/util/Set;
INVOKEINTERFACE java/util/Set.iterator ()Ljava/util/Iterator;
ASTORE 2
L5
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/item/ItemStack java/util/Iterator] []
ALOAD 2
INVOKEINTERFACE java/util/Iterator.hasNext ()Z
IFEQ L2
L6
LINENUMBER 309 L6
ALOAD 2
INVOKEINTERFACE java/util/Iterator.next ()Ljava/lang/Object;
CHECKCAST net/minecraft/inventory/Slot
ASTORE 3
L7
LINENUMBER 310 L7
ALOAD 1
INVOKEVIRTUAL net/minecraft/item/ItemStack.copy ()Lnet/minecraft/item/ItemStack;
ASTORE 4
L8
LINENUMBER 311 L8
ALOAD 3
INVOKEVIRTUAL net/minecraft/inventory/Slot.getStack ()Lnet/minecraft/item/ItemStack;
IFNONNULL L9
ICONST_0
GOTO L10
L9
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/item/ItemStack java/util/Iterator net/minecraft/inventory/Slot net/minecraft/item/ItemStack] []
ALOAD 3
INVOKEVIRTUAL net/minecraft/inventory/Slot.getStack ()Lnet/minecraft/item/ItemStack;
GETFIELD net/minecraft/item/ItemStack.stackSize : I
L10
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/item/ItemStack java/util/Iterator net/minecraft/inventory/Slot net/minecraft/item/ItemStack] [I]
ISTORE 5
L11
LINENUMBER 312 L11
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147008_s : Ljava/util/Set;
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146987_F : I
ALOAD 4
ILOAD 5
INVOKESTATIC net/minecraft/inventory/Container.func_94525_a (Ljava/util/Set;ILnet/minecraft/item/ItemStack;I)V
L12
LINENUMBER 314 L12
ALOAD 4
GETFIELD net/minecraft/item/ItemStack.stackSize : I
ALOAD 4
INVOKEVIRTUAL net/minecraft/item/ItemStack.getMaxStackSize ()I
IF_ICMPLE L13
L14
LINENUMBER 316 L14
ALOAD 4
ALOAD 4
INVOKEVIRTUAL net/minecraft/item/ItemStack.getMaxStackSize ()I
PUTFIELD net/minecraft/item/ItemStack.stackSize : I
L13
LINENUMBER 319 L13
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/item/ItemStack java/util/Iterator net/minecraft/inventory/Slot net/minecraft/item/ItemStack I] []
ALOAD 4
GETFIELD net/minecraft/item/ItemStack.stackSize : I
ALOAD 3
INVOKEVIRTUAL net/minecraft/inventory/Slot.getSlotStackLimit ()I
IF_ICMPLE L15
L16
LINENUMBER 321 L16
ALOAD 4
ALOAD 3
INVOKEVIRTUAL net/minecraft/inventory/Slot.getSlotStackLimit ()I
PUTFIELD net/minecraft/item/ItemStack.stackSize : I
L15
LINENUMBER 307 L15
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/item/ItemStack java/util/Iterator net/minecraft/inventory/Slot net/minecraft/item/ItemStack I] []
ALOAD 0
DUP
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146996_I : I
ALOAD 4
GETFIELD net/minecraft/item/ItemStack.stackSize : I
ILOAD 5
ISUB
ISUB
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146996_I : I
GOTO L5
L2
LINENUMBER 325 L2
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/item/ItemStack] []
RETURN
L17
LOCALVARIABLE slot Lnet/minecraft/inventory/Slot; L7 L15 3
LOCALVARIABLE itemstack1 Lnet/minecraft/item/ItemStack; L8 L2 4
LOCALVARIABLE i I L11 L2 5
LOCALVARIABLE iterator Ljava/util/Iterator; L5 L2 2
LOCALVARIABLE this Lnet/minecraft/client/gui/inventory/GuiContainer; L0 L17 0
LOCALVARIABLE itemstack Lnet/minecraft/item/ItemStack; L1 L17 1
MAXSTACK = 4
MAXLOCALS = 6
// access flags 0x2
private getSlotAtPosition(II)Lnet/minecraft/inventory/Slot;
L0
LINENUMBER 332 L0
ICONST_0
ISTORE 3
L1
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I] []
ILOAD 3
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.inventorySlots : Lnet/minecraft/inventory/Container;
GETFIELD net/minecraft/inventory/Container.inventorySlots : Ljava/util/List;
INVOKEINTERFACE java/util/List.size ()I
IF_ICMPGE L2
L3
LINENUMBER 334 L3
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.inventorySlots : Lnet/minecraft/inventory/Container;
GETFIELD net/minecraft/inventory/Container.inventorySlots : Ljava/util/List;
ILOAD 3
INVOKEINTERFACE java/util/List.get (I)Ljava/lang/Object;
CHECKCAST net/minecraft/inventory/Slot
ASTORE 4
L4
LINENUMBER 336 L4
ALOAD 0
ALOAD 4
ILOAD 1
ILOAD 2
INVOKESPECIAL net/minecraft/client/gui/inventory/GuiContainer.isMouseOverSlot (Lnet/minecraft/inventory/Slot;II)Z
IFEQ L5
L6
LINENUMBER 338 L6
ALOAD 4
ARETURN
L5
LINENUMBER 332 L5
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot] []
IINC 3 1
GOTO L1
L2
LINENUMBER 342 L2
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I] []
ACONST_NULL
ARETURN
L7
LOCALVARIABLE slot Lnet/minecraft/inventory/Slot; L4 L5 4
LOCALVARIABLE k I L1 L2 3
LOCALVARIABLE this Lnet/minecraft/client/gui/inventory/GuiContainer; L0 L7 0
LOCALVARIABLE p_146975_1_ I L0 L7 1
LOCALVARIABLE p_146975_2_ I L0 L7 2
MAXSTACK = 4
MAXLOCALS = 5
// access flags 0x4
protected mouseClicked(III)V
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.manager : Lcodechicken/nei/guihook/GuiContainerManager;
ILOAD 1
ILOAD 2
ILOAD 3
INVOKEVIRTUAL codechicken/nei/guihook/GuiContainerManager.mouseClicked (III)Z
IFEQ L0
RETURN
L0
LINENUMBER 350 L0
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I] []
ALOAD 0
ILOAD 1
ILOAD 2
ILOAD 3
INVOKESPECIAL net/minecraft/client/gui/GuiScreen.mouseClicked (III)V
L1
LINENUMBER 351 L1
ILOAD 3
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
GETFIELD net/minecraft/client/Minecraft.gameSettings : Lnet/minecraft/client/settings/GameSettings;
GETFIELD net/minecraft/client/settings/GameSettings.keyBindPickBlock : Lnet/minecraft/client/settings/KeyBinding;
INVOKEVIRTUAL net/minecraft/client/settings/KeyBinding.getKeyCode ()I
BIPUSH 100
IADD
IF_ICMPNE L2
ICONST_1
GOTO L3
L2
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I] []
ICONST_0
L3
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I] [I]
ISTORE 4
L4
LINENUMBER 352 L4
ALOAD 0
ILOAD 1
ILOAD 2
INVOKESPECIAL net/minecraft/client/gui/inventory/GuiContainer.getSlotAtPosition (II)Lnet/minecraft/inventory/Slot;
ASTORE 5
L5
LINENUMBER 353 L5
INVOKESTATIC net/minecraft/client/Minecraft.getSystemTime ()J
LSTORE 6
L6
LINENUMBER 354 L6
ALOAD 0
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146998_K : Lnet/minecraft/inventory/Slot;
ALOAD 5
IF_ACMPNE L7
LLOAD 6
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146997_J : J
LSUB
LDC 250
LCMP
IFGE L7
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146992_L : I
ILOAD 3
IF_ICMPNE L7
ICONST_1
GOTO L8
L7
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I I net/minecraft/inventory/Slot J] [net/minecraft/client/gui/inventory/GuiContainer]
ICONST_0
L8
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I I net/minecraft/inventory/Slot J] [net/minecraft/client/gui/inventory/GuiContainer I]
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146993_M : Z
L9
LINENUMBER 355 L9
ALOAD 0
ICONST_0
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146995_H : Z
L10
LINENUMBER 357 L10
ILOAD 3
IFEQ L11
ILOAD 3
ICONST_1
IF_ICMPEQ L11
ILOAD 4
IFEQ L12
L11
LINENUMBER 359 L11
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I I net/minecraft/inventory/Slot J] []
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.guiLeft : I
ISTORE 8
L13
LINENUMBER 360 L13
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.guiTop : I
ISTORE 9
L14
LINENUMBER 361 L14
ILOAD 1
ILOAD 8
IF_ICMPLT L15
ILOAD 2
ILOAD 9
IF_ICMPLT L15
ILOAD 1
ILOAD 8
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.xSize : I
IADD
IF_ICMPGE L15
ILOAD 2
ILOAD 9
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.ySize : I
IADD
IF_ICMPLT L16
L15
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I I net/minecraft/inventory/Slot J I I] []
ICONST_1
GOTO L17
L16
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I I net/minecraft/inventory/Slot J I I] []
ICONST_0
L17
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I I net/minecraft/inventory/Slot J I I] [I]
ISTORE 10
L18
LINENUMBER 362 L18
ICONST_M1
ISTORE 11
L19
LINENUMBER 364 L19
ALOAD 5
IFNULL L20
L21
LINENUMBER 366 L21
ALOAD 5
GETFIELD net/minecraft/inventory/Slot.slotNumber : I
ISTORE 11
L20
LINENUMBER 369 L20
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I I net/minecraft/inventory/Slot J I I I I] []
ILOAD 10
IFEQ L22
L23
LINENUMBER 371 L23
SIPUSH -999
ISTORE 11
L22
LINENUMBER 374 L22
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I I net/minecraft/inventory/Slot J I I I I] []
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
GETFIELD net/minecraft/client/Minecraft.gameSettings : Lnet/minecraft/client/settings/GameSettings;
GETFIELD net/minecraft/client/settings/GameSettings.touchscreen : Z
IFEQ L24
ILOAD 10
IFEQ L24
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
GETFIELD net/minecraft/client/Minecraft.thePlayer : Lnet/minecraft/client/entity/EntityClientPlayerMP;
GETFIELD net/minecraft/client/entity/EntityClientPlayerMP.inventory : Lnet/minecraft/entity/player/InventoryPlayer;
INVOKEVIRTUAL net/minecraft/entity/player/InventoryPlayer.getItemStack ()Lnet/minecraft/item/ItemStack;
IFNONNULL L24
L25
LINENUMBER 376 L25
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
ACONST_NULL
CHECKCAST net/minecraft/client/gui/GuiScreen
INVOKEVIRTUAL net/minecraft/client/Minecraft.displayGuiScreen (Lnet/minecraft/client/gui/GuiScreen;)V
L26
LINENUMBER 377 L26
RETURN
L24
LINENUMBER 380 L24
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I I net/minecraft/inventory/Slot J I I I I] []
ILOAD 11
ICONST_M1
IF_ICMPEQ L12
L27
LINENUMBER 382 L27
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
GETFIELD net/minecraft/client/Minecraft.gameSettings : Lnet/minecraft/client/settings/GameSettings;
GETFIELD net/minecraft/client/settings/GameSettings.touchscreen : Z
IFEQ L28
L29
LINENUMBER 384 L29
ALOAD 5
IFNULL L30
ALOAD 5
INVOKEVIRTUAL net/minecraft/inventory/Slot.getHasStack ()Z
IFEQ L30
L31
LINENUMBER 386 L31
ALOAD 0
ALOAD 5
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.clickedSlot : Lnet/minecraft/inventory/Slot;
L32
LINENUMBER 387 L32
ALOAD 0
ACONST_NULL
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.draggedStack : Lnet/minecraft/item/ItemStack;
L33
LINENUMBER 388 L33
ALOAD 0
ILOAD 3
ICONST_1
IF_ICMPNE L34
ICONST_1
GOTO L35
L34
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I I net/minecraft/inventory/Slot J I I I I] [net/minecraft/client/gui/inventory/GuiContainer]
ICONST_0
L35
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I I net/minecraft/inventory/Slot J I I I I] [net/minecraft/client/gui/inventory/GuiContainer I]
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.isRightMouseClick : Z
GOTO L12
L30
LINENUMBER 392 L30
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I I net/minecraft/inventory/Slot J I I I I] []
ALOAD 0
ACONST_NULL
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.clickedSlot : Lnet/minecraft/inventory/Slot;
GOTO L12
L28
LINENUMBER 395 L28
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I I net/minecraft/inventory/Slot J I I I I] []
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147007_t : Z
IFNE L12
L36
LINENUMBER 397 L36
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
GETFIELD net/minecraft/client/Minecraft.thePlayer : Lnet/minecraft/client/entity/EntityClientPlayerMP;
GETFIELD net/minecraft/client/entity/EntityClientPlayerMP.inventory : Lnet/minecraft/entity/player/InventoryPlayer;
INVOKEVIRTUAL net/minecraft/entity/player/InventoryPlayer.getItemStack ()Lnet/minecraft/item/ItemStack;
IFNONNULL L37
L38
LINENUMBER 399 L38
ILOAD 3
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
GETFIELD net/minecraft/client/Minecraft.gameSettings : Lnet/minecraft/client/settings/GameSettings;
GETFIELD net/minecraft/client/settings/GameSettings.keyBindPickBlock : Lnet/minecraft/client/settings/KeyBinding;
INVOKEVIRTUAL net/minecraft/client/settings/KeyBinding.getKeyCode ()I
BIPUSH 100
IADD
IF_ICMPNE L39
L40
LINENUMBER 401 L40
ALOAD 0
ALOAD 5
ILOAD 11
ILOAD 3
ICONST_3
INVOKEVIRTUAL net/minecraft/client/gui/inventory/GuiContainer.managerHandleMouseClick (Lnet/minecraft/inventory/Slot;III)V
GOTO L41
L39
LINENUMBER 405 L39
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I I net/minecraft/inventory/Slot J I I I I] []
ILOAD 11
SIPUSH -999
IF_ICMPEQ L42
BIPUSH 42
INVOKESTATIC org/lwjgl/input/Keyboard.isKeyDown (I)Z
IFNE L43
BIPUSH 54
INVOKESTATIC org/lwjgl/input/Keyboard.isKeyDown (I)Z
IFEQ L42
L43
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I I net/minecraft/inventory/Slot J I I I I] []
ICONST_1
GOTO L44
L42
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I I net/minecraft/inventory/Slot J I I I I] []
ICONST_0
L44
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I I net/minecraft/inventory/Slot J I I I I] [I]
ISTORE 12
L45
LINENUMBER 406 L45
ICONST_0
ISTORE 13
L46
LINENUMBER 408 L46
ILOAD 12
IFEQ L47
L48
LINENUMBER 410 L48
ALOAD 0
ALOAD 5
IFNULL L49
ALOAD 5
INVOKEVIRTUAL net/minecraft/inventory/Slot.getHasStack ()Z
IFEQ L49
ALOAD 5
INVOKEVIRTUAL net/minecraft/inventory/Slot.getStack ()Lnet/minecraft/item/ItemStack;
GOTO L50
L49
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I I net/minecraft/inventory/Slot J I I I I I I] [net/minecraft/client/gui/inventory/GuiContainer]
ACONST_NULL
L50
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I I net/minecraft/inventory/Slot J I I I I I I] [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/item/ItemStack]
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146994_N : Lnet/minecraft/item/ItemStack;
L51
LINENUMBER 411 L51
ICONST_1
ISTORE 13
GOTO L52
L47
LINENUMBER 413 L47
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I I net/minecraft/inventory/Slot J I I I I I I] []
ILOAD 11
SIPUSH -999
IF_ICMPNE L52
L53
LINENUMBER 415 L53
ICONST_4
ISTORE 13
L52
LINENUMBER 418 L52
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I I net/minecraft/inventory/Slot J I I I I I I] []
ALOAD 0
ALOAD 5
ILOAD 11
ILOAD 3
ILOAD 13
INVOKEVIRTUAL net/minecraft/client/gui/inventory/GuiContainer.managerHandleMouseClick (Lnet/minecraft/inventory/Slot;III)V
L41
LINENUMBER 421 L41
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I I net/minecraft/inventory/Slot J I I I I] []
ALOAD 0
ICONST_1
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146995_H : Z
GOTO L12
L37
LINENUMBER 425 L37
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I I net/minecraft/inventory/Slot J I I I I] []
ALOAD 0
ICONST_1
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147007_t : Z
L54
LINENUMBER 426 L54
ALOAD 0
ILOAD 3
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146988_G : I
L55
LINENUMBER 427 L55
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147008_s : Ljava/util/Set;
INVOKEINTERFACE java/util/Set.clear ()V
L56
LINENUMBER 429 L56
ILOAD 3
IFNE L57
L58
LINENUMBER 431 L58
ALOAD 0
ICONST_0
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146987_F : I
GOTO L12
L57
LINENUMBER 433 L57
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I I net/minecraft/inventory/Slot J I I I I] []
ILOAD 3
ICONST_1
IF_ICMPNE L12
L59
LINENUMBER 435 L59
ALOAD 0
ICONST_1
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146987_F : I
L12
LINENUMBER 442 L12
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I I net/minecraft/inventory/Slot J] []
ALOAD 0
ALOAD 5
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146998_K : Lnet/minecraft/inventory/Slot;
L60
LINENUMBER 443 L60
ALOAD 0
LLOAD 6
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146997_J : J
L61
LINENUMBER 444 L61
ALOAD 0
ILOAD 3
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146992_L : I
L62
LINENUMBER 445 L62
RETURN
L63
LOCALVARIABLE flag2 Z L45 L41 12
LOCALVARIABLE b0 B L46 L41 13
LOCALVARIABLE i1 I L13 L12 8
LOCALVARIABLE j1 I L14 L12 9
LOCALVARIABLE flag1 Z L18 L12 10
LOCALVARIABLE k1 I L19 L12 11
LOCALVARIABLE this Lnet/minecraft/client/gui/inventory/GuiContainer; L0 L63 0
LOCALVARIABLE p_73864_1_ I L0 L63 1
LOCALVARIABLE p_73864_2_ I L0 L63 2
LOCALVARIABLE p_73864_3_ I L0 L63 3
LOCALVARIABLE flag Z L4 L63 4
LOCALVARIABLE slot Lnet/minecraft/inventory/Slot; L5 L63 5
LOCALVARIABLE l J L6 L63 6
MAXSTACK = 5
MAXLOCALS = 14
// access flags 0x4
protected mouseClickMove(IIIJ)V
L0
LINENUMBER 453 L0
ALOAD 0
ILOAD 1
ILOAD 2
INVOKESPECIAL net/minecraft/client/gui/inventory/GuiContainer.getSlotAtPosition (II)Lnet/minecraft/inventory/Slot;
ASTORE 6
L1
LINENUMBER 454 L1
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
GETFIELD net/minecraft/client/Minecraft.thePlayer : Lnet/minecraft/client/entity/EntityClientPlayerMP;
GETFIELD net/minecraft/client/entity/EntityClientPlayerMP.inventory : Lnet/minecraft/entity/player/InventoryPlayer;
INVOKEVIRTUAL net/minecraft/entity/player/InventoryPlayer.getItemStack ()Lnet/minecraft/item/ItemStack;
ASTORE 7
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.manager : Lcodechicken/nei/guihook/GuiContainerManager;
ILOAD 1
ILOAD 2
ILOAD 3
LLOAD 4
INVOKEVIRTUAL codechicken/nei/guihook/GuiContainerManager.mouseDragged (IIIJ)V
L2
LINENUMBER 456 L2
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.clickedSlot : Lnet/minecraft/inventory/Slot;
IFNULL L3
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
GETFIELD net/minecraft/client/Minecraft.gameSettings : Lnet/minecraft/client/settings/GameSettings;
GETFIELD net/minecraft/client/settings/GameSettings.touchscreen : Z
IFEQ L3
L4
LINENUMBER 458 L4
ILOAD 3
IFEQ L5
ILOAD 3
ICONST_1
IF_ICMPNE L6
L5
LINENUMBER 460 L5
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I J net/minecraft/inventory/Slot net/minecraft/item/ItemStack] []
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.draggedStack : Lnet/minecraft/item/ItemStack;
IFNONNULL L7
L8
LINENUMBER 462 L8
ALOAD 6
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.clickedSlot : Lnet/minecraft/inventory/Slot;
IF_ACMPEQ L6
L9
LINENUMBER 464 L9
ALOAD 0
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.clickedSlot : Lnet/minecraft/inventory/Slot;
INVOKEVIRTUAL net/minecraft/inventory/Slot.getStack ()Lnet/minecraft/item/ItemStack;
INVOKEVIRTUAL net/minecraft/item/ItemStack.copy ()Lnet/minecraft/item/ItemStack;
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.draggedStack : Lnet/minecraft/item/ItemStack;
GOTO L6
L7
LINENUMBER 467 L7
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I J net/minecraft/inventory/Slot net/minecraft/item/ItemStack] []
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.draggedStack : Lnet/minecraft/item/ItemStack;
GETFIELD net/minecraft/item/ItemStack.stackSize : I
ICONST_1
IF_ICMPLE L6
ALOAD 6
IFNULL L6
ALOAD 6
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.draggedStack : Lnet/minecraft/item/ItemStack;
ICONST_0
INVOKESTATIC net/minecraft/inventory/Container.func_94527_a (Lnet/minecraft/inventory/Slot;Lnet/minecraft/item/ItemStack;Z)Z
IFEQ L6
L10
LINENUMBER 469 L10
INVOKESTATIC net/minecraft/client/Minecraft.getSystemTime ()J
LSTORE 8
L11
LINENUMBER 471 L11
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146985_D : Lnet/minecraft/inventory/Slot;
ALOAD 6
IF_ACMPNE L12
L13
LINENUMBER 473 L13
LLOAD 8
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146986_E : J
LSUB
LDC 500
LCMP
IFLE L14
L15
LINENUMBER 475 L15
ALOAD 0
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.clickedSlot : Lnet/minecraft/inventory/Slot;
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.clickedSlot : Lnet/minecraft/inventory/Slot;
GETFIELD net/minecraft/inventory/Slot.slotNumber : I
ICONST_0
ICONST_0
INVOKEVIRTUAL net/minecraft/client/gui/inventory/GuiContainer.managerHandleMouseClick (Lnet/minecraft/inventory/Slot;III)V
L16
LINENUMBER 476 L16
ALOAD 0
ALOAD 6
ALOAD 6
GETFIELD net/minecraft/inventory/Slot.slotNumber : I
ICONST_1
ICONST_0
INVOKEVIRTUAL net/minecraft/client/gui/inventory/GuiContainer.managerHandleMouseClick (Lnet/minecraft/inventory/Slot;III)V
L17
LINENUMBER 477 L17
ALOAD 0
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.clickedSlot : Lnet/minecraft/inventory/Slot;
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.clickedSlot : Lnet/minecraft/inventory/Slot;
GETFIELD net/minecraft/inventory/Slot.slotNumber : I
ICONST_0
ICONST_0
INVOKEVIRTUAL net/minecraft/client/gui/inventory/GuiContainer.managerHandleMouseClick (Lnet/minecraft/inventory/Slot;III)V
L18
LINENUMBER 478 L18
ALOAD 0
LLOAD 8
LDC 750
LADD
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146986_E : J
L19
LINENUMBER 479 L19
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.draggedStack : Lnet/minecraft/item/ItemStack;
DUP
GETFIELD net/minecraft/item/ItemStack.stackSize : I
ICONST_1
ISUB
PUTFIELD net/minecraft/item/ItemStack.stackSize : I
GOTO L14
L12
LINENUMBER 484 L12
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I J net/minecraft/inventory/Slot net/minecraft/item/ItemStack J] []
ALOAD 0
ALOAD 6
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146985_D : Lnet/minecraft/inventory/Slot;
L20
LINENUMBER 485 L20
ALOAD 0
LLOAD 8
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146986_E : J
L14
LINENUMBER 487 L14
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I J net/minecraft/inventory/Slot net/minecraft/item/ItemStack J] []
GOTO L6
L3
LINENUMBER 490 L3
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I J net/minecraft/inventory/Slot net/minecraft/item/ItemStack] []
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147007_t : Z
IFEQ L6
ALOAD 6
IFNULL L6
ALOAD 7
IFNULL L6
ALOAD 7
GETFIELD net/minecraft/item/ItemStack.stackSize : I
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147008_s : Ljava/util/Set;
INVOKEINTERFACE java/util/Set.size ()I
IF_ICMPLE L6
ALOAD 6
ALOAD 7
ICONST_1
INVOKESTATIC net/minecraft/inventory/Container.func_94527_a (Lnet/minecraft/inventory/Slot;Lnet/minecraft/item/ItemStack;Z)Z
IFEQ L6
ALOAD 6
ALOAD 7
INVOKEVIRTUAL net/minecraft/inventory/Slot.isItemValid (Lnet/minecraft/item/ItemStack;)Z
IFEQ L6
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.inventorySlots : Lnet/minecraft/inventory/Container;
ALOAD 6
INVOKEVIRTUAL net/minecraft/inventory/Container.canDragIntoSlot (Lnet/minecraft/inventory/Slot;)Z
IFEQ L6
L21
LINENUMBER 492 L21
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147008_s : Ljava/util/Set;
ALOAD 6
INVOKEINTERFACE java/util/Set.add (Ljava/lang/Object;)Z
POP
L22
LINENUMBER 493 L22
ALOAD 0
INVOKESPECIAL net/minecraft/client/gui/inventory/GuiContainer.func_146980_g ()V
L6
LINENUMBER 495 L6
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I J net/minecraft/inventory/Slot net/minecraft/item/ItemStack] []
RETURN
L23
LOCALVARIABLE i1 J L11 L14 8
LOCALVARIABLE this Lnet/minecraft/client/gui/inventory/GuiContainer; L0 L23 0
LOCALVARIABLE p_146273_1_ I L0 L23 1
LOCALVARIABLE p_146273_2_ I L0 L23 2
LOCALVARIABLE p_146273_3_ I L0 L23 3
LOCALVARIABLE p_146273_4_ J L0 L23 4
LOCALVARIABLE slot Lnet/minecraft/inventory/Slot; L1 L23 6
LOCALVARIABLE itemstack Lnet/minecraft/item/ItemStack; L2 L23 7
MAXSTACK = 6
MAXLOCALS = 10
// access flags 0x4
protected mouseMovedOrUp(III)V
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.manager : Lcodechicken/nei/guihook/GuiContainerManager;
ILOAD 1
ILOAD 2
ILOAD 3
INVOKEVIRTUAL codechicken/nei/guihook/GuiContainerManager.overrideMouseUp (III)Z
IFEQ L0
RETURN
L0
LINENUMBER 503 L0
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I] []
ALOAD 0
ILOAD 1
ILOAD 2
ILOAD 3
INVOKESPECIAL net/minecraft/client/gui/GuiScreen.mouseMovedOrUp (III)V
L1
LINENUMBER 504 L1
ALOAD 0
ILOAD 1
ILOAD 2
INVOKESPECIAL net/minecraft/client/gui/inventory/GuiContainer.getSlotAtPosition (II)Lnet/minecraft/inventory/Slot;
ASTORE 4
L2
LINENUMBER 505 L2
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.guiLeft : I
ISTORE 5
L3
LINENUMBER 506 L3
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.guiTop : I
ISTORE 6
L4
LINENUMBER 507 L4
ILOAD 1
ILOAD 5
IF_ICMPLT L5
ILOAD 2
ILOAD 6
IF_ICMPLT L5
ILOAD 1
ILOAD 5
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.xSize : I
IADD
IF_ICMPGE L5
ILOAD 2
ILOAD 6
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.ySize : I
IADD
IF_ICMPLT L6
L5
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I] []
ICONST_1
GOTO L7
L6
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I] []
ICONST_0
L7
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I] [I]
ISTORE 7
L8
LINENUMBER 508 L8
ICONST_M1
ISTORE 8
L9
LINENUMBER 510 L9
ALOAD 4
IFNULL L10
L11
LINENUMBER 512 L11
ALOAD 4
GETFIELD net/minecraft/inventory/Slot.slotNumber : I
ISTORE 8
L10
LINENUMBER 515 L10
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I I I] []
ILOAD 7
IFEQ L12
L13
LINENUMBER 517 L13
SIPUSH -999
ISTORE 8
L12
LINENUMBER 523 L12
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I I I] []
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146993_M : Z
IFEQ L14
ALOAD 4
IFNULL L14
ILOAD 3
IFNE L14
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.inventorySlots : Lnet/minecraft/inventory/Container;
ACONST_NULL
CHECKCAST net/minecraft/item/ItemStack
ALOAD 4
INVOKEVIRTUAL net/minecraft/inventory/Container.func_94530_a (Lnet/minecraft/item/ItemStack;Lnet/minecraft/inventory/Slot;)Z
IFEQ L14
L15
LINENUMBER 525 L15
INVOKESTATIC net/minecraft/client/gui/inventory/GuiContainer.isShiftKeyDown ()Z
IFEQ L16
L17
LINENUMBER 527 L17
ALOAD 4
IFNULL L18
ALOAD 4
GETFIELD net/minecraft/inventory/Slot.inventory : Lnet/minecraft/inventory/IInventory;
IFNULL L18
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146994_N : Lnet/minecraft/item/ItemStack;
IFNULL L18
L19
LINENUMBER 529 L19
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.inventorySlots : Lnet/minecraft/inventory/Container;
GETFIELD net/minecraft/inventory/Container.inventorySlots : Ljava/util/List;
INVOKEINTERFACE java/util/List.iterator ()Ljava/util/Iterator;
ASTORE 9
L20
LINENUMBER 531 L20
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I I I java/util/Iterator] []
ALOAD 9
INVOKEINTERFACE java/util/Iterator.hasNext ()Z
IFEQ L18
L21
LINENUMBER 533 L21
ALOAD 9
INVOKEINTERFACE java/util/Iterator.next ()Ljava/lang/Object;
CHECKCAST net/minecraft/inventory/Slot
ASTORE 10
L22
LINENUMBER 535 L22
ALOAD 10
IFNULL L20
ALOAD 10
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
GETFIELD net/minecraft/client/Minecraft.thePlayer : Lnet/minecraft/client/entity/EntityClientPlayerMP;
INVOKEVIRTUAL net/minecraft/inventory/Slot.canTakeStack (Lnet/minecraft/entity/player/EntityPlayer;)Z
IFEQ L20
ALOAD 10
INVOKEVIRTUAL net/minecraft/inventory/Slot.getHasStack ()Z
IFEQ L20
ALOAD 10
GETFIELD net/minecraft/inventory/Slot.inventory : Lnet/minecraft/inventory/IInventory;
ALOAD 4
GETFIELD net/minecraft/inventory/Slot.inventory : Lnet/minecraft/inventory/IInventory;
IF_ACMPNE L20
ALOAD 10
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146994_N : Lnet/minecraft/item/ItemStack;
ICONST_1
INVOKESTATIC net/minecraft/inventory/Container.func_94527_a (Lnet/minecraft/inventory/Slot;Lnet/minecraft/item/ItemStack;Z)Z
IFEQ L20
L23
LINENUMBER 537 L23
ALOAD 0
ALOAD 10
ALOAD 10
GETFIELD net/minecraft/inventory/Slot.slotNumber : I
ILOAD 3
ICONST_1
INVOKEVIRTUAL net/minecraft/client/gui/inventory/GuiContainer.managerHandleMouseClick (Lnet/minecraft/inventory/Slot;III)V
GOTO L20
L16
LINENUMBER 544 L16
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I I I] []
ALOAD 0
ALOAD 4
ILOAD 8
ILOAD 3
BIPUSH 6
INVOKEVIRTUAL net/minecraft/client/gui/inventory/GuiContainer.managerHandleMouseClick (Lnet/minecraft/inventory/Slot;III)V
L18
LINENUMBER 547 L18
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I I I] []
ALOAD 0
ICONST_0
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146993_M : Z
L24
LINENUMBER 548 L24
ALOAD 0
LCONST_0
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146997_J : J
GOTO L25
L14
LINENUMBER 552 L14
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I I I] []
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147007_t : Z
IFEQ L26
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146988_G : I
ILOAD 3
IF_ICMPEQ L26
L27
LINENUMBER 554 L27
ALOAD 0
ICONST_0
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147007_t : Z
L28
LINENUMBER 555 L28
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147008_s : Ljava/util/Set;
INVOKEINTERFACE java/util/Set.clear ()V
L29
LINENUMBER 556 L29
ALOAD 0
ICONST_1
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146995_H : Z
L30
LINENUMBER 557 L30
RETURN
L26
LINENUMBER 560 L26
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I I I] []
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146995_H : Z
IFEQ L31
L32
LINENUMBER 562 L32
ALOAD 0
ICONST_0
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146995_H : Z
L33
LINENUMBER 563 L33
RETURN
L31
LINENUMBER 568 L31
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I I I] []
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.clickedSlot : Lnet/minecraft/inventory/Slot;
IFNULL L34
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
GETFIELD net/minecraft/client/Minecraft.gameSettings : Lnet/minecraft/client/settings/GameSettings;
GETFIELD net/minecraft/client/settings/GameSettings.touchscreen : Z
IFEQ L34
L35
LINENUMBER 570 L35
ILOAD 3
IFEQ L36
ILOAD 3
ICONST_1
IF_ICMPNE L25
L36
LINENUMBER 572 L36
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I I I] []
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.draggedStack : Lnet/minecraft/item/ItemStack;
IFNONNULL L37
ALOAD 4
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.clickedSlot : Lnet/minecraft/inventory/Slot;
IF_ACMPEQ L37
L38
LINENUMBER 574 L38
ALOAD 0
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.clickedSlot : Lnet/minecraft/inventory/Slot;
INVOKEVIRTUAL net/minecraft/inventory/Slot.getStack ()Lnet/minecraft/item/ItemStack;
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.draggedStack : Lnet/minecraft/item/ItemStack;
L37
LINENUMBER 577 L37
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I I I] []
ALOAD 4
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.draggedStack : Lnet/minecraft/item/ItemStack;
ICONST_0
INVOKESTATIC net/minecraft/inventory/Container.func_94527_a (Lnet/minecraft/inventory/Slot;Lnet/minecraft/item/ItemStack;Z)Z
ISTORE 11
L39
LINENUMBER 579 L39
ILOAD 8
ICONST_M1
IF_ICMPEQ L40
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.draggedStack : Lnet/minecraft/item/ItemStack;
IFNULL L40
ILOAD 11
IFEQ L40
L41
LINENUMBER 581 L41
ALOAD 0
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.clickedSlot : Lnet/minecraft/inventory/Slot;
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.clickedSlot : Lnet/minecraft/inventory/Slot;
GETFIELD net/minecraft/inventory/Slot.slotNumber : I
ILOAD 3
ICONST_0
INVOKEVIRTUAL net/minecraft/client/gui/inventory/GuiContainer.managerHandleMouseClick (Lnet/minecraft/inventory/Slot;III)V
L42
LINENUMBER 582 L42
ALOAD 0
ALOAD 4
ILOAD 8
ICONST_0
ICONST_0
INVOKEVIRTUAL net/minecraft/client/gui/inventory/GuiContainer.managerHandleMouseClick (Lnet/minecraft/inventory/Slot;III)V
L43
LINENUMBER 584 L43
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
GETFIELD net/minecraft/client/Minecraft.thePlayer : Lnet/minecraft/client/entity/EntityClientPlayerMP;
GETFIELD net/minecraft/client/entity/EntityClientPlayerMP.inventory : Lnet/minecraft/entity/player/InventoryPlayer;
INVOKEVIRTUAL net/minecraft/entity/player/InventoryPlayer.getItemStack ()Lnet/minecraft/item/ItemStack;
IFNULL L44
L45
LINENUMBER 586 L45
ALOAD 0
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.clickedSlot : Lnet/minecraft/inventory/Slot;
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.clickedSlot : Lnet/minecraft/inventory/Slot;
GETFIELD net/minecraft/inventory/Slot.slotNumber : I
ILOAD 3
ICONST_0
INVOKEVIRTUAL net/minecraft/client/gui/inventory/GuiContainer.managerHandleMouseClick (Lnet/minecraft/inventory/Slot;III)V
L46
LINENUMBER 587 L46
ALOAD 0
ILOAD 1
ILOAD 5
ISUB
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147011_y : I
L47
LINENUMBER 588 L47
ALOAD 0
ILOAD 2
ILOAD 6
ISUB
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147010_z : I
L48
LINENUMBER 589 L48
ALOAD 0
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.clickedSlot : Lnet/minecraft/inventory/Slot;
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.returningStackDestSlot : Lnet/minecraft/inventory/Slot;
L49
LINENUMBER 590 L49
ALOAD 0
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.draggedStack : Lnet/minecraft/item/ItemStack;
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.returningStack : Lnet/minecraft/item/ItemStack;
L50
LINENUMBER 591 L50
ALOAD 0
INVOKESTATIC net/minecraft/client/Minecraft.getSystemTime ()J
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.returningStackTime : J
GOTO L51
L44
LINENUMBER 595 L44
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I I I T T I] []
ALOAD 0
ACONST_NULL
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.returningStack : Lnet/minecraft/item/ItemStack;
GOTO L51
L40
LINENUMBER 598 L40
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I I I T T I] []
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.draggedStack : Lnet/minecraft/item/ItemStack;
IFNULL L51
L52
LINENUMBER 600 L52
ALOAD 0
ILOAD 1
ILOAD 5
ISUB
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147011_y : I
L53
LINENUMBER 601 L53
ALOAD 0
ILOAD 2
ILOAD 6
ISUB
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147010_z : I
L54
LINENUMBER 602 L54
ALOAD 0
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.clickedSlot : Lnet/minecraft/inventory/Slot;
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.returningStackDestSlot : Lnet/minecraft/inventory/Slot;
L55
LINENUMBER 603 L55
ALOAD 0
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.draggedStack : Lnet/minecraft/item/ItemStack;
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.returningStack : Lnet/minecraft/item/ItemStack;
L56
LINENUMBER 604 L56
ALOAD 0
INVOKESTATIC net/minecraft/client/Minecraft.getSystemTime ()J
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.returningStackTime : J
L51
LINENUMBER 607 L51
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I I I T T I] []
ALOAD 0
ACONST_NULL
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.draggedStack : Lnet/minecraft/item/ItemStack;
L57
LINENUMBER 608 L57
ALOAD 0
ACONST_NULL
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.clickedSlot : Lnet/minecraft/inventory/Slot;
GOTO L25
L34
LINENUMBER 611 L34
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I I I] []
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147007_t : Z
IFEQ L58
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147008_s : Ljava/util/Set;
INVOKEINTERFACE java/util/Set.isEmpty ()Z
IFNE L58
L59
LINENUMBER 613 L59
ALOAD 0
ACONST_NULL
CHECKCAST net/minecraft/inventory/Slot
SIPUSH -999
ICONST_0
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146987_F : I
INVOKESTATIC net/minecraft/inventory/Container.func_94534_d (II)I
ICONST_5
INVOKEVIRTUAL net/minecraft/client/gui/inventory/GuiContainer.managerHandleMouseClick (Lnet/minecraft/inventory/Slot;III)V
L60
LINENUMBER 614 L60
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147008_s : Ljava/util/Set;
INVOKEINTERFACE java/util/Set.iterator ()Ljava/util/Iterator;
ASTORE 9
L61
LINENUMBER 616 L61
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I I I java/util/Iterator] []
ALOAD 9
INVOKEINTERFACE java/util/Iterator.hasNext ()Z
IFEQ L62
L63
LINENUMBER 618 L63
ALOAD 9
INVOKEINTERFACE java/util/Iterator.next ()Ljava/lang/Object;
CHECKCAST net/minecraft/inventory/Slot
ASTORE 10
L64
LINENUMBER 619 L64
ALOAD 0
ALOAD 10
ALOAD 10
GETFIELD net/minecraft/inventory/Slot.slotNumber : I
ICONST_1
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146987_F : I
INVOKESTATIC net/minecraft/inventory/Container.func_94534_d (II)I
ICONST_5
INVOKEVIRTUAL net/minecraft/client/gui/inventory/GuiContainer.managerHandleMouseClick (Lnet/minecraft/inventory/Slot;III)V
GOTO L61
L62
LINENUMBER 622 L62
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I I I java/util/Iterator] []
ALOAD 0
ACONST_NULL
CHECKCAST net/minecraft/inventory/Slot
SIPUSH -999
ICONST_2
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146987_F : I
INVOKESTATIC net/minecraft/inventory/Container.func_94534_d (II)I
ICONST_5
INVOKEVIRTUAL net/minecraft/client/gui/inventory/GuiContainer.managerHandleMouseClick (Lnet/minecraft/inventory/Slot;III)V
GOTO L25
L58
LINENUMBER 624 L58
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I I I] []
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
GETFIELD net/minecraft/client/Minecraft.thePlayer : Lnet/minecraft/client/entity/EntityClientPlayerMP;
GETFIELD net/minecraft/client/entity/EntityClientPlayerMP.inventory : Lnet/minecraft/entity/player/InventoryPlayer;
INVOKEVIRTUAL net/minecraft/entity/player/InventoryPlayer.getItemStack ()Lnet/minecraft/item/ItemStack;
IFNULL L65
ILOAD 3
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
GETFIELD net/minecraft/client/Minecraft.gameSettings : Lnet/minecraft/client/settings/GameSettings;
GETFIELD net/minecraft/client/settings/GameSettings.keyBindPickBlock : Lnet/minecraft/client/settings/KeyBinding;
INVOKEVIRTUAL net/minecraft/client/settings/KeyBinding.getKeyCode ()I
BIPUSH 100
IADD
IF_ICMPNE L66
L67
LINENUMBER 628 L67
ALOAD 0
ALOAD 4
ILOAD 8
ILOAD 3
ICONST_3
INVOKEVIRTUAL net/minecraft/client/gui/inventory/GuiContainer.managerHandleMouseClick (Lnet/minecraft/inventory/Slot;III)V
GOTO L25
L66
LINENUMBER 632 L66
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I I I] []
ILOAD 8
SIPUSH -999
IF_ICMPEQ L68
BIPUSH 42
INVOKESTATIC org/lwjgl/input/Keyboard.isKeyDown (I)Z
IFNE L69
BIPUSH 54
INVOKESTATIC org/lwjgl/input/Keyboard.isKeyDown (I)Z
IFEQ L68
L69
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I I I] []
ICONST_1
GOTO L70
L68
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I I I] []
ICONST_0
L70
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I I I] [I]
ISTORE 11
L71
LINENUMBER 634 L71
ILOAD 11
IFEQ L72
L73
LINENUMBER 636 L73
ALOAD 0
ALOAD 4
IFNULL L74
ALOAD 4
INVOKEVIRTUAL net/minecraft/inventory/Slot.getHasStack ()Z
IFEQ L74
ALOAD 4
INVOKEVIRTUAL net/minecraft/inventory/Slot.getStack ()Lnet/minecraft/item/ItemStack;
GOTO L75
L74
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I I I T T I] [net/minecraft/client/gui/inventory/GuiContainer]
ACONST_NULL
L75
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I I I T T I] [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/item/ItemStack]
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146994_N : Lnet/minecraft/item/ItemStack;
L72
LINENUMBER 639 L72
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I I I T T I] []
ALOAD 0
ALOAD 4
ILOAD 8
ILOAD 3
ILOAD 11
IFEQ L76
ICONST_1
GOTO L77
L76
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I I I T T I] [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/inventory/Slot I I]
ICONST_0
L77
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I I I T T I] [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/inventory/Slot I I I]
INVOKEVIRTUAL net/minecraft/client/gui/inventory/GuiContainer.managerHandleMouseClick (Lnet/minecraft/inventory/Slot;III)V
GOTO L25
L65
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I I I] []
ILOAD 3
IFLT L25
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.manager : Lcodechicken/nei/guihook/GuiContainerManager;
ILOAD 1
ILOAD 2
ILOAD 3
INVOKEVIRTUAL codechicken/nei/guihook/GuiContainerManager.mouseUp (III)V
L25
LINENUMBER 644 L25
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I I I] []
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
GETFIELD net/minecraft/client/Minecraft.thePlayer : Lnet/minecraft/client/entity/EntityClientPlayerMP;
GETFIELD net/minecraft/client/entity/EntityClientPlayerMP.inventory : Lnet/minecraft/entity/player/InventoryPlayer;
INVOKEVIRTUAL net/minecraft/entity/player/InventoryPlayer.getItemStack ()Lnet/minecraft/item/ItemStack;
IFNONNULL L78
L79
LINENUMBER 646 L79
ALOAD 0
LCONST_0
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_146997_J : J
L78
LINENUMBER 649 L78
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I net/minecraft/inventory/Slot I I I I] []
ALOAD 0
ICONST_0
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.field_147007_t : Z
L80
LINENUMBER 650 L80
RETURN
L81
LOCALVARIABLE slot1 Lnet/minecraft/inventory/Slot; L22 L16 10
LOCALVARIABLE iterator Ljava/util/Iterator; L20 L16 9
LOCALVARIABLE flag1 Z L39 L34 11
LOCALVARIABLE slot1 Lnet/minecraft/inventory/Slot; L64 L62 10
LOCALVARIABLE iterator Ljava/util/Iterator; L61 L58 9
LOCALVARIABLE flag1 Z L71 L25 11
LOCALVARIABLE this Lnet/minecraft/client/gui/inventory/GuiContainer; L0 L81 0
LOCALVARIABLE p_146286_1_ I L0 L81 1
LOCALVARIABLE p_146286_2_ I L0 L81 2
LOCALVARIABLE p_146286_3_ I L0 L81 3
LOCALVARIABLE slot Lnet/minecraft/inventory/Slot; L2 L81 4
LOCALVARIABLE l I L3 L81 5
LOCALVARIABLE i1 I L4 L81 6
LOCALVARIABLE flag Z L8 L81 7
LOCALVARIABLE j1 I L9 L81 8
MAXSTACK = 5
MAXLOCALS = 12
// access flags 0x2
private isMouseOverSlot(Lnet/minecraft/inventory/Slot;II)Z
L0
LINENUMBER 657 L0
ALOAD 0
ALOAD 1
GETFIELD net/minecraft/inventory/Slot.xDisplayPosition : I
ALOAD 1
GETFIELD net/minecraft/inventory/Slot.yDisplayPosition : I
BIPUSH 16
BIPUSH 16
ILOAD 2
ILOAD 3
INVOKEVIRTUAL net/minecraft/client/gui/inventory/GuiContainer.func_146978_c (IIIIII)Z
IRETURN
L1
LOCALVARIABLE this Lnet/minecraft/client/gui/inventory/GuiContainer; L0 L1 0
LOCALVARIABLE p_146981_1_ Lnet/minecraft/inventory/Slot; L0 L1 1
LOCALVARIABLE p_146981_2_ I L0 L1 2
LOCALVARIABLE p_146981_3_ I L0 L1 3
MAXSTACK = 7
MAXLOCALS = 4
// access flags 0x4
protected func_146978_c(IIIIII)Z
L0
LINENUMBER 662 L0
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.guiLeft : I
ISTORE 7
L1
LINENUMBER 663 L1
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.guiTop : I
ISTORE 8
L2
LINENUMBER 664 L2
ILOAD 5
ILOAD 7
ISUB
ISTORE 5
L3
LINENUMBER 665 L3
ILOAD 6
ILOAD 8
ISUB
ISTORE 6
L4
LINENUMBER 666 L4
ILOAD 5
ILOAD 1
ICONST_1
ISUB
IF_ICMPLT L5
ILOAD 5
ILOAD 1
ILOAD 3
IADD
ICONST_1
IADD
IF_ICMPGE L5
ILOAD 6
ILOAD 2
ICONST_1
ISUB
IF_ICMPLT L5
ILOAD 6
ILOAD 2
ILOAD 4
IADD
ICONST_1
IADD
IF_ICMPGE L5
ICONST_1
GOTO L6
L5
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I I I I I I] []
ICONST_0
L6
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I I I I I I I] [I]
IRETURN
L7
LOCALVARIABLE this Lnet/minecraft/client/gui/inventory/GuiContainer; L0 L7 0
LOCALVARIABLE p_146978_1_ I L0 L7 1
LOCALVARIABLE p_146978_2_ I L0 L7 2
LOCALVARIABLE p_146978_3_ I L0 L7 3
LOCALVARIABLE p_146978_4_ I L0 L7 4
LOCALVARIABLE p_146978_5_ I L0 L7 5
LOCALVARIABLE p_146978_6_ I L0 L7 6
LOCALVARIABLE k1 I L1 L7 7
LOCALVARIABLE l1 I L2 L7 8
MAXSTACK = 3
MAXLOCALS = 9
// access flags 0x4
protected handleMouseClick(Lnet/minecraft/inventory/Slot;III)V
L0
LINENUMBER 671 L0
ALOAD 1
IFNULL L1
L2
LINENUMBER 673 L2
ALOAD 1
GETFIELD net/minecraft/inventory/Slot.slotNumber : I
ISTORE 2
L1
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/inventory/Slot I I I] []
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.manager : Lcodechicken/nei/guihook/GuiContainerManager;
ILOAD 2
ILOAD 3
ILOAD 4
INVOKEVIRTUAL codechicken/nei/guihook/GuiContainerManager.handleSlotClick (III)V
L3
LINENUMBER 677 L3
RETURN
L4
LOCALVARIABLE this Lnet/minecraft/client/gui/inventory/GuiContainer; L0 L4 0
LOCALVARIABLE p_146984_1_ Lnet/minecraft/inventory/Slot; L0 L4 1
LOCALVARIABLE p_146984_2_ I L0 L4 2
LOCALVARIABLE p_146984_3_ I L0 L4 3
LOCALVARIABLE p_146984_4_ I L0 L4 4
MAXSTACK = 4
MAXLOCALS = 5
// access flags 0x4
protected keyTyped(CI)V
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.manager : Lcodechicken/nei/guihook/GuiContainerManager;
ILOAD 2
ILOAD 1
INVOKEVIRTUAL codechicken/nei/guihook/GuiContainerManager.lastKeyTyped (IC)Z
IFEQ L0
RETURN
L0
LINENUMBER 684 L0
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I] []
ILOAD 2
ICONST_1
IF_ICMPEQ L1
ILOAD 2
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
GETFIELD net/minecraft/client/Minecraft.gameSettings : Lnet/minecraft/client/settings/GameSettings;
GETFIELD net/minecraft/client/settings/GameSettings.keyBindInventory : Lnet/minecraft/client/settings/KeyBinding;
INVOKEVIRTUAL net/minecraft/client/settings/KeyBinding.getKeyCode ()I
IF_ICMPNE L2
L1
LINENUMBER 686 L1
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I] []
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
GETFIELD net/minecraft/client/Minecraft.thePlayer : Lnet/minecraft/client/entity/EntityClientPlayerMP;
INVOKEVIRTUAL net/minecraft/client/entity/EntityClientPlayerMP.closeScreen ()V
L2
LINENUMBER 689 L2
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I] []
ALOAD 0
ILOAD 2
INVOKEVIRTUAL net/minecraft/client/gui/inventory/GuiContainer.checkHotbarKeys (I)Z
POP
L3
LINENUMBER 691 L3
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.theSlot : Lnet/minecraft/inventory/Slot;
IFNULL L4
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.theSlot : Lnet/minecraft/inventory/Slot;
INVOKEVIRTUAL net/minecraft/inventory/Slot.getHasStack ()Z
IFEQ L4
L5
LINENUMBER 693 L5
ILOAD 2
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
GETFIELD net/minecraft/client/Minecraft.gameSettings : Lnet/minecraft/client/settings/GameSettings;
GETFIELD net/minecraft/client/settings/GameSettings.keyBindPickBlock : Lnet/minecraft/client/settings/KeyBinding;
INVOKEVIRTUAL net/minecraft/client/settings/KeyBinding.getKeyCode ()I
IF_ICMPNE L6
L7
LINENUMBER 695 L7
ALOAD 0
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.theSlot : Lnet/minecraft/inventory/Slot;
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.theSlot : Lnet/minecraft/inventory/Slot;
GETFIELD net/minecraft/inventory/Slot.slotNumber : I
ICONST_0
ICONST_3
INVOKEVIRTUAL net/minecraft/client/gui/inventory/GuiContainer.managerHandleMouseClick (Lnet/minecraft/inventory/Slot;III)V
GOTO L4
L6
LINENUMBER 697 L6
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I] []
ILOAD 2
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
GETFIELD net/minecraft/client/Minecraft.gameSettings : Lnet/minecraft/client/settings/GameSettings;
GETFIELD net/minecraft/client/settings/GameSettings.keyBindDrop : Lnet/minecraft/client/settings/KeyBinding;
INVOKEVIRTUAL net/minecraft/client/settings/KeyBinding.getKeyCode ()I
IF_ICMPNE L4
L8
LINENUMBER 699 L8
ALOAD 0
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.theSlot : Lnet/minecraft/inventory/Slot;
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.theSlot : Lnet/minecraft/inventory/Slot;
GETFIELD net/minecraft/inventory/Slot.slotNumber : I
INVOKESTATIC net/minecraft/client/gui/inventory/GuiContainer.isCtrlKeyDown ()Z
IFEQ L9
ICONST_1
GOTO L10
L9
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I] [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/inventory/Slot I]
ICONST_0
L10
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I] [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/inventory/Slot I I]
ICONST_4
INVOKEVIRTUAL net/minecraft/client/gui/inventory/GuiContainer.managerHandleMouseClick (Lnet/minecraft/inventory/Slot;III)V
L4
LINENUMBER 702 L4
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I] []
RETURN
L11
LOCALVARIABLE this Lnet/minecraft/client/gui/inventory/GuiContainer; L0 L11 0
LOCALVARIABLE p_73869_1_ C L0 L11 1
LOCALVARIABLE p_73869_2_ I L0 L11 2
MAXSTACK = 5
MAXLOCALS = 3
// access flags 0x4
protected checkHotbarKeys(I)Z
L0
LINENUMBER 709 L0
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
GETFIELD net/minecraft/client/Minecraft.thePlayer : Lnet/minecraft/client/entity/EntityClientPlayerMP;
GETFIELD net/minecraft/client/entity/EntityClientPlayerMP.inventory : Lnet/minecraft/entity/player/InventoryPlayer;
INVOKEVIRTUAL net/minecraft/entity/player/InventoryPlayer.getItemStack ()Lnet/minecraft/item/ItemStack;
IFNONNULL L1
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.theSlot : Lnet/minecraft/inventory/Slot;
IFNULL L1
L2
LINENUMBER 711 L2
ICONST_0
ISTORE 2
L3
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I] []
ILOAD 2
BIPUSH 9
IF_ICMPGE L1
L4
LINENUMBER 713 L4
ILOAD 1
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
GETFIELD net/minecraft/client/Minecraft.gameSettings : Lnet/minecraft/client/settings/GameSettings;
GETFIELD net/minecraft/client/settings/GameSettings.keyBindsHotbar : [Lnet/minecraft/client/settings/KeyBinding;
ILOAD 2
AALOAD
INVOKEVIRTUAL net/minecraft/client/settings/KeyBinding.getKeyCode ()I
IF_ICMPNE L5
L6
LINENUMBER 715 L6
ALOAD 0
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.theSlot : Lnet/minecraft/inventory/Slot;
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.theSlot : Lnet/minecraft/inventory/Slot;
GETFIELD net/minecraft/inventory/Slot.slotNumber : I
ILOAD 2
ICONST_2
INVOKEVIRTUAL net/minecraft/client/gui/inventory/GuiContainer.managerHandleMouseClick (Lnet/minecraft/inventory/Slot;III)V
L7
LINENUMBER 716 L7
ICONST_1
IRETURN
L5
LINENUMBER 711 L5
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I I] []
IINC 2 1
GOTO L3
L1
LINENUMBER 721 L1
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer I] []
ICONST_0
IRETURN
L8
LOCALVARIABLE j I L3 L1 2
LOCALVARIABLE this Lnet/minecraft/client/gui/inventory/GuiContainer; L0 L8 0
LOCALVARIABLE p_146983_1_ I L0 L8 1
MAXSTACK = 5
MAXLOCALS = 3
// access flags 0x1
public onGuiClosed()V
L0
LINENUMBER 729 L0
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
GETFIELD net/minecraft/client/Minecraft.thePlayer : Lnet/minecraft/client/entity/EntityClientPlayerMP;
IFNULL L1
L2
LINENUMBER 731 L2
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.inventorySlots : Lnet/minecraft/inventory/Container;
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
GETFIELD net/minecraft/client/Minecraft.thePlayer : Lnet/minecraft/client/entity/EntityClientPlayerMP;
INVOKEVIRTUAL net/minecraft/inventory/Container.onContainerClosed (Lnet/minecraft/entity/player/EntityPlayer;)V
L1
LINENUMBER 733 L1
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer] []
RETURN
L3
LOCALVARIABLE this Lnet/minecraft/client/gui/inventory/GuiContainer; L0 L3 0
MAXSTACK = 2
MAXLOCALS = 1
// access flags 0x1
public doesGuiPauseGame()Z
L0
LINENUMBER 740 L0
ICONST_0
IRETURN
L1
LOCALVARIABLE this Lnet/minecraft/client/gui/inventory/GuiContainer; L0 L1 0
MAXSTACK = 1
MAXLOCALS = 1
// access flags 0x1
public updateScreen()V
L0
LINENUMBER 748 L0
ALOAD 0
INVOKESPECIAL net/minecraft/client/gui/GuiScreen.updateScreen ()V
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.manager : Lcodechicken/nei/guihook/GuiContainerManager;
INVOKEVIRTUAL codechicken/nei/guihook/GuiContainerManager.updateScreen ()V
L1
LINENUMBER 750 L1
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
GETFIELD net/minecraft/client/Minecraft.thePlayer : Lnet/minecraft/client/entity/EntityClientPlayerMP;
INVOKEVIRTUAL net/minecraft/client/entity/EntityClientPlayerMP.isEntityAlive ()Z
IFEQ L2
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
GETFIELD net/minecraft/client/Minecraft.thePlayer : Lnet/minecraft/client/entity/EntityClientPlayerMP;
GETFIELD net/minecraft/client/entity/EntityClientPlayerMP.isDead : Z
IFEQ L3
L2
LINENUMBER 752 L2
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer] []
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.mc : Lnet/minecraft/client/Minecraft;
GETFIELD net/minecraft/client/Minecraft.thePlayer : Lnet/minecraft/client/entity/EntityClientPlayerMP;
INVOKEVIRTUAL net/minecraft/client/entity/EntityClientPlayerMP.closeScreen ()V
L3
LINENUMBER 754 L3
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer] []
RETURN
L4
LOCALVARIABLE this Lnet/minecraft/client/gui/inventory/GuiContainer; L0 L4 0
MAXSTACK = 1
MAXLOCALS = 1
// access flags 0x8
static <clinit>()V
L0
LINENUMBER 29 L0
NEW net/minecraft/util/ResourceLocation
DUP
LDC "textures/gui/container/inventory.png"
INVOKESPECIAL net/minecraft/util/ResourceLocation.<init> (Ljava/lang/String;)V
PUTSTATIC net/minecraft/client/gui/inventory/GuiContainer.field_147001_a : Lnet/minecraft/util/ResourceLocation;
RETURN
MAXSTACK = 3
MAXLOCALS = 0
// access flags 0x1
public setWorldAndResolution(Lnet/minecraft/client/Minecraft;II)V
ALOAD 0
ALOAD 1
ILOAD 2
ILOAD 3
INVOKESPECIAL net/minecraft/client/gui/GuiScreen.setWorldAndResolution (Lnet/minecraft/client/Minecraft;II)V
ALOAD 1
GETFIELD net/minecraft/client/Minecraft.currentScreen : Lnet/minecraft/client/gui/GuiScreen;
ALOAD 0
IF_ACMPNE L0
ALOAD 0
NEW codechicken/nei/guihook/GuiContainerManager
DUP
ALOAD 0
INVOKESPECIAL codechicken/nei/guihook/GuiContainerManager.<init> (Lnet/minecraft/client/gui/inventory/GuiContainer;)V
PUTFIELD net/minecraft/client/gui/inventory/GuiContainer.manager : Lcodechicken/nei/guihook/GuiContainerManager;
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.manager : Lcodechicken/nei/guihook/GuiContainerManager;
INVOKEVIRTUAL codechicken/nei/guihook/GuiContainerManager.load ()V
L0
FRAME FULL [net/minecraft/client/gui/inventory/GuiContainer net/minecraft/client/Minecraft I I] []
RETURN
MAXSTACK = 4
MAXLOCALS = 4
// access flags 0x1
public handleKeyboardInput()V
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.manager : Lcodechicken/nei/guihook/GuiContainerManager;
INVOKEVIRTUAL codechicken/nei/guihook/GuiContainerManager.handleKeyboardInput ()V
RETURN
MAXSTACK = 1
MAXLOCALS = 1
// access flags 0x1
public handleMouseInput()V
ALOAD 0
INVOKESPECIAL net/minecraft/client/gui/GuiScreen.handleMouseInput ()V
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.manager : Lcodechicken/nei/guihook/GuiContainerManager;
INVOKEVIRTUAL codechicken/nei/guihook/GuiContainerManager.handleMouseWheel ()V
RETURN
MAXSTACK = 1
MAXLOCALS = 1
// access flags 0x1
public public_func_73869_a(CI)V
ALOAD 0
ILOAD 1
ILOAD 2
INVOKEVIRTUAL net/minecraft/client/gui/inventory/GuiContainer.keyTyped (CI)V
RETURN
MAXSTACK = 3
MAXLOCALS = 3
// access flags 0x1
public public_func_146984_a(Lnet/minecraft/inventory/Slot;III)V
ALOAD 0
ALOAD 1
ILOAD 2
ILOAD 3
ILOAD 4
INVOKEVIRTUAL net/minecraft/client/gui/inventory/GuiContainer.handleMouseClick (Lnet/minecraft/inventory/Slot;III)V
RETURN
MAXSTACK = 5
MAXLOCALS = 5
// access flags 0x1
public managerHandleMouseClick(Lnet/minecraft/inventory/Slot;III)V
ALOAD 0
GETFIELD net/minecraft/client/gui/inventory/GuiContainer.manager : Lcodechicken/nei/guihook/GuiContainerManager;
ALOAD 1
ILOAD 2
ILOAD 3
ILOAD 4
INVOKEVIRTUAL codechicken/nei/guihook/GuiContainerManager.handleMouseClick (Lnet/minecraft/inventory/Slot;III)V
RETURN
MAXSTACK = 5
MAXLOCALS = 5
}
|