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
|
package shcm.shsupercm.fabric.citresewn.cit;
import net.fabricmc.loader.api.FabricLoader;
import net.minecraft.util.Identifier;
import shcm.shsupercm.fabric.citresewn.api.CITConditionContainer;
import shcm.shsupercm.fabric.citresewn.api.CITTypeContainer;
import shcm.shsupercm.fabric.citresewn.cit.builtin.conditions.ConstantCondition;
import shcm.shsupercm.fabric.citresewn.ex.CITParsingException;
import shcm.shsupercm.fabric.citresewn.ex.UnknownCITTypeException;
import shcm.shsupercm.fabric.citresewn.pack.format.PropertyGroup;
import shcm.shsupercm.fabric.citresewn.pack.format.PropertyKey;
import shcm.shsupercm.fabric.citresewn.pack.format.PropertyValue;
import java.util.*;
import static shcm.shsupercm.fabric.citresewn.CITResewn.info;
import static shcm.shsupercm.fabric.citresewn.CITResewn.logWarnLoading;
public class CITRegistry {
public static final Map<Identifier, CITTypeContainer<? extends CITType>> TYPES = new HashMap<>();
public static final Map<PropertyKey, CITConditionContainer<? extends CITCondition>> CONDITIONS = new HashMap<>();
private static final Map<Class<? extends CITType>, Identifier> TYPE_TO_ID = new IdentityHashMap<>();
private static final Map<Class<? extends CITCondition>, PropertyKey> CONDITION_TO_ID = new IdentityHashMap<>();
public static void registerAll() {
info("Registering CIT Conditions");
for (var entrypointContainer : FabricLoader.getInstance().getEntrypointContainers(CITConditionContainer.ENTRYPOINT, CITConditionContainer.class)) {
String namespace = entrypointContainer.getProvider().getMetadata().getId();
if (namespace.equals("citresewn-defaults"))
namespace = "citresewn";
for (String alias : entrypointContainer.getEntrypoint().aliases) {
final PropertyKey key = new PropertyKey(namespace, alias);
CITConditionContainer<?> container = entrypointContainer.getEntrypoint();
CONDITIONS.put(key, container);
CONDITION_TO_ID.putIfAbsent(container.createCondition.get().getClass(), key);
}
}
info("Registering CIT Types");
for (var entrypointContainer : FabricLoader.getInstance().getEntrypointContainers(CITTypeContainer.ENTRYPOINT, CITTypeContainer.class)) {
String namespace = entrypointContainer.getProvider().getMetadata().getId();
if (namespace.equals("citresewn-defaults"))
namespace = "citresewn";
final Identifier id = new Identifier(namespace, entrypointContainer.getEntrypoint().id);
CITTypeContainer<?> container = entrypointContainer.getEntrypoint();
TYPES.put(id, container);
TYPE_TO_ID.putIfAbsent(container.createType.get().getClass(), id);
}
}
public static CITCondition parseCondition(PropertyKey key, PropertyValue value, PropertyGroup properties) throws CITParsingException {
CITConditionContainer<? extends CITCondition> conditionContainer = CONDITIONS.get(key);
if (conditionContainer == null) {
logWarnLoading(CITParsingException.descriptionOf("Unknown condition type \"" + key.toString() + "\"", properties, value.position()));
return new ConstantCondition(false);
}
CITCondition condition = conditionContainer.createCondition.get();
condition.load(value, properties);
return condition;
}
public static CITType parseType(PropertyGroup properties) throws CITParsingException {
Identifier type = new Identifier("citresewn", "item");
PropertyValue propertiesType = properties.getLastWithoutMetadata("citresewn", "type");
if (propertiesType != null) {
String value = propertiesType.value();
if (!value.contains(":"))
value = "citresewn:" + value;
type = new Identifier(value);
}
CITTypeContainer<? extends CITType> typeContainer = TYPES.get(type);
if (typeContainer == null)
// assert (propertiesType != null) because the default citresewn:item should always be registered
throw new UnknownCITTypeException(properties, propertiesType == null ? -1 : propertiesType.position());
return typeContainer.createType.get();
}
public static Identifier idOfType(Class<? extends CITType> clazz) {
return TYPE_TO_ID.get(clazz);
}
public static PropertyKey idOfCondition(Class<? extends CITCondition> clazz) {
return CONDITION_TO_ID.get(clazz);
}
}
|