Class CommandFunctionManager.Execution

java.lang.Object
net.minecraft.server.function.CommandFunctionManager.Execution
Enclosing class:
CommandFunctionManager

private class CommandFunctionManager.Execution extends Object
An active execution of functions. It uses two deques to simulate a stack for a depth-first expansion of functions, as the function call stack depth may exceed the allowed JVM stack size.
See Also:
Mappings:
Namespace Name
official act$a
intermediary net/minecraft/class_2991$class_6345
named net/minecraft/server/function/CommandFunctionManager$Execution
  • Field Details

    • depth

      private int depth
      Mappings:
      Namespace Name Mixin selector
      official b Lact$a;b:I
      intermediary field_33545 Lnet/minecraft/class_2991$class_6345;field_33545:I
      named depth Lnet/minecraft/server/function/CommandFunctionManager$Execution;depth:I
    • tracer

      Mappings:
      Namespace Name Mixin selector
      official c Lact$a;c:Lact$c;
      intermediary field_33546 Lnet/minecraft/class_2991$class_6345;field_33546:Lnet/minecraft/class_2991$class_6346;
      named tracer Lnet/minecraft/server/function/CommandFunctionManager$Execution;tracer:Lnet/minecraft/server/function/CommandFunctionManager$Tracer;
    • queue

      private final Deque<CommandFunctionManager.Entry> queue
      Mappings:
      Namespace Name Mixin selector
      official d Lact$a;d:Ljava/util/Deque;
      intermediary field_33547 Lnet/minecraft/class_2991$class_6345;field_33547:Ljava/util/Deque;
      named queue Lnet/minecraft/server/function/CommandFunctionManager$Execution;queue:Ljava/util/Deque;
    • waitlist

      private final List<CommandFunctionManager.Entry> waitlist
      Mappings:
      Namespace Name Mixin selector
      official e Lact$a;e:Ljava/util/List;
      intermediary field_33548 Lnet/minecraft/class_2991$class_6345;field_33548:Ljava/util/List;
      named waitlist Lnet/minecraft/server/function/CommandFunctionManager$Execution;waitlist:Ljava/util/List;
  • Constructor Details

    • Execution

      Mappings:
      Namespace Name Mixin selector
      official <init> Lact$a;<init>(Lact;Lact$c;)V
      intermediary <init> Lnet/minecraft/class_2991$class_6345;<init>(Lnet/minecraft/class_2991;Lnet/minecraft/class_2991$class_6346;)V
      named <init> Lnet/minecraft/server/function/CommandFunctionManager$Execution;<init>(Lnet/minecraft/server/function/CommandFunctionManager;Lnet/minecraft/server/function/CommandFunctionManager$Tracer;)V
  • Method Details

    • recursiveRun

      void recursiveRun(CommandFunction function, ServerCommandSource source)
      Handles a recursive case in CommandFunctionManager.execute(CommandFunction, ServerCommandSource, CommandFunctionManager.Tracer).

      This effectively swaps an entry with a command element with /function command at the head of the deque with another entry with a function element containing the actual command elements referenced in that function.

      Parameters:
      function - the function
      source - the command source
      Mappings:
      Namespace Name Mixin selector
      official a Lact$a;a(Ldj;Ldn;)V
      intermediary method_36343 Lnet/minecraft/class_2991$class_6345;method_36343(Lnet/minecraft/class_2158;Lnet/minecraft/class_2168;)V
      named recursiveRun Lnet/minecraft/server/function/CommandFunctionManager$Execution;recursiveRun(Lnet/minecraft/server/function/CommandFunction;Lnet/minecraft/server/command/ServerCommandSource;)V
    • run

      int run(CommandFunction function, ServerCommandSource source)
      Parameters:
      function - the function
      source - the command source
      Returns:
      a value for the command result
      Mappings:
      Namespace Name Mixin selector
      official b Lact$a;b(Ldj;Ldn;)I
      intermediary method_36346 Lnet/minecraft/class_2991$class_6345;method_36346(Lnet/minecraft/class_2158;Lnet/minecraft/class_2168;)I
      named run Lnet/minecraft/server/function/CommandFunctionManager$Execution;run(Lnet/minecraft/server/function/CommandFunction;Lnet/minecraft/server/command/ServerCommandSource;)I
    • reportError

      public void reportError(String message)
      Mappings:
      Namespace Name Mixin selector
      official a Lact$a;a(Ljava/lang/String;)V
      intermediary method_36344 Lnet/minecraft/class_2991$class_6345;method_36344(Ljava/lang/String;)V
      named reportError Lnet/minecraft/server/function/CommandFunctionManager$Execution;reportError(Ljava/lang/String;)V