aether-legacy/src/main/java/com/legacy/aether/AetherConfig.java
2020-07-05 23:25:54 -07:00

118 lines
3.2 KiB
Java

package com.legacy.aether;
import java.io.File;
import java.io.IOException;
import net.minecraftforge.common.config.Configuration;
public class AetherConfig {
public static Configuration config;
private static int max_life_shards;
private static boolean christmas_content, tallgrass;
private static int aether_biome_id, aether_dimension_id;
private static boolean disable_trivia, old_mobs;
private static boolean skyrootBucketOnly, valkyrie_cape;
private static boolean floating_block_collision;
private static int travel_dimension;
private static boolean menu_enabled, menu_button;
public static void init(File location) {
File newFile = new File(location + "/aether" + "/AetherI.cfg");
try {
newFile.createNewFile();
} catch (IOException e) {
}
config = new Configuration(newFile);
config.load();
christmas_content = config.get("Aether World Generation", "Christmas Content", false).getBoolean(false);
tallgrass = config.get("Aether World Generation", "Enable Tall Grass", false).getBoolean(false);
aether_dimension_id = config.get("World Identification", "Aether Dimension ID", 4).getInt(4);
aether_biome_id = config.get("World Identification", "Aether Biome ID", 127).getInt(127);
skyrootBucketOnly = config.get("Misc", "Activate portal with only Skyroot bucket", false).getBoolean(false);
valkyrie_cape = config.get("Misc", "Swaps the Golden Feather with the Valkyrie Cape in dungeon loot", false).getBoolean(false);
travel_dimension = config.get("Misc", "Dimension below aether", 0).getInt(0);
floating_block_collision = config.get("Misc", "Floating block collision", true).getBoolean(true);
disable_trivia = config.get("Trivia", "Disable random trivia", false).getBoolean(false);
old_mobs = config.get("Misc", "Enable Legacy Visuals", false).getBoolean(false);
max_life_shards = config.get("Gameplay", "Max Life Shards", 10).getInt(10);
menu_enabled = config.get("Misc", "Enables the Aether Menu", false).getBoolean(false);
menu_button = config.get("Misc", "Enables the Aether Menu toggle button", true).getBoolean(true);
config.save();
}
public static int getAetherDimensionID() {
return AetherConfig.aether_dimension_id;
}
public static int getAetherBiomeID() {
return AetherConfig.aether_biome_id;
}
public static int getMaxLifeShards() {
return AetherConfig.max_life_shards;
}
public static int getTravelDimensionID() {
return AetherConfig.travel_dimension;
}
public static boolean shouldFloatWithBlock() {
return AetherConfig.floating_block_collision;
}
public static boolean triviaDisabled() {
return AetherConfig.disable_trivia;
}
public static boolean oldMobsEnabled() {
return AetherConfig.old_mobs;
}
public static boolean shouldLoadHolidayContent() {
return AetherConfig.christmas_content;
}
public static boolean tallgrassEnabled() {
return AetherConfig.tallgrass;
}
public static boolean activateOnlyWithSkyroot() {
return AetherConfig.skyrootBucketOnly;
}
public static boolean valkyrieCapeEnabled()
{
return AetherConfig.valkyrie_cape;
}
public static boolean menuEnabled()
{
return AetherConfig.menu_enabled;
}
public static boolean menuButtonEnabled()
{
return AetherConfig.menu_button;
}
}