mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
96 lines
4.6 KiB
C#
96 lines
4.6 KiB
C#
using System.Text;
|
|
using Brigadier.NET;
|
|
using Brigadier.NET.Builder;
|
|
using MinecraftClient.CommandHandler;
|
|
using MinecraftClient.Mapping;
|
|
using static MinecraftClient.CommandHandler.CmdResult;
|
|
|
|
namespace MinecraftClient.Commands
|
|
{
|
|
public class BlockInfo : Command
|
|
{
|
|
public override string CmdName { get { return "blockinfo"; } }
|
|
public override string CmdUsage { get { return "blockinfo <x> <y> <z> [-s]"; } }
|
|
public override string CmdDesc { get { return Translations.cmd_blockinfo_desc; } }
|
|
|
|
public override void RegisterCommand(CommandDispatcher<CmdResult> dispatcher)
|
|
{
|
|
dispatcher.Register(l => l.Literal("help")
|
|
.Then(l => l.Literal(CmdName)
|
|
.Executes(r => GetUsage(r.Source, string.Empty))
|
|
.Then(l => l.Literal("-s")
|
|
.Executes(r => GetUsage(r.Source, "-s")))
|
|
)
|
|
);
|
|
|
|
dispatcher.Register(l => l.Literal(CmdName)
|
|
.Executes(r => LogBlockInfo(r.Source, null, false))
|
|
.Then(l => l.Literal("-s")
|
|
.Executes(r => LogBlockInfo(r.Source, null, true)))
|
|
.Then(l => l.Argument("Location", MccArguments.Location())
|
|
.Executes(r => LogBlockInfo(r.Source, MccArguments.GetLocation(r, "Location"), false))
|
|
.Then(l => l.Literal("-s")
|
|
.Executes(r => LogBlockInfo(r.Source, MccArguments.GetLocation(r, "Location"), true))))
|
|
.Then(l => l.Literal("_help")
|
|
.Executes(r => GetUsage(r.Source, string.Empty))
|
|
.Redirect(dispatcher.GetRoot().GetChild("help").GetChild(CmdName)))
|
|
);
|
|
}
|
|
|
|
private int GetUsage(CmdResult r, string? cmd)
|
|
{
|
|
return r.SetAndReturn(cmd switch
|
|
{
|
|
#pragma warning disable format // @formatter:off
|
|
"-s" => GetCmdDescTranslated(),
|
|
_ => GetCmdDescTranslated(),
|
|
#pragma warning restore format // @formatter:on
|
|
});
|
|
}
|
|
|
|
private static int LogBlockInfo(CmdResult r, Location? targetBlock, bool reportSurrounding)
|
|
{
|
|
McClient handler = CmdResult.currentHandler!;
|
|
if (!handler.GetTerrainEnabled())
|
|
return r.SetAndReturn(Status.FailNeedTerrain);
|
|
|
|
if (targetBlock.HasValue)
|
|
targetBlock.Value.ToAbsolute(handler.GetCurrentLocation());
|
|
else
|
|
targetBlock = handler.GetCurrentLocation();
|
|
|
|
Block block = handler.GetWorld().GetBlock(targetBlock.Value);
|
|
|
|
handler.Log.Info($"{Translations.cmd_blockinfo_BlockType}: {block.GetTypeString()}");
|
|
if (reportSurrounding)
|
|
{
|
|
StringBuilder sb = new();
|
|
sb.AppendLine($"{Translations.cmd_blockinfo_BlocksAround}:");
|
|
|
|
double X = targetBlock.Value.X, Y = targetBlock.Value.Y, Z = targetBlock.Value.Z;
|
|
Block blockXPositive = handler.GetWorld().GetBlock(new Location(X + 1, Y, Z));
|
|
Block blockXNegative = handler.GetWorld().GetBlock(new Location(X - 1, Y, Z));
|
|
Block blockYPositive = handler.GetWorld().GetBlock(new Location(X, Y + 1, Z));
|
|
Block blockYNegative = handler.GetWorld().GetBlock(new Location(X, Y - 1, Z));
|
|
Block blockZPositive = handler.GetWorld().GetBlock(new Location(X, Y, Z + 1));
|
|
Block blockZNegative = handler.GetWorld().GetBlock(new Location(X, Y, Z - 1));
|
|
|
|
sb.AppendLine($"[X {Translations.cmd_blockinfo_Positive}] {Translations.cmd_blockinfo_BlockType}: {blockXPositive.GetTypeString()}");
|
|
sb.AppendLine($"[X {Translations.cmd_blockinfo_Negative}] {Translations.cmd_blockinfo_BlockType}: {blockXNegative.GetTypeString()}");
|
|
|
|
sb.AppendLine(" ");
|
|
|
|
sb.AppendLine($"[Y {Translations.cmd_blockinfo_Positive}] {Translations.cmd_blockinfo_BlockType}: {blockYPositive.GetTypeString()}");
|
|
sb.AppendLine($"[Y {Translations.cmd_blockinfo_Negative}] {Translations.cmd_blockinfo_BlockType}: {blockYNegative.GetTypeString()}");
|
|
|
|
sb.AppendLine(" ");
|
|
|
|
sb.AppendLine($"[Z {Translations.cmd_blockinfo_Positive}] {Translations.cmd_blockinfo_BlockType}: {blockZPositive.GetTypeString()}");
|
|
sb.AppendLine($"[Z {Translations.cmd_blockinfo_Negative}] {Translations.cmd_blockinfo_BlockType}: {blockZNegative.GetTypeString()}");
|
|
|
|
handler.Log.Info(sb.ToString());
|
|
}
|
|
return r.SetAndReturn(Status.Done);
|
|
}
|
|
}
|
|
}
|