4
4
import com .terraformersmc .modmenu .api .ModMenuApi ;
5
5
import java .util .Comparator ;
6
6
import java .util .HashMap ;
7
+ import java .util .HashSet ;
7
8
import java .util .List ;
8
9
import java .util .Locale ;
9
10
import java .util .Map ;
10
11
import java .util .Optional ;
12
+ import java .util .Set ;
11
13
import java .util .stream .Collectors ;
14
+ import java .util .stream .Stream ;
12
15
import net .fabricmc .loader .api .EntrypointException ;
13
16
import net .fabricmc .loader .api .FabricLoader ;
14
17
import net .fabricmc .loader .api .ModContainer ;
15
18
import net .fabricmc .loader .api .entrypoint .EntrypointContainer ;
16
19
import net .fabricmc .loader .api .metadata .ModMetadata ;
17
20
import net .minecraft .client .gui .screen .Screen ;
18
- import org .apache .logging .log4j .Level ;
19
21
20
22
public class ModRegistry {
21
23
private static final ModRegistry INSTANCE = new ModRegistry ();
22
24
23
25
private final Map <String , String > modNames = new HashMap <>();
26
+ private final Map <String , Set <String >> modHierarchy = new HashMap <>();
27
+
24
28
private final Map <String , ConfigScreenFactory <?>> configScreenFactories = new HashMap <>();
25
29
private final Map <String , ConfigScreenFactory <?>> overridingConfigScreenFactories = new HashMap <>();
26
30
@@ -33,6 +37,18 @@ public static ModRegistry getInstance() {
33
37
34
38
/* This needs to be done att the right time of loading the mod, so cannot be done in the constructor. */
35
39
public void registerMods () {
40
+ for (ModContainer modContainer : FabricLoader .getInstance ().getAllMods ()) {
41
+ String modId = modContainer .getMetadata ().getId ();
42
+ Optional <ModContainer > parent = modContainer .getContainingMod ();
43
+ if (parent .isPresent ()) {
44
+ String parentId = parent .get ().getMetadata ().getId ();
45
+ Set <String > parentMod = modHierarchy .computeIfAbsent (parentId , k -> new HashSet <>());
46
+ parentMod .add (modId );
47
+ } else {
48
+ modHierarchy .computeIfAbsent (modId , k -> new HashSet <>());
49
+ }
50
+ }
51
+
36
52
List <EntrypointContainer <Object >> modList =
37
53
FabricLoader .getInstance ().getEntrypointContainers ("modmenu" , Object .class );
38
54
@@ -45,7 +61,7 @@ public void registerMods() {
45
61
ModMenuApi modApi ;
46
62
47
63
if (unknownApi instanceof com .terraformersmc .modmenu .api .ModMenuApi modernApi ) {
48
- Main .LOGGER .log ( Level . INFO , "Found configurable mod: " + modId + ", " + metadata .getName ());
64
+ Main .LOGGER .info ( "Found configurable mod: " + modId + ", " + metadata .getName ());
49
65
modApi = modernApi ;
50
66
} else {
51
67
Main .LOGGER .warn ("Unknown Mod Menu API version for mod " + modId + ", class: " + unknownApi .getClass ());
@@ -62,7 +78,7 @@ public void registerMods() {
62
78
Optional <ModContainer > container = FabricLoader .getInstance ().getModContainer (overriddenModId );
63
79
if (container .isPresent ()) {
64
80
String modName = container .get ().getMetadata ().getName ();
65
- Main .LOGGER .log ( Level . INFO , "Found overridden config for mod: " + overriddenModId + ", " + modName );
81
+ Main .LOGGER .info ( "Found overridden config for mod: " + overriddenModId + ", " + modName );
66
82
67
83
modNames .put (overriddenModId , modName );
68
84
}
@@ -73,14 +89,30 @@ public void registerMods() {
73
89
}
74
90
}
75
91
76
- public List <String > getAllModIds () {
92
+ public Stream <String > getAllModIds () {
77
93
// Return mods sorted. This sorts on modID and not name, but is good enough.
78
94
Comparator <String > sorter = Comparator .comparing (modId -> modId .toLowerCase (Locale .ROOT ));
79
95
80
96
// Fabric treats Vanilla ("minecraft") as a mod and returns the normal Options screen.
81
97
// We don't want that so filter it out.
82
98
return modNames .keySet ().stream ().sorted (sorter )
83
- .filter (modId -> !modId .equals ("minecraft" )).collect (Collectors .toList ());
99
+ .filter (modId -> !modId .equals ("minecraft" ));
100
+ }
101
+
102
+ public List <String > getVisibleModIds (boolean showIndirect , String filterText ) {
103
+ // If showIndirect is false, only include mods that is a parent.
104
+ return getAllModIds ()
105
+ .filter (modId -> showIndirect || modHierarchy .containsKey (modId ))
106
+ .filter (modId -> filterText .isBlank () || modIdMatches (modId , filterText ))
107
+ .collect (Collectors .toList ());
108
+ }
109
+
110
+ private boolean matches (String haystack , String needle ) {
111
+ return haystack .toLowerCase (Locale .ROOT ).contains (needle .toLowerCase (Locale .ROOT ));
112
+ }
113
+
114
+ private boolean modIdMatches (String modId , String filter ) {
115
+ return matches (modId , filter ) || matches (getModName (modId ), filter );
84
116
}
85
117
86
118
public String getModName (String modId ) {
0 commit comments