All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cloud.commandframework.fabric.FabricServerCommandManager Maven / Gradle / Ivy

The newest version!
//
// MIT License
//
// Copyright (c) 2022 Alexander Söderberg & Contributors
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
//
package cloud.commandframework.fabric;

import cloud.commandframework.CommandTree;
import cloud.commandframework.arguments.parser.ParserParameters;
import cloud.commandframework.execution.AsynchronousCommandExecutionCoordinator;
import cloud.commandframework.execution.CommandExecutionCoordinator;
import cloud.commandframework.fabric.annotations.specifier.Center;
import cloud.commandframework.fabric.argument.FabricArgumentParsers;
import cloud.commandframework.fabric.data.Coordinates;
import cloud.commandframework.fabric.data.Message;
import cloud.commandframework.fabric.data.MultipleEntitySelector;
import cloud.commandframework.fabric.data.MultiplePlayerSelector;
import cloud.commandframework.fabric.data.SingleEntitySelector;
import cloud.commandframework.fabric.data.SinglePlayerSelector;
import cloud.commandframework.fabric.internal.LateRegistrationCatcher;
import cloud.commandframework.meta.CommandMeta;
import io.leangen.geantyref.TypeToken;
import java.util.function.Function;
import me.lucko.fabric.api.permissions.v0.Permissions;
import net.fabricmc.fabric.api.command.v2.CommandRegistrationCallback;
import net.minecraft.class_2165;
import net.minecraft.class_2168;
import net.minecraft.class_2170;
import net.minecraft.class_241;
import net.minecraft.class_243;
import net.minecraft.class_2561;
import org.checkerframework.checker.nullness.qual.NonNull;

/**
 * A command manager for registering server-side commands.
 *
 * 

All commands should be registered within mod initializers. Any registrations occurring after the first call to * {@link CommandRegistrationCallback} will be considered unsafe, and will only be permitted when the unsafe * registration manager option is enabled.

* * @param the command sender type * @since 1.5.0 */ public final class FabricServerCommandManager extends FabricCommandManager { /** * A meta attribute specifying which environments a command should be registered in. * *

The default value is {@link class_2170.class_5364#field_25419}.

* * @since 1.5.0 */ public static final CommandMeta.Key META_REGISTRATION_ENVIRONMENT = CommandMeta.Key.of( class_2170.class_5364.class, "cloud:registration-environment" ); /** * Create a command manager using native source types. * * @param execCoordinator Execution coordinator instance. * @return a new command manager * @see #FabricServerCommandManager(Function, Function, Function) for a more thorough explanation * @since 1.5.0 */ public static @NonNull FabricServerCommandManager<@NonNull class_2168> createNative( final @NonNull Function<@NonNull CommandTree<@NonNull class_2168>, @NonNull CommandExecutionCoordinator<@NonNull class_2168>> execCoordinator ) { return new FabricServerCommandManager<>(execCoordinator, Function.identity(), Function.identity()); } /** * Create a new command manager instance. * * @param commandExecutionCoordinator Execution coordinator instance. The coordinator is in charge of executing incoming * commands. Some considerations must be made when picking a suitable execution coordinator * for your platform. For example, an entirely asynchronous coordinator is not suitable * when the parsers used in that particular platform are not thread safe. If you have * commands that perform blocking operations, however, it might not be a good idea to * use a synchronous execution coordinator. In most cases you will want to pick between * {@link CommandExecutionCoordinator#simpleCoordinator()} and * {@link AsynchronousCommandExecutionCoordinator} * @param commandSourceMapper Function that maps {@link class_2168} to the command sender type * @param backwardsCommandSourceMapper Function that maps the command sender type to {@link class_2168} * @since 1.5.0 */ public FabricServerCommandManager( final @NonNull Function<@NonNull CommandTree<@NonNull C>, @NonNull CommandExecutionCoordinator<@NonNull C>> commandExecutionCoordinator, final @NonNull Function<@NonNull class_2168, @NonNull C> commandSourceMapper, final @NonNull Function<@NonNull C, @NonNull class_2168> backwardsCommandSourceMapper ) { super( commandExecutionCoordinator, commandSourceMapper, backwardsCommandSourceMapper, new FabricCommandRegistrationHandler.Server<>(), () -> new class_2168( class_2165.field_17395, class_243.field_1353, class_241.field_1340, null, 4, "", class_2561.method_43473(), null, null ) ); if (LateRegistrationCatcher.hasServerAlreadyStarted()) { throw new IllegalStateException("FabricServerCommandManager was created too late! Because command registration " + "occurs before the server instance is created, commands should be registered in mod initializers."); } this.registerParsers(); } private void registerParsers() { this.parserRegistry().registerParserSupplier(TypeToken.get(Message.class), params -> FabricArgumentParsers.message()); // Location arguments this.parserRegistry().registerAnnotationMapper( Center.class, (annotation, type) -> ParserParameters.single(FabricParserParameters.CENTER_INTEGERS, true) ); this.parserRegistry().registerParserSupplier( TypeToken.get(Coordinates.class), params -> FabricArgumentParsers.vec3(params.get( FabricParserParameters.CENTER_INTEGERS, false )) ); this.parserRegistry().registerParserSupplier( TypeToken.get(Coordinates.CoordinatesXZ.class), params -> FabricArgumentParsers.vec2(params.get( FabricParserParameters.CENTER_INTEGERS, false )) ); this.parserRegistry().registerParserSupplier( TypeToken.get(Coordinates.BlockCoordinates.class), params -> FabricArgumentParsers.blockPos() ); this.parserRegistry().registerParserSupplier( TypeToken.get(Coordinates.ColumnCoordinates.class), params -> FabricArgumentParsers.columnPos() ); // Entity selectors this.parserRegistry().registerParserSupplier( TypeToken.get(SinglePlayerSelector.class), params -> FabricArgumentParsers.singlePlayerSelector() ); this.parserRegistry().registerParserSupplier( TypeToken.get(MultiplePlayerSelector.class), params -> FabricArgumentParsers.multiplePlayerSelector() ); this.parserRegistry().registerParserSupplier( TypeToken.get(SingleEntitySelector.class), params -> FabricArgumentParsers.singleEntitySelector() ); this.parserRegistry().registerParserSupplier( TypeToken.get(MultipleEntitySelector.class), params -> FabricArgumentParsers.multipleEntitySelector() ); } /** * Check if a sender has a certain permission. * *

The current implementation checks permissions using {@code fabric-permissions-api-v0}, * falling back to op level checks.

* * @param sender Command sender * @param permission Permission node * @return whether the sender has the specified permission * @since 1.5.0 */ @Override public boolean hasPermission(final @NonNull C sender, final @NonNull String permission) { final class_2168 source = this.backwardsCommandSourceMapper().apply(sender); return Permissions.check(source, permission, source.method_9211().method_3798()); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy