Advanced-Portals/src/main/java/com/sekwah/advancedportals/portals/Portal.java

587 lines
25 KiB
Java
Raw Normal View History

package com.sekwah.advancedportals.portals;
import com.google.common.io.ByteArrayDataOutput;
import com.google.common.io.ByteStreams;
import com.sekwah.advancedportals.AdvancedPortalsPlugin;
import com.sekwah.advancedportals.ConfigAccessor;
import com.sekwah.advancedportals.PluginMessages;
2016-09-01 21:11:07 +02:00
import com.sekwah.advancedportals.api.portaldata.PortalArg;
import com.sekwah.advancedportals.destinations.Destination;
2017-07-08 10:27:05 +02:00
import com.sekwah.advancedportals.effects.WarpEffects;
2016-09-01 21:11:07 +02:00
import org.bukkit.*;
import org.bukkit.configuration.ConfigurationSection;
import org.bukkit.entity.Player;
2015-11-15 23:52:29 +01:00
import org.bukkit.permissions.PermissionAttachment;
2016-09-01 21:11:07 +02:00
import org.bukkit.util.Vector;
import java.util.ArrayList;
2016-07-28 20:13:52 +02:00
import java.util.HashMap;
2017-06-11 20:14:35 +02:00
import java.util.Random;
import java.util.Set;
import java.util.logging.Level;
public class Portal {
2016-09-01 21:11:07 +02:00
2017-07-14 01:15:08 +02:00
public static HashMap<String, Long> cooldown = new HashMap<String, Long>();
2016-07-28 20:13:52 +02:00
// Config values
2016-03-29 13:38:03 +02:00
public static boolean portalsActive = false;
public static AdvancedPortal[] portals = new AdvancedPortal[0];
2016-03-29 13:38:03 +02:00
private static AdvancedPortalsPlugin plugin;
public static ConfigAccessor portalData = new ConfigAccessor(plugin, "portals.yml");
private static boolean showBungeeMessage;
2016-09-01 21:11:07 +02:00
private static int cooldelay;
private static double throwback;
2017-07-08 10:27:05 +02:00
private static Sound portalSound;
2017-11-30 19:56:42 +01:00
private static int portalProtectionRadius;
2017-11-30 20:13:52 +01:00
private static boolean blockSpectatorMode;
2016-03-29 13:38:03 +02:00
public Portal(AdvancedPortalsPlugin plugin) {
ConfigAccessor config = new ConfigAccessor(plugin, "config.yml");
2017-11-30 20:13:52 +01:00
this.showBungeeMessage = config.getConfig().getBoolean("ShowBungeeWarpMessage", false);
2017-11-30 19:56:42 +01:00
this.cooldelay = config.getConfig().getInt("PortalCooldown", 5);
this.portalProtectionRadius = config.getConfig().getInt("PortalProtectionRadius");
this.throwback = config.getConfig().getDouble("ThrowbackAmount", 0.7);
2016-03-29 13:38:03 +02:00
2017-07-08 10:27:05 +02:00
this.portalSound = WarpEffects.findSound(plugin, "BLOCK_PORTAL_TRAVEL", "PORTAL_TRAVEL");
2017-11-30 20:13:52 +01:00
this.blockSpectatorMode = config.getConfig().getBoolean("BlockSpectatorMode", false);
2017-07-08 10:27:05 +02:00
2016-03-29 13:38:03 +02:00
Portal.plugin = plugin;
Portal.loadPortals();
}
/**
* This can be used to move the get keys to different sections
* <p>
* ConfigurationSection section = portalData.getSection("sectionname");
* <p>
* section.getKeys(false);
*/
public static void loadPortals() {
portalData = new ConfigAccessor(plugin, "portals.yml");
Set<String> PortalSet = portalData.getConfig().getKeys(false);
if (PortalSet.size() > 0) {
portals = new AdvancedPortal[PortalSet.toArray().length];
2015-11-15 23:52:29 +01:00
/*for(int i = 0; i <= PortalSet.toArray().length - 1; i++){
portals[i] = new AdvancedPortal();
}*/
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
int portalId = 0;
for (Object portal : PortalSet.toArray()) {
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
ConfigurationSection portalConfigSection = portalData.getConfig().getConfigurationSection(portal.toString());
2016-03-29 13:38:03 +02:00
Material blockType = Material.PORTAL;
String BlockID = portalConfigSection.getString("triggerblock");
2016-03-29 13:38:03 +02:00
try {
Integer.parseInt(BlockID);
plugin.getLogger().info("Block names must be given not IDs");
2016-03-29 13:38:03 +02:00
} catch (NumberFormatException e) {
blockType = Material.getMaterial(BlockID);
}
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
if (blockType == null) {
blockType = Material.PORTAL;
}
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
ConfigurationSection portalArgsConf = portalConfigSection.getConfigurationSection("portalArgs");
2016-03-29 13:38:03 +02:00
ArrayList<PortalArg> extraData = new ArrayList<>();
2016-03-29 13:38:03 +02:00
if (portalArgsConf != null) {
Set<String> argsSet = portalArgsConf.getKeys(true);
2016-03-29 13:38:03 +02:00
for (Object argName : argsSet.toArray()) {
if (portalArgsConf.isString(argName.toString())) {
extraData.add(new PortalArg(argName.toString(), portalArgsConf.getString(argName.toString())));
}
}
}
2016-03-29 13:38:03 +02:00
String worldName = portalData.getConfig().getString(portal.toString() + ".world");
if(worldName != null) {
World world = Bukkit.getWorld(worldName);
Location pos1 = new Location(world, portalData.getConfig().getInt(portal.toString() + ".pos1.X"), portalData.getConfig().getInt(portal.toString() + ".pos1.Y"), portalData.getConfig().getInt(portal.toString() + ".pos1.Z"));
Location pos2 = new Location(world, portalData.getConfig().getInt(portal.toString() + ".pos2.X"), portalData.getConfig().getInt(portal.toString() + ".pos2.Y"), portalData.getConfig().getInt(portal.toString() + ".pos2.Z"));
PortalArg[] portalArgs = new PortalArg[extraData.size()];
extraData.toArray(portalArgs);
portals[portalId] = new AdvancedPortal(portal.toString(), blockType, pos1, pos2, worldName, portalArgs);
2017-06-13 19:06:48 +02:00
portals[portalId].setBungee(portalConfigSection.getString("bungee"));
2017-06-13 19:06:48 +02:00
portals[portalId].setDestiation(portalConfigSection.getString("destination"));
portalId++;
}
else{
AdvancedPortal[] tempPortals = portals;
portals = new AdvancedPortal[portals.length - 1];
2017-05-19 07:31:21 +02:00
System.arraycopy(tempPortals, 0, portals, 0, portalId);
}
2016-03-29 13:38:03 +02:00
}
portalsActive = true;
} else {
portalsActive = false;
2017-07-14 01:15:08 +02:00
portals = new AdvancedPortal[0];
2016-03-29 13:38:03 +02:00
}
}
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
public static String create(Location pos1, Location pos2, String name, String destination, Material triggerBlock, PortalArg... extraData) {
return create(pos1, pos2, name, destination, triggerBlock, null, extraData);
}
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
public static String create(Location pos1, Location pos2, String name, String destination, Material triggerBlock, String serverName, PortalArg... portalArgs) {
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
if (!pos1.getWorld().equals(pos2.getWorld())) {
plugin.getLogger().log(Level.WARNING, "pos1 and pos2 must be in the same world!");
return "\u00A7cPortal creation error, pos1 and pos2 must be in the same world!";
}
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
int LowX = 0;
int LowY = 0;
int LowZ = 0;
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
int HighX = 0;
int HighY = 0;
int HighZ = 0;
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
if (pos1.getX() > pos2.getX()) {
LowX = (int) pos2.getX();
HighX = (int) pos1.getX();
} else {
LowX = (int) pos1.getX();
HighX = (int) pos2.getX();
}
if (pos1.getY() > pos2.getY()) {
LowY = (int) pos2.getY();
HighY = (int) pos1.getY();
} else {
LowY = (int) pos1.getY();
HighY = (int) pos2.getY();
}
if (pos1.getZ() > pos2.getZ()) {
LowZ = (int) pos2.getZ();
HighZ = (int) pos1.getZ();
} else {
LowZ = (int) pos1.getZ();
HighZ = (int) pos2.getZ();
}
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
Location checkpos1 = new Location(pos1.getWorld(), HighX, HighY, HighZ);
Location checkpos2 = new Location(pos2.getWorld(), LowX, LowY, LowZ);
2015-11-15 23:52:29 +01:00
/*if (checkPortalOverlap(checkpos1, checkpos2)) {
plugin.getLogger().log(Level.WARNING, "portals must not overlap!");
2016-03-29 13:38:03 +02:00
return "\u00A7cPortal creation error, portals must not overlap!";
}*/
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
portalData.getConfig().set(name + ".world", pos1.getWorld().getName());
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
portalData.getConfig().set(name + ".triggerblock", checkMaterial(triggerBlock));
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
portalData.getConfig().set(name + ".destination", destination);
2015-11-15 23:52:29 +01:00
portalData.getConfig().set(name + ".bungee", serverName);
2015-11-15 23:52:29 +01:00
portalData.getConfig().set(name + ".pos1.X", HighX);
portalData.getConfig().set(name + ".pos1.Y", HighY);
portalData.getConfig().set(name + ".pos1.Z", HighZ);
2015-11-15 23:52:29 +01:00
portalData.getConfig().set(name + ".pos2.X", LowX);
portalData.getConfig().set(name + ".pos2.Y", LowY);
portalData.getConfig().set(name + ".pos2.Z", LowZ);
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
for (PortalArg arg : portalArgs) {
portalData.getConfig().set(name + ".portalArgs." + arg.argName, arg.value);
}
2016-03-29 13:38:03 +02:00
portalData.saveConfig();
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
loadPortals();
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
return "\u00A7aPortal creation successful!";
}
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
private static boolean checkPortalOverlap(Location pos1, Location pos2) {
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
if (portalsActive) {
int portalId = 0;
for (@SuppressWarnings("unused") Object portal : Portal.portals) {
2017-06-13 19:06:48 +02:00
if (portals[portalId].getWorldName().equals(pos2.getWorld().getName())) { // checks that the cubes arnt overlapping by seeing if all 4 corners are not in side another
if (checkOverLapPortal(pos1, pos2, portals[portalId].getPos1().getBlockX(), portals[portalId].getPos1().getBlockY(), portals[portalId].getPos1().getBlockZ())) {
2016-03-29 13:38:03 +02:00
return true;
}
2015-11-15 23:52:29 +01:00
2017-06-13 19:06:48 +02:00
if (checkOverLapPortal(pos1, pos2, portals[portalId].getPos1().getBlockX(), portals[portalId].getPos1().getBlockY(), portals[portalId].getPos2().getBlockZ())) {
2016-03-29 13:38:03 +02:00
return true;
}
2015-11-15 23:52:29 +01:00
2017-06-13 19:06:48 +02:00
if (checkOverLapPortal(pos1, pos2, portals[portalId].getPos1().getBlockX(), portals[portalId].getPos2().getBlockY(), portals[portalId].getPos1().getBlockZ())) {
2016-03-29 13:38:03 +02:00
return true;
}
2015-11-15 23:52:29 +01:00
2017-06-13 19:06:48 +02:00
if (checkOverLapPortal(pos1, pos2, portals[portalId].getPos2().getBlockX(), portals[portalId].getPos1().getBlockY(), portals[portalId].getPos1().getBlockZ())) {
2016-03-29 13:38:03 +02:00
return true;
}
2015-11-15 23:52:29 +01:00
2017-06-13 19:06:48 +02:00
if (checkOverLapPortal(pos1, pos2, portals[portalId].getPos2().getBlockX(), portals[portalId].getPos2().getBlockY(), portals[portalId].getPos2().getBlockZ())) {
2016-03-29 13:38:03 +02:00
return true;
}
2015-11-15 23:52:29 +01:00
2017-06-13 19:06:48 +02:00
if (checkOverLapPortal(pos1, pos2, portals[portalId].getPos2().getBlockX(), portals[portalId].getPos1().getBlockY(), portals[portalId].getPos2().getBlockZ())) {
2016-03-29 13:38:03 +02:00
return true;
}
2015-11-15 23:52:29 +01:00
2017-06-13 19:06:48 +02:00
if (checkOverLapPortal(pos1, pos2, portals[portalId].getPos1().getBlockX(), portals[portalId].getPos2().getBlockY(), portals[portalId].getPos2().getBlockZ())) {
2016-03-29 13:38:03 +02:00
return true;
}
2015-11-15 23:52:29 +01:00
2017-06-13 19:06:48 +02:00
if (checkOverLapPortal(pos1, pos2, portals[portalId].getPos2().getBlockX(), portals[portalId].getPos2().getBlockY(), portals[portalId].getPos1().getBlockZ())) {
2016-03-29 13:38:03 +02:00
return true;
}
}
portalId++;
}
}
return false;
}
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
private static boolean checkOverLapPortal(Location pos1, Location pos2, int posX, int posY, int posZ) {
if (pos1.getX() >= posX && pos1.getY() >= posX && pos1.getZ() >= posZ) {
if ((pos2.getX()) <= posX && pos2.getY() <= posY && pos2.getZ() <= posZ) {
return true;
}
}
return false;
}
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
private static String checkMaterial(Material triggerBlock) {
if (triggerBlock.equals(Material.WATER)) {
return "STATIONARY_WATER";
} else if (triggerBlock.equals(Material.LAVA)) {
return "STATIONARY_LAVA";
}
return triggerBlock.toString();
}
2016-03-29 13:38:03 +02:00
@SuppressWarnings("deprecation")
public static String create(Location pos1, Location pos2, String name, String destination, String serverName, PortalArg... extraData) { // add stuff for destination names or coordinates
ConfigAccessor config = new ConfigAccessor(plugin, "config.yml");
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
Material triggerBlockType;
String BlockID = config.getConfig().getString("DefaultPortalTriggerBlock");
try {
triggerBlockType = Material.getMaterial(Integer.parseInt(BlockID));
} catch (Exception e) {
triggerBlockType = Material.getMaterial(BlockID);
}
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
if (triggerBlockType == null) {
triggerBlockType = Material.PORTAL;
}
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
// TODO add a for loop which scans through the addArgs and adds them to the portalData so that the application can use them
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
String result = create(pos1, pos2, name, destination, triggerBlockType, serverName, extraData);
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
return result;
}
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
public static void redefine(Location pos1, Location pos2, String name) {
2015-11-15 23:52:29 +01:00
portalData.getConfig().set(name + ".pos1.X", pos1.getX());
portalData.getConfig().set(name + ".pos1.Y", pos1.getY());
portalData.getConfig().set(name + ".pos1.Z", pos1.getZ());
2015-11-15 23:52:29 +01:00
portalData.getConfig().set(name + ".pos2.X", pos2.getX());
portalData.getConfig().set(name + ".pos2.Y", pos2.getY());
portalData.getConfig().set(name + ".pos2.Z", pos2.getZ());
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
portalData.saveConfig();
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
loadPortals();
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
}
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
public static String getDestination(String portalName) {
return portalData.getConfig().getString(portalName + ".destination");
}
2016-03-29 13:38:03 +02:00
public static void remove(String name) {
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
Object[] keys = portalData.getConfig().getKeys(true).toArray();
for (int i = keys.length - 1; i >= 0; i--) {
String key = keys[i].toString();
if (key.startsWith(name + ".")) {
portalData.getConfig().set(key, null);
}
}
portalData.getConfig().set(name, null);
2016-03-29 13:38:03 +02:00
// TODO add code to check if people have the portal selected and notify if removed.
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
/**Set<String> keys = portalData.getConfig().getKeys(true);
for(String key: keys){
if(key.startsWith(name)){
portalData.getConfig().set(key, null);
}
}*/
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
/**portalData.getConfig().set(name + ".world", null);
portalData.getConfig().set(name + ".triggerblock", null);
portalData.getConfig().set(name + ".destination", null);
2015-11-15 23:52:29 +01:00
portalData.getConfig().set(name + ".pos1.X", null);
portalData.getConfig().set(name + ".pos1.Y", null);
portalData.getConfig().set(name + ".pos1.Z", null);
2015-11-15 23:52:29 +01:00
portalData.getConfig().set(name + ".pos2.X", null);
portalData.getConfig().set(name + ".pos2.Y", null);
portalData.getConfig().set(name + ".pos2.Z", null);
2015-11-15 23:52:29 +01:00
portalData.getConfig().set(name + ".pos1", null);
2017-06-13 19:06:48 +02:00
portalData.getConfig().set(name + ".getPos2()", null);
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
portalData.getConfig().set(name, null);*/
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
portalData.saveConfig();
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
loadPortals();
}
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
public static boolean portalExists(String portalName) {
2015-11-15 23:52:29 +01:00
String posX = portalData.getConfig().getString(portalName + ".pos1.X");
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
return posX != null;
}
2015-11-15 23:52:29 +01:00
2017-11-30 20:13:52 +01:00
2016-03-29 13:38:03 +02:00
public static boolean activate(Player player, String portalName) {
for (AdvancedPortal portal : Portal.portals) {
2017-06-13 19:06:48 +02:00
if (portal.getName().equals(portalName)) return activate(player, portal);
2016-03-29 13:38:03 +02:00
}
plugin.getLogger().log(Level.SEVERE, "Portal not found by name of: " + portalName);
return false;
}
2016-03-29 13:38:03 +02:00
public static boolean activate(Player player, AdvancedPortal portal) {
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
// add other variables or filter code here, or somehow have a way to register them
2015-11-15 23:52:29 +01:00
2016-03-29 15:15:22 +02:00
// TODO on load and unload recode the permissions to try to register themselves
// https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/plugin/PluginManager.html#addPermission(org.bukkit.permissions.Permission)
// check they havent been registered before too and store a list of ones made by this plugin to remove when portals are unloaded.
// When a portal is added or removed it reloads all portals(i think) so add code for unloading too.
2017-11-30 20:13:52 +01:00
if(blockSpectatorMode && player.getGameMode() == GameMode.SPECTATOR) {
player.sendMessage(PluginMessages.customPrefixFail + "\u00A7c You cannot enter a portal in spectator mode!");
return false;
}
2016-03-29 13:38:03 +02:00
String permission = portal.getArg("permission");
/*if((permission == null || (permission != null && player.hasPermission(permission)) || player.isOp())){*/
2016-03-29 15:15:22 +02:00
// 3 checks, 1st is if it doesnt need perms. 2nd is if it does do they have it. And third is are they op.
if (!(permission == null || (permission != null && player.hasPermission(permission)) || player.isOp())) {
2017-11-20 21:45:19 +01:00
player.sendMessage(PluginMessages.customPrefixFail + "\u00A7c You do not have permission to use this portal!");
2017-06-11 20:14:35 +02:00
failSound(player, portal);
2016-09-01 21:11:07 +02:00
throwPlayerBack(player);
2016-03-29 13:38:03 +02:00
return false;
}
2017-07-14 01:15:08 +02:00
if (cooldown.get(player.getName()) != null) {
int diff = (int) ((System.currentTimeMillis() - cooldown.get(player.getName())) / 1000);
2016-07-28 20:13:52 +02:00
if (diff < cooldelay) {
player.sendMessage(ChatColor.RED + "Please wait " + ChatColor.YELLOW + (cooldelay - diff) + ChatColor.RED + " seconds until attempting to teleport again.");
2017-06-11 20:14:35 +02:00
failSound(player, portal);
2016-09-01 21:11:07 +02:00
throwPlayerBack(player);
2016-07-28 20:13:52 +02:00
return false;
}
}
2017-07-14 01:15:08 +02:00
cooldown.put(player.getName(), System.currentTimeMillis());
boolean showFailMessage = !portal.hasArg("command.1");
2017-06-13 19:06:48 +02:00
//plugin.getLogger().info(portal.getName() + ":" + portal.getDestiation());
2017-03-07 01:12:13 +01:00
boolean warped = false;
2017-06-13 19:06:48 +02:00
if (portal.getBungee() != null) {
if (showBungeeMessage) {
2017-06-13 19:06:48 +02:00
player.sendMessage(PluginMessages.customPrefix + "\u00A7a Attempting to warp to \u00A7e" + portal.getBungee() + "\u00A7a.");
2017-03-07 01:12:13 +01:00
}
ByteArrayDataOutput out = ByteStreams.newDataOutput();
out.writeUTF("Connect");
2017-06-13 19:06:48 +02:00
out.writeUTF(portal.getBungee());
2017-03-07 01:12:13 +01:00
player.sendPluginMessage(plugin, "BungeeCord", out.toByteArray());
// Down to bungee to sort out the teleporting but yea theoretically they should warp.
}
2017-06-13 19:06:48 +02:00
else if (portal.getDestiation() != null) {
2017-03-07 01:12:13 +01:00
ConfigAccessor configDesti = new ConfigAccessor(plugin, "destinations.yml");
2017-06-13 19:06:48 +02:00
if (configDesti.getConfig().getString(portal.getDestiation() + ".world") != null) {
warped = Destination.warp(player, portal.getDestiation());
2017-03-07 13:06:17 +01:00
if(!warped){
throwPlayerBack(player);
}
2017-03-07 01:12:13 +01:00
}
} else {
if (showFailMessage) {
player.sendMessage(PluginMessages.customPrefixFail + "\u00A7c The portal you are trying to use doesn't have a destination!");
2017-06-13 19:06:48 +02:00
plugin.getLogger().log(Level.SEVERE, "The portal '" + portal.getName() + "' has just had a warp "
2017-03-07 01:12:13 +01:00
+ "attempt and either the data is corrupt or portal doesn't exist!");
throwPlayerBack(player);
2017-06-11 20:14:35 +02:00
failSound(player, portal);
2017-03-07 01:12:13 +01:00
}
}
2017-04-20 04:55:14 +02:00
if (portal.hasArg("command.1")) {
int commandLine = 1;
2017-06-13 19:06:48 +02:00
String command = portal.getArg("command." + commandLine);//portalData.getConfig().getString(portal.getName()+ ".portalArgs.command." + commandLine);
do {
// (?i) makes the search case insensitive
command = command.replaceAll("@player", player.getName());
plugin.getLogger().log(Level.INFO, "Portal command: " + command);
if (command.startsWith("#") && plugin.getSettings().hasCommandLevel("c")) {
command = command.substring(1);
plugin.getLogger().log(Level.INFO, "Portal command: " + command);
try{
2016-09-01 21:11:07 +02:00
plugin.getServer().dispatchCommand(Bukkit.getConsoleSender(), command);
}
catch(Exception e){
plugin.getLogger().warning("Error while executing: " + command);
}
} else if (command.startsWith("!") && plugin.getSettings().hasCommandLevel("o")) {
command = command.substring(1);
boolean wasOp = player.isOp();
try {
player.setOp(true);
player.chat("/" + command);
//player.performCommand(command);
} finally {
player.setOp(wasOp);
}
} else if (command.startsWith("^")) {
command = command.substring(1);
PermissionAttachment permissionAttachment = null;
try {
permissionAttachment = player.addAttachment(plugin, "*", true);
player.chat("/" + command);
//player.performCommand(command);
} finally {
player.removeAttachment(permissionAttachment);
}
} else {
player.chat("/" + command);
//player.performCommand(command);
}
command = portal.getArg("command." + ++commandLine);
} while (command != null);
}
2017-03-07 01:12:13 +01:00
return warped;
2016-03-29 13:38:03 +02:00
}
2015-11-15 23:52:29 +01:00
2017-06-11 20:14:35 +02:00
private static void failSound(Player player, AdvancedPortal portal) {
2017-06-13 19:06:48 +02:00
if(!(portal.getTrigger() == Material.PORTAL && player.getGameMode() == GameMode.CREATIVE)){
2017-07-08 10:27:05 +02:00
player.playSound(player.getLocation(), portalSound, 0.5f, new Random().nextFloat() * 0.4F + 0.8F);
2017-06-11 20:14:35 +02:00
}
}
2016-03-29 13:38:03 +02:00
public static void rename(String oldName, String newName) {
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
// set it so it gets all data from one and puts it into another place
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
ConfigAccessor config = new ConfigAccessor(plugin, "portals.yml");
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
Set<String> keys = config.getConfig().getKeys(true);
for (String key : keys) {
if (key.startsWith(oldName + ".")) {
if (config.getConfig().getString(key) != null) {
try {
int intData = Integer.parseInt(config.getConfig().getString(key));
config.getConfig().set(key.replace(oldName + ".", newName + "."), intData);
} catch (Exception e) {
config.getConfig().set(key.replace(oldName + ".", newName + "."), config.getConfig().getString(key));
}
2015-11-15 23:52:29 +01:00
2016-03-29 13:38:03 +02:00
}
}
}
config.saveConfig();
remove(oldName);
}
public static boolean addCommand(String portalName, String portalCommand) {
ConfigAccessor config = new ConfigAccessor(plugin, "portals.yml");
if (portalExists(portalName)) {
int commandLine = 0;
while (config.getConfig().getString(portalName + ".portalArgs.command." + ++commandLine) != null); //Loops increasing commandLine till 1 is null
2016-03-29 13:38:03 +02:00
config.getConfig().set(portalName + ".portalArgs.command." + commandLine, portalCommand);
config.saveConfig();
loadPortals();
return true;
} else {
return false;
}
}
2016-07-31 18:26:04 +02:00
2016-08-01 08:45:24 +02:00
public static boolean inPortalTriggerRegion(Location loc) {
for (AdvancedPortal portal : Portal.portals)
2016-08-01 08:45:24 +02:00
if (Portal.locationInPortalTrigger(portal, loc))
return true;
return false;
}
public static boolean locationInPortalTrigger(AdvancedPortal portal, Location loc) {
2017-06-13 19:06:48 +02:00
if (portal.getTrigger().equals(loc.getBlock().getType()))
2016-08-01 08:45:24 +02:00
return locationInPortal(portal, loc, 0);
return false;
}
public static boolean inPortalRegion(Location loc, int additionalArea) {
for (AdvancedPortal portal : Portal.portals)
2016-08-01 08:45:24 +02:00
if (Portal.locationInPortal(portal, loc, additionalArea))
return true;
return false;
}
public static boolean locationInPortal(Location loc, int additionalArea) {
for (AdvancedPortal portal : Portal.portals)
if (Portal.locationInPortal(portal, loc, additionalArea))
return true;
return false;
}
2016-08-01 08:45:24 +02:00
public static boolean locationInPortal(AdvancedPortal portal, Location loc, int additionalArea) {
if (!portalsActive)
return false;
2017-06-13 19:06:48 +02:00
if (loc.getWorld() != null && portal.getWorldName().equals(loc.getWorld().getName()))
if ((portal.getPos1().getX() + 1 + additionalArea) >= loc.getX() && (portal.getPos1().getY() + 1 + additionalArea) > loc.getY() && (portal.getPos1().getZ() + 1 + additionalArea) >= loc.getZ())
if (portal.getPos2().getX() - additionalArea <= loc.getX() && portal.getPos2().getY() - additionalArea <= loc.getY() && portal.getPos2().getZ() - additionalArea <= loc.getZ())
2016-08-01 08:45:24 +02:00
return true;
return false;
}
2016-09-01 21:11:07 +02:00
public static void throwPlayerBack(Player player){
// Not ensured to remove them out of the portal but it makes it feel nicer for the player.
if (throwback > 0) {
Vector velocity = player.getLocation().getDirection();
player.setVelocity(velocity.setY(0).normalize().multiply(-1).setY(throwback));
2016-07-31 18:26:04 +02:00
}
}
2017-11-30 19:56:42 +01:00
public static int getPortalProtectionRadius() {
return portalProtectionRadius;
}
}