Files
Tplus/src/main/java/net/nuggetmc/ai/command/commands/AICommand.java

43 lines
1.3 KiB
Java
Raw Normal View History

2021-07-21 13:52:21 -05:00
package net.nuggetmc.ai.command.commands;
import com.jonahseguin.drink.annotation.Command;
import com.jonahseguin.drink.annotation.OptArg;
import com.jonahseguin.drink.annotation.Sender;
import net.nuggetmc.ai.TerminatorPlus;
import net.nuggetmc.ai.bot.BotManager;
import net.nuggetmc.ai.bot.agent.Agent;
import net.nuggetmc.ai.bot.agent.legacyagent.ai.NetworkType;
2021-07-21 13:52:21 -05:00
import net.nuggetmc.ai.command.CommandHandler;
import net.nuggetmc.ai.command.CommandInstance;
2021-07-21 17:18:36 -05:00
import org.bukkit.command.CommandSender;
2021-07-21 13:52:21 -05:00
import org.bukkit.entity.Player;
public class AICommand extends CommandInstance {
private final BotManager manager;
private final Agent agent;
2021-07-21 13:52:21 -05:00
public AICommand(CommandHandler commandHandler) {
super(commandHandler);
this.manager = TerminatorPlus.getInstance().getManager();
this.agent = manager.getAgent();
2021-07-21 13:52:21 -05:00
}
@Command(
desc = "The root command for bot AI training."
)
2021-07-21 17:18:36 -05:00
public void root(@Sender CommandSender sender) {
commandHandler.sendRootInfo(this, sender);
2021-07-21 13:52:21 -05:00
}
@Command(
name = "random",
desc = "Create bots with random neural networks, collecting feed data.",
usage = "<amount> <name> [skin]"
2021-07-21 13:52:21 -05:00
)
public void random(@Sender Player sender, int n, String name, @OptArg String skin) {
manager.createBots(sender, name, skin, n, NetworkType.RANDOM);
2021-07-21 13:52:21 -05:00
}
}