Initial commit
This commit is contained in:
commit
9ccaaca6da
9 changed files with 492 additions and 0 deletions
|
|
@ -0,0 +1,17 @@
|
|||
package me.firephoenix.anticheatmanager;
|
||||
|
||||
import org.bukkit.plugin.java.JavaPlugin;
|
||||
|
||||
public final class AnticheatManager extends JavaPlugin {
|
||||
|
||||
@Override
|
||||
public void onEnable() {
|
||||
// Plugin startup logic
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDisable() {
|
||||
// Plugin shutdown logic
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
package me.firephoenix.anticheatmanager.cmds;
|
||||
|
||||
/**
|
||||
* @author NieGestorben
|
||||
* Copyright© (c) 2023, All Rights Reserved.
|
||||
*/
|
||||
public class AnticheatManagerGUI {
|
||||
}
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
package me.firephoenix.anticheatmanager.cmds;/**
|
||||
* @author NieGestorben
|
||||
* Copyright© (c) 2023, All Rights Reserved.
|
||||
*/
|
||||
public class AnticheatSelector {
|
||||
}
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
package me.firephoenix.anticheatmanager.listener;
|
||||
|
||||
/**
|
||||
* @author NieGestorben
|
||||
* Copyright© (c) 2023, All Rights Reserved.
|
||||
*/
|
||||
public class InvClick {
|
||||
}
|
||||
|
|
@ -0,0 +1,301 @@
|
|||
package me.firephoenix.anticheatmanager.cmds.util;
|
||||
|
||||
import org.bukkit.Color;
|
||||
import org.bukkit.DyeColor;
|
||||
import org.bukkit.Material;
|
||||
import org.bukkit.enchantments.Enchantment;
|
||||
import org.bukkit.inventory.ItemFlag;
|
||||
import org.bukkit.inventory.ItemStack;
|
||||
import org.bukkit.inventory.meta.ItemMeta;
|
||||
import org.bukkit.inventory.meta.LeatherArmorMeta;
|
||||
import org.bukkit.inventory.meta.SkullMeta;
|
||||
import org.bukkit.material.MaterialData;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* Easily create itemstacks, without messing your hands.
|
||||
* <i>Note that if you do use this in one of your projects, leave this notice.</i>
|
||||
* <i>Please do credit me if you do use this in one of your projects.</i>
|
||||
* @author NonameSL
|
||||
*/
|
||||
public class ItemBuilder {
|
||||
private final ItemStack is;
|
||||
/**
|
||||
* Create a new ItemBuilder from scratch.
|
||||
* @param m The material to create the ItemBuilder with.
|
||||
*/
|
||||
public ItemBuilder(Material m){
|
||||
this(m, 1);
|
||||
}
|
||||
/**
|
||||
* Create a new ItemBuilder over an existing itemstack.
|
||||
* @param is The itemstack to create the ItemBuilder over.
|
||||
*/
|
||||
public ItemBuilder(ItemStack is){
|
||||
this.is=is;
|
||||
}
|
||||
/**
|
||||
* Create a new ItemBuilder from scratch.
|
||||
* @param m The material of the item.
|
||||
* @param amount The amount of the item.
|
||||
*/
|
||||
public ItemBuilder(Material m, int amount){
|
||||
is= new ItemStack(m, amount);
|
||||
}
|
||||
/**
|
||||
* Create a new ItemBuilder from scratch.
|
||||
* @param m The material of the item.
|
||||
* @param amount The amount of the item.
|
||||
* @param durability The durability of the item.
|
||||
*/
|
||||
public ItemBuilder(Material m, int amount, byte durability){
|
||||
is = new ItemStack(m, amount, durability);
|
||||
}
|
||||
/**
|
||||
* Clone the ItemBuilder into a new one.
|
||||
* @return The cloned instance.
|
||||
*/
|
||||
public ItemBuilder clone() {
|
||||
return new ItemBuilder(is);
|
||||
}
|
||||
/**
|
||||
* Change the durability of the item.
|
||||
* @param dur The durability to set it to.
|
||||
*/
|
||||
public ItemBuilder setDurability(short dur){
|
||||
is.setDurability(dur);
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* Change the amount of the item.
|
||||
* @param amount The amount to set it to.
|
||||
*/
|
||||
public ItemBuilder setAmount(int amount) {
|
||||
is.setAmount(amount);
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* Set the displayname of the item.
|
||||
* @param name The name to change it to.
|
||||
*/
|
||||
public ItemBuilder setName(String name){
|
||||
ItemMeta im = is.getItemMeta();
|
||||
im.setDisplayName(name);
|
||||
is.setItemMeta(im);
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* Add an unsafe enchantment.
|
||||
* @param ench The enchantment to add.
|
||||
* @param level The level to put the enchant on.
|
||||
*/
|
||||
public ItemBuilder addUnsafeEnchantment(Enchantment ench, int level){
|
||||
is.addUnsafeEnchantment(ench, level);
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* Remove a certain enchant from the item.
|
||||
* @param ench The enchantment to remove
|
||||
*/
|
||||
public ItemBuilder removeEnchantment(Enchantment ench){
|
||||
is.removeEnchantment(ench);
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* Set the skull owner for the item. Works on skulls only.
|
||||
* @param owner The name of the skull's owner.
|
||||
*/
|
||||
public ItemBuilder setSkullOwner(String owner){
|
||||
try{
|
||||
SkullMeta im = (SkullMeta)is.getItemMeta();
|
||||
im.setOwner(owner);
|
||||
is.setItemMeta(im);
|
||||
}catch(ClassCastException ignored){}
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* Add an enchant to the item.
|
||||
* @param ench The enchant to add
|
||||
* @param level The level
|
||||
*/
|
||||
public ItemBuilder addEnchant(Enchantment ench, int level){
|
||||
ItemMeta im = is.getItemMeta();
|
||||
im.addEnchant(ench, level, true);
|
||||
is.setItemMeta(im);
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* Add multiple enchants at once.
|
||||
* @param enchantments The enchants to add.
|
||||
*/
|
||||
public ItemBuilder addEnchantments(Map<Enchantment, Integer> enchantments){
|
||||
is.addEnchantments(enchantments);
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* Sets infinity durability on the item by setting the durability to Short.MAX_VALUE.
|
||||
*/
|
||||
public ItemBuilder setInfinityDurability(){
|
||||
is.setDurability(Short.MAX_VALUE);
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* Sets the durability to unbreakable
|
||||
*/
|
||||
public ItemBuilder setUnbreakable(boolean unbreakable) {
|
||||
ItemMeta im = is.getItemMeta();
|
||||
im.spigot().setUnbreakable(unbreakable);
|
||||
is.setItemMeta(im);
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* Re-sets the lore.
|
||||
* @param lore The lore to set it to.
|
||||
*/
|
||||
public ItemBuilder setLore(String... lore){
|
||||
ItemMeta im = is.getItemMeta();
|
||||
im.setLore(Arrays.asList(lore));
|
||||
is.setItemMeta(im);
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* Re-sets the lore.
|
||||
* @param lore The lore to set it to.
|
||||
*/
|
||||
public ItemBuilder setLore(List<String> lore) {
|
||||
ItemMeta im = is.getItemMeta();
|
||||
im.setLore(lore);
|
||||
is.setItemMeta(im);
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* Remove a lore line.
|
||||
* @param line The lore to remove.
|
||||
*/
|
||||
public ItemBuilder removeLoreLine(String line){
|
||||
ItemMeta im = is.getItemMeta();
|
||||
List<String> lore = new ArrayList<>(im.getLore());
|
||||
if(!lore.contains(line))return this;
|
||||
lore.remove(line);
|
||||
im.setLore(lore);
|
||||
is.setItemMeta(im);
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* Remove a lore line.
|
||||
* @param index The index of the lore line to remove.
|
||||
*/
|
||||
public ItemBuilder removeLoreLine(int index){
|
||||
ItemMeta im = is.getItemMeta();
|
||||
List<String> lore = new ArrayList<>(im.getLore());
|
||||
if(index<0||index>lore.size())return this;
|
||||
lore.remove(index);
|
||||
im.setLore(lore);
|
||||
is.setItemMeta(im);
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* Add a lore line.
|
||||
* @param line The lore line to add.
|
||||
*/
|
||||
public ItemBuilder addLoreLine(String line){
|
||||
ItemMeta im = is.getItemMeta();
|
||||
List<String> lore = new ArrayList<>();
|
||||
if(im.hasLore())lore = new ArrayList<>(im.getLore());
|
||||
lore.add(line);
|
||||
im.setLore(lore);
|
||||
is.setItemMeta(im);
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* Add a lore line.
|
||||
* @param line The lore line to add.
|
||||
* @param pos The index of where to put it.
|
||||
*/
|
||||
public ItemBuilder addLoreLine(String line, int pos){
|
||||
ItemMeta im = is.getItemMeta();
|
||||
List<String> lore = new ArrayList<>(im.getLore());
|
||||
lore.set(pos, line);
|
||||
im.setLore(lore);
|
||||
is.setItemMeta(im);
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* Sets the dye color on an item.
|
||||
* <b>* Notice that this doesn't check for item type, sets the literal data of the dyecolor as durability.</b>
|
||||
* @param color The color to put.
|
||||
*/
|
||||
@SuppressWarnings("deprecation")
|
||||
public ItemBuilder setDyeColor(DyeColor color){
|
||||
this.is.setDurability(color.getDyeData());
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* Sets the dye color of a wool item. Works only on wool.
|
||||
* @deprecated As of version 1.2 changed to setDyeColor.
|
||||
* @see ItemBuilder@setDyeColor(DyeColor)
|
||||
* @param color The DyeColor to set the wool item to.
|
||||
*/
|
||||
@Deprecated
|
||||
public ItemBuilder setWoolColor(DyeColor color){
|
||||
if(!is.getType().equals(Material.WOOL))return this;
|
||||
this.is.setDurability(color.getDyeData());
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* Sets the armor color of a leather armor piece. Works only on leather armor pieces.
|
||||
* @param color The color to set it to.
|
||||
*/
|
||||
public ItemBuilder setLeatherArmorColor(Color color){
|
||||
try{
|
||||
LeatherArmorMeta im = (LeatherArmorMeta)is.getItemMeta();
|
||||
im.setColor(color);
|
||||
is.setItemMeta(im);
|
||||
}catch(ClassCastException ignored){}
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the itemflag of the item. Works on every item.
|
||||
* @param flag Set a specific itemflag
|
||||
*/
|
||||
public ItemBuilder setItemFlags(ItemFlag flag) {
|
||||
ItemMeta im = is.getItemMeta();
|
||||
im.addItemFlags(flag);
|
||||
is.setItemMeta(im);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the data of the item. Works on every item.
|
||||
* @param data Set a specific data
|
||||
*/
|
||||
public ItemBuilder setData(MaterialData data) {
|
||||
is.setData(data);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the typeId of the item. Works on every item.
|
||||
* @param typeId Set a specific typeId
|
||||
*/
|
||||
@SuppressWarnings("deprecation")
|
||||
public ItemBuilder setTypeId(int typeId) {
|
||||
try {
|
||||
is.setTypeId(typeId);
|
||||
}catch (ClassCastException ignored) {}
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieves the itemstack from the ItemBuilder.
|
||||
* @return The itemstack created/modified by the ItemBuilder instance.
|
||||
*/
|
||||
public ItemStack toItemStack(){
|
||||
return is;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue