Package net.minecraft.registry.tag
Class TagManagerLoader
java.lang.Object
net.minecraft.registry.tag.TagManagerLoader
- All Implemented Interfaces:
ResourceReloader
- Mappings:
Namespace Name intermediary net/minecraft/class_3505official annnamed net/minecraft/registry/tag/TagManagerLoader
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from interface net.minecraft.resource.ResourceReloader
ResourceReloader.Synchronizer -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final Map<RegistryKey<? extends Registry<?>>,String> private final DynamicRegistryManagerprivate List<TagManagerLoader.RegistryTags<?>> -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprivate <T> CompletableFuture<TagManagerLoader.RegistryTags<T>>buildRequiredGroup(ResourceManager resourceManager, Executor prepareExecutor, DynamicRegistryManager.Entry<T> requirement) static StringgetPath(RegistryKey<? extends Registry<?>> registry) reload(ResourceReloader.Synchronizer synchronizer, ResourceManager manager, Profiler prepareProfiler, Profiler applyProfiler, Executor prepareExecutor, Executor applyExecutor) Performs a reload.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface net.minecraft.resource.ResourceReloader
getName
-
Field Details
-
DIRECTORIES
- Mappings:
Namespace Name Mixin selector intermediary field_36395Lnet/minecraft/class_3505;field_36395:Ljava/util/Map;official aLann;a:Ljava/util/Map;named DIRECTORIESLnet/minecraft/registry/tag/TagManagerLoader;DIRECTORIES:Ljava/util/Map;
-
registryManager
- Mappings:
Namespace Name Mixin selector intermediary field_28312Lnet/minecraft/class_3505;field_28312:Lnet/minecraft/class_5455;official bLann;b:Lhs;named registryManagerLnet/minecraft/registry/tag/TagManagerLoader;registryManager:Lnet/minecraft/registry/DynamicRegistryManager;
-
registryTags
- Mappings:
Namespace Name Mixin selector intermediary field_36396Lnet/minecraft/class_3505;field_36396:Ljava/util/List;official cLann;c:Ljava/util/List;named registryTagsLnet/minecraft/registry/tag/TagManagerLoader;registryTags:Ljava/util/List;
-
-
Constructor Details
-
TagManagerLoader
- Mappings:
Namespace Name Mixin selector intermediary <init>Lnet/minecraft/class_3505;<init>(Lnet/minecraft/class_5455;)Vofficial <init>Lann;<init>(Lhs;)Vnamed <init>Lnet/minecraft/registry/tag/TagManagerLoader;<init>(Lnet/minecraft/registry/DynamicRegistryManager;)V
-
-
Method Details
-
getRegistryTags
- Mappings:
Namespace Name Mixin selector intermediary method_40096Lnet/minecraft/class_3505;method_40096()Ljava/util/List;official aLann;a()Ljava/util/List;named getRegistryTagsLnet/minecraft/registry/tag/TagManagerLoader;getRegistryTags()Ljava/util/List;
-
getPath
- Mappings:
Namespace Name Mixin selector intermediary method_40099Lnet/minecraft/class_3505;method_40099(Lnet/minecraft/class_5321;)Ljava/lang/String;official aLann;a(Lacp;)Ljava/lang/String;named getPathLnet/minecraft/registry/tag/TagManagerLoader;getPath(Lnet/minecraft/registry/RegistryKey;)Ljava/lang/String;
-
reload
public CompletableFuture<Void> reload(ResourceReloader.Synchronizer synchronizer, ResourceManager manager, Profiler prepareProfiler, Profiler applyProfiler, Executor prepareExecutor, Executor applyExecutor) Performs a reload. Returns a future that is completed when the reload is completed.In a reload, there is a prepare stage and an apply stage. For the prepare stage, you should create completable futures with CompletableFuture.supplyAsync(..., prepareExecutor) to ensure the prepare actions are done with the prepare executor. Then, you should have a completable future for all the prepared actions, and call combinedPrepare.thenCompose(synchronizer::waitFor) to notify the
synchronizer. Finally, you should run CompletableFuture.thenAcceptAsync(..., applyExecutor) for apply actions. In the end, returns the result ofthenAcceptAsync.- Specified by:
reloadin interfaceResourceReloader- Parameters:
synchronizer- the synchronizermanager- the resource managerprepareProfiler- the profiler for prepare stageapplyProfiler- the profiler for apply stageprepareExecutor- the executor for prepare stageapplyExecutor- the executor for apply stage- Returns:
- a future for the reload
- See Also:
- Mappings:
Namespace Name Mixin selector intermediary method_25931Lnet/minecraft/class_3302;method_25931(Lnet/minecraft/class_3302$class_4045;Lnet/minecraft/class_3300;Lnet/minecraft/class_3695;Lnet/minecraft/class_3695;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture;official aLakr;a(Lakr$a;Lakx;Lbam;Lbam;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture;named reloadLnet/minecraft/resource/ResourceReloader;reload(Lnet/minecraft/resource/ResourceReloader$Synchronizer;Lnet/minecraft/resource/ResourceManager;Lnet/minecraft/util/profiler/Profiler;Lnet/minecraft/util/profiler/Profiler;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture;
-
buildRequiredGroup
private <T> CompletableFuture<TagManagerLoader.RegistryTags<T>> buildRequiredGroup(ResourceManager resourceManager, Executor prepareExecutor, DynamicRegistryManager.Entry<T> requirement) - Mappings:
Namespace Name Mixin selector intermediary method_33178Lnet/minecraft/class_3505;method_33178(Lnet/minecraft/class_3300;Ljava/util/concurrent/Executor;Lnet/minecraft/class_5455$class_6892;)Ljava/util/concurrent/CompletableFuture;official aLann;a(Lakx;Ljava/util/concurrent/Executor;Lhs$d;)Ljava/util/concurrent/CompletableFuture;named buildRequiredGroupLnet/minecraft/registry/tag/TagManagerLoader;buildRequiredGroup(Lnet/minecraft/resource/ResourceManager;Ljava/util/concurrent/Executor;Lnet/minecraft/registry/DynamicRegistryManager$Entry;)Ljava/util/concurrent/CompletableFuture;
-