Easily use anvil guis to get a user's input.
This project was made since there is no way to prompt users with an anvil input with the Spigot / Bukkit API. It requires interaction with NMS and that is a pain in plugins where users have different versions of the server running.
Java 8 and Bukkit / Spigot. Most server versions in the Spigot Repository are supported.
If you are a developer, submit a pull request adding a wrapper module for your version. Otherwise, please create an issue on the issues tab.
AnvilGUI requires the usage of Maven or a Maven compatible build system.
<dependency>
<groupId>net.wesjd</groupId>
<artifactId>anvilgui</artifactId>
<version>1.5.1-SNAPSHOT</version>
</dependency>
<repository>
<id>codemc-snapshots</id>
<url>https://repo.codemc.io/repository/maven-snapshots/</url>
</repository>
The AnvilGUI.Builder
class is how you build an AnvilGUI.
The following methods allow you to modify various parts of the displayed GUI. Javadocs are available here.
Takes a Consumer<Player>
argument that is called when a player closes the anvil gui.
builder.onClose(player -> {
player.sendMessage("You closed the inventory.");
});
Takes a BiFunction<Player, String, AnvilGUI.Response>
argument. The BiFunction is called when a player clicks the output slot.
The supplied string is what the player has inputted in the renaming field of the anvil gui. You must return an AnvilGUI.Response,
which can either be close()
, text(String)
, or openInventory(Inventory)
. Returning close()
will close the inventory; returning
text(String)
will keep the inventory open and put the supplied String in the renaming field; returning openInventory(Inventory)
will open the provided inventory, which is useful for when a user has finished their input in GUI menus.
builder.onComplete((player, text) -> {
if(text.equalsIgnoreCase("you")) {
player.sendMessage("You have magical powers!");
return AnvilGUI.Response.close();
} else {
return AnvilGUI.Response.text("Incorrect.");
}
});
Tells the AnvilGUI to prevent the user from pressing escape to close the inventory. Useful for situations like password input to play.
builder.preventClose();
Takes a String
that contains what the initial text in the renaming field should be set to.
builder.text("What is the meaning of life?");
Takes a custom ItemStack
to be placed in the left input slot.
ItemStack stack = new ItemStack(Material.IRON_SWORD);
ItemMeta meta = stack.getItemMeta();
meta.setLore(Arrays.asList("Sharp iron sword"));
stack.setItemMeta(meta);
builder.itemLeft(stack);
Takes a Consumer<Player>
to be executed when the item in the left input slot is clicked.
builder.onLeftInputClick(player -> {
player.sendMessage("You clicked the left input slot!");
});
Takes a custom ItemStack
to be placed in the right input slot.
ItemStack stack = new ItemStack(Material.IRON_INGOT);
ItemMeta meta = stack.getItemMeta();
meta.setLore(Arrays.asList("A piece of metal"));
stack.setItemMeta(meta);
builder.itemRight(stack);
Takes a Consumer<Player>
to be executed when the item in the right input slot is clicked.
builder.onRightInputClick(player -> {
player.sendMessage("You clicked the right input slot!");
});
Takes a String
that will be used as the inventory title. Only displayed in Minecraft 1.14 and above.
builder.title("Enter your answer");
Takes the Plugin
object that is making this anvil gui. It is needed to register listeners.
builder.plugin(pluginInstance);
Takes a Player
that the anvil gui should be opened for. This method can be called multiple times without needing to create
a new AnvilGUI.Builder
object.
builder.open(player);
new AnvilGUI.Builder()
.onClose(player -> { //called when the inventory is closing
player.sendMessage("You closed the inventory.");
})
.onComplete((player, text) -> { //called when the inventory output slot is clicked
if(text.equalsIgnoreCase("you")) {
player.sendMessage("You have magical powers!");
return AnvilGUI.Response.close();
} else {
return AnvilGUI.Response.text("Incorrect.");
}
})
.preventClose() //prevents the inventory from being closed
.text("What is the meaning of life?") //sets the text the GUI should start with
.itemLeft(new ItemStack(Material.IRON_SWORD)) //use a custom item for the first slot
.itemRight(new ItemStack(Material.IRON_SWORD)) //use a custom item for the second slot
.onLeftInputClick(player -> player.sendMessage("first sword")) //called when the left input slot is clicked
.onRightInputClick(player -> player.sendMessage("second sword")) //called when the right input slot is clicked
.title("Enter your answer.") //set the title of the GUI (only works in 1.14+)
.plugin(myPluginInstance) //set the plugin instance
.open(myPlayer); //opens the GUI for the player provided
Build with mvn clean install
using Java 16.
This project is licensed under the MIT License.