mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 21:26:46 +01:00
RepairConfigManager
This commit is contained in:
parent
d35cdc91f8
commit
43db51a664
@ -0,0 +1,37 @@
|
|||||||
|
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) {
|
||||||
|
Pattern pattern = Pattern.compile("repair\\.(?:.+)\\.yml");
|
||||||
|
File dataFolder = plugin.getDataFolder();
|
||||||
|
for(String location : dataFolder.list()) {
|
||||||
|
if(!pattern.matcher(location).matches()) continue;
|
||||||
|
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user