Fixed some generics

This commit is contained in:
CheaterCodes 2020-08-19 21:21:15 +02:00
parent 7953e09bd8
commit 1d8aa64520
2 changed files with 15 additions and 16 deletions
fabric-registry-sync-v0/src/main/java/net/fabricmc/fabric

View file

@ -24,14 +24,15 @@ import net.fabricmc.fabric.api.event.Event;
import net.fabricmc.fabric.impl.registry.sync.DynamicRegistryEvents;
@FunctionalInterface
public interface DynamicRegistryEntryAddedCallback {
void onEntryAdded(int rawId, RegistryKey<?> key, Object object, MutableRegistry<?> registry);
public interface DynamicRegistryEntryAddedCallback<T> {
void onEntryAdded(int rawId, RegistryKey<T> key, T object, MutableRegistry<T> registry);
static Event<DynamicRegistryEntryAddedCallback> event(RegistryKey<? extends Registry<?>> registryKey) {
@SuppressWarnings("unchecked")
static <T> Event<DynamicRegistryEntryAddedCallback<T>> event(RegistryKey<? extends Registry<T>> registryKey) {
if (!DynamicRegistryEvents.ADD_ENTRY_EVENTS.containsKey(registryKey)) {
throw new IllegalArgumentException("Unsupported registry: " + registryKey);
}
return DynamicRegistryEvents.ADD_ENTRY_EVENTS.get(registryKey);
return (Event<DynamicRegistryEntryAddedCallback<T>>) DynamicRegistryEvents.ADD_ENTRY_EVENTS.get(registryKey);
}
}

View file

@ -28,24 +28,22 @@ import net.fabricmc.fabric.api.event.EventFactory;
import net.fabricmc.fabric.api.event.registry.DynamicRegistryEntryAddedCallback;
import net.fabricmc.fabric.mixin.registry.sync.DynamicRegistryManagerAccessor;
@SuppressWarnings({"rawtypes", "unchecked"})
public final class DynamicRegistryEvents {
public static Map<RegistryKey<? extends Registry<?>>, Event<DynamicRegistryEntryAddedCallback>> ADD_ENTRY_EVENTS;
private DynamicRegistryEvents() {
}
public static final Map<RegistryKey<? extends Registry<?>>, Event<?>> ADD_ENTRY_EVENTS;
static {
ADD_ENTRY_EVENTS = Maps.newLinkedHashMap();
for (RegistryKey<? extends Registry<?>> registryKey : DynamicRegistryManagerAccessor.getInfos().keySet()) {
ADD_ENTRY_EVENTS.put(registryKey,
EventFactory.createArrayBacked(
DynamicRegistryEntryAddedCallback.class,
callbacks -> (rawId, key, object, registry) -> {
for (DynamicRegistryEntryAddedCallback callback : callbacks) {
callback.onEntryAdded(rawId, key, object, registry);
}
}));
ADD_ENTRY_EVENTS.put(registryKey, EventFactory.createArrayBacked(DynamicRegistryEntryAddedCallback.class,
callbacks -> (rawId, key, object, registry) -> {
for (DynamicRegistryEntryAddedCallback callback : callbacks) {
callback.onEntryAdded(rawId, key, object, registry);
}
}));
}
}
private DynamicRegistryEvents() { }
}