LiteLoader.java
54.5 KB
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
package com.mumfrey.liteloader.core;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileWriter;
import java.io.FilenameFilter;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.PrintStream;
import java.io.UnsupportedEncodingException;
import java.lang.reflect.Method;
import java.net.MalformedURLException;
import java.net.URISyntaxException;
import java.net.URL;
import java.net.URLClassLoader;
import java.net.URLDecoder;
import java.nio.charset.Charset;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Properties;
import java.util.TreeSet;
import java.util.logging.FileHandler;
import java.util.logging.Formatter;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.logging.StreamHandler;
import java.util.zip.ZipEntry;
import java.util.zip.ZipFile;
import java.util.zip.ZipInputStream;
import javax.activity.InvalidActivityException;
import net.minecraft.src.ChatMessageComponent;
import net.minecraft.src.Minecraft;
import net.minecraft.src.GuiControls;
import net.minecraft.src.GuiNewChat;
import net.minecraft.src.GuiScreen;
import net.minecraft.src.ILogAgent;
import net.minecraft.src.IPlayerUsage;
import net.minecraft.src.NetHandler;
import net.minecraft.src.Packet1Login;
import net.minecraft.src.Packet3Chat;
import net.minecraft.src.PlayerUsageSnooper;
import net.minecraft.src.Profiler;
import net.minecraft.src.ScaledResolution;
import net.minecraft.src.Timer;
import com.mumfrey.liteloader.ChatFilter;
import com.mumfrey.liteloader.ChatListener;
import com.mumfrey.liteloader.ChatRenderListener;
import com.mumfrey.liteloader.GameLoopListener;
import com.mumfrey.liteloader.InitCompleteListener;
import com.mumfrey.liteloader.LiteMod;
import com.mumfrey.liteloader.LoginListener;
import com.mumfrey.liteloader.Permissible;
import com.mumfrey.liteloader.PluginChannelListener;
import com.mumfrey.liteloader.PostRenderListener;
import com.mumfrey.liteloader.PreLoginListener;
import com.mumfrey.liteloader.RenderListener;
import com.mumfrey.liteloader.Tickable;
import com.mumfrey.liteloader.gui.GuiControlsPaginated;
import com.mumfrey.liteloader.permissions.PermissionsManagerClient;
import com.mumfrey.liteloader.util.ModUtilities;
import com.mumfrey.liteloader.util.PrivateFields;
/**
* LiteLoader is a simple loader which loads and provides useful callbacks to
* lightweight mods
*
* @author Adam Mummery-Smith
* @version 1.6.2
*/
public final class LiteLoader implements FilenameFilter, IPlayerUsage
{
/**
* Liteloader version
*/
private static final LiteLoaderVersion VERSION = LiteLoaderVersion.MC_1_6_2_R0;
/**
* Maximum recursion depth for mod discovery
*/
private static final int MAX_DISCOVERY_DEPTH = 16;
/**
* LiteLoader is a singleton, this is the singleton instance
*/
private static LiteLoader instance;
/**
* Logger for LiteLoader events
*/
public static Logger logger = Logger.getLogger("liteloader");
/**
* Use stdout rather than stderr
*/
private static boolean useStdOut = false;
/**
* Game dir from launcher
*/
private static File gameDirectory;
/**
* Assets dir from launcher
*/
private static File assetsDirectory;
/**
* Profile name from launcher
*/
private static String profile = "";
/**
* List of mods passed into the command line
*/
private static List<String> modNameFilter = null;
/**
* Mods folder which contains mods and legacy config files
*/
private File modsFolder;
/**
* Base config folder which contains LiteLoader config files and versioned
* subfolders
*/
private File configBaseFolder;
/**
* Folder containing version-independent configuration
*/
private File commonConfigFolder;
/**
* Folder containing version-specific configuration
*/
private File versionConfigFolder;
/**
* Reference to the Minecraft game instance
*/
private Minecraft minecraft = Minecraft.getMinecraft();
/**
* File containing the properties
*/
private File propertiesFile;
/**
* Internal properties loaded from inside the jar
*/
private Properties internalProperties = new Properties();
/**
* LiteLoader properties
*/
private Properties localProperties = new Properties();
/**
* Pack brand from properties, used to put the modpack/compilation name in
* crash reports
*/
private String branding = null;
/**
* Setting value, if true we will swap out the MC "Controls" GUI for our
* custom, paginated one
*/
private boolean paginateControls = true;
/**
* Reference to the minecraft timer
*/
private Timer minecraftTimer;
/**
* Classes to load, mapped by class name
*/
private Map<String, Class<? extends LiteMod>> modsToLoad = new HashMap<String, Class<? extends LiteMod>>();
/**
* Mod metadata from version file
*/
private Map<String, ModFile> modFiles = new HashMap<String, ModFile>();
/**
* List of loaded mods, for crash reporting
*/
private String loadedModsList = "none";
/**
* Global list of mods which we have loaded
*/
private LinkedList<LiteMod> mods = new LinkedList<LiteMod>();
/**
* List of mods which implement Tickable interface and will receive tick
* events
*/
private LinkedList<Tickable> tickListeners = new LinkedList<Tickable>();
/**
* List of mods which implement the GameLoopListener interface and will
* receive loop events
*/
private LinkedList<GameLoopListener> loopListeners = new LinkedList<GameLoopListener>();
/**
*
*/
private LinkedList<InitCompleteListener> initListeners = new LinkedList<InitCompleteListener>();
/**
* List of mods which implement RenderListener interface and will receive
* render events events
*/
private LinkedList<RenderListener> renderListeners = new LinkedList<RenderListener>();
/**
* List of mods which implement the PostRenderListener interface and want to
* render entities
*/
private LinkedList<PostRenderListener> postRenderListeners = new LinkedList<PostRenderListener>();
/**
* List of mods which implement ChatRenderListener and want to know when
* chat is rendered
*/
private LinkedList<ChatRenderListener> chatRenderListeners = new LinkedList<ChatRenderListener>();
/**
* List of mods which implement ChatListener interface and will receive chat
* events
*/
private LinkedList<ChatListener> chatListeners = new LinkedList<ChatListener>();
/**
* List of mods which implement ChatFilter interface and will receive chat
* filter events
*/
private LinkedList<ChatFilter> chatFilters = new LinkedList<ChatFilter>();
/**
* List of mods which implement LoginListener interface and will receive
* client login events
*/
private LinkedList<LoginListener> loginListeners = new LinkedList<LoginListener>();
/**
* List of mods which implement LoginListener interface and will receive
* client login events
*/
private LinkedList<PreLoginListener> preLoginListeners = new LinkedList<PreLoginListener>();
/**
* List of mods which implement PluginChannelListener interface
*/
private LinkedList<PluginChannelListener> pluginChannelListeners = new LinkedList<PluginChannelListener>();
/**
* Mapping of plugin channel names to listeners
*/
private HashMap<String, LinkedList<PluginChannelListener>> pluginChannels = new HashMap<String, LinkedList<PluginChannelListener>>();
/**
* Reference to the addUrl method on URLClassLoader
*/
private Method mAddUrl;
/**
* Flag which keeps track of whether late initialisation has been done
*/
private boolean loaderStartupDone, loaderStartupComplete, lateInitDone;
/**
* Flags which keep track of whether hooks have been applied
*/
private boolean chatHooked, loginHooked, pluginChannelHooked, tickHooked;
/**
* Profiler hook objects
*/
private HookProfiler profilerHook = new HookProfiler(this, logger);
/**
* ScaledResolution used by the pre-chat and post-chat render callbacks
*/
private ScaledResolution currentResolution;
/**
* Permission Manager
*/
private static PermissionsManagerClient permissionsManager = PermissionsManagerClient.getInstance();
public static final void init(File gameDirectory, File assetsDirectory, String profile, List<String> modNameFilter)
{
if (instance == null)
{
LiteLoader.gameDirectory = gameDirectory;
LiteLoader.assetsDirectory = assetsDirectory;
LiteLoader.profile = profile;
try
{
if (modNameFilter != null)
{
LiteLoader.modNameFilter = new ArrayList<String>();
for (String filterEntry : modNameFilter)
{
LiteLoader.modNameFilter.add(filterEntry.toLowerCase().trim());
}
}
}
catch (Exception ex)
{
LiteLoader.modNameFilter = null;
}
instance = new LiteLoader();
instance.initLoader();
}
}
/**
* Get the singleton instance of LiteLoader, initialises the loader if
* necessary
*
* @param locationProvider
* @return LiteLoader instance
*/
public static final LiteLoader getInstance()
{
return instance;
}
/**
* Get the LiteLoader logger object
*
* @return
*/
public static final Logger getLogger()
{
return logger;
}
/**
* Get the output stream which we are using for console output
*
* @return
*/
public static final PrintStream getConsoleStream()
{
return useStdOut ? System.out : System.err;
}
/**
* Get LiteLoader version
*
* @return
*/
public static final String getVersion()
{
return VERSION.getLoaderVersion();
}
/**
* Get the loader revision
*
* @return
*/
public static final int getRevision()
{
return VERSION.getLoaderRevision();
}
public static final PermissionsManagerClient getPermissionsManager()
{
return permissionsManager;
}
/**
* LiteLoader constructor
*/
private LiteLoader()
{
this.initPaths();
}
/**
* Set up paths used by the loader
*/
private void initPaths()
{
this.modsFolder = new File(LiteLoader.gameDirectory, "mods");
this.configBaseFolder = new File(LiteLoader.gameDirectory, "liteconfig");
this.commonConfigFolder = new File(this.configBaseFolder, "common");
this.versionConfigFolder = this.inflectVersionedConfigPath(LiteLoader.VERSION);
if (!this.modsFolder.exists()) this.modsFolder.mkdirs();
if (!this.configBaseFolder.exists()) this.configBaseFolder.mkdirs();
if (!this.commonConfigFolder.exists()) this.commonConfigFolder.mkdirs();
if (!this.versionConfigFolder.exists()) this.versionConfigFolder.mkdirs();
this.propertiesFile = new File(this.configBaseFolder, "liteloader.properties");
}
/**
* @param version
* @return
*/
protected File inflectVersionedConfigPath(LiteLoaderVersion version)
{
if (version.equals(LiteLoaderVersion.LEGACY))
{
return this.modsFolder;
}
return new File(this.configBaseFolder, String.format("config.%s", version.getLoaderVersion()));
}
/**
* Loader initialisation
*/
private void initLoader()
{
if (this.loaderStartupDone) return;
this.loaderStartupDone = true;
// Set up loader, initialises any reflection methods needed
if (this.prepareLoader())
{
logger.info(String.format("LiteLoader %s starting up...", VERSION));
// Print the branding version if any was provided
if (this.branding != null)
{
logger.info(String.format("Active Pack: %s", this.branding));
}
logger.info(String.format("Java reports OS=\"%s\"", System.getProperty("os.name").toLowerCase()));
boolean searchMods = this.localProperties.getProperty("search.mods", "true").equalsIgnoreCase("true");
boolean searchProtectionDomain = this.localProperties.getProperty("search.jar", "true").equalsIgnoreCase("true");
boolean searchClassPath = this.localProperties.getProperty("search.classpath", "true").equalsIgnoreCase("true");
if (!searchMods && !searchProtectionDomain && !searchClassPath)
{
logger.warning("Invalid configuration, no search locations defined. Enabling all search locations.");
this.localProperties.setProperty("search.mods", "true");
this.localProperties.setProperty("search.jar", "true");
this.localProperties.setProperty("search.classpath", "true");
searchMods = true;
searchProtectionDomain = true;
searchClassPath = true;
}
// Examines the class path and mods folder and locates loadable mods
this.prepareMods(searchMods, searchProtectionDomain, searchClassPath);
// Initialises enumerated mods
this.initMods();
// Initialises the required hooks for loaded mods
this.initHooks();
this.loaderStartupComplete = true;
this.writeProperties();
}
}
/**
* Set up reflection methods required by the loader
*/
private boolean prepareLoader()
{
try
{
// addURL method is used by the class loader to
this.mAddUrl = URLClassLoader.class.getDeclaredMethod("addURL", URL.class);
this.mAddUrl.setAccessible(true);
// Prepare the properties
this.prepareProperties();
// Prepare the log writer
this.prepareLogger();
this.paginateControls = this.localProperties.getProperty("controls.pages", "true").equalsIgnoreCase("true");
this.localProperties.setProperty("controls.pages", String.valueOf(this.paginateControls));
this.branding = this.internalProperties.getProperty("brand", null);
if (this.branding != null && this.branding.length() < 1)
this.branding = null;
// Save appropriate branding in the local properties file
if (this.branding != null)
this.localProperties.setProperty("brand", this.branding);
else
this.localProperties.remove("brand");
}
catch (Throwable th)
{
logger.log(Level.SEVERE, "Error initialising LiteLoader", th);
return false;
}
return true;
}
/**
* @throws SecurityException
* @throws IOException
*/
private void prepareLogger() throws SecurityException, IOException
{
Formatter logFormatter = new LiteLoaderLogFormatter();
logger.setUseParentHandlers(false);
this.useStdOut = System.getProperty("liteloader.log", "stderr").equalsIgnoreCase("stdout") || this.localProperties.getProperty("log", "stderr").equalsIgnoreCase("stdout");
StreamHandler consoleHandler = useStdOut ? new com.mumfrey.liteloader.util.log.ConsoleHandler() : new java.util.logging.ConsoleHandler();
consoleHandler.setFormatter(logFormatter);
logger.addHandler(consoleHandler);
FileHandler logFileHandler = new FileHandler(new File(this.configBaseFolder, "LiteLoader.txt").getAbsolutePath());
logFileHandler.setFormatter(logFormatter);
logger.addHandler(logFileHandler);
}
/**
* Prepare the loader properties
*/
private void prepareProperties()
{
try
{
InputStream propertiesStream = LiteLoader.class.getResourceAsStream("/liteloader.properties");
if (propertiesStream != null)
{
this.internalProperties.load(propertiesStream);
propertiesStream.close();
}
}
catch (Throwable th)
{
this.internalProperties = new Properties();
}
try
{
this.localProperties = new Properties(this.internalProperties);
InputStream localPropertiesStream = this.getLocalPropertiesStream();
if (localPropertiesStream != null)
{
this.localProperties.load(localPropertiesStream);
localPropertiesStream.close();
}
}
catch (Throwable th)
{
this.localProperties = new Properties(this.internalProperties);
}
}
/**
* Get the properties stream either from the jar or from the properties file
* in the minecraft folder
*
* @return
* @throws FileNotFoundException
*/
private InputStream getLocalPropertiesStream() throws FileNotFoundException
{
if (this.propertiesFile.exists())
{
return new FileInputStream(this.propertiesFile);
}
// Otherwise read settings from the config
return LiteLoader.class.getResourceAsStream("/liteloader.properties");
}
/**
* Write current properties to the properties file
*/
private void writeProperties()
{
try
{
this.localProperties.store(new FileWriter(this.propertiesFile), String.format("Properties for LiteLoader %s", VERSION));
}
catch (Throwable th)
{
logger.log(Level.WARNING, "Error writing liteloader properties", th);
}
}
/**
* Get the "mods" folder
*/
public File getModsFolder()
{
return this.modsFolder;
}
/**
* Get the common (version-independent) config folder
*/
public File getCommonConfigFolder()
{
return this.commonConfigFolder;
}
/**
* Get the config folder for this version
*/
public File getConfigFolder()
{
return this.versionConfigFolder;
}
/**
* @return
*/
public static File getGameDirectory()
{
return LiteLoader.gameDirectory;
}
/**
* @return
*/
public static File getAssetsDirectory()
{
return LiteLoader.assetsDirectory;
}
/**
* @return
*/
public static String getProfile()
{
return LiteLoader.profile;
}
/**
* Used for crash reporting
*
* @return List of loaded mods as a string
*/
public String getLoadedModsList()
{
return this.loadedModsList;
}
/**
* Used to get the name of the modpack being used
*
* @return name of the modpack in use or null if no pack
*/
public String getBranding()
{
return this.branding;
}
/**
* Used by the version upgrade code, gets a version of the mod name suitable
* for inclusion in the properties file
*
* @param modName
* @return
*/
private String getModNameForConfig(Class<? extends LiteMod> modClass, String modName)
{
if (modName == null || modName.isEmpty())
{
modName = modClass.getSimpleName().toLowerCase();
}
return String.format("version.%s", modName.toLowerCase().replaceAll("[^a-z0-9_\\-\\.]", ""));
}
/**
* Store current revision for mod in the config file
*
* @param modKey
*/
private void storeLastKnownModRevision(String modKey)
{
if (this.localProperties != null)
{
this.localProperties.setProperty(modKey, String.valueOf(LiteLoader.VERSION.getLoaderRevision()));
this.writeProperties();
}
}
/**
* Get last know revision for mod from the config file
*
* @param modKey
* @return
*/
private int getLastKnownModRevision(String modKey)
{
if (this.localProperties != null)
{
String storedRevision = this.localProperties.getProperty(modKey, "0");
return Integer.parseInt(storedRevision);
}
return 0;
}
/**
* Get a reference to a loaded mod, if the mod exists
*
* @param modName Mod's name or class name
* @return
* @throws InvalidActivityException
*/
@SuppressWarnings("unchecked")
public <T extends LiteMod> T getMod(String modName) throws InvalidActivityException, IllegalArgumentException
{
if (!this.loaderStartupComplete)
{
throw new InvalidActivityException("Attempted to get a reference to a mod before loader startup is complete");
}
if (modName == null)
{
throw new IllegalArgumentException("Attempted to get a reference to a mod without specifying a mod name");
}
for (LiteMod mod : this.mods)
{
if (modName.equalsIgnoreCase(mod.getName()) || modName.equalsIgnoreCase(mod.getClass().getSimpleName()))
return (T)mod;
}
return null;
}
/**
* Get whether the specified mod is installed
*
* @param modName
* @return
*/
public boolean isModInstalled(String modName)
{
if (!this.loaderStartupComplete || modName == null) return false;
for (LiteMod mod : this.mods)
{
if (modName.equalsIgnoreCase(mod.getName()) || modName.equalsIgnoreCase(mod.getClass().getSimpleName())) return true;
}
return true;
}
/**
* Get metadata for the specified mod, attempts to retrieve the mod by name first
*
* @param mod
* @param metaDataKey
* @param defaultValue
* @return
* @throws InvalidActivityException
* @throws IllegalArgumentException
*/
public String getModMetaData(String mod, String metaDataKey, String defaultValue) throws InvalidActivityException, IllegalArgumentException
{
return this.getModMetaData(this.getMod(mod), metaDataKey, defaultValue);
}
/**
* Get a metadata value for the specified mod
*
* @param mod
* @param metaDataKey
* @param defaultValue
* @return
*/
public String getModMetaData(LiteMod mod, String metaDataKey, String defaultValue)
{
if (mod == null || metaDataKey == null) return defaultValue;
String modClassName = mod.getClass().getSimpleName();
if (!this.modFiles.containsKey(modClassName)) return defaultValue;
ModFile modFile = this.modFiles.get(modClassName);
return modFile.getMetaValue(metaDataKey, defaultValue);
}
/**
* Enumerate the java class path and "mods" folder to find mod classes, then
* load the classes
*/
private void prepareMods(boolean searchMods, boolean searchProtectionDomain, boolean searchClassPath)
{
// List of mod files in the "mods" folder
List<ModFile> modFiles = new LinkedList<ModFile>();
if (searchMods)
{
// Find and enumerate the "mods" folder
File modFolder = this.getModsFolder();
if (modFolder.exists() && modFolder.isDirectory())
{
logger.info("Mods folder found, searching " + modFolder.getPath());
this.findModFiles(modFolder, modFiles);
logger.info("Found " + modFiles.size() + " mod file(s)");
}
}
try
{
logger.info("Enumerating class path...");
String classPath = System.getProperty("java.class.path");
String classPathSeparator = System.getProperty("path.separator");
String[] classPathEntries = classPath.split(classPathSeparator);
logger.info(String.format("Class path separator=\"%s\"", classPathSeparator));
logger.info(String.format("Class path entries=(\n classpathEntry=%s\n)", classPath.replace(classPathSeparator, "\n classpathEntry=")));
if (searchProtectionDomain || searchClassPath)
logger.info("Discovering mods on class path...");
this.findModClasses(classPathEntries, modFiles, searchProtectionDomain, searchClassPath);
logger.info("Mod class discovery completed");
}
catch (Throwable th)
{
logger.log(Level.WARNING, "Mod class discovery failed", th);
return;
}
this.loadMods();
}
/**
* Find mod files in the "mods" folder
*
* @param modFolder Folder to search
* @param modFiles List of mod files to load
*/
protected void findModFiles(File modFolder, List<ModFile> modFiles)
{
Map<String, TreeSet<ModFile>> versionOrderingSets = new HashMap<String, TreeSet<ModFile>>();
for (File modFile : modFolder.listFiles(this))
{
try
{
String strVersion = null;
// Check for a version file
ZipFile modZip = new ZipFile(modFile);
ZipEntry version = modZip.getEntry("litemod.json");
if (version == null)
{
version = modZip.getEntry("version.txt");
}
if (version != null)
{
BufferedReader versionReader = null;
StringBuilder versionBuilder = new StringBuilder();
try
{
// Read the version string
InputStream versionStream = modZip.getInputStream(version);
versionReader = new BufferedReader(new InputStreamReader(versionStream));
String versionFileLine;
while ((versionFileLine = versionReader.readLine()) != null)
versionBuilder.append(versionFileLine);
strVersion = versionBuilder.toString();
}
catch (Exception ex)
{
logger.warning("Error reading version data from " + modFile.getName());
}
finally
{
if (versionReader != null) versionReader.close();
}
if (strVersion != null)
{
ModFile modFileInfo = new ModFile(modFile, strVersion);
if (modFileInfo.isValid())
{
// Only add the mod if the version matches and we were able
// to successfully add it to the class path
if (LiteLoader.VERSION.isVersionSupported(modFileInfo.getVersion()))
{
if (!modFileInfo.isJson())
{
logger.warning("Missing or invalid litemod.json reading mod file: " + modFile.getAbsolutePath());
}
if (!versionOrderingSets.containsKey(modFileInfo.getName()))
{
versionOrderingSets.put(modFileInfo.getName(), new TreeSet<ModFile>());
}
versionOrderingSets.get(modFileInfo.getName()).add(modFileInfo);
}
else
{
logger.info("Not adding invalid or outdated mod file: " + modFile.getAbsolutePath());
}
}
}
}
modZip.close();
}
catch (Exception ex)
{
ex.printStackTrace(System.err);
logger.warning("Error enumerating '" + modFile.getAbsolutePath() + "': Invalid zip file or error reading file");
}
}
// Copy the first entry in every version set into the modfiles list
for (Entry<String, TreeSet<ModFile>> modFileEntry : versionOrderingSets.entrySet())
{
ModFile newestVersion = modFileEntry.getValue().iterator().next();
try
{
if (this.addURLToClassPath(newestVersion.toURI().toURL()))
{
modFiles.add(newestVersion);
}
}
catch (Exception ex)
{
logger.warning("Error injecting '" + newestVersion.getAbsolutePath() + "' into classPath. The mod will not be loaded");
}
}
}
/*
* (non-Javadoc)
*
* @see java.io.FilenameFilter#accept(java.io.File, java.lang.String)
*/
@Override
public boolean accept(File dir, String fileName)
{
return fileName.toLowerCase().endsWith(".litemod");
}
/**
* Find mod classes in the class path and enumerated mod files list
*
* @param classPathEntries Java class path split into string entries
*/
private void findModClasses(String[] classPathEntries, List<ModFile> modFiles, boolean searchProtectionDomain, boolean searchClassPath)
{
if (searchProtectionDomain)
{
try
{
this.searchProtectionDomain();
}
catch (Throwable th)
{
logger.warning("Error loading from local class path: " + th.getMessage());
}
}
if (searchClassPath)
{
// Search through the class path and find mod classes
this.searchClassPath(classPathEntries);
}
// Search through mod files and find mod classes
this.searchModFiles(modFiles);
}
/**
* @param modsToLoad
* @throws MalformedURLException
* @throws URISyntaxException
* @throws UnsupportedEncodingException
*/
@SuppressWarnings("unchecked")
private void searchProtectionDomain() throws MalformedURLException, URISyntaxException, UnsupportedEncodingException
{
logger.info("Searching protection domain code source...");
File packagePath = null;
URL protectionDomainLocation = LiteLoader.class.getProtectionDomain().getCodeSource().getLocation();
if (protectionDomainLocation != null)
{
if (protectionDomainLocation.toString().indexOf('!') > -1 && protectionDomainLocation.toString().startsWith("jar:"))
{
protectionDomainLocation = new URL(protectionDomainLocation.toString().substring(4, protectionDomainLocation.toString().indexOf('!')));
}
packagePath = new File(protectionDomainLocation.toURI());
}
else
{
// Fix (?) for forge and other mods which screw up the
// protection domain
String reflectionClassPath = LiteLoader.class.getResource("/com/mumfrey/liteloader/core/LiteLoader.class").getPath();
if (reflectionClassPath.indexOf('!') > -1)
{
reflectionClassPath = URLDecoder.decode(reflectionClassPath, "UTF-8");
packagePath = new File(reflectionClassPath.substring(5, reflectionClassPath.indexOf('!')));
}
}
if (packagePath != null)
{
LinkedList<Class<?>> modClasses = getSubclassesFor(packagePath, Minecraft.class.getClassLoader(), LiteMod.class, "LiteMod");
for (Class<?> mod : modClasses)
{
if (this.modsToLoad.containsKey(mod.getSimpleName()))
{
logger.warning("Mod name collision for mod with class '" + mod.getSimpleName() + "', maybe you have more than one copy?");
}
this.modsToLoad.put(mod.getSimpleName(), (Class<? extends LiteMod>)mod);
}
if (modClasses.size() > 0)
logger.info(String.format("Found %s potential matches", modClasses.size()));
}
}
/**
* @param classPathEntries
* @param modsToLoad
*/
@SuppressWarnings("unchecked")
private void searchClassPath(String[] classPathEntries)
{
for (String classPathPart : classPathEntries)
{
logger.info(String.format("Searching %s...", classPathPart));
File packagePath = new File(classPathPart);
LinkedList<Class<?>> modClasses = getSubclassesFor(packagePath, Minecraft.class.getClassLoader(), LiteMod.class, "LiteMod");
for (Class<?> mod : modClasses)
{
if (this.modsToLoad.containsKey(mod.getSimpleName()))
{
logger.warning("Mod name collision for mod with class '" + mod.getSimpleName() + "', maybe you have more than one copy?");
}
this.modsToLoad.put(mod.getSimpleName(), (Class<? extends LiteMod>)mod);
}
if (modClasses.size() > 0)
logger.info(String.format("Found %s potential matches", modClasses.size()));
}
}
/**
* @param modFiles
* @param modsToLoad
*/
@SuppressWarnings("unchecked")
private void searchModFiles(List<ModFile> modFiles)
{
for (ModFile modFile : modFiles)
{
logger.info(String.format("Searching %s...", modFile.getAbsolutePath()));
LinkedList<Class<?>> modClasses = getSubclassesFor(modFile, Minecraft.class.getClassLoader(), LiteMod.class, "LiteMod");
for (Class<?> mod : modClasses)
{
if (this.modsToLoad.containsKey(mod.getSimpleName()))
{
logger.warning("Mod name collision for mod with class '" + mod.getSimpleName() + "', maybe you have more than one copy?");
}
this.modsToLoad.put(mod.getSimpleName(), (Class<? extends LiteMod>)mod);
this.modFiles.put(mod.getSimpleName(), modFile);
}
if (modClasses.size() > 0)
logger.info(String.format("Found %s potential matches", modClasses.size()));
}
}
/**
* Create mod instances from the enumerated classes
*
* @param modsToLoad List of mods to load
*/
private void loadMods()
{
if (this.modsToLoad == null)
{
logger.info("Mod class discovery failed. Not loading any mods!");
return;
}
logger.info("Discovered " + this.modsToLoad.size() + " total mod(s)");
for (Class<? extends LiteMod> mod : this.modsToLoad.values())
{
try
{
logger.info("Loading mod from " + mod.getName());
LiteMod newMod = mod.newInstance();
if (this.shouldAddMod(newMod))
{
this.mods.add(newMod);
logger.info("Successfully added mod " + newMod.getName() + " version " + newMod.getVersion());
}
else
{
logger.info("Not loading mod " + newMod.getName() + ", excluded by filter");
}
}
catch (Throwable th)
{
logger.warning(th.toString());
th.printStackTrace();
}
}
}
/**
* @param name
* @return
*/
private boolean shouldAddMod(LiteMod mod)
{
if (this.modNameFilter == null) return true;
String modClassName = mod.getClass().getSimpleName();
if (!this.modFiles.containsKey(modClassName)) return true;
String metaName = this.modFiles.get(modClassName).getModName().toLowerCase();
if (this.modNameFilter.contains(metaName))
{
return true;
}
return false;
}
/**
* Initialise the mods which were loaded
*/
private void initMods()
{
this.loadedModsList = "";
int loadedModsCount = 0;
for (Iterator<LiteMod> iter = this.mods.iterator(); iter.hasNext();)
{
LiteMod mod = iter.next();
String modName = mod.getName();
try
{
logger.info("Initialising mod " + modName + " version " + mod.getVersion());
try
{
String modKey = this.getModNameForConfig(mod.getClass(), modName);
LiteLoaderVersion lastModVersion = LiteLoaderVersion.getVersionFromRevision(this.getLastKnownModRevision(modKey));
if (LiteLoader.VERSION.getLoaderRevision() > lastModVersion.getLoaderRevision())
{
logger.info("Performing config upgrade for mod " + modName + ". Upgrading " + lastModVersion + " to " + LiteLoader.VERSION + "...");
mod.upgradeSettings(LiteLoader.getVersion(), this.versionConfigFolder, this.inflectVersionedConfigPath(lastModVersion));
this.storeLastKnownModRevision(modKey);
logger.info("Config upgrade succeeded for mod " + modName);
}
}
catch (Throwable th)
{
logger.warning("Error performing settings upgrade for " + modName + ". Settings may not be properly migrated");
}
mod.init(this.modsFolder);
if (mod instanceof Tickable)
{
this.addTickListener((Tickable)mod);
}
if (mod instanceof GameLoopListener)
{
this.addLoopListener((GameLoopListener)mod);
}
if (mod instanceof InitCompleteListener)
{
this.addInitListener((InitCompleteListener)mod);
}
if (mod instanceof RenderListener)
{
this.addRenderListener((RenderListener)mod);
}
if (mod instanceof PostRenderListener)
{
this.addPostRenderListener((PostRenderListener)mod);
}
if (mod instanceof ChatFilter)
{
this.addChatFilter((ChatFilter)mod);
}
if (mod instanceof ChatListener)
{
if (mod instanceof ChatFilter)
{
this.logger.warning(String.format("Interface error initialising mod '%1s'. A mod implementing ChatFilter and ChatListener is not supported! Remove one of these interfaces", modName));
}
else
{
this.addChatListener((ChatListener)mod);
}
}
if (mod instanceof ChatRenderListener)
{
this.addChatRenderListener((ChatRenderListener)mod);
}
if (mod instanceof PreLoginListener)
{
this.addPreLoginListener((PreLoginListener)mod);
}
if (mod instanceof LoginListener)
{
this.addLoginListener((LoginListener)mod);
}
if (mod instanceof PluginChannelListener)
{
this.addPluginChannelListener((PluginChannelListener)mod);
}
if (mod instanceof Permissible)
{
permissionsManager.registerPermissible((Permissible)mod);
}
this.loadedModsList += String.format("\n - %s version %s", modName, mod.getVersion());
loadedModsCount++;
}
catch (Throwable th)
{
logger.log(Level.WARNING, "Error initialising mod '" + modName, th);
iter.remove();
}
}
this.loadedModsList = String.format("%s loaded mod(s)%s", loadedModsCount, this.loadedModsList);
}
/**
* Initialise mod hooks
*/
private void initHooks()
{
try
{
// Chat hook
if ((this.chatListeners.size() > 0 || this.chatFilters.size() > 0) && !this.chatHooked)
{
this.chatHooked = true;
HookChat.register();
HookChat.registerPacketHandler(this);
}
// Login hook
if ((this.preLoginListeners.size() > 0 || this.loginListeners.size() > 0) && !this.loginHooked)
{
this.loginHooked = true;
ModUtilities.registerPacketOverride(1, HookLogin.class);
HookLogin.loader = this;
}
// Plugin channels hook
if (this.pluginChannelListeners.size() > 0 && !this.pluginChannelHooked)
{
this.pluginChannelHooked = true;
HookPluginChannels.register();
HookPluginChannels.registerPacketHandler(this);
}
// Tick hook
if (!this.tickHooked)
{
this.tickHooked = true;
PrivateFields.minecraftProfiler.setFinal(this.minecraft, this.profilerHook);
}
// Sanity hook
PlayerUsageSnooper snooper = this.minecraft.getPlayerUsageSnooper();
PrivateFields.playerStatsCollector.setFinal(snooper, this);
}
catch (Exception ex)
{
logger.log(Level.WARNING, "Error creating hooks", ex);
ex.printStackTrace();
}
}
/**
* @param tickable
*/
public void addTickListener(Tickable tickable)
{
if (!this.tickListeners.contains(tickable))
{
this.tickListeners.add(tickable);
if (this.loaderStartupComplete)
this.initHooks();
}
}
/**
* @param loopListener
*/
public void addLoopListener(GameLoopListener loopListener)
{
if (!this.loopListeners.contains(loopListener))
{
this.loopListeners.add(loopListener);
if (this.loaderStartupComplete)
this.initHooks();
}
}
/**
* @param initCompleteListener
*/
public void addInitListener(InitCompleteListener initCompleteListener)
{
if (!this.initListeners.contains(initCompleteListener))
{
this.initListeners.add(initCompleteListener);
if (this.loaderStartupComplete)
this.initHooks();
}
}
/**
* @param tickable
*/
public void addRenderListener(RenderListener tickable)
{
if (!this.renderListeners.contains(tickable))
{
this.renderListeners.add(tickable);
if (this.loaderStartupComplete)
this.initHooks();
}
}
/**
* @param tickable
*/
public void addPostRenderListener(PostRenderListener tickable)
{
if (!this.postRenderListeners.contains(tickable))
{
this.postRenderListeners.add(tickable);
if (this.loaderStartupComplete)
this.initHooks();
}
}
/**
* @param chatFilter
*/
public void addChatFilter(ChatFilter chatFilter)
{
if (!this.chatFilters.contains(chatFilter))
{
this.chatFilters.add(chatFilter);
if (this.loaderStartupComplete)
this.initHooks();
}
}
/**
* @param chatListener
*/
public void addChatListener(ChatListener chatListener)
{
if (!this.chatListeners.contains(chatListener))
{
this.chatListeners.add(chatListener);
if (this.loaderStartupComplete)
this.initHooks();
}
}
/**
* @param chatRenderListener
*/
public void addChatRenderListener(ChatRenderListener chatRenderListener)
{
if (!this.chatRenderListeners.contains(chatRenderListener))
{
this.chatRenderListeners.add(chatRenderListener);
if (this.loaderStartupComplete)
this.initHooks();
}
}
/**
* @param loginListener
*/
public void addPreLoginListener(PreLoginListener loginListener)
{
if (!this.preLoginListeners.contains(loginListener))
{
this.preLoginListeners.add(loginListener);
if (this.loaderStartupComplete)
this.initHooks();
}
}
/**
* @param loginListener
*/
public void addLoginListener(LoginListener loginListener)
{
if (!this.loginListeners.contains(loginListener))
{
this.loginListeners.add(loginListener);
if (this.loaderStartupComplete)
this.initHooks();
}
}
/**
* @param pluginChannelListener
*/
public void addPluginChannelListener(PluginChannelListener pluginChannelListener)
{
if (!this.pluginChannelListeners.contains(pluginChannelListener))
{
this.pluginChannelListeners.add(pluginChannelListener);
if (this.loaderStartupComplete)
this.initHooks();
}
}
/**
* Enumerate classes on the classpath which are subclasses of the specified
* class
*
* @param superClass
* @return
*/
private static LinkedList<Class<?>> getSubclassesFor(File packagePath, ClassLoader classloader, Class<?> superClass, String prefix)
{
LinkedList<Class<?>> classes = new LinkedList<Class<?>>();
try
{
if (packagePath.isDirectory())
{
enumerateDirectory(prefix, superClass, classloader, classes, packagePath);
}
else if (packagePath.isFile() && (packagePath.getName().endsWith(".jar") || packagePath.getName().endsWith(".zip") || packagePath.getName().endsWith(".litemod")))
{
enumerateCompressedPackage(prefix, superClass, classloader, classes, packagePath);
}
}
catch (Throwable th)
{
logger.log(Level.WARNING, "Enumeration error", th);
}
return classes;
}
/**
* @param superClass
* @param classloader
* @param classes
* @param packagePath
* @throws FileNotFoundException
* @throws IOException
*/
private static void enumerateCompressedPackage(String prefix, Class<?> superClass, ClassLoader classloader, LinkedList<Class<?>> classes, File packagePath) throws FileNotFoundException, IOException
{
FileInputStream fileinputstream = new FileInputStream(packagePath);
ZipInputStream zipinputstream = new ZipInputStream(fileinputstream);
ZipEntry zipentry = null;
do
{
zipentry = zipinputstream.getNextEntry();
if (zipentry != null && zipentry.getName().endsWith(".class"))
{
String classFileName = zipentry.getName();
String className = classFileName.lastIndexOf('/') > -1 ? classFileName.substring(classFileName.lastIndexOf('/') + 1) : classFileName;
if (prefix == null || className.startsWith(prefix))
{
try
{
String fullClassName = classFileName.substring(0, classFileName.length() - 6).replaceAll("/", ".");
checkAndAddClass(classloader, superClass, classes, fullClassName);
}
catch (Exception ex)
{
}
}
}
} while (zipentry != null);
fileinputstream.close();
}
/**
* Recursive function to enumerate classes inside a classpath folder
*
* @param superClass
* @param classloader
* @param classes
* @param packagePath
* @param packageName
*/
private static void enumerateDirectory(String prefix, Class<?> superClass, ClassLoader classloader, LinkedList<Class<?>> classes, File packagePath)
{
enumerateDirectory(prefix, superClass, classloader, classes, packagePath, "", 0);
}
/**
* Recursive function to enumerate classes inside a classpath folder
*
* @param superClass
* @param classloader
* @param classes
* @param packagePath
* @param packageName
*/
private static void enumerateDirectory(String prefix, Class<?> superClass, ClassLoader classloader, LinkedList<Class<?>> classes, File packagePath, String packageName, int depth)
{
// Prevent crash due to broken recursion
if (depth > MAX_DISCOVERY_DEPTH)
return;
File[] classFiles = packagePath.listFiles();
for (File classFile : classFiles)
{
if (classFile.isDirectory())
{
enumerateDirectory(prefix, superClass, classloader, classes, classFile, packageName + classFile.getName() + ".", depth + 1);
}
else
{
if (classFile.getName().endsWith(".class") && (prefix == null || classFile.getName().startsWith(prefix)))
{
String classFileName = classFile.getName();
String className = packageName + classFileName.substring(0, classFileName.length() - 6);
checkAndAddClass(classloader, superClass, classes, className);
}
}
}
}
/**
* @param classloader
* @param superClass
* @param classes
* @param className
*/
private static void checkAndAddClass(ClassLoader classloader, Class<?> superClass, LinkedList<Class<?>> classes, String className)
{
if (className.indexOf('$') > -1)
return;
try
{
Class<?> subClass = classloader.loadClass(className);
if (subClass != null && !superClass.equals(subClass) && superClass.isAssignableFrom(subClass) && !subClass.isInterface() && !classes.contains(subClass))
{
classes.add(subClass);
}
}
catch (Throwable th)
{
logger.log(Level.WARNING, "checkAndAddClass error", th);
}
}
/**
* Add a URL to the Minecraft classloader class path
*
* @param classUrl URL of the resource to add
*/
private boolean addURLToClassPath(URL classUrl)
{
try
{
if (Minecraft.class.getClassLoader() instanceof URLClassLoader && this.mAddUrl != null && this.mAddUrl.isAccessible())
{
URLClassLoader classLoader = (URLClassLoader)Minecraft.class.getClassLoader();
this.mAddUrl.invoke(classLoader, classUrl);
return true;
}
}
catch (Throwable th)
{
logger.log(Level.WARNING, "Error adding class path entry", th);
}
return false;
}
/**
* Late initialisation callback
*/
public void onInit()
{
if (!this.lateInitDone)
{
this.lateInitDone = true;
for (InitCompleteListener initMod : this.initListeners)
{
try
{
logger.info("Calling late init for mod " + initMod.getName());
initMod.onInitCompleted(this.minecraft, this);
}
catch (Throwable th)
{
logger.log(Level.WARNING, "Error initialising mod " + initMod.getName(), th);
}
}
}
}
/**
* Callback from the tick hook, pre render
*/
public void onRender()
{
if (this.paginateControls && this.minecraft.currentScreen != null && this.minecraft.currentScreen.getClass().equals(GuiControls.class))
{
try
{
// Try to get the parent screen entry from the existing screen
GuiScreen parentScreen = PrivateFields.guiControlsParentScreen.get((GuiControls)this.minecraft.currentScreen);
this.minecraft.displayGuiScreen(new GuiControlsPaginated(parentScreen, this.minecraft.gameSettings));
}
catch (Exception ex)
{
}
}
for (RenderListener renderListener : this.renderListeners)
renderListener.onRender();
}
/**
* Callback from the tick hook, post render entities
*/
public void postRenderEntities()
{
float partialTicks = (this.minecraftTimer != null) ? this.minecraftTimer.elapsedPartialTicks : 0.0F;
for (PostRenderListener renderListener : this.postRenderListeners)
renderListener.onPostRenderEntities(partialTicks);
}
/**
* Callback from the tick hook, post render
*/
public void postRender()
{
float partialTicks = (this.minecraftTimer != null) ? this.minecraftTimer.elapsedPartialTicks : 0.0F;
for (PostRenderListener renderListener : this.postRenderListeners)
renderListener.onPostRender(partialTicks);
}
/**
* Called immediately before the current GUI is rendered
*/
public void onBeforeGuiRender()
{
for (RenderListener renderListener : this.renderListeners)
renderListener.onRenderGui(this.minecraft.currentScreen);
}
/**
* Called immediately after the world/camera transform is initialised
*/
public void onSetupCameraTransform()
{
for (RenderListener renderListener : this.renderListeners)
renderListener.onSetupCameraTransform();
}
/**
* Called immediately before the chat log is rendered
*/
public void onBeforeChatRender()
{
this.currentResolution = new ScaledResolution(this.minecraft.gameSettings, this.minecraft.displayWidth, this.minecraft.displayHeight);
int screenWidth = this.currentResolution.getScaledWidth();
int screenHeight = this.currentResolution.getScaledHeight();
GuiNewChat chat = this.minecraft.ingameGUI.getChatGUI();
for (ChatRenderListener chatRenderListener : this.chatRenderListeners)
chatRenderListener.onPreRenderChat(screenWidth, screenHeight, chat);
}
/**
* Called immediately after the chat log is rendered
*/
public void onAfterChatRender()
{
int screenWidth = this.currentResolution.getScaledWidth();
int screenHeight = this.currentResolution.getScaledHeight();
GuiNewChat chat = this.minecraft.ingameGUI.getChatGUI();
for (ChatRenderListener chatRenderListener : this.chatRenderListeners)
chatRenderListener.onPostRenderChat(screenWidth, screenHeight, chat);
}
/**
* Callback from the tick hook, called every frame when the timer is updated
*/
public void onTimerUpdate()
{
for (GameLoopListener loopListener : this.loopListeners)
loopListener.onRunGameLoop(this.minecraft);
}
/**
* Callback from the tick hook, ticks all tickable mods
*
* @param tick True if this is a new tick (otherwise it's just a new frame)
*/
public void onTick(Profiler profiler, boolean tick)
{
float partialTicks = 0.0F;
// Try to get the minecraft timer object and determine the value of the
// partialTicks
if (tick || this.minecraftTimer == null)
{
this.minecraftTimer = PrivateFields.minecraftTimer.get(this.minecraft);
}
// Hooray, we got the timer reference
if (this.minecraftTimer != null)
{
partialTicks = this.minecraftTimer.renderPartialTicks;
tick = this.minecraftTimer.elapsedTicks > 0;
}
// Flag indicates whether we are in game at the moment
boolean inGame = this.minecraft.renderViewEntity != null && this.minecraft.renderViewEntity.worldObj != null;
// Tick the permissions manager
if (tick)
permissionsManager.onTick(this.minecraft, partialTicks, inGame);
// Iterate tickable mods
for (Tickable tickable : this.tickListeners)
{
profiler.startSection(tickable.getClass().getSimpleName());
tickable.onTick(this.minecraft, partialTicks, inGame, tick);
profiler.endSection();
}
}
/**
* Callback from the chat hook
*
* @param chatPacket
* @return
*/
public boolean onChat(Packet3Chat chatPacket)
{
if (chatPacket.message == null)
return true;
ChatMessageComponent chat = ChatMessageComponent.func_111078_c(chatPacket.message);
String message = chat.func_111068_a(true);
// Chat filters get a stab at the chat first, if any filter returns
// false the chat is discarded
for (ChatFilter chatFilter : this.chatFilters)
if (!chatFilter.onChat(chatPacket, chat, message))
return false;
// Chat listeners get the chat if no filter removed it
for (ChatListener chatListener : this.chatListeners)
chatListener.onChat(chat, message);
return true;
}
/**
* Pre-login callback from the login hook
*
* @param netHandler
* @param hookLogin
* @return
*/
public boolean onPreLogin(NetHandler netHandler, Packet1Login loginPacket)
{
boolean cancelled = false;
for (PreLoginListener loginListener : this.preLoginListeners)
{
cancelled |= !loginListener.onPreLogin(netHandler, loginPacket);
}
return !cancelled;
}
/**
* Callback from the login hook
*
* @param netHandler
* @param loginPacket
*/
public void onConnectToServer(NetHandler netHandler, Packet1Login loginPacket)
{
permissionsManager.onLogin(netHandler, loginPacket);
for (LoginListener loginListener : this.loginListeners)
loginListener.onLogin(netHandler, loginPacket);
this.setupPluginChannels();
}
/**
* Callback for the plugin channel hook
*
* @param hookPluginChannels
*/
public void onPluginChannelMessage(HookPluginChannels hookPluginChannels)
{
if (hookPluginChannels != null && hookPluginChannels.channel != null && this.pluginChannels.containsKey(hookPluginChannels.channel))
{
try
{
permissionsManager.onCustomPayload(hookPluginChannels.channel, hookPluginChannels.length, hookPluginChannels.data);
}
catch (Exception ex)
{
}
for (PluginChannelListener pluginChannelListener : this.pluginChannels.get(hookPluginChannels.channel))
{
try
{
pluginChannelListener.onCustomPayload(hookPluginChannels.channel, hookPluginChannels.length, hookPluginChannels.data);
}
catch (Exception ex)
{
}
}
}
}
/**
* Delegate to ModUtilities.sendPluginChannelMessage
*
* @param channel Channel to send data to
* @param data Data to send
*/
public void sendPluginChannelMessage(String channel, byte[] data)
{
ModUtilities.sendPluginChannelMessage(channel, data);
}
/**
* Query loaded mods for registered channels
*/
protected void setupPluginChannels()
{
// Clear any channels from before
this.pluginChannels.clear();
// Add the permissions manager channels
this.addPluginChannelsFor(permissionsManager);
// Enumerate mods for plugin channels
for (PluginChannelListener pluginChannelListener : this.pluginChannelListeners)
{
this.addPluginChannelsFor(pluginChannelListener);
}
// If any mods have registered channels, send the REGISTER packet
if (this.pluginChannels.keySet().size() > 0)
{
StringBuilder channelList = new StringBuilder();
boolean separator = false;
for (String channel : this.pluginChannels.keySet())
{
if (separator)
channelList.append("\u0000");
channelList.append(channel);
separator = true;
}
byte[] registrationData = channelList.toString().getBytes(Charset.forName("UTF8"));
this.sendPluginChannelMessage("REGISTER", registrationData);
}
}
/**
* Adds plugin channels for the specified listener to the local channels
* collection
*
* @param pluginChannelListener
*/
private void addPluginChannelsFor(PluginChannelListener pluginChannelListener)
{
List<String> channels = pluginChannelListener.getChannels();
if (channels != null)
{
for (String channel : channels)
{
if (channel.length() > 16 || channel.toUpperCase().equals("REGISTER") || channel.toUpperCase().equals("UNREGISTER"))
continue;
if (!this.pluginChannels.containsKey(channel))
{
this.pluginChannels.put(channel, new LinkedList<PluginChannelListener>());
}
this.pluginChannels.get(channel).add(pluginChannelListener);
}
}
}
/*
* (non-Javadoc)
*
* @see
* net.minecraft.src.IPlayerUsage#addServerStatsToSnooper(net.minecraft.
* src.PlayerUsageSnooper)
*/
@Override
public void addServerStatsToSnooper(PlayerUsageSnooper var1)
{
this.minecraft.addServerStatsToSnooper(var1);
}
/*
* (non-Javadoc)
*
* @see
* net.minecraft.src.IPlayerUsage#addServerTypeToSnooper(net.minecraft.src
* .PlayerUsageSnooper)
*/
@Override
public void addServerTypeToSnooper(PlayerUsageSnooper var1)
{
this.sanityCheck();
this.minecraft.addServerTypeToSnooper(var1);
}
/*
* (non-Javadoc)
*
* @see net.minecraft.src.IPlayerUsage#isSnooperEnabled()
*/
@Override
public boolean isSnooperEnabled()
{
return this.minecraft.isSnooperEnabled();
}
/*
* (non-Javadoc)
*
* @see net.minecraft.src.IPlayerUsage#getLogAgent()
*/
@Override
public ILogAgent getLogAgent()
{
return this.minecraft.getLogAgent();
}
/**
* Check that the profiler hook hasn't been overridden by something else
*/
private void sanityCheck()
{
if (this.tickHooked && this.minecraft.mcProfiler != this.profilerHook)
{
PrivateFields.minecraftProfiler.setFinal(this.minecraft, this.profilerHook);
}
}
}