59 lines
1.2 KiB
Java
59 lines
1.2 KiB
Java
package pm.j4.kerosene.util.config;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import pm.j4.kerosene.PetroleumMod;
|
|
import pm.j4.kerosene.util.module.ModuleBase;
|
|
|
|
/**
|
|
* The type Config.
|
|
*/
|
|
public abstract class Config {
|
|
/**
|
|
* The Enabled modules.
|
|
*/
|
|
public List<String> enabledModules = new ArrayList<>();
|
|
|
|
/**
|
|
* Is enabled boolean.
|
|
*
|
|
* @param mod the mod
|
|
* @return the boolean
|
|
*/
|
|
public boolean isEnabled(String mod) {
|
|
return enabledModules.contains(mod);
|
|
}
|
|
|
|
|
|
/**
|
|
* Disable module.
|
|
*
|
|
* @param mod the mod
|
|
*/
|
|
public void disableModule(String mod) {
|
|
if (isEnabled(mod) && PetroleumMod.isActive(mod) && PetroleumMod.getMod(mod).isPresent()) {
|
|
ModuleBase moduleInfo = PetroleumMod.getMod(mod).get();
|
|
if (moduleInfo.isActivatable()) {
|
|
enabledModules.remove(mod);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Toggle module.
|
|
*
|
|
* @param mod the mod
|
|
*/
|
|
public void toggleModule(String mod) {
|
|
if (PetroleumMod.isActive(mod) && PetroleumMod.getMod(mod).isPresent()) {
|
|
ModuleBase moduleInfo = PetroleumMod.getMod(mod).get();
|
|
if (moduleInfo.isActivatable()) {
|
|
if (isEnabled(mod)) {
|
|
enabledModules.remove(mod);
|
|
} else {
|
|
enabledModules.add(mod);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|