2021-12-27 19:01:39 +00:00
|
|
|
/*
|
|
|
|
* This file is part of Kenshins Hide and Seek
|
|
|
|
*
|
|
|
|
* Copyright (c) 2021 Tyler Murphy.
|
|
|
|
*
|
|
|
|
* Kenshins Hide and Seek free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2021-12-27 19:14:32 +00:00
|
|
|
* he Free Software Foundation version 3.
|
2021-12-27 19:01:39 +00:00
|
|
|
*
|
|
|
|
* Kenshins Hide and Seek is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2021-10-23 00:03:15 +00:00
|
|
|
package net.tylermurphy.hideAndSeek.configuration;
|
2021-08-13 20:49:36 +00:00
|
|
|
|
2022-04-20 00:00:53 +00:00
|
|
|
import com.cryptomorin.xseries.XMaterial;
|
2022-04-11 16:36:11 +00:00
|
|
|
import net.tylermurphy.hideAndSeek.util.Version;
|
2022-04-20 00:00:53 +00:00
|
|
|
import org.bukkit.Material;
|
2021-08-13 20:49:36 +00:00
|
|
|
import org.bukkit.util.Vector;
|
|
|
|
|
2022-04-20 00:00:53 +00:00
|
|
|
import java.util.ArrayList;
|
2022-04-12 19:11:49 +00:00
|
|
|
import java.util.Collections;
|
|
|
|
import java.util.List;
|
2022-04-20 00:00:53 +00:00
|
|
|
import java.util.Optional;
|
2022-04-12 19:11:49 +00:00
|
|
|
|
2021-10-21 00:14:01 +00:00
|
|
|
public class Config {
|
2021-10-29 03:09:28 +00:00
|
|
|
|
2022-04-12 19:11:49 +00:00
|
|
|
private static ConfigManager config, leaderboard;
|
2021-08-18 23:21:59 +00:00
|
|
|
|
2021-08-26 13:38:12 +00:00
|
|
|
public static String
|
|
|
|
messagePrefix,
|
|
|
|
errorPrefix,
|
|
|
|
tauntPrefix,
|
|
|
|
worldborderPrefix,
|
|
|
|
abortPrefix,
|
|
|
|
gameoverPrefix,
|
2021-08-27 21:20:07 +00:00
|
|
|
warningPrefix,
|
2021-08-26 13:38:12 +00:00
|
|
|
spawnWorld,
|
2021-10-18 02:52:57 +00:00
|
|
|
exitWorld,
|
2021-12-20 22:24:43 +00:00
|
|
|
lobbyWorld,
|
2022-04-11 16:36:11 +00:00
|
|
|
locale;
|
2021-08-18 23:21:59 +00:00
|
|
|
|
2021-10-18 02:52:57 +00:00
|
|
|
public static Vector
|
2021-08-26 13:38:12 +00:00
|
|
|
spawnPosition,
|
2021-10-11 21:06:21 +00:00
|
|
|
lobbyPosition,
|
2021-10-18 02:52:57 +00:00
|
|
|
exitPosition,
|
2021-08-26 13:38:12 +00:00
|
|
|
worldborderPosition;
|
2021-08-18 23:21:59 +00:00
|
|
|
|
2021-08-26 13:38:12 +00:00
|
|
|
public static boolean
|
|
|
|
nametagsVisible,
|
|
|
|
permissionsRequired,
|
2021-10-18 02:52:57 +00:00
|
|
|
announceMessagesToNonPlayers,
|
2021-10-29 23:57:40 +00:00
|
|
|
worldborderEnabled,
|
|
|
|
tauntEnabled,
|
|
|
|
tauntCountdown,
|
|
|
|
tauntLast,
|
|
|
|
glowEnabled,
|
2021-10-31 15:25:27 +00:00
|
|
|
glowStackable,
|
|
|
|
pvpEnabled,
|
|
|
|
autoJoin,
|
2021-12-25 14:16:03 +00:00
|
|
|
teleportToExit,
|
2022-04-11 16:36:11 +00:00
|
|
|
lobbyCountdownEnabled,
|
|
|
|
seekerPing;
|
2021-08-25 03:43:01 +00:00
|
|
|
|
2021-08-26 13:38:12 +00:00
|
|
|
public static int
|
|
|
|
minPlayers,
|
|
|
|
worldborderSize,
|
|
|
|
worldborderDelay,
|
2021-10-18 02:52:57 +00:00
|
|
|
currentWorldborderSize,
|
2021-10-27 23:57:44 +00:00
|
|
|
gameLength,
|
|
|
|
saveMinX,
|
|
|
|
saveMinZ,
|
|
|
|
saveMaxX,
|
2021-10-29 23:57:40 +00:00
|
|
|
saveMaxZ,
|
|
|
|
tauntDelay,
|
2021-12-25 14:16:03 +00:00
|
|
|
glowLength,
|
|
|
|
countdown,
|
|
|
|
changeCountdown,
|
|
|
|
lobbyMin,
|
2022-04-11 16:36:11 +00:00
|
|
|
lobbyMax,
|
|
|
|
seekerPingLevel1,
|
|
|
|
seekerPingLevel2,
|
|
|
|
seekerPingLevel3;
|
2022-04-12 19:11:49 +00:00
|
|
|
|
2022-04-20 00:00:53 +00:00
|
|
|
public static List<String>
|
|
|
|
blockedCommands,
|
|
|
|
blockedInteracts;
|
|
|
|
|
2022-04-12 19:11:49 +00:00
|
|
|
public static String
|
|
|
|
LOBBY_TITLE,
|
|
|
|
GAME_TITLE,
|
|
|
|
COUNTDOWN_WAITING,
|
|
|
|
COUNTDOWN_COUNTING,
|
|
|
|
COUNTDOWN_ADMINSTART,
|
|
|
|
TAUNT_COUNTING,
|
|
|
|
TAUNT_ACTIVE,
|
|
|
|
TAUNT_EXPIRED,
|
|
|
|
GLOW_ACTIVE,
|
|
|
|
GLOW_INACTIVE,
|
|
|
|
BORDER_COUNTING,
|
|
|
|
BORDER_DECREASING;
|
|
|
|
|
|
|
|
public static List<String>
|
|
|
|
LOBBY_CONTENTS,
|
|
|
|
GAME_CONTENTS;
|
2021-08-13 20:49:36 +00:00
|
|
|
|
2021-08-25 03:43:01 +00:00
|
|
|
public static void loadConfig() {
|
2021-10-29 03:09:28 +00:00
|
|
|
|
2022-04-12 19:11:49 +00:00
|
|
|
config = new ConfigManager("config.yml");
|
|
|
|
config.saveConfig();
|
|
|
|
leaderboard = new ConfigManager("leaderboard.yml");
|
2021-10-29 03:09:28 +00:00
|
|
|
|
2021-08-26 13:38:12 +00:00
|
|
|
//Spawn
|
2021-08-25 03:43:01 +00:00
|
|
|
spawnPosition = new Vector(
|
2022-04-12 19:11:49 +00:00
|
|
|
config.getDouble("spawns.game.x"),
|
|
|
|
Math.max(0, Math.min(255, config.getDouble("spawns.game.y"))),
|
|
|
|
config.getDouble("spawns.game.z")
|
2021-10-29 03:09:28 +00:00
|
|
|
);
|
2022-04-12 19:11:49 +00:00
|
|
|
spawnWorld = config.getString("spawns.game.world");
|
2021-10-29 03:09:28 +00:00
|
|
|
|
2021-10-11 21:06:21 +00:00
|
|
|
///Lobby
|
|
|
|
lobbyPosition = new Vector(
|
2022-04-12 19:11:49 +00:00
|
|
|
config.getDouble("spawns.lobby.x"),
|
|
|
|
Math.max(0, Math.min(255, config.getDouble("spawns.lobby.y"))),
|
|
|
|
config.getDouble("spawns.lobby.z")
|
2021-10-29 03:09:28 +00:00
|
|
|
);
|
2022-04-12 19:11:49 +00:00
|
|
|
lobbyWorld = config.getString("spawns.lobby.world");
|
2021-10-29 03:09:28 +00:00
|
|
|
|
2022-04-12 19:11:49 +00:00
|
|
|
announceMessagesToNonPlayers = config.getBoolean("announceMessagesToNonPlayers");
|
2021-10-29 03:09:28 +00:00
|
|
|
|
2021-10-18 02:52:57 +00:00
|
|
|
exitPosition = new Vector(
|
2022-04-12 19:11:49 +00:00
|
|
|
config.getDouble("spawns.exit.x"),
|
|
|
|
Math.max(0, Math.min(255, config.getDouble("spawns.exit.y"))),
|
|
|
|
config.getDouble("spawns.exit.z")
|
2021-10-29 03:09:28 +00:00
|
|
|
);
|
2022-04-12 19:11:49 +00:00
|
|
|
exitWorld = config.getString("spawns.exit.world");
|
2021-10-29 03:09:28 +00:00
|
|
|
|
2021-08-26 13:38:12 +00:00
|
|
|
//World border
|
2021-08-25 03:43:01 +00:00
|
|
|
worldborderPosition = new Vector(
|
2022-04-12 19:11:49 +00:00
|
|
|
config.getInt("worldBorder.x"),
|
2021-10-29 03:09:28 +00:00
|
|
|
0,
|
2022-04-12 19:11:49 +00:00
|
|
|
config.getInt("worldBorder.z")
|
2021-10-29 03:09:28 +00:00
|
|
|
);
|
2022-04-12 19:11:49 +00:00
|
|
|
worldborderSize = Math.max(100, config.getInt("worldBorder.size"));
|
|
|
|
worldborderDelay = Math.max(1, config.getInt("worldBorder.delay"));
|
|
|
|
worldborderEnabled = config.getBoolean("worldBorder.enabled");
|
2021-10-29 03:09:28 +00:00
|
|
|
|
2021-08-26 13:38:12 +00:00
|
|
|
//Prefix
|
2021-08-25 04:02:24 +00:00
|
|
|
char SYMBOLE = '\u00A7';
|
2021-10-29 23:57:40 +00:00
|
|
|
String SYMBOLE_STRING = String.valueOf(SYMBOLE);
|
2021-10-29 03:09:28 +00:00
|
|
|
|
2022-04-12 19:11:49 +00:00
|
|
|
messagePrefix = config.getString("prefix.default").replace("&", SYMBOLE_STRING);
|
|
|
|
errorPrefix = config.getString("prefix.error").replace("&", SYMBOLE_STRING);
|
|
|
|
tauntPrefix = config.getString("prefix.taunt").replace("&", SYMBOLE_STRING);
|
|
|
|
worldborderPrefix = config.getString("prefix.border").replace("&", SYMBOLE_STRING);
|
|
|
|
abortPrefix = config.getString("prefix.abort").replace("&", SYMBOLE_STRING);
|
|
|
|
gameoverPrefix = config.getString("prefix.gameover").replace("&", SYMBOLE_STRING);
|
|
|
|
warningPrefix = config.getString("prefix.warning").replace("&", SYMBOLE_STRING);
|
2021-10-29 03:09:28 +00:00
|
|
|
|
2021-10-27 23:57:44 +00:00
|
|
|
//Map Bounds
|
2022-04-12 19:11:49 +00:00
|
|
|
saveMinX = config.getInt("bounds.min.x");
|
|
|
|
saveMinZ = config.getInt("bounds.min.z");
|
|
|
|
saveMaxX = config.getInt("bounds.max.x");
|
|
|
|
saveMaxZ = config.getInt("bounds.max.z");
|
2021-10-29 03:09:28 +00:00
|
|
|
|
2021-10-29 23:57:40 +00:00
|
|
|
//Taunt
|
2022-04-12 19:11:49 +00:00
|
|
|
tauntEnabled = config.getBoolean("taunt.enabled");
|
|
|
|
tauntCountdown = config.getBoolean("taunt.showCountdown");
|
|
|
|
tauntDelay = Math.max(60, config.getInt("taunt.delay"));
|
|
|
|
tauntLast = config.getBoolean("taunt.whenLastPerson");
|
2021-10-29 23:57:40 +00:00
|
|
|
|
|
|
|
//Glow
|
2022-04-12 19:11:49 +00:00
|
|
|
glowLength = Math.max(1, config.getInt("glow.time"));
|
|
|
|
glowStackable = config.getBoolean("glow.stackable");
|
|
|
|
glowEnabled = config.getBoolean("glow.enabled") && Version.atLeast("1.9");
|
2021-10-29 23:57:40 +00:00
|
|
|
|
2021-12-25 14:16:03 +00:00
|
|
|
//Lobby
|
2022-04-12 19:11:49 +00:00
|
|
|
minPlayers = Math.max(2, config.getInt("minPlayers"));
|
|
|
|
countdown = Math.max(10, config.getInt("lobby.countdown"));
|
|
|
|
changeCountdown = Math.max(minPlayers, config.getInt("lobby.changeCountdown"));
|
|
|
|
lobbyMin = Math.max(minPlayers, config.getInt("lobby.min"));
|
|
|
|
lobbyMax = config.getInt("lobby.max");
|
|
|
|
lobbyCountdownEnabled = config.getBoolean("lobby.enabled");
|
2021-12-25 14:16:03 +00:00
|
|
|
|
2022-04-11 16:36:11 +00:00
|
|
|
//SeekerPing
|
2022-04-12 19:11:49 +00:00
|
|
|
seekerPing = config.getBoolean("seekerPing.enabled");
|
|
|
|
seekerPingLevel1 = config.getInt("seekerPing.distances.level1");
|
|
|
|
seekerPingLevel2 = config.getInt("seekerPing.distances.level2");
|
|
|
|
seekerPingLevel3 = config.getInt("seekerPing.distances.level3");
|
2022-04-11 16:36:11 +00:00
|
|
|
|
2021-08-26 13:38:12 +00:00
|
|
|
//Other
|
2022-04-12 19:11:49 +00:00
|
|
|
nametagsVisible = config.getBoolean("nametagsVisible");
|
|
|
|
permissionsRequired = config.getBoolean("permissionsRequired");
|
|
|
|
gameLength = config.getInt("gameLength");
|
|
|
|
pvpEnabled = config.getBoolean("pvp");
|
|
|
|
autoJoin = config.getBoolean("autoJoin");
|
|
|
|
teleportToExit = config.getBoolean("teleportToExit");
|
|
|
|
locale = config.getString("locale", "local");
|
|
|
|
blockedCommands = config.getStringList("blockedCommands");
|
2022-04-20 00:00:53 +00:00
|
|
|
blockedInteracts = new ArrayList<>();
|
|
|
|
List<String> tempInteracts = config.getStringList("blockedInteracts");
|
|
|
|
for(String id : tempInteracts){
|
|
|
|
Optional<XMaterial> optional_mat = XMaterial.matchXMaterial(id);
|
|
|
|
if(optional_mat.isPresent()){
|
|
|
|
Material mat = optional_mat.get().parseMaterial();
|
|
|
|
if(mat != null){
|
|
|
|
blockedInteracts.add(mat.name());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-04-12 19:11:49 +00:00
|
|
|
|
|
|
|
//Leaderboard
|
|
|
|
LOBBY_TITLE = leaderboard.getString("lobby.title");
|
|
|
|
GAME_TITLE = leaderboard.getString("game.title");
|
|
|
|
LOBBY_CONTENTS = leaderboard.getStringList("lobby.content");
|
|
|
|
Collections.reverse(LOBBY_CONTENTS);
|
|
|
|
GAME_CONTENTS = leaderboard.getStringList("game.content");
|
|
|
|
Collections.reverse(GAME_CONTENTS);
|
|
|
|
COUNTDOWN_WAITING = leaderboard.getString("countdown.waiting");
|
|
|
|
COUNTDOWN_COUNTING = leaderboard.getString("countdown.counting");
|
|
|
|
COUNTDOWN_ADMINSTART = leaderboard.getString("countdown.adminStart");
|
|
|
|
TAUNT_COUNTING = leaderboard.getString("taunt.counting");
|
|
|
|
TAUNT_ACTIVE = leaderboard.getString("taunt.active");
|
|
|
|
TAUNT_EXPIRED = leaderboard.getString("taunt.expired");
|
|
|
|
GLOW_ACTIVE = leaderboard.getString("glow.active");
|
|
|
|
GLOW_INACTIVE = leaderboard.getString("glow.inactive");
|
|
|
|
BORDER_COUNTING = leaderboard.getString("border.counting");
|
|
|
|
BORDER_DECREASING = leaderboard.getString("border.decreasing");
|
2021-08-25 03:43:01 +00:00
|
|
|
}
|
|
|
|
|
2021-10-27 23:57:44 +00:00
|
|
|
public static void addToConfig(String path, Object value) {
|
2022-04-12 19:11:49 +00:00
|
|
|
config.set(path, value);
|
2021-10-29 03:09:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public static void saveConfig() {
|
2022-04-12 19:11:49 +00:00
|
|
|
config.saveConfig();
|
2021-10-27 23:57:44 +00:00
|
|
|
}
|
|
|
|
|
2021-08-18 23:21:59 +00:00
|
|
|
}
|