mirror of
https://github.com/CitizensDev/Citizens2.git
synced 2024-10-30 07:19:52 +01:00
363 lines
13 KiB
Java
363 lines
13 KiB
Java
package net.citizensnpcs;
|
|
|
|
import java.io.File;
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
import java.util.Iterator;
|
|
|
|
import net.citizensnpcs.Settings.Setting;
|
|
import net.citizensnpcs.api.CitizensAPI;
|
|
import net.citizensnpcs.api.CitizensPlugin;
|
|
import net.citizensnpcs.api.ai.speech.SpeechFactory;
|
|
import net.citizensnpcs.api.event.CitizensDisableEvent;
|
|
import net.citizensnpcs.api.event.CitizensEnableEvent;
|
|
import net.citizensnpcs.api.event.CitizensReloadEvent;
|
|
import net.citizensnpcs.api.exception.NPCLoadException;
|
|
import net.citizensnpcs.api.npc.NPC;
|
|
import net.citizensnpcs.api.npc.NPCRegistry;
|
|
import net.citizensnpcs.api.scripting.EventRegistrar;
|
|
import net.citizensnpcs.api.scripting.ObjectProvider;
|
|
import net.citizensnpcs.api.scripting.ScriptCompiler;
|
|
import net.citizensnpcs.api.trait.Trait;
|
|
import net.citizensnpcs.api.trait.TraitFactory;
|
|
import net.citizensnpcs.command.CommandContext;
|
|
import net.citizensnpcs.command.CommandManager;
|
|
import net.citizensnpcs.command.CommandManager.CommandInfo;
|
|
import net.citizensnpcs.command.Injector;
|
|
import net.citizensnpcs.command.RequirementsProcessor;
|
|
import net.citizensnpcs.command.command.AdminCommands;
|
|
import net.citizensnpcs.command.command.EditorCommands;
|
|
import net.citizensnpcs.command.command.HelpCommands;
|
|
import net.citizensnpcs.command.command.NPCCommands;
|
|
import net.citizensnpcs.command.command.ScriptCommands;
|
|
import net.citizensnpcs.command.command.TemplateCommands;
|
|
import net.citizensnpcs.command.command.TraitCommands;
|
|
import net.citizensnpcs.command.command.WaypointCommands;
|
|
import net.citizensnpcs.editor.Editor;
|
|
import net.citizensnpcs.npc.CitizensNPCRegistry;
|
|
import net.citizensnpcs.npc.CitizensTraitFactory;
|
|
import net.citizensnpcs.npc.NPCSelector;
|
|
import net.citizensnpcs.npc.ai.speech.Chat;
|
|
import net.citizensnpcs.npc.ai.speech.CitizensSpeechFactory;
|
|
import net.citizensnpcs.util.Messages;
|
|
import net.citizensnpcs.util.Messaging;
|
|
import net.citizensnpcs.util.NMS;
|
|
import net.citizensnpcs.util.StringHelper;
|
|
import net.citizensnpcs.util.Util;
|
|
import net.milkbowl.vault.economy.Economy;
|
|
|
|
import org.bukkit.Bukkit;
|
|
import org.bukkit.ChatColor;
|
|
import org.bukkit.command.Command;
|
|
import org.bukkit.command.CommandSender;
|
|
import org.bukkit.plugin.Plugin;
|
|
import org.bukkit.plugin.RegisteredServiceProvider;
|
|
import org.bukkit.plugin.java.JavaPlugin;
|
|
|
|
import com.google.common.collect.Iterables;
|
|
import com.google.common.io.Files;
|
|
import com.google.common.io.InputSupplier;
|
|
|
|
public class Citizens extends JavaPlugin implements CitizensPlugin {
|
|
private final CommandManager commands = new CommandManager();
|
|
private boolean compatible;
|
|
private Settings config;
|
|
private CitizensNPCRegistry npcRegistry;
|
|
private NPCDataStore saves;
|
|
private NPCSelector selector;
|
|
private CitizensTraitFactory traitFactory;
|
|
private CitizensSpeechFactory speechFactory;
|
|
|
|
private void despawnNPCs() {
|
|
Iterator<NPC> itr = npcRegistry.iterator();
|
|
while (itr.hasNext()) {
|
|
NPC npc = itr.next();
|
|
try {
|
|
npc.despawn();
|
|
for (Trait trait : npc.getTraits())
|
|
trait.onRemove();
|
|
} catch (Throwable e) {
|
|
e.printStackTrace();
|
|
// ensure that all entities are despawned
|
|
}
|
|
itr.remove();
|
|
}
|
|
}
|
|
|
|
public void test() {
|
|
getDataFolder().mkdirs();
|
|
final InputStream dllResource = getResource("path/to/dll");
|
|
try {
|
|
Files.copy(new InputSupplier<InputStream>() {
|
|
@Override
|
|
public InputStream getInput() throws IOException {
|
|
return dllResource;
|
|
}
|
|
}, new File(getDataFolder(), "name.dll"));
|
|
} catch (IOException e) {
|
|
e.printStackTrace();
|
|
}
|
|
// code here
|
|
new File(getDataFolder(), "name.dll").delete();
|
|
}
|
|
|
|
private void enableSubPlugins() {
|
|
File root = new File(getDataFolder(), Setting.SUBPLUGIN_FOLDER.asString());
|
|
if (!root.exists() || !root.isDirectory())
|
|
return;
|
|
File[] files = root.listFiles();
|
|
for (File file : files) {
|
|
Plugin plugin;
|
|
try {
|
|
plugin = Bukkit.getPluginManager().loadPlugin(file);
|
|
} catch (Exception e) {
|
|
continue;
|
|
}
|
|
if (plugin == null)
|
|
continue;
|
|
// code beneath modified from CraftServer
|
|
try {
|
|
Messaging.logTr(Messages.LOADING_SUB_PLUGIN, plugin.getDescription().getFullName());
|
|
plugin.onLoad();
|
|
} catch (Throwable ex) {
|
|
Messaging.severeTr(Messages.ERROR_INITALISING_SUB_PLUGIN, ex.getMessage(), plugin
|
|
.getDescription().getFullName());
|
|
ex.printStackTrace();
|
|
}
|
|
}
|
|
NMS.loadPlugins();
|
|
}
|
|
|
|
public CommandInfo getCommandInfo(String rootCommand, String modifier) {
|
|
return commands.getCommand(rootCommand, modifier);
|
|
}
|
|
|
|
public Iterable<CommandInfo> getCommands(String base) {
|
|
return commands.getCommands(base);
|
|
}
|
|
|
|
@Override
|
|
public NPCRegistry getNPCRegistry() {
|
|
return npcRegistry;
|
|
}
|
|
|
|
public NPCSelector getNPCSelector() {
|
|
return selector;
|
|
}
|
|
|
|
@Override
|
|
public File getScriptFolder() {
|
|
return new File(getDataFolder(), "scripts");
|
|
}
|
|
|
|
@Override
|
|
public TraitFactory getTraitFactory() {
|
|
return traitFactory;
|
|
}
|
|
|
|
@Override
|
|
public SpeechFactory getSpeechFactory() {
|
|
return speechFactory;
|
|
}
|
|
|
|
@Override
|
|
public boolean onCommand(CommandSender sender, Command command, String cmdName, String[] args) {
|
|
String modifier = args.length > 0 ? args[0] : "";
|
|
if (!commands.hasCommand(command, modifier) && !modifier.isEmpty()) {
|
|
return suggestClosestModifier(sender, command.getName(), modifier);
|
|
}
|
|
|
|
NPC npc = selector == null ? null : selector.getSelected(sender);
|
|
// TODO: change the args supplied to a context style system for
|
|
// flexibility (ie. adding more context in the future without
|
|
// changing everything)
|
|
|
|
Object[] methodArgs = { sender, npc };
|
|
return commands.executeSafe(command, args, sender, methodArgs);
|
|
}
|
|
|
|
@Override
|
|
public void onDisable() {
|
|
Bukkit.getPluginManager().callEvent(new CitizensDisableEvent());
|
|
Editor.leaveAll();
|
|
CitizensAPI.shutdown();
|
|
|
|
// Don't bother with this part if MC versions are not compatible
|
|
if (compatible) {
|
|
saves.storeAll(npcRegistry);
|
|
saves.saveToDiskImmediate();
|
|
despawnNPCs();
|
|
npcRegistry = null;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void onEnable() {
|
|
CitizensAPI.setImplementation(this);
|
|
// Disable if the server is not using the compatible Minecraft version
|
|
String mcVersion = Util.getMinecraftVersion();
|
|
compatible = mcVersion.startsWith(COMPATIBLE_MC_VERSION);
|
|
if (!compatible) {
|
|
Messaging.severeTr(Messages.CITIZENS_INCOMPATIBLE, getDescription().getVersion(), mcVersion);
|
|
getServer().getPluginManager().disablePlugin(this);
|
|
return;
|
|
}
|
|
config = new Settings(getDataFolder());
|
|
registerScriptHelpers();
|
|
|
|
saves = NPCDataStore.create(getDataFolder());
|
|
if (saves == null) {
|
|
Messaging.severeTr(Messages.FAILED_LOAD_SAVES);
|
|
getServer().getPluginManager().disablePlugin(this);
|
|
return;
|
|
}
|
|
|
|
npcRegistry = new CitizensNPCRegistry(saves);
|
|
traitFactory = new CitizensTraitFactory();
|
|
selector = new NPCSelector(this);
|
|
speechFactory = new CitizensSpeechFactory();
|
|
speechFactory.register(Chat.class, "chat");
|
|
|
|
getServer().getPluginManager().registerEvents(new EventListen(), this);
|
|
|
|
if (Setting.NPC_COST.asDouble() > 0)
|
|
setupEconomy();
|
|
|
|
registerCommands();
|
|
enableSubPlugins();
|
|
|
|
// Setup NPCs after all plugins have been enabled (allows for multiworld
|
|
// support and for NPCs to properly register external settings)
|
|
if (getServer().getScheduler().scheduleSyncDelayedTask(this, new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
saves.loadInto(npcRegistry);
|
|
startMetrics();
|
|
scheduleSaveTask(Setting.SAVE_TASK_DELAY.asInt());
|
|
Bukkit.getPluginManager().callEvent(new CitizensEnableEvent());
|
|
}
|
|
}, 1) == -1) {
|
|
Messaging.severeTr(Messages.LOAD_TASK_NOT_SCHEDULED);
|
|
getServer().getPluginManager().disablePlugin(this);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void onImplementationChanged() {
|
|
Messaging.severeTr(Messages.CITIZENS_IMPLEMENTATION_DISABLED);
|
|
Bukkit.getPluginManager().disablePlugin(this);
|
|
}
|
|
|
|
public void registerCommandClass(Class<?> clazz) {
|
|
try {
|
|
commands.register(clazz);
|
|
} catch (Throwable ex) {
|
|
Messaging.logTr(Messages.CITIZENS_INVALID_COMMAND_CLASS);
|
|
ex.printStackTrace();
|
|
}
|
|
}
|
|
|
|
private void registerCommands() {
|
|
commands.setInjector(new Injector(this));
|
|
commands.registerAnnotationProcessor(new RequirementsProcessor());
|
|
|
|
// Register command classes
|
|
commands.register(AdminCommands.class);
|
|
commands.register(EditorCommands.class);
|
|
commands.register(HelpCommands.class);
|
|
commands.register(NPCCommands.class);
|
|
commands.register(ScriptCommands.class);
|
|
commands.register(TemplateCommands.class);
|
|
commands.register(TraitCommands.class);
|
|
commands.register(WaypointCommands.class);
|
|
}
|
|
|
|
private void registerScriptHelpers() {
|
|
ScriptCompiler compiler = CitizensAPI.getScriptCompiler();
|
|
compiler.registerGlobalContextProvider(new EventRegistrar(this));
|
|
compiler.registerGlobalContextProvider(new ObjectProvider("plugin", this));
|
|
}
|
|
|
|
public void reload() throws NPCLoadException {
|
|
Editor.leaveAll();
|
|
config.reload();
|
|
despawnNPCs();
|
|
saves.loadInto(npcRegistry);
|
|
|
|
getServer().getPluginManager().callEvent(new CitizensReloadEvent());
|
|
}
|
|
|
|
private void scheduleSaveTask(int delay) {
|
|
Bukkit.getScheduler().scheduleSyncDelayedTask(this, new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
storeNPCs();
|
|
saves.saveToDisk();
|
|
}
|
|
});
|
|
}
|
|
|
|
private void setupEconomy() {
|
|
try {
|
|
RegisteredServiceProvider<Economy> provider = Bukkit.getServicesManager().getRegistration(
|
|
Economy.class);
|
|
if (provider != null && provider.getProvider() != null) {
|
|
Economy economy = provider.getProvider();
|
|
Bukkit.getPluginManager().registerEvents(new PaymentListener(economy), this);
|
|
}
|
|
} catch (NoClassDefFoundError e) {
|
|
Messaging.logTr(Messages.ERROR_LOADING_ECONOMY);
|
|
}
|
|
}
|
|
|
|
private void startMetrics() {
|
|
try {
|
|
Metrics metrics = new Metrics(Citizens.this);
|
|
if (metrics.isOptOut())
|
|
return;
|
|
metrics.addCustomData(new Metrics.Plotter("Total NPCs") {
|
|
@Override
|
|
public int getValue() {
|
|
if (npcRegistry == null)
|
|
return 0;
|
|
return Iterables.size(npcRegistry);
|
|
}
|
|
});
|
|
|
|
traitFactory.addPlotters(metrics.createGraph("traits"));
|
|
saves.addPlotters(metrics.createGraph("Storage type"));
|
|
metrics.start();
|
|
} catch (IOException e) {
|
|
Messaging.logTr(Messages.METRICS_ERROR_NOTIFICATION, e.getMessage());
|
|
}
|
|
}
|
|
|
|
public void storeNPCs() {
|
|
if (saves == null)
|
|
return;
|
|
for (NPC npc : npcRegistry)
|
|
saves.store(npc);
|
|
}
|
|
|
|
public void storeNPCs(CommandContext args) {
|
|
storeNPCs();
|
|
boolean async = args.hasFlag('a');
|
|
if (async)
|
|
saves.saveToDisk();
|
|
else
|
|
saves.saveToDiskImmediate();
|
|
}
|
|
|
|
private boolean suggestClosestModifier(CommandSender sender, String command, String modifier) {
|
|
String closest = commands.getClosestCommandModifier(command, modifier);
|
|
if (!closest.isEmpty()) {
|
|
sender.sendMessage(ChatColor.GRAY + Messaging.tr(Messages.UNKNOWN_COMMAND));
|
|
sender.sendMessage(StringHelper.wrap(" /") + command + " " + StringHelper.wrap(closest));
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
private static final String COMPATIBLE_MC_VERSION = "1.4.6";
|
|
|
|
} |