Class LifecycledResourceManagerImpl
- All Implemented Interfaces:
- AutoCloseable,- LifecycledResourceManager,- ResourceFactory,- ResourceManager
It handles resources by namespaces, hoping that most namespaces are defined in only few resource packs.
- See Also:
- Mappings:
- Namespace - Name - official - akq- intermediary - net/minecraft/class_6861- named - net/minecraft/resource/LifecycledResourceManagerImpl
- 
Nested Class SummaryNested classes/interfaces inherited from interface net.minecraft.resource.ResourceManagerResourceManager.Empty
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate static final Loggerprivate final List<ResourcePack>private final Map<String,NamespaceResourceManager> 
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidclose()findAllResources(String startingPath, Predicate<Identifier> allowedPathPredicate) findResources(String startingPath, Predicate<Identifier> allowedPathPredicate) Returns a sorted list of identifiers matching a path predicate.Gets a set of all namespaces offered by the resource packs loaded by this manager.Gets all of the available resources to the corresponding resource identifier.Finds and returns the corresponding resource for a resource's identifier.private @Nullable ResourceFilterGets a stream of loaded resource packs in increasing order of priority.private static voidvalidateStartingPath(String startingPath) Validates the starting path to ensure that it does not end with a slash.Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface net.minecraft.resource.ResourceFactorygetResourceOrThrow, open, openAsReader
- 
Field Details- 
LOGGER- Mappings:
- Namespace - Name - Mixin selector - official - a- Lakq;a:Lorg/slf4j/Logger;- intermediary - field_37288- Lnet/minecraft/class_6861;field_37288:Lorg/slf4j/Logger;- named - LOGGER- Lnet/minecraft/resource/LifecycledResourceManagerImpl;LOGGER:Lorg/slf4j/Logger;
 
- 
subManagers- Mappings:
- Namespace - Name - Mixin selector - official - b- Lakq;b:Ljava/util/Map;- intermediary - field_36389- Lnet/minecraft/class_6861;field_36389:Ljava/util/Map;- named - subManagers- Lnet/minecraft/resource/LifecycledResourceManagerImpl;subManagers:Ljava/util/Map;
 
- 
packs- Mappings:
- Namespace - Name - Mixin selector - official - c- Lakq;c:Ljava/util/List;- intermediary - field_36390- Lnet/minecraft/class_6861;field_36390:Ljava/util/List;- named - packs- Lnet/minecraft/resource/LifecycledResourceManagerImpl;packs:Ljava/util/List;
 
 
- 
- 
Constructor Details- 
LifecycledResourceManagerImpl- Mappings:
- Namespace - Name - Mixin selector - official - <init>- Lakq;<init>(Lajm;Ljava/util/List;)V- intermediary - <init>- Lnet/minecraft/class_6861;<init>(Lnet/minecraft/class_3264;Ljava/util/List;)V- named - <init>- Lnet/minecraft/resource/LifecycledResourceManagerImpl;<init>(Lnet/minecraft/resource/ResourceType;Ljava/util/List;)V
 
 
- 
- 
Method Details- 
parseResourceFilter- Mappings:
- Namespace - Name - Mixin selector - official - a- Lakq;a(Lajl;)Lakw;- intermediary - method_41274- Lnet/minecraft/class_6861;method_41274(Lnet/minecraft/class_3262;)Lnet/minecraft/class_7084;- named - parseResourceFilter- Lnet/minecraft/resource/LifecycledResourceManagerImpl;parseResourceFilter(Lnet/minecraft/resource/ResourcePack;)Lnet/minecraft/resource/metadata/ResourceFilter;
 
- 
getAllNamespacesGets a set of all namespaces offered by the resource packs loaded by this manager.- Specified by:
- getAllNamespacesin interface- ResourceManager
- Mappings:
- Namespace - Name - Mixin selector - official - a- Lakx;a()Ljava/util/Set;- intermediary - method_14487- Lnet/minecraft/class_3300;method_14487()Ljava/util/Set;- named - getAllNamespaces- Lnet/minecraft/resource/ResourceManager;getAllNamespaces()Ljava/util/Set;
 
- 
getResourceFinds 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 return Optional.empty().The returned resource must be closed to avoid resource leaks. - Specified by:
- getResourcein interface- ResourceFactory
- Parameters:
- id- the resource identifier to search for
- Mappings:
- Namespace - Name - Mixin selector - official - getResource- Lala;getResource(Lacq;)Ljava/util/Optional;- intermediary - method_14486- Lnet/minecraft/class_5912;method_14486(Lnet/minecraft/class_2960;)Ljava/util/Optional;- named - getResource- Lnet/minecraft/resource/ResourceFactory;getResource(Lnet/minecraft/util/Identifier;)Ljava/util/Optional;
 
- 
getAllResourcesGets 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 ResourceFactory.getResource(net.minecraft.util.Identifier)Each resource in this returned list must be closed to avoid resource leaks. - Specified by:
- getAllResourcesin interface- ResourceManager
- Parameters:
- id- the resource identifier to search for
- Mappings:
- Namespace - Name - Mixin selector - official - a- Lakx;a(Lacq;)Ljava/util/List;- intermediary - method_14489- Lnet/minecraft/class_3300;method_14489(Lnet/minecraft/class_2960;)Ljava/util/List;- named - getAllResources- Lnet/minecraft/resource/ResourceManager;getAllResources(Lnet/minecraft/util/Identifier;)Ljava/util/List;
 
- 
findResourcespublic Map<Identifier,Resource> findResources(String startingPath, Predicate<Identifier> allowedPathPredicate) 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 interface- ResourceManager
- Parameters:
- startingPath- the starting path to begin scanning from
- allowedPathPredicate- a predicate to determine whether a path should be included or not
- Returns:
- the list matching identifiers
- Mappings:
- Namespace - Name - Mixin selector - official - b- Lakx;b(Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map;- intermediary - method_14488- Lnet/minecraft/class_3300;method_14488(Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map;- named - findResources- Lnet/minecraft/resource/ResourceManager;findResources(Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map;
 
- 
findAllResourcespublic Map<Identifier,List<Resource>> findAllResources(String startingPath, Predicate<Identifier> allowedPathPredicate) - Specified by:
- findAllResourcesin interface- ResourceManager
- Mappings:
- Namespace - Name - Mixin selector - official - c- Lakx;c(Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map;- intermediary - method_41265- Lnet/minecraft/class_3300;method_41265(Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map;- named - findAllResources- Lnet/minecraft/resource/ResourceManager;findAllResources(Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map;
 
- 
validateStartingPathValidates the starting path to ensure that it does not end with a slash.- Throws:
- IllegalArgumentException- if- startingPathhas a trailing slash
- Mappings:
- Namespace - Name - Mixin selector - official - a- Lakq;a(Ljava/lang/String;)V- intermediary - method_45303- Lnet/minecraft/class_6861;method_45303(Ljava/lang/String;)V- named - validateStartingPath- Lnet/minecraft/resource/LifecycledResourceManagerImpl;validateStartingPath(Ljava/lang/String;)V
 
- 
streamResourcePacksGets a stream of loaded resource packs in increasing order of priority.- Specified by:
- streamResourcePacksin interface- ResourceManager
- Mappings:
- Namespace - Name - Mixin selector - official - b- Lakx;b()Ljava/util/stream/Stream;- intermediary - method_29213- Lnet/minecraft/class_3300;method_29213()Ljava/util/stream/Stream;- named - streamResourcePacks- Lnet/minecraft/resource/ResourceManager;streamResourcePacks()Ljava/util/stream/Stream;
 
- 
closepublic void close()- Specified by:
- closein interface- AutoCloseable
- Specified by:
- closein interface- LifecycledResourceManager
 
 
-