mirror of
https://github.com/SimplexDevelopment/FeelingLucky.git
synced 2025-04-03 15:53:15 +00:00
Fixed an issue where plugin was loading player configurations from ./plugins/FeelingLucky instead of ./plugins/FeelingLucky/players
101 lines
3.5 KiB
Java
101 lines
3.5 KiB
Java
package io.github.simplex.luck;
|
|
|
|
import io.github.simplex.luck.listener.*;
|
|
import io.github.simplex.luck.player.PlayerConfig;
|
|
import io.github.simplex.luck.player.PlayerHandler;
|
|
import io.github.simplex.luck.util.LuckCMD;
|
|
import io.github.simplex.luck.util.SneakyWorker;
|
|
import io.github.simplex.metrics.Metrics;
|
|
import org.bukkit.plugin.java.JavaPlugin;
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
import java.io.File;
|
|
import java.io.IOException;
|
|
import java.util.Arrays;
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
import java.util.UUID;
|
|
|
|
public final class FeelingLucky extends JavaPlugin {
|
|
private final Map<UUID, PlayerConfig> configMap = new HashMap<>();
|
|
private final File playerDirectory = new File(getDataFolder(), "players");
|
|
|
|
private PlayerHandler handler;
|
|
private Config config;
|
|
|
|
public Map<UUID, PlayerConfig> getConfigMap() {
|
|
return configMap;
|
|
}
|
|
|
|
@Override
|
|
public void onEnable() {
|
|
getLogger().info("Initializing metrics...");
|
|
new Metrics(this, 15054);
|
|
getLogger().info("Metrics loaded. Initializing the PlayerHandler...");
|
|
handler = new PlayerHandler(this);
|
|
getLogger().info("Initialization complete! Attempting to register the Listeners...");
|
|
registerListeners();
|
|
getLogger().info("Registration complete! Attempting to load all player configuration files...");
|
|
loadPlayerConfigurations();
|
|
getLogger().info("Attempting to load the main configuration...");
|
|
config = new Config(this);
|
|
getLogger().info("Main Config loaded successfully! Attempting to load the Luck command...");
|
|
new LuckCMD(this);
|
|
getLogger().info("Successfully loaded the Luck command!");
|
|
|
|
getLogger().info("Successfully initialized!");
|
|
}
|
|
|
|
@Override
|
|
public void onDisable() {
|
|
getLogger().info("Saving all player configurations...");
|
|
configMap.values().forEach(PlayerConfig::save);
|
|
getLogger().info("Complete! Saving the main config...");
|
|
config.save();
|
|
getLogger().info("Complete! Goodbye! :)");
|
|
}
|
|
|
|
private void loadPlayerConfigurations() {
|
|
if (!playerDirectory.exists()) {
|
|
playerDirectory.mkdirs();
|
|
}
|
|
|
|
File[] files = playerDirectory.listFiles();
|
|
if (files != null) {
|
|
Arrays.stream(files).forEach(file -> {
|
|
UUID uuid = UUID.fromString(file.getName().split("\\.")[0]);
|
|
configMap.put(uuid, PlayerConfig.loadFrom(this, file));
|
|
});
|
|
configMap.forEach((u, pc) -> pc.load());
|
|
getLogger().info("Successfully loaded all configurations!");
|
|
} else {
|
|
getLogger().info("There are no player configurations to load.");
|
|
}
|
|
}
|
|
|
|
private void registerListeners() {
|
|
try {
|
|
Class<?>[] listeners = SneakyWorker.getClasses(AbstractListener.class.getPackage().getName());
|
|
Arrays.stream(listeners).forEach(l -> {
|
|
if (AbstractListener.class.isAssignableFrom(l)) {
|
|
if (l.equals(AbstractListener.class)) return;
|
|
|
|
SneakyWorker.sneakyTry(() -> l.getDeclaredConstructor(FeelingLucky.class).newInstance(this));
|
|
}
|
|
});
|
|
} catch (IOException | ClassNotFoundException ex) {
|
|
getLogger().severe(ex.getMessage());
|
|
}
|
|
}
|
|
|
|
public PlayerHandler getHandler() {
|
|
return handler;
|
|
}
|
|
|
|
@Override
|
|
@NotNull
|
|
public Config getConfig() {
|
|
return config;
|
|
}
|
|
}
|