2017-06-11 23:36:54 +02:00
|
|
|
package me.libraryaddict.disguise.utilities;
|
|
|
|
|
|
|
|
import me.libraryaddict.disguise.disguisetypes.DisguiseType;
|
2018-09-07 04:35:38 +02:00
|
|
|
import me.libraryaddict.disguise.utilities.parser.ParamInfoManager;
|
|
|
|
import me.libraryaddict.disguise.utilities.parser.params.ParamInfo;
|
2017-06-19 19:44:31 +02:00
|
|
|
import org.apache.commons.lang.StringUtils;
|
2017-06-22 13:36:45 +02:00
|
|
|
import org.bukkit.entity.Entity;
|
2017-06-11 23:36:54 +02:00
|
|
|
|
|
|
|
import java.lang.reflect.Method;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Created by libraryaddict on 10/06/2017.
|
|
|
|
*/
|
|
|
|
public class TranslateFiller {
|
|
|
|
public static void fillConfigs() {
|
|
|
|
// Fill the configs
|
|
|
|
|
2018-09-07 04:35:38 +02:00
|
|
|
for (ParamInfo info : ParamInfoManager.getParamInfos()) {
|
|
|
|
TranslateType.DISGUISE_OPTIONS_PARAMETERS.save(info.getRawName(), "A disguise option name, has description " + info.getDescription());
|
|
|
|
|
|
|
|
if (!info.getRawName().equals(info.getRawDescriptiveName())) {
|
|
|
|
TranslateType.DISGUISE_OPTIONS_PARAMETERS
|
|
|
|
.save(info.getRawDescriptiveName(), "A disguise option descriptive name");
|
|
|
|
}
|
|
|
|
|
2017-06-19 20:11:08 +02:00
|
|
|
TranslateType.DISGUISE_OPTIONS_PARAMETERS
|
|
|
|
.save(info.getRawDescription(), "Description for the disguise option " + info.getRawName());
|
|
|
|
|
2018-09-07 04:35:38 +02:00
|
|
|
if (info.canTranslateValues()) {
|
|
|
|
for (String e : info.getValues().keySet()) {
|
|
|
|
TranslateType.DISGUISE_OPTIONS_PARAMETERS
|
|
|
|
.save(e, "Used for the disguise option " + info.getRawName());
|
|
|
|
}
|
|
|
|
}
|
2017-06-21 21:20:12 +02:00
|
|
|
|
2018-09-07 04:35:38 +02:00
|
|
|
if (info.getOtherValues() != null) {
|
|
|
|
for (String e : info.getOtherValues()) {
|
|
|
|
TranslateType.DISGUISE_OPTIONS_PARAMETERS
|
|
|
|
.save(e, "Used for the disguise option " + info.getRawName());
|
|
|
|
}
|
2017-06-11 23:36:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (DisguiseType type : DisguiseType.values()) {
|
2017-06-19 19:44:31 +02:00
|
|
|
String[] split = type.name().split("_");
|
|
|
|
|
|
|
|
for (int i = 0; i < split.length; i++) {
|
|
|
|
split[i] = split[i].substring(0, 1) + split[i].substring(1).toLowerCase();
|
|
|
|
}
|
|
|
|
|
2017-06-19 20:11:08 +02:00
|
|
|
TranslateType.DISGUISES.save(StringUtils.join(split, " "), "Name for the " + type.name() + " disguise");
|
2017-06-11 23:36:54 +02:00
|
|
|
|
2018-09-07 04:35:38 +02:00
|
|
|
for (Method method : ParamInfoManager.getDisguiseWatcherMethods(type.getWatcherClass())) {
|
2017-06-19 11:23:02 +02:00
|
|
|
Class para = method.getParameterTypes()[0];
|
|
|
|
String className = method.getDeclaringClass().getSimpleName().replace("Watcher", "");
|
|
|
|
|
|
|
|
if (className.equals("Flag") || className.equals("Disguise"))
|
|
|
|
className = "Entity";
|
|
|
|
else if (className.equals("Living"))
|
|
|
|
className = "Living Entity";
|
|
|
|
else if (className.equals("AbstractHorse"))
|
|
|
|
className = "Horse";
|
|
|
|
else if (className.equals("DroppedItem"))
|
|
|
|
className = "Item";
|
|
|
|
else if (className.equals("IllagerWizard"))
|
|
|
|
className = "Illager";
|
|
|
|
|
2017-06-19 20:11:08 +02:00
|
|
|
TranslateType.DISGUISE_OPTIONS.save(method.getName(),
|
2018-07-11 20:05:36 +02:00
|
|
|
"Found in the disguise options for " + className + " and uses " +
|
|
|
|
(para.isArray() ? "multiple" + " " : "a ") + para.getSimpleName().replace("[]", "s"));
|
2017-06-11 23:36:54 +02:00
|
|
|
}
|
|
|
|
}
|
2017-06-19 19:06:35 +02:00
|
|
|
|
2017-06-22 13:36:45 +02:00
|
|
|
TranslateType.DISGUISE_OPTIONS.save("baby", "Used as a shortcut for setBaby when disguising an entity");
|
|
|
|
TranslateType.DISGUISE_OPTIONS.save("adult", "Used as a shortcut for setBaby(false) when disguising an entity");
|
|
|
|
|
|
|
|
for (Class c : ClassGetter.getClassesForPackage("org.bukkit.entity")) {
|
|
|
|
if (c != Entity.class && Entity.class.isAssignableFrom(c) && c.getAnnotation(Deprecated.class) == null) {
|
|
|
|
TranslateType.DISGUISES.save(c.getSimpleName(),
|
|
|
|
"Name for the " + c.getSimpleName() + " EntityType, " + "this is used in radius commands");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TranslateType.DISGUISES.save("EntityType", "Used for the disgiuse radius command to list all entitytypes");
|
2017-07-07 20:06:36 +02:00
|
|
|
TranslateType.DISGUISES
|
|
|
|
.save("DisgiseType", "Used for the disgiuse modify radius command to list all " + "disguisetypes");
|
2017-06-22 13:36:45 +02:00
|
|
|
|
2017-06-19 19:06:35 +02:00
|
|
|
for (LibsMsg msg : LibsMsg.values()) {
|
2018-07-11 20:05:36 +02:00
|
|
|
TranslateType.MESSAGES.save(msg.getRaw(), "Reference: " + msg.name());
|
2017-06-19 19:44:31 +02:00
|
|
|
}
|
|
|
|
|
2017-07-07 20:06:36 +02:00
|
|
|
for (TranslateType type : TranslateType.values()) {
|
2018-07-11 20:05:36 +02:00
|
|
|
type.saveTranslations();
|
2017-06-19 19:06:35 +02:00
|
|
|
}
|
2017-06-11 23:36:54 +02:00
|
|
|
}
|
|
|
|
}
|