mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-04-03 10:16:23 +02:00
57 lines
1.5 KiB
Java
57 lines
1.5 KiB
Java
package com.gmail.nossr50.config;
|
|
|
|
import java.io.File;
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import java.util.regex.Pattern;
|
|
|
|
import com.gmail.nossr50.mcMMO;
|
|
import com.gmail.nossr50.skills.repair.Repairable;
|
|
|
|
public class RepairConfigManager {
|
|
private List<Repairable> repairables;
|
|
|
|
public RepairConfigManager(mcMMO plugin) {
|
|
repairables = new ArrayList<Repairable>();
|
|
|
|
Pattern pattern = Pattern.compile("repair\\.(?:.+)\\.yml");
|
|
File dataFolder = plugin.getDataFolder();
|
|
File vanilla = new File(dataFolder, "repair.vanilla.yml");
|
|
|
|
if (!vanilla.exists()) {
|
|
plugin.saveResource("repair.vanilla.yml", false);
|
|
}
|
|
|
|
for (String location : dataFolder.list()) {
|
|
if (!pattern.matcher(location).matches()) {
|
|
continue;
|
|
}
|
|
|
|
plugin.getLogger().info("Loading " + location + " repair config file...");
|
|
|
|
File file = new File(dataFolder, location);
|
|
|
|
if (file.isDirectory()) {
|
|
continue;
|
|
}
|
|
|
|
RepairConfig rConfig = new RepairConfig(plugin, location);
|
|
rConfig.load();
|
|
|
|
List<Repairable> rConfigRepairables = rConfig.getLoadedRepairables();
|
|
|
|
if (rConfigRepairables != null) {
|
|
repairables.addAll(rConfigRepairables);
|
|
}
|
|
}
|
|
}
|
|
|
|
public List<Repairable> getLoadedRepairables() {
|
|
if (repairables == null) {
|
|
return new ArrayList<Repairable>();
|
|
}
|
|
|
|
return repairables;
|
|
}
|
|
}
|