aether-legacy/src/main/java/com/gildedgames/the_aether/AetherConfig.java
2021-01-04 08:29:40 -08:00

236 lines
8 KiB
Java

package com.gildedgames.the_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, seasonal_christmas;
private static int aether_biome_id, aether_dimension_id;
private static boolean disable_trivia, old_mobs;
private static boolean skyrootBucketOnly, valkyrie_cape, golden_feather;
private static boolean floating_block_collision;
private static int travel_dimension;
private static boolean menu_enabled, menu_button, install_resourcepack;
private static boolean legacy_altar_name;
private static int inebriation_id;
private static boolean sun_altar_multiplayer, repeat_sun_spirit_dialog;
private static boolean aether_start;
private static boolean disable_eternal_day;
private static int phyg_spawnrate, flyingcow_spawnrate, sheepuff_spawnrate, aerbunny_spawnrate, moa_spawnrate, aerwhale_spawnrate;
private static int zephyr_spawnrate, cockatrice_spawnrate, swet_spawnrate, aechorplant_spawnrate, whirlwind_spawnrate;
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);
seasonal_christmas = config.get("Aether World Generation", "Spawns Holiday Trees during December and January automatically. Christmas Content overrides this.", true).getBoolean(true);
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", "Enables the Valkyrie Cape in dungeon loot", true).getBoolean(true);
golden_feather = config.get("Misc", "Enables the Golden Feather 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);
aether_start = config.get("Gameplay", "Spawns Player with Aether Portal Frame", 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);
install_resourcepack = config.get("Misc", "Determines whether the Aether b1.7.3 resource pack should be generated.", true).getBoolean(true);
legacy_altar_name = config.get("Misc", "Changes whether the Altar should be named Enchanter or not.", false).getBoolean(false);
inebriation_id = config.get("Misc", "Sets the id for the Inebriation effect.", 31).getInt(31);
sun_altar_multiplayer = config.get("Gameplay", "Removes the requirement for a player to be an operator to use the Sun Altar in multiplayer.", false).getBoolean(false);
repeat_sun_spirit_dialog = config.get("Misc", "If disabed, the Sun Spirit's dialog will only show once per world.", true).getBoolean(true);
disable_eternal_day = config.get("Misc", "Disables eternal day making time cycle in the Aether without having to kill the Sun Spirit. This is mainly intended for use in modpacks.", false).getBoolean(false);
//Spawnrates
phyg_spawnrate = config.get("Spawnrates", "Phyg Spawnrate. 1 is always, higher numbers decrease chances.", 1).getInt(1);
flyingcow_spawnrate = config.get("Spawnrates", "Flying Cow Spawnrate. 1 is always, higher numbers decrease chances.", 1).getInt(1);
sheepuff_spawnrate = config.get("Spawnrates", "Sheepuff Spawnrate. 1 is always, higher numbers decrease chances.", 1).getInt(1);
aerbunny_spawnrate = config.get("Spawnrates", "Aerbunny Spawnrate. 1 is always, higher numbers decrease chances.", 1).getInt(1);
moa_spawnrate = config.get("Spawnrates", "Moa Spawnrate. 1 is always, higher numbers decrease chances.", 1).getInt(1);
aerwhale_spawnrate = config.get("Spawnrates", "Aerwhale Spawnrate. 1 is always, higher numbers decrease chances.", 1).getInt(1);
zephyr_spawnrate = config.get("Spawnrates", "Zephyr Spawnrate. 1 is always, higher numbers decrease chances.", 65).getInt(65);
cockatrice_spawnrate = config.get("Spawnrates", "Cockatrice Spawnrate. 1 is always, higher numbers decrease chances.", 45).getInt(45);
swet_spawnrate = config.get("Spawnrates", "Swet Spawnrate. 1 is always, higher numbers decrease chances.", 40).getInt(40);
aechorplant_spawnrate = config.get("Spawnrates", "Aechor Plant Spawnrate. 1 is always, higher numbers decrease chances.", 55).getInt(55);
whirlwind_spawnrate = config.get("Spawnrates", "Whirlwind Spawnrate. 1 is always, higher numbers decrease chances.", 55).getInt(55);
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 goldenFeatherEnabled()
{
return AetherConfig.golden_feather;
}
public static boolean menuEnabled()
{
return AetherConfig.menu_enabled;
}
public static boolean menuButtonEnabled()
{
return AetherConfig.menu_button;
}
public static boolean installResourcepack()
{
return AetherConfig.install_resourcepack;
}
public static boolean legacyAltarName() {
return AetherConfig.legacy_altar_name;
}
public static int getInebriationId()
{
return AetherConfig.inebriation_id;
}
public static boolean sunAltarMultiplayer() {
return AetherConfig.sun_altar_multiplayer;
}
public static boolean repeatSunSpiritDialogue() {
return repeat_sun_spirit_dialog;
}
public static boolean shouldAetherStart()
{
return aether_start;
}
public static boolean eternalDayDisabled()
{
return disable_eternal_day;
}
public static boolean allowSeasonalChristmas() {
return seasonal_christmas;
}
public static int getPhygSpawnrate() {
return phyg_spawnrate;
}
public static int getFlyingCowSpawnrate() {
return flyingcow_spawnrate;
}
public static int getSheepuffSpawnrate() {
return sheepuff_spawnrate;
}
public static int getAerbunnySpawnrate() {
return aerbunny_spawnrate;
}
public static int getMoaSpawnrate() {
return moa_spawnrate;
}
public static int getAerwhaleSpawnrate() {
return aerwhale_spawnrate;
}
public static int getZephyrSpawnrate() {
return zephyr_spawnrate;
}
public static int getCockatriceSpawnrate() {
return cockatrice_spawnrate;
}
public static int getSwetSpawnrate() {
return swet_spawnrate;
}
public static int getAechorPlantSpawnrate() {
return aechorplant_spawnrate;
}
public static int getWhirlwindSpawnrate() {
return whirlwind_spawnrate;
}
}