Unicopia/src/main/java/com/minelittlepony/unicopia/command/GravityCommand.java

76 lines
3.3 KiB
Java
Raw Normal View History

package com.minelittlepony.unicopia.command;
2020-01-27 11:05:22 +01:00
import com.minelittlepony.unicopia.entity.player.Pony;
2020-01-27 11:05:22 +01:00
import com.mojang.brigadier.CommandDispatcher;
import com.mojang.brigadier.arguments.FloatArgumentType;
import com.mojang.brigadier.builder.LiteralArgumentBuilder;
2020-05-03 22:42:28 +02:00
import com.mojang.brigadier.exceptions.CommandSyntaxException;
2020-01-27 11:05:22 +01:00
import net.minecraft.command.argument.EntityArgumentType;
2020-01-27 11:05:22 +01:00
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.server.command.CommandManager;
import net.minecraft.server.command.ServerCommandSource;
import net.minecraft.text.TranslatableText;
2021-08-07 22:32:05 +02:00
import net.minecraft.util.Util;
import net.minecraft.world.GameRules;
2020-01-27 11:05:22 +01:00
class GravityCommand {
static void register(CommandDispatcher<ServerCommandSource> dispatcher) {
2020-05-03 22:42:28 +02:00
LiteralArgumentBuilder<ServerCommandSource> builder = CommandManager
.literal("gravity")
.requires(s -> s.hasPermissionLevel(4));
builder.then(CommandManager.literal("get")
.executes(context -> get(context.getSource(), context.getSource().getPlayer(), true))
.then(CommandManager.argument("target", EntityArgumentType.player())
.executes(context -> get(context.getSource(), EntityArgumentType.getPlayer(context, "target"), false))
));
builder.then(CommandManager.literal("set")
.then(CommandManager.argument("gravity", FloatArgumentType.floatArg(-99, 99))
.executes(context -> set(context.getSource(), context.getSource().getPlayer(), FloatArgumentType.getFloat(context, "gravity"), true))
.then(CommandManager.argument("target", EntityArgumentType.player())
.executes(context -> set(context.getSource(), EntityArgumentType.getPlayer(context, "target"), FloatArgumentType.getFloat(context, "gravity"), false))
)));
2020-01-27 11:05:22 +01:00
dispatcher.register(builder);
}
2020-05-03 22:42:28 +02:00
static int get(ServerCommandSource source, PlayerEntity player, boolean isSelf) throws CommandSyntaxException {
2020-01-27 11:05:22 +01:00
String translationKey = "commands.gravity.get";
2020-04-15 18:12:00 +02:00
Pony iplayer = Pony.of(player);
2020-01-27 11:05:22 +01:00
float gravity = iplayer.getPhysics().getGravityModifier();
2020-01-27 11:05:22 +01:00
2021-08-07 22:32:05 +02:00
if (source.getPlayer() == player) {
player.sendMessage(new TranslatableText(translationKey, gravity), false);
} else {
source.sendFeedback(new TranslatableText(translationKey + ".other", player.getName(), gravity), true);
2020-01-27 11:05:22 +01:00
}
return 0;
}
static int set(ServerCommandSource source, PlayerEntity player, float gravity, boolean isSelf) {
String translationKey = "commands.gravity.set";
2020-04-15 18:12:00 +02:00
Pony iplayer = Pony.of(player);
2020-01-27 11:05:22 +01:00
iplayer.getPhysics().setBaseGravityModifier(gravity);
iplayer.setDirty();
2020-01-27 11:05:22 +01:00
2021-08-07 22:32:05 +02:00
if (source.getEntity() == player) {
source.sendFeedback(new TranslatableText("commands.gamemode.success.self", gravity), true);
} else {
if (source.getWorld().getGameRules().getBoolean(GameRules.SEND_COMMAND_FEEDBACK)) {
player.sendSystemMessage(new TranslatableText(translationKey, gravity), Util.NIL_UUID);
}
2020-01-27 11:05:22 +01:00
2021-08-07 22:32:05 +02:00
source.sendFeedback(new TranslatableText(translationKey + ".other", player.getName(), gravity), true);
}
2020-01-27 11:05:22 +01:00
return 0;
}
}