feat: added basic tp command

This commit is contained in:
əlemi 2023-03-04 01:31:12 +01:00
parent 8813dda003
commit a71402637e
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -0,0 +1,60 @@
package ftbsc.bscv.commands;
import com.google.auto.service.AutoService;
import com.mojang.brigadier.arguments.DoubleArgumentType;
import com.mojang.brigadier.builder.LiteralArgumentBuilder;
import ftbsc.bscv.api.ILoadable;
import net.minecraft.command.CommandSource;
import net.minecraft.command.Commands;
import static ftbsc.bscv.Boscovicino.log;
@AutoService(ILoadable.class)
public class Teleport extends AbstractCommand {
@Override
public String getName() { return "tp"; }
public LiteralArgumentBuilder<CommandSource> register(LiteralArgumentBuilder<CommandSource> builder) {
return builder
.then(
Commands.literal("up")
.then(
Commands.argument("distance", DoubleArgumentType.doubleArg())
.executes( ctx -> {
double distance = ctx.getArgument("distance", Double.class);
MC.player.setPos(
MC.player.position().x,
MC.player.position().y + distance,
MC.player.position().z
);
log(String.format("blinked up %.1f blocks", distance));
return 1;
})
)
)
.then(
Commands.argument("x", DoubleArgumentType.doubleArg())
.then(
Commands.argument("y", DoubleArgumentType.doubleArg())
.then(
Commands.argument("z", DoubleArgumentType.doubleArg())
.executes( ctx -> {
double x = ctx.getArgument("x", Double.class);
double y = ctx.getArgument("y", Double.class);
double z = ctx.getArgument("z", Double.class);
MC.player.setPos(x, y, z);
log(String.format("blinked to X%.0f | Z%.0f", x, z));
return 1;
})
)
)
)
.executes(ctx -> {
log("no args specified");
return 0;
});
}
}