mirror of
https://github.com/FabricMC/fabric.git
synced 2025-04-03 10:39:57 -04:00
Fixed some generics
This commit is contained in:
parent
7953e09bd8
commit
1d8aa64520
2 changed files with 15 additions and 16 deletions
fabric-registry-sync-v0/src/main/java/net/fabricmc/fabric
api/event/registry
impl/registry/sync
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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() { }
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue