Class ReloadableResourceManagerImpl
- All Implemented Interfaces:
AutoCloseable,ReloadableResourceManager,ResourceManager
public class ReloadableResourceManagerImpl extends Object implements ReloadableResourceManager
- Mappings:
Namespace Name official adcintermediary net/minecraft/class_3304named net/minecraft/resource/ReloadableResourceManagerImpl
-
Nested Class Summary
Nested Classes Modifier and Type Class Description (package private) static classReloadableResourceManagerImpl.FailedResourceReloadMonitorstatic classReloadableResourceManagerImpl.PackAdditionFailedExceptionNested classes/interfaces inherited from interface net.minecraft.resource.ResourceManager
ResourceManager.Empty -
Field Summary
Fields Modifier and Type Field Description private List<ResourceReloadListener>listenersprivate static LoggerLOGGERprivate Map<String,NamespaceResourceManager>namespaceManagersprivate Set<String>namespacesprivate List<ResourcePack>packsprivate ResourceTypetype -
Constructor Summary
Constructors Constructor Description ReloadableResourceManagerImpl(ResourceType type) -
Method Summary
Modifier and Type Method Description voidaddPack(ResourcePack pack)ResourceReloadMonitorbeginMonitoredReload(Executor prepareExecutor, Executor applyExecutor, CompletableFuture<Unit> initialStage, List<ResourcePack> packs)private voidclear()voidclose()booleancontainsResource(Identifier id)Checks whether any of the currently-loaded resource packs contain an entry for the given id.Collection<Identifier>findResources(String startingPath, Predicate<String> pathPredicate)Returns a sorted list of identifiers matching a path predicate.Set<String>getAllNamespaces()Gets a set of all namespaces offered by the resource packs loaded by this manager.List<Resource>getAllResources(Identifier id)Gets all of the available resources to the corresponding resource identifier.ResourcegetResource(Identifier id)Finds and returns the corresponding resource for a resource's identifier.voidregisterListener(ResourceReloadListener listener)Stream<ResourcePack>streamResourcePacks()Gets a stream of loaded resource packs in increasing order of priority.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface net.minecraft.resource.ReloadableResourceManager
beginReload
-
Field Details
-
LOGGER
- Mappings:
Namespace Name Mixin selector official aLadc;a:Lorg/apache/logging/log4j/Logger;intermediary field_14295Lnet/minecraft/class_3304;field_14295:Lorg/apache/logging/log4j/Logger;named LOGGERLnet/minecraft/resource/ReloadableResourceManagerImpl;LOGGER:Lorg/apache/logging/log4j/Logger;
-
namespaceManagers
- Mappings:
Namespace Name Mixin selector official bLadc;b:Ljava/util/Map;intermediary field_14293Lnet/minecraft/class_3304;field_14293:Ljava/util/Map;named namespaceManagersLnet/minecraft/resource/ReloadableResourceManagerImpl;namespaceManagers:Ljava/util/Map;
-
listeners
- Mappings:
Namespace Name Mixin selector official cLadc;c:Ljava/util/List;intermediary field_17935Lnet/minecraft/class_3304;field_17935:Ljava/util/List;named listenersLnet/minecraft/resource/ReloadableResourceManagerImpl;listeners:Ljava/util/List;
-
namespaces
- Mappings:
Namespace Name Mixin selector official dLadc;d:Ljava/util/Set;intermediary field_14292Lnet/minecraft/class_3304;field_14292:Ljava/util/Set;named namespacesLnet/minecraft/resource/ReloadableResourceManagerImpl;namespaces:Ljava/util/Set;
-
packs
- Mappings:
Namespace Name Mixin selector official eLadc;e:Ljava/util/List;intermediary field_25145Lnet/minecraft/class_3304;field_25145:Ljava/util/List;named packsLnet/minecraft/resource/ReloadableResourceManagerImpl;packs:Ljava/util/List;
-
type
- Mappings:
Namespace Name Mixin selector official fLadc;f:Laca;intermediary field_14294Lnet/minecraft/class_3304;field_14294:Lnet/minecraft/class_3264;named typeLnet/minecraft/resource/ReloadableResourceManagerImpl;type:Lnet/minecraft/resource/ResourceType;
-
-
Constructor Details
-
ReloadableResourceManagerImpl
- Mappings:
Namespace Name Mixin selector official <init>Ladc;<init>(Laca;)Vintermediary <init>Lnet/minecraft/class_3304;<init>(Lnet/minecraft/class_3264;)Vnamed <init>Lnet/minecraft/resource/ReloadableResourceManagerImpl;<init>(Lnet/minecraft/resource/ResourceType;)V
-
-
Method Details
-
addPack
- Mappings:
Namespace Name Mixin selector official aLadc;a(Labz;)Vintermediary method_14475Lnet/minecraft/class_3304;method_14475(Lnet/minecraft/class_3262;)Vnamed addPackLnet/minecraft/resource/ReloadableResourceManagerImpl;addPack(Lnet/minecraft/resource/ResourcePack;)V
-
getAllNamespaces
Gets a set of all namespaces offered by the resource packs loaded by this manager.- Specified by:
getAllNamespacesin interfaceResourceManager- Mappings:
Namespace Name Mixin selector official aLacx;a()Ljava/util/Set;intermediary method_14487Lnet/minecraft/class_3300;method_14487()Ljava/util/Set;named getAllNamespacesLnet/minecraft/resource/ResourceManager;getAllNamespaces()Ljava/util/Set;
-
getResource
Finds and returns the corresponding resource for a resource's identifier.Starts by scanning each resource pack from highest priority to lowest. If no resource packs were found to contain the requested entry, will throw a
FileNotFoundException.- Specified by:
getResourcein interfaceResourceManager- Parameters:
id- the resource identifier to search for- Throws:
FileNotFoundException- if the identified resource could not be found, or could not be loaded.IOException- if the identified resource was found but a stream to it could not be opened.- Mappings:
Namespace Name Mixin selector official aLacx;a(Lwb;)Lacw;intermediary method_14486Lnet/minecraft/class_3300;method_14486(Lnet/minecraft/class_2960;)Lnet/minecraft/class_3298;named getResourceLnet/minecraft/resource/ResourceManager;getResource(Lnet/minecraft/util/Identifier;)Lnet/minecraft/resource/Resource;
-
containsResource
Checks whether any of the currently-loaded resource packs contain an entry for the given id.Starts by querying the resource pack with the highest priority to lowest until it finds one that responds to the requested identifier.
- Specified by:
containsResourcein interfaceResourceManager- Parameters:
id- the resource identifier to search for- Mappings:
Namespace Name Mixin selector official bLacx;b(Lwb;)Zintermediary method_18234Lnet/minecraft/class_3300;method_18234(Lnet/minecraft/class_2960;)Znamed containsResourceLnet/minecraft/resource/ResourceManager;containsResource(Lnet/minecraft/util/Identifier;)Z
-
getAllResources
Gets all of the available resources to the corresponding resource identifier.Resources are returned in load order, or ascending order of priority, so the last element in the returned list is what would be returned normally by
ResourceManager.getResource(net.minecraft.util.Identifier)- Specified by:
getAllResourcesin interfaceResourceManager- Parameters:
id- the resource identifier to search for- Throws:
FileNotFoundException- if no matching resources could be found (i.e. if the list would be empty)IOException- if resources were found, but any one of them could not be opened to be read.- Mappings:
Namespace Name Mixin selector official cLacx;c(Lwb;)Ljava/util/List;intermediary method_14489Lnet/minecraft/class_3300;method_14489(Lnet/minecraft/class_2960;)Ljava/util/List;named getAllResourcesLnet/minecraft/resource/ResourceManager;getAllResources(Lnet/minecraft/util/Identifier;)Ljava/util/List;
-
findResources
Returns a sorted list of identifiers matching a path predicate.Scanning begins in
startingPathand each candidate file present under that directory will be offered up to the predicate to decide whether it should be included or not.Elements in the returned list may not, necessarily be unique. Additional effort is advised to ensure that duplicates in the returned list are discarded before loading.
- Specified by:
findResourcesin interfaceResourceManager- Parameters:
startingPath- the starting path to begin scanning frompathPredicate- a predicate to determine whether a path should be included or not- Returns:
- the list matching identifiers
- Mappings:
Namespace Name Mixin selector official aLacx;a(Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Collection;intermediary method_14488Lnet/minecraft/class_3300;method_14488(Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Collection;named findResourcesLnet/minecraft/resource/ResourceManager;findResources(Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Collection;
-
clear
private void clear()- Mappings:
Namespace Name Mixin selector official cLadc;c()Vintermediary method_14495Lnet/minecraft/class_3304;method_14495()Vnamed clearLnet/minecraft/resource/ReloadableResourceManagerImpl;clear()V
-
close
public void close()- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceReloadableResourceManager- Mappings:
Namespace Name Mixin selector official closeLacv;close()Vintermediary closeLnet/minecraft/class_3296;close()Vnamed closeLnet/minecraft/resource/ReloadableResourceManager;close()V
-
registerListener
- Specified by:
registerListenerin interfaceReloadableResourceManager- Mappings:
Namespace Name Mixin selector official aLacv;a(Lacs;)Vintermediary method_14477Lnet/minecraft/class_3296;method_14477(Lnet/minecraft/class_3302;)Vnamed registerListenerLnet/minecraft/resource/ReloadableResourceManager;registerListener(Lnet/minecraft/resource/ResourceReloadListener;)V
-
beginMonitoredReload
public ResourceReloadMonitor beginMonitoredReload(Executor prepareExecutor, Executor applyExecutor, CompletableFuture<Unit> initialStage, List<ResourcePack> packs)- Specified by:
beginMonitoredReloadin interfaceReloadableResourceManager- Mappings:
Namespace Name Mixin selector official aLacv;a(Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/util/List;)Lacu;intermediary method_18232Lnet/minecraft/class_3296;method_18232(Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/util/List;)Lnet/minecraft/class_4011;named beginMonitoredReloadLnet/minecraft/resource/ReloadableResourceManager;beginMonitoredReload(Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/util/List;)Lnet/minecraft/resource/ResourceReloadMonitor;
-
streamResourcePacks
Gets a stream of loaded resource packs in increasing order of priority.- Specified by:
streamResourcePacksin interfaceResourceManager- Mappings:
Namespace Name Mixin selector official bLacx;b()Ljava/util/stream/Stream;intermediary method_29213Lnet/minecraft/class_3300;method_29213()Ljava/util/stream/Stream;named streamResourcePacksLnet/minecraft/resource/ResourceManager;streamResourcePacks()Ljava/util/stream/Stream;
-