From 033de65a180b64fc645036d142589f57956ea263 Mon Sep 17 00:00:00 2001 From: ingle Date: Fri, 23 Sep 2022 03:49:56 -0500 Subject: Nothing works yet :+1: --- .../com/example/commands/ClientCommandBase.java | 27 ++++++++++++++++++++++ src/main/java/com/example/commands/Commands.java | 14 +++++++++++ .../com/example/commands/EnchantRuneCommand.java | 23 ++++++++++++++++++ .../java/com/example/commands/HelpCommand.java | 23 ++++++++++++++++++ 4 files changed, 87 insertions(+) create mode 100644 src/main/java/com/example/commands/ClientCommandBase.java create mode 100644 src/main/java/com/example/commands/Commands.java create mode 100644 src/main/java/com/example/commands/EnchantRuneCommand.java create mode 100644 src/main/java/com/example/commands/HelpCommand.java (limited to 'src/main/java/com/example/commands') diff --git a/src/main/java/com/example/commands/ClientCommandBase.java b/src/main/java/com/example/commands/ClientCommandBase.java new file mode 100644 index 0000000..566fb6e --- /dev/null +++ b/src/main/java/com/example/commands/ClientCommandBase.java @@ -0,0 +1,27 @@ +package com.example.commands; + +import net.minecraft.command.CommandBase; +import net.minecraft.command.ICommandSender; + +public abstract class ClientCommandBase extends CommandBase { + private final String name; + + protected ClientCommandBase(String name) { + this.name = name; + } + + @Override + public String getCommandName() { + return name; + } + + @Override + public String getCommandUsage(ICommandSender sender) { + return "/" + name; + } + + @Override + public boolean canCommandSenderUseCommand(ICommandSender sender) { + return true; + } +} diff --git a/src/main/java/com/example/commands/Commands.java b/src/main/java/com/example/commands/Commands.java new file mode 100644 index 0000000..4a3db44 --- /dev/null +++ b/src/main/java/com/example/commands/Commands.java @@ -0,0 +1,14 @@ +package com.example.commands; + +import com.example.commands.HelpCommand; +import net.minecraftforge.client.ClientCommandHandler; + +public class Commands { + public Commands() { + // Help Commands + ClientCommandHandler.instance.registerCommand(new HelpCommand()); + + // General + ClientCommandHandler.instance.registerCommand(new EnchantRuneCommand()); + } +} \ No newline at end of file diff --git a/src/main/java/com/example/commands/EnchantRuneCommand.java b/src/main/java/com/example/commands/EnchantRuneCommand.java new file mode 100644 index 0000000..98296ae --- /dev/null +++ b/src/main/java/com/example/commands/EnchantRuneCommand.java @@ -0,0 +1,23 @@ +package com.example.commands; + +import com.example.Settings; +import com.example.commands.ClientCommandBase; +import net.minecraft.client.Minecraft; +import net.minecraft.command.CommandException; +import net.minecraft.command.ICommandSender; +import net.minecraft.util.ChatComponentText; +import net.minecraft.util.EnumChatFormatting; + +public class EnchantRuneCommand extends ClientCommandBase { + + public EnchantRuneCommand() { + super("enchantrune"); + } + + @Override + public void processCommand(ICommandSender sender, String[] args) throws CommandException { + Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText( + EnumChatFormatting.BLACK+ "" + EnumChatFormatting.BOLD + "TOGGLED.")); + Settings.EnchantRune = !Settings.EnchantRune; + } +} \ No newline at end of file diff --git a/src/main/java/com/example/commands/HelpCommand.java b/src/main/java/com/example/commands/HelpCommand.java new file mode 100644 index 0000000..603fbdc --- /dev/null +++ b/src/main/java/com/example/commands/HelpCommand.java @@ -0,0 +1,23 @@ +package com.example.commands; + +import com.example.commands.ClientCommandBase; +import net.minecraft.client.Minecraft; +import net.minecraft.command.CommandException; +import net.minecraft.command.ICommandSender; +import net.minecraft.util.ChatComponentText; +import net.minecraft.util.EnumChatFormatting; + +public class HelpCommand extends ClientCommandBase { + + public HelpCommand() { + super("dulkir"); + } + + @Override + public void processCommand(ICommandSender sender, String[] args) throws CommandException { + Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText( + EnumChatFormatting.GOLD + "HI THIS IS DULKIRMOD")); + Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText( + EnumChatFormatting.GRAY + "/enchantrune - toggles enchant rune visibility.")); + } +} \ No newline at end of file -- cgit