mirror of
https://github.com/ChestShop-authors/ChestShop-3.git
synced 2024-11-28 13:05:11 +01:00
22c5e20703
(I still don't like the uName class at all, it will probably change in the near future)
55 lines
1.3 KiB
Java
55 lines
1.3 KiB
Java
package com.Acrobot.ChestShop.Utils;
|
|
|
|
import com.Acrobot.ChestShop.Permission;
|
|
import org.bukkit.configuration.file.YamlConfiguration;
|
|
import org.bukkit.entity.Player;
|
|
|
|
import java.io.File;
|
|
import java.io.IOException;
|
|
|
|
/**
|
|
* @author Acrobot
|
|
*/
|
|
public class uName {
|
|
public static YamlConfiguration config;
|
|
public static File file;
|
|
|
|
public static String getName(String shortName) {
|
|
return config.getString(shortName, shortName);
|
|
}
|
|
|
|
public static void saveName(String name) {
|
|
if (name.length() <= 15) {
|
|
return;
|
|
}
|
|
|
|
config.set(stripName(name), name);
|
|
reload();
|
|
}
|
|
|
|
public static String stripName(String name) {
|
|
return (name.length() > 15 ? name.substring(0, 15) : name);
|
|
}
|
|
|
|
public static String shortenName(Player player) {
|
|
return stripName(player.getName());
|
|
}
|
|
|
|
public static boolean canUseName(Player player, String name) {
|
|
return shortenName(player).equals(name) || Permission.otherName(player, name);
|
|
}
|
|
|
|
public static void load() {
|
|
config = YamlConfiguration.loadConfiguration(file);
|
|
}
|
|
|
|
public static void reload() {
|
|
try {
|
|
config.save(file);
|
|
} catch (IOException e) {
|
|
e.printStackTrace();
|
|
}
|
|
load();
|
|
}
|
|
}
|