Package net.minecraft.resource
Interface ResourceManager
- All Superinterfaces:
ResourceFactory
- All Known Subinterfaces:
LifecycledResourceManager
- All Known Implementing Classes:
LifecycledResourceManagerImpl
,NamespaceResourceManager
,ReloadableResourceManagerImpl
,ResourceManager.Empty
Provides resource loading capabilities to Minecraft.
- Mappings:
Namespace Name named net/minecraft/resource/ResourceManager
intermediary net/minecraft/class_3300
official aup
-
Nested Class Summary
-
Field Summary
Fields inherited from interface net.minecraft.resource.ResourceFactory
MISSING
-
Method Summary
Modifier and TypeMethodDescriptionfindAllResources
(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.Gets a stream of loaded resource packs in increasing order of priority.Methods inherited from interface net.minecraft.resource.ResourceFactory
getResource, getResourceOrThrow, open, openAsReader
-
Method Details
-
getAllNamespaces
Gets a set of all namespaces offered by the resource packs loaded by this manager.- Mappings:
Namespace Name Mixin selector named getAllNamespaces
Lnet/minecraft/resource/ResourceManager;getAllNamespaces()Ljava/util/Set;
intermediary method_14487
Lnet/minecraft/class_3300;method_14487()Ljava/util/Set;
official a
Laup;a()Ljava/util/Set;
-
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
ResourceFactory.getResource(net.minecraft.util.Identifier)
Each resource in this returned list must be closed to avoid resource leaks.
- Parameters:
id
- the resource identifier to search for- Mappings:
Namespace Name Mixin selector named getAllResources
Lnet/minecraft/resource/ResourceManager;getAllResources(Lnet/minecraft/util/Identifier;)Ljava/util/List;
intermediary method_14489
Lnet/minecraft/class_3300;method_14489(Lnet/minecraft/class_2960;)Ljava/util/List;
official a
Laup;a(Lalf;)Ljava/util/List;
-
findResources
Map<Identifier,Resource> findResources(String startingPath, Predicate<Identifier> allowedPathPredicate) Returns a sorted list of identifiers matching a path predicate.Scanning begins in
startingPath
and 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.
- Parameters:
startingPath
- the starting path to begin scanning fromallowedPathPredicate
- a predicate to determine whether a path should be included or not- Returns:
- the list matching identifiers
- Mappings:
Namespace Name Mixin selector named findResources
Lnet/minecraft/resource/ResourceManager;findResources(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;
official b
Laup;b(Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map;
-
findAllResources
Map<Identifier,List<Resource>> findAllResources(String startingPath, Predicate<Identifier> allowedPathPredicate) - Mappings:
Namespace Name Mixin selector named findAllResources
Lnet/minecraft/resource/ResourceManager;findAllResources(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;
official c
Laup;c(Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map;
-
streamResourcePacks
Stream<ResourcePack> streamResourcePacks()Gets a stream of loaded resource packs in increasing order of priority.- Mappings:
Namespace Name Mixin selector named streamResourcePacks
Lnet/minecraft/resource/ResourceManager;streamResourcePacks()Ljava/util/stream/Stream;
intermediary method_29213
Lnet/minecraft/class_3300;method_29213()Ljava/util/stream/Stream;
official b
Laup;b()Ljava/util/stream/Stream;
-