Class SimpleResourceReload<S>

java.lang.Object
net.minecraft.resource.SimpleResourceReload<S>
Type Parameters:
S - the result type for each reloader in the reload
All Implemented Interfaces:
ResourceReload
Direct Known Subclasses:
ProfiledResourceReload

public class SimpleResourceReload<S> extends Object implements ResourceReload
A simple implementation of resource reload.
Mappings:
Namespace Name
official akk
intermediary net/minecraft/class_4014
named net/minecraft/resource/SimpleResourceReload
  • Field Details

    • FIRST_PREPARE_APPLY_WEIGHT

      private static final int FIRST_PREPARE_APPLY_WEIGHT
      The weight of either prepare or apply stages' progress in the total progress calculation. Has value 2.
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official c Lakk;c:I
      intermediary field_29784 Lnet/minecraft/class_4014;field_29784:I
      named FIRST_PREPARE_APPLY_WEIGHT Lnet/minecraft/resource/SimpleResourceReload;FIRST_PREPARE_APPLY_WEIGHT:I
    • SECOND_PREPARE_APPLY_WEIGHT

      private static final int SECOND_PREPARE_APPLY_WEIGHT
      The weight of either prepare or apply stages' progress in the total progress calculation. Has value 2.
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official d Lakk;d:I
      intermediary field_29785 Lnet/minecraft/class_4014;field_29785:I
      named SECOND_PREPARE_APPLY_WEIGHT Lnet/minecraft/resource/SimpleResourceReload;SECOND_PREPARE_APPLY_WEIGHT:I
    • RELOADER_WEIGHT

      private static final int RELOADER_WEIGHT
      The weight of reloaders' progress in the total progress calculation. Has value 1.
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official e Lakk;e:I
      intermediary field_29786 Lnet/minecraft/class_4014;field_29786:I
      named RELOADER_WEIGHT Lnet/minecraft/resource/SimpleResourceReload;RELOADER_WEIGHT:I
    • prepareStageFuture

      protected final CompletableFuture<Unit> prepareStageFuture
      Mappings:
      Namespace Name Mixin selector
      official a Lakk;a:Ljava/util/concurrent/CompletableFuture;
      intermediary field_18042 Lnet/minecraft/class_4014;field_18042:Ljava/util/concurrent/CompletableFuture;
      named prepareStageFuture Lnet/minecraft/resource/SimpleResourceReload;prepareStageFuture:Ljava/util/concurrent/CompletableFuture;
    • applyStageFuture

      protected CompletableFuture<List<S>> applyStageFuture
      Mappings:
      Namespace Name Mixin selector
      official b Lakk;b:Ljava/util/concurrent/CompletableFuture;
      intermediary field_18043 Lnet/minecraft/class_4014;field_18043:Ljava/util/concurrent/CompletableFuture;
      named applyStageFuture Lnet/minecraft/resource/SimpleResourceReload;applyStageFuture:Ljava/util/concurrent/CompletableFuture;
    • waitingReloaders

      final Set<ResourceReloader> waitingReloaders
      Mappings:
      Namespace Name Mixin selector
      official f Lakk;f:Ljava/util/Set;
      intermediary field_18044 Lnet/minecraft/class_4014;field_18044:Ljava/util/Set;
      named waitingReloaders Lnet/minecraft/resource/SimpleResourceReload;waitingReloaders:Ljava/util/Set;
    • reloaderCount

      private final int reloaderCount
      Mappings:
      Namespace Name Mixin selector
      official g Lakk;g:I
      intermediary field_18045 Lnet/minecraft/class_4014;field_18045:I
      named reloaderCount Lnet/minecraft/resource/SimpleResourceReload;reloaderCount:I
    • toApplyCount

      private int toApplyCount
      Mappings:
      Namespace Name Mixin selector
      official h Lakk;h:I
      intermediary field_18046 Lnet/minecraft/class_4014;field_18046:I
      named toApplyCount Lnet/minecraft/resource/SimpleResourceReload;toApplyCount:I
    • appliedCount

      private int appliedCount
      Mappings:
      Namespace Name Mixin selector
      official i Lakk;i:I
      intermediary field_18047 Lnet/minecraft/class_4014;field_18047:I
      named appliedCount Lnet/minecraft/resource/SimpleResourceReload;appliedCount:I
    • toPrepareCount

      private final AtomicInteger toPrepareCount
      Mappings:
      Namespace Name Mixin selector
      official j Lakk;j:Ljava/util/concurrent/atomic/AtomicInteger;
      intermediary field_18048 Lnet/minecraft/class_4014;field_18048:Ljava/util/concurrent/atomic/AtomicInteger;
      named toPrepareCount Lnet/minecraft/resource/SimpleResourceReload;toPrepareCount:Ljava/util/concurrent/atomic/AtomicInteger;
    • preparedCount

      private final AtomicInteger preparedCount
      Mappings:
      Namespace Name Mixin selector
      official k Lakk;k:Ljava/util/concurrent/atomic/AtomicInteger;
      intermediary field_18049 Lnet/minecraft/class_4014;field_18049:Ljava/util/concurrent/atomic/AtomicInteger;
      named preparedCount Lnet/minecraft/resource/SimpleResourceReload;preparedCount:Ljava/util/concurrent/atomic/AtomicInteger;
  • Constructor Details

    • SimpleResourceReload

      protected SimpleResourceReload(Executor prepareExecutor, Executor applyExecutor, ResourceManager manager, List<ResourceReloader> reloaders, SimpleResourceReload.Factory<S> factory, CompletableFuture<Unit> initialStage)
      Mappings:
      Namespace Name Mixin selector
      official <init> Lakk;<init>(Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Lake;Ljava/util/List;Lakk$a;Ljava/util/concurrent/CompletableFuture;)V
      intermediary <init> Lnet/minecraft/class_4014;<init>(Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Lnet/minecraft/class_3300;Ljava/util/List;Lnet/minecraft/class_4014$class_4047;Ljava/util/concurrent/CompletableFuture;)V
      named <init> Lnet/minecraft/resource/SimpleResourceReload;<init>(Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Lnet/minecraft/resource/ResourceManager;Ljava/util/List;Lnet/minecraft/resource/SimpleResourceReload$Factory;Ljava/util/concurrent/CompletableFuture;)V
  • Method Details

    • create

      public static SimpleResourceReload<Void> create(ResourceManager manager, List<ResourceReloader> reloaders, Executor prepareExecutor, Executor applyExecutor, CompletableFuture<Unit> initialStage)
      Creates a simple resource reload without additional results.
      Mappings:
      Namespace Name Mixin selector
      official a Lakk;a(Lake;Ljava/util/List;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;)Lakk;
      intermediary method_18369 Lnet/minecraft/class_4014;method_18369(Lnet/minecraft/class_3300;Ljava/util/List;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;)Lnet/minecraft/class_4014;
      named create Lnet/minecraft/resource/SimpleResourceReload;create(Lnet/minecraft/resource/ResourceManager;Ljava/util/List;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;)Lnet/minecraft/resource/SimpleResourceReload;
    • whenComplete

      public CompletableFuture<?> whenComplete()
      Returns a future for the reload. The returned future is completed when the reload completes.
      Specified by:
      whenComplete in interface ResourceReload
      Mappings:
      Namespace Name Mixin selector
      official a Laka;a()Ljava/util/concurrent/CompletableFuture;
      intermediary method_18364 Lnet/minecraft/class_4011;method_18364()Ljava/util/concurrent/CompletableFuture;
      named whenComplete Lnet/minecraft/resource/ResourceReload;whenComplete()Ljava/util/concurrent/CompletableFuture;
    • getProgress

      public float getProgress()
      Returns a fraction between 0 and 1 indicating the progress of this reload.
      Specified by:
      getProgress in interface ResourceReload
      Mappings:
      Namespace Name Mixin selector
      official b Laka;b()F
      intermediary method_18229 Lnet/minecraft/class_4011;method_18229()F
      named getProgress Lnet/minecraft/resource/ResourceReload;getProgress()F
    • start

      public static ResourceReload start(ResourceManager manager, List<ResourceReloader> reloaders, Executor prepareExecutor, Executor applyExecutor, CompletableFuture<Unit> initialStage, boolean profiled)
      Starts a resource reload with the content from the manager supplied to the reloaders.
      Parameters:
      manager - the resource manager, providing resources to the reloaders
      reloaders - the reloaders performing the reload
      prepareExecutor - the executor for the prepare stage, often asynchronous
      applyExecutor - the executor for the apply stage, synchronous with the game engine
      initialStage - the initial stage, must be completed before the reloaders can prepare resources
      profiled - whether to profile this reload and log the statistics
      API Note:
      In vanilla, this is respectively called by ReloadableResourceManagerImpl on the client and DataPackContents on the server.
      Mappings:
      Namespace Name Mixin selector
      official a Lakk;a(Lake;Ljava/util/List;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Z)Laka;
      intermediary method_40087 Lnet/minecraft/class_4014;method_40087(Lnet/minecraft/class_3300;Ljava/util/List;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Z)Lnet/minecraft/class_4011;
      named start Lnet/minecraft/resource/SimpleResourceReload;start(Lnet/minecraft/resource/ResourceManager;Ljava/util/List;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Z)Lnet/minecraft/resource/ResourceReload;