Moved debug potatoes to the Core

This commit is contained in:
Norbi Peti 2016-11-19 23:40:31 +01:00
parent 7a62d5b0c3
commit c4e79bd449
2 changed files with 1 additions and 60 deletions

View file

@ -1,59 +0,0 @@
package alisolarflare.components.debugPotatos;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.bukkit.Material;
import org.bukkit.Sound;
import org.bukkit.enchantments.Enchantment;
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;
import org.bukkit.inventory.meta.ItemMeta;
public class DebugPotatoAPI {
public static ItemStack CreateDebugPotato(List<String> message){
ItemStack potato = new ItemStack(Material.BAKED_POTATO);
ItemMeta meta = potato.getItemMeta();
meta.setDisplayName("Spicy Debug Potato");
meta.setLore(message);
potato.setItemMeta(meta);
potato.addUnsafeEnchantment(Enchantment.ARROW_FIRE, 10);
return potato;
}
public static ItemStack CreateDebugPotato(String message){
return CreateDebugPotato(Arrays.asList(message));
}
public static void SendDebugPotato(Player player, List<String> message){
player.getInventory().addItem(CreateDebugPotato(message));
player.getWorld().playSound(player.getLocation(), Sound.ENTITY_SLIME_SQUISH, 0, 0);
return;
}
public static void SendDebugPotato(Player player, String[] message){
SendDebugPotato(player, Arrays.asList(message));
}
public static void SendDebugPotato(Player player, String message){
SendDebugPotato(player, StringToMessage(message));
}
public static List<String> StringToMessage(String message){
String[] splitString = message.split("\\s+");
List<String> newMessage = new ArrayList<String>();
String currentLine = "";
int currentLineLength = 0;
int wordlength;
int maxLineLength = 40;
for (String word : splitString){
wordlength = word.length();
if (currentLineLength == 0 || (currentLineLength + wordlength) < maxLineLength){
currentLine += word + " ";
currentLineLength += wordlength +1;
}else{
newMessage.add(currentLine);
currentLine = word + " ";
currentLineLength = word.length();
}
}
return newMessage;
}
}

View file

@ -8,7 +8,7 @@ import org.bukkit.enchantments.Enchantment;
import org.bukkit.inventory.ItemStack;
import org.bukkit.inventory.meta.ItemMeta;
import alisolarflare.components.debugPotatos.DebugPotatoAPI;
import buttondevteam.lib.DebugPotatoAPI;
public abstract class Insurance {
public static enum InsuranceType{