diff --git a/worldguard-core/src/main/java/com/sk89q/worldguard/config/WorldConfiguration.java b/worldguard-core/src/main/java/com/sk89q/worldguard/config/WorldConfiguration.java index 2f89912b5..b326927c1 100644 --- a/worldguard-core/src/main/java/com/sk89q/worldguard/config/WorldConfiguration.java +++ b/worldguard-core/src/main/java/com/sk89q/worldguard/config/WorldConfiguration.java @@ -24,7 +24,9 @@ import com.sk89q.worldguard.util.report.Unreported; import java.io.File; +import java.util.List; import java.util.logging.Logger; +import java.util.stream.Collectors; /** * Holds the configuration for individual worlds. @@ -68,6 +70,10 @@ public String getWorldName() { return this.worldName; } + public List convertLegacyItems(List legacyItems) { + return legacyItems.stream().map(this::convertLegacyItem).collect(Collectors.toList()); + } + public String convertLegacyItem(String legacy) { String item = legacy; try { @@ -86,4 +92,27 @@ public String convertLegacyItem(String legacy) { return item; } + + public List convertLegacyBlocks(List legacyBlocks) { + return legacyBlocks.stream().map(this::convertLegacyBlock).collect(Collectors.toList()); + } + + public String convertLegacyBlock(String legacy) { + String block = legacy; + try { + String[] splitter = block.split(":", 2); + int id = 0; + byte data = 0; + if (splitter.length == 1) { + id = Integer.parseInt(block); + } else { + id = Integer.parseInt(splitter[0]); + data = Byte.parseByte(splitter[1]); + } + block = LegacyMapper.getInstance().getBlockFromLegacy(id, data).getBlockType().getId(); + } catch (Throwable e) { + } + + return block; + } } diff --git a/worldguard-legacy/src/main/java/com/sk89q/worldguard/bukkit/BukkitWorldConfiguration.java b/worldguard-legacy/src/main/java/com/sk89q/worldguard/bukkit/BukkitWorldConfiguration.java index 2d55da3ae..42058fd08 100644 --- a/worldguard-legacy/src/main/java/com/sk89q/worldguard/bukkit/BukkitWorldConfiguration.java +++ b/worldguard-legacy/src/main/java/com/sk89q/worldguard/bukkit/BukkitWorldConfiguration.java @@ -87,12 +87,12 @@ public class BukkitWorldConfiguration extends YamlWorldConfiguration { public boolean noPhysicsSand; public boolean ropeLadders; public boolean allowPortalAnywhere; - public Set preventWaterDamage; + public Set preventWaterDamage; public boolean blockLighter; public boolean disableFireSpread; - public Set disableFireSpreadBlocks; + public Set disableFireSpreadBlocks; public boolean preventLavaFire; - public Set allowedLavaSpreadOver; + public Set allowedLavaSpreadOver; public boolean blockTNTExplosions; public boolean blockTNTBlockDamage; public boolean blockCreeperExplosions; @@ -142,7 +142,7 @@ public class BukkitWorldConfiguration extends YamlWorldConfiguration { public boolean disableCreatureCropTrampling; public boolean disablePlayerCropTrampling; public boolean preventLightningFire; - public Set disallowedLightningBlocks; + public Set disallowedLightningBlocks; public boolean disableThunder; public boolean disableWeather; public boolean alwaysRaining; @@ -162,7 +162,7 @@ public class BukkitWorldConfiguration extends YamlWorldConfiguration { public boolean disableEndermanGriefing; public boolean disableSnowmanTrails; public boolean disableSoilDehydration; - public Set allowedSnowFallOver; + public Set allowedSnowFallOver; public boolean regionInvinciblityRemovesMobs; public boolean regionNetherPortalProtection; public boolean fakePlayerBuildOverride; @@ -279,7 +279,7 @@ public void loadConfiguration() { noPhysicsSand = getBoolean("physics.no-physics-sand", false); ropeLadders = getBoolean("physics.vine-like-rope-ladders", false); allowPortalAnywhere = getBoolean("physics.allow-portal-anywhere", false); - preventWaterDamage = new HashSet<>(getIntList("physics.disable-water-damage-blocks", null)); + preventWaterDamage = new HashSet<>(convertLegacyBlocks(getStringList("physics.disable-water-damage-blocks", null))); blockTNTExplosions = getBoolean("ignition.block-tnt", false); blockTNTBlockDamage = getBoolean("ignition.block-tnt-block-damage", false); @@ -287,8 +287,8 @@ public void loadConfiguration() { preventLavaFire = getBoolean("fire.disable-lava-fire-spread", true); disableFireSpread = getBoolean("fire.disable-all-fire-spread", false); - disableFireSpreadBlocks = new HashSet<>(getIntList("fire.disable-fire-spread-blocks", null)); - allowedLavaSpreadOver = new HashSet<>(getIntList("fire.lava-spread-blocks", null)); + disableFireSpreadBlocks = new HashSet<>(convertLegacyBlocks(getStringList("fire.disable-fire-spread-blocks", null))); + allowedLavaSpreadOver = new HashSet<>(convertLegacyBlocks(getStringList("fire.lava-spread-blocks", null))); blockCreeperExplosions = getBoolean("mobs.block-creeper-explosions", false); blockCreeperBlockDamage = getBoolean("mobs.block-creeper-block-damage", false); @@ -332,7 +332,7 @@ public void loadConfiguration() { disableCreatureCropTrampling = getBoolean("crops.disable-creature-trampling", false); disablePlayerCropTrampling = getBoolean("crops.disable-player-trampling", false); - disallowedLightningBlocks = new HashSet<>(getIntList("weather.prevent-lightning-strike-blocks", null)); + disallowedLightningBlocks = new HashSet<>(convertLegacyBlocks(getStringList("weather.prevent-lightning-strike-blocks", null))); preventLightningFire = getBoolean("weather.disable-lightning-strike-fire", false); disableThunder = getBoolean("weather.disable-thunderstorm", false); disableWeather = getBoolean("weather.disable-weather", false); @@ -351,7 +351,7 @@ public void loadConfiguration() { disableMyceliumSpread = getBoolean("dynamics.disable-mycelium-spread", false); disableVineGrowth = getBoolean("dynamics.disable-vine-growth", false); disableSoilDehydration = getBoolean("dynamics.disable-soil-dehydration", false); - allowedSnowFallOver = new HashSet<>(getIntList("dynamics.snow-fall-blocks", null)); + allowedSnowFallOver = new HashSet<>(convertLegacyBlocks(getStringList("dynamics.snow-fall-blocks", null))); useRegions = getBoolean("regions.enable", true); regionInvinciblityRemovesMobs = getBoolean("regions.invincibility-removes-mobs", false); diff --git a/worldguard-legacy/src/main/java/com/sk89q/worldguard/bukkit/WorldGuardPlugin.java b/worldguard-legacy/src/main/java/com/sk89q/worldguard/bukkit/WorldGuardPlugin.java index 268155d07..aa87db1c8 100644 --- a/worldguard-legacy/src/main/java/com/sk89q/worldguard/bukkit/WorldGuardPlugin.java +++ b/worldguard-legacy/src/main/java/com/sk89q/worldguard/bukkit/WorldGuardPlugin.java @@ -72,15 +72,14 @@ import com.sk89q.worldguard.bukkit.listener.WorldGuardWeatherListener; import com.sk89q.worldguard.bukkit.listener.WorldGuardWorldListener; import com.sk89q.worldguard.bukkit.listener.WorldRulesListener; +import com.sk89q.worldguard.bukkit.session.BukkitSessionManager; import com.sk89q.worldguard.bukkit.util.Events; -import com.sk89q.worldguard.protection.GlobalRegionManager; import com.sk89q.worldguard.protection.flags.Flag; import com.sk89q.worldguard.protection.flags.registry.SimpleFlagRegistry; import com.sk89q.worldguard.protection.managers.storage.StorageException; import com.sk89q.worldguard.protection.regions.ProtectedCuboidRegion; import com.sk89q.worldguard.protection.regions.ProtectedRegion; import com.sk89q.worldguard.protection.util.UnresolvedNamesException; -import com.sk89q.worldguard.bukkit.session.BukkitSessionManager; import com.sk89q.worldguard.util.concurrent.EvenMoreExecutors; import com.sk89q.worldguard.util.logging.ClassSourceValidator; import com.sk89q.worldguard.util.logging.RecordMessagePrefixer; @@ -128,7 +127,6 @@ public class WorldGuardPlugin extends JavaPlugin { private static WorldGuardPlugin inst; private static BukkitWorldGuardPlatform platform; private final CommandsManager commands; - private GlobalRegionManager globalRegionManager; private final Supervisor supervisor = new SimpleSupervisor(); private ListeningExecutorService executorService; private ProfileService profileService; @@ -189,7 +187,6 @@ public void onEnable() { WorldGuard.getInstance().setPlatform(platform = new BukkitWorldGuardPlatform()); // Initialise WorldGuard WorldGuard.getInstance().setup(); BukkitSessionManager sessionManager = (BukkitSessionManager) platform.getSessionManager(); - globalRegionManager = new GlobalRegionManager(WorldGuard.getInstance().getPlatform().getRegionContainer()); // Set the proper command injector commands.setInjector(new SimpleInjector(this)); @@ -338,17 +335,6 @@ public String convertThrowable(@Nullable Throwable throwable) { } } - /** - * Get the GlobalRegionManager. - * - * @return the plugin's global region manager - * @deprecated use #getRegionContainer() - */ - @Deprecated - public GlobalRegionManager getGlobalRegionManager() { - return globalRegionManager; - } - /** * Get the supervisor. * diff --git a/worldguard-legacy/src/main/java/com/sk89q/worldguard/bukkit/listener/WorldGuardBlockListener.java b/worldguard-legacy/src/main/java/com/sk89q/worldguard/bukkit/listener/WorldGuardBlockListener.java index ab1d800a1..6b44ceff9 100644 --- a/worldguard-legacy/src/main/java/com/sk89q/worldguard/bukkit/listener/WorldGuardBlockListener.java +++ b/worldguard-legacy/src/main/java/com/sk89q/worldguard/bukkit/listener/WorldGuardBlockListener.java @@ -19,10 +19,7 @@ package com.sk89q.worldguard.bukkit.listener; -import com.sk89q.worldedit.blocks.BlockID; -import com.sk89q.worldedit.blocks.BlockType; import com.sk89q.worldedit.bukkit.BukkitAdapter; -import com.sk89q.worldedit.world.item.ItemType; import com.sk89q.worldguard.WorldGuard; import com.sk89q.worldguard.bukkit.BukkitWorldConfiguration; import com.sk89q.worldguard.bukkit.WorldGuardPlugin; @@ -176,7 +173,7 @@ public void onBlockFromTo(BlockFromToEvent event) { Material targetId = blockTo.getType(); if ((isAir || isWater) && - wcfg.preventWaterDamage.contains(targetId)) { + wcfg.preventWaterDamage.contains(BukkitAdapter.asBlockType(targetId).getId())) { event.setCancelled(true); return; } @@ -185,7 +182,7 @@ public void onBlockFromTo(BlockFromToEvent event) { if (wcfg.allowedLavaSpreadOver.size() > 0 && isLava) { Material targetId = blockTo.getRelative(0, -1, 0).getType(); - if (!wcfg.allowedLavaSpreadOver.contains(targetId)) { + if (!wcfg.allowedLavaSpreadOver.contains(BukkitAdapter.asBlockType(targetId).getId())) { event.setCancelled(true); return; } @@ -261,11 +258,11 @@ public void onBlockIgnite(BlockIgniteEvent event) { int y = block.getY(); int z = block.getZ(); - if (wcfg.disableFireSpreadBlocks.contains(world.getBlockAt(x, y - 1, z).getType()) - || wcfg.disableFireSpreadBlocks.contains(world.getBlockAt(x + 1, y, z).getType()) - || wcfg.disableFireSpreadBlocks.contains(world.getBlockAt(x - 1, y, z).getType()) - || wcfg.disableFireSpreadBlocks.contains(world.getBlockAt(x, y, z - 1).getType()) - || wcfg.disableFireSpreadBlocks.contains(world.getBlockAt(x, y, z + 1).getType())) { + if (wcfg.disableFireSpreadBlocks.contains(BukkitAdapter.asBlockType(world.getBlockAt(x, y - 1, z).getType()).getId()) + || wcfg.disableFireSpreadBlocks.contains(BukkitAdapter.asBlockType(world.getBlockAt(x + 1, y, z).getType()).getId()) + || wcfg.disableFireSpreadBlocks.contains(BukkitAdapter.asBlockType(world.getBlockAt(x - 1, y, z).getType()).getId()) + || wcfg.disableFireSpreadBlocks.contains(BukkitAdapter.asBlockType(world.getBlockAt(x, y, z - 1).getType()).getId()) + || wcfg.disableFireSpreadBlocks.contains(BukkitAdapter.asBlockType(world.getBlockAt(x, y, z + 1).getType()).getId())) { event.setCancelled(true); return; } @@ -330,7 +327,7 @@ public void onBlockBurn(BlockBurnEvent event) { if (wcfg.disableFireSpreadBlocks.size() > 0) { Block block = event.getBlock(); - if (wcfg.disableFireSpreadBlocks.contains(block.getType())) { + if (wcfg.disableFireSpreadBlocks.contains(BukkitAdapter.asBlockType(block.getType()).getId())) { event.setCancelled(true); checkAndDestroyAround(block.getWorld(), block.getX(), block.getY(), block.getZ(), Material.FIRE); return; @@ -520,8 +517,8 @@ public void onBlockForm(BlockFormEvent event) { event.setCancelled(true); return; } - if (wcfg.useRegions && !plugin.getGlobalRegionManager().allows( - Flags.ICE_FORM, BukkitAdapter.adapt(event.getBlock().getLocation()))) { + if (wcfg.useRegions && !StateFlag.test(WorldGuard.getInstance().getPlatform().getRegionContainer().createQuery() + .queryState(BukkitAdapter.adapt(event.getBlock().getLocation()), (RegionAssociable) null, Flags.ICE_FORM))) { event.setCancelled(true); return; } @@ -535,13 +532,13 @@ public void onBlockForm(BlockFormEvent event) { if (wcfg.allowedSnowFallOver.size() > 0) { Material targetId = event.getBlock().getRelative(0, -1, 0).getType(); - if (!wcfg.allowedSnowFallOver.contains(targetId)) { + if (!wcfg.allowedSnowFallOver.contains(BukkitAdapter.asBlockType(targetId).getId())) { event.setCancelled(true); return; } } - if (wcfg.useRegions && !plugin.getGlobalRegionManager().allows( - Flags.SNOW_FALL, BukkitAdapter.adapt(event.getBlock().getLocation()))) { + if (wcfg.useRegions && !StateFlag.test(WorldGuard.getInstance().getPlatform().getRegionContainer().createQuery() + .queryState(BukkitAdapter.adapt(event.getBlock().getLocation()), (RegionAssociable) null, Flags.SNOW_FALL))) { event.setCancelled(true); return; } @@ -568,8 +565,8 @@ public void onBlockSpread(BlockSpreadEvent event) { event.setCancelled(true); return; } - if (wcfg.useRegions && !plugin.getGlobalRegionManager().allows( - Flags.MUSHROOMS, BukkitAdapter.adapt(event.getBlock().getLocation()))) { + if (wcfg.useRegions && !StateFlag.test(WorldGuard.getInstance().getPlatform().getRegionContainer().createQuery() + .queryState(BukkitAdapter.adapt(event.getBlock().getLocation()), (RegionAssociable) null, Flags.MUSHROOMS))) { event.setCancelled(true); return; } @@ -580,8 +577,8 @@ public void onBlockSpread(BlockSpreadEvent event) { event.setCancelled(true); return; } - if (wcfg.useRegions && !plugin.getGlobalRegionManager().allows( - Flags.GRASS_SPREAD, BukkitAdapter.adapt(event.getBlock().getLocation()))) { + if (wcfg.useRegions && !StateFlag.test(WorldGuard.getInstance().getPlatform().getRegionContainer().createQuery() + .queryState(BukkitAdapter.adapt(event.getBlock().getLocation()), (RegionAssociable) null, Flags.GRASS_SPREAD))) { event.setCancelled(true); return; } @@ -593,9 +590,8 @@ public void onBlockSpread(BlockSpreadEvent event) { return; } - if (wcfg.useRegions - && !plugin.getGlobalRegionManager().allows( - Flags.MYCELIUM_SPREAD, BukkitAdapter.adapt(event.getBlock().getLocation()))) { + if (wcfg.useRegions && !StateFlag.test(WorldGuard.getInstance().getPlatform().getRegionContainer().createQuery() + .queryState(BukkitAdapter.adapt(event.getBlock().getLocation()), (RegionAssociable) null, Flags.MYCELIUM_SPREAD))) { event.setCancelled(true); return; } @@ -607,9 +603,8 @@ public void onBlockSpread(BlockSpreadEvent event) { return; } - if (wcfg.useRegions - && !plugin.getGlobalRegionManager().allows( - Flags.VINE_GROWTH, BukkitAdapter.adapt(event.getBlock().getLocation()))) { + if (wcfg.useRegions && !StateFlag.test(WorldGuard.getInstance().getPlatform().getRegionContainer().createQuery() + .queryState(BukkitAdapter.adapt(event.getBlock().getLocation()), (RegionAssociable) null, Flags.VINE_GROWTH))) { event.setCancelled(true); return; } @@ -630,8 +625,8 @@ public void onBlockFade(BlockFadeEvent event) { return; } - if (wcfg.useRegions && !plugin.getGlobalRegionManager().allows( - Flags.ICE_MELT, BukkitAdapter.adapt(event.getBlock().getLocation()))) { + if (wcfg.useRegions && !StateFlag.test(WorldGuard.getInstance().getPlatform().getRegionContainer().createQuery() + .queryState(BukkitAdapter.adapt(event.getBlock().getLocation()), (RegionAssociable) null, Flags.ICE_MELT))) { event.setCancelled(true); return; } @@ -641,8 +636,8 @@ public void onBlockFade(BlockFadeEvent event) { return; } - if (wcfg.useRegions && !plugin.getGlobalRegionManager().allows( - Flags.SNOW_MELT, BukkitAdapter.adapt(event.getBlock().getLocation()))) { + if (wcfg.useRegions && !StateFlag.test(WorldGuard.getInstance().getPlatform().getRegionContainer().createQuery() + .queryState(BukkitAdapter.adapt(event.getBlock().getLocation()), (RegionAssociable) null, Flags.SNOW_MELT))) { event.setCancelled(true); return; } @@ -651,8 +646,8 @@ public void onBlockFade(BlockFadeEvent event) { event.setCancelled(true); return; } - if (wcfg.useRegions && !plugin.getGlobalRegionManager().allows( - Flags.SOIL_DRY, BukkitAdapter.adapt(event.getBlock().getLocation()))) { + if (wcfg.useRegions && !StateFlag.test(WorldGuard.getInstance().getPlatform().getRegionContainer().createQuery() + .queryState(BukkitAdapter.adapt(event.getBlock().getLocation()), (RegionAssociable) null, Flags.SOIL_DRY))) { event.setCancelled(true); return; } diff --git a/worldguard-legacy/src/main/java/com/sk89q/worldguard/bukkit/listener/WorldGuardEntityListener.java b/worldguard-legacy/src/main/java/com/sk89q/worldguard/bukkit/listener/WorldGuardEntityListener.java index 4f51e0df1..73d100396 100644 --- a/worldguard-legacy/src/main/java/com/sk89q/worldguard/bukkit/listener/WorldGuardEntityListener.java +++ b/worldguard-legacy/src/main/java/com/sk89q/worldguard/bukkit/listener/WorldGuardEntityListener.java @@ -168,7 +168,8 @@ private void onEntityDamageByBlock(EntityDamageByBlockEvent event) { if (type == DamageCause.BLOCK_EXPLOSION && (wcfg.disableExplosionDamage || wcfg.blockOtherExplosions || (wcfg.explosionFlagCancellation - && !plugin.getGlobalRegionManager().allows(Flags.OTHER_EXPLOSION, localPlayer.getLocation())))) { + && !StateFlag.test(WorldGuard.getInstance().getPlatform().getRegionContainer().createQuery() + .queryState(localPlayer.getLocation(), (RegionAssociable) null, Flags.OTHER_EXPLOSION))))) { event.setCancelled(true); return; } @@ -179,9 +180,11 @@ private void onEntityDamageByBlock(EntityDamageByBlockEvent event) { if (type == DamageCause.BLOCK_EXPLOSION && (wcfg.blockOtherExplosions || (wcfg.explosionFlagCancellation - && !plugin.getGlobalRegionManager().allows(Flags.OTHER_EXPLOSION, BukkitAdapter.adapt(defender.getLocation()))))) { + && !StateFlag.test(WorldGuard.getInstance().getPlatform().getRegionContainer().createQuery() + .queryState(BukkitAdapter.adapt(defender.getLocation()), (RegionAssociable) null, Flags.OTHER_EXPLOSION))))) { event.setCancelled(true); return; + } } } diff --git a/worldguard-legacy/src/main/java/com/sk89q/worldguard/bukkit/listener/WorldGuardWeatherListener.java b/worldguard-legacy/src/main/java/com/sk89q/worldguard/bukkit/listener/WorldGuardWeatherListener.java index 246b25af0..5b68389fa 100644 --- a/worldguard-legacy/src/main/java/com/sk89q/worldguard/bukkit/listener/WorldGuardWeatherListener.java +++ b/worldguard-legacy/src/main/java/com/sk89q/worldguard/bukkit/listener/WorldGuardWeatherListener.java @@ -21,11 +21,12 @@ import com.sk89q.worldedit.bukkit.BukkitAdapter; import com.sk89q.worldguard.WorldGuard; -import com.sk89q.worldguard.config.ConfigurationManager; import com.sk89q.worldguard.bukkit.BukkitWorldConfiguration; import com.sk89q.worldguard.bukkit.WorldGuardPlugin; -import com.sk89q.worldguard.protection.ApplicableRegionSet; +import com.sk89q.worldguard.config.ConfigurationManager; +import com.sk89q.worldguard.protection.association.RegionAssociable; import com.sk89q.worldguard.protection.flags.Flags; +import com.sk89q.worldguard.protection.flags.StateFlag; import org.bukkit.Location; import org.bukkit.Material; import org.bukkit.event.EventHandler; @@ -94,17 +95,14 @@ public void onLightningStrike(LightningStrikeEvent event) { if (wcfg.disallowedLightningBlocks.size() > 0) { Material targetId = event.getLightning().getLocation().getBlock().getType(); - if (wcfg.disallowedLightningBlocks.contains(targetId)) { + if (wcfg.disallowedLightningBlocks.contains(BukkitAdapter.asBlockType(targetId).getId())) { event.setCancelled(true); } } Location loc = event.getLightning().getLocation(); if (wcfg.useRegions) { - ApplicableRegionSet set = - WorldGuard.getInstance().getPlatform().getRegionContainer().createQuery().getApplicableRegions(BukkitAdapter.adapt(loc)); - - if (!set.allows(Flags.LIGHTNING)) { + if (!StateFlag.test(WorldGuard.getInstance().getPlatform().getRegionContainer().createQuery().queryState(BukkitAdapter.adapt(loc), (RegionAssociable) null, Flags.LIGHTNING))) { event.setCancelled(true); } } diff --git a/worldguard-legacy/src/main/java/com/sk89q/worldguard/protection/GlobalRegionManager.java b/worldguard-legacy/src/main/java/com/sk89q/worldguard/protection/GlobalRegionManager.java deleted file mode 100644 index 919701199..000000000 --- a/worldguard-legacy/src/main/java/com/sk89q/worldguard/protection/GlobalRegionManager.java +++ /dev/null @@ -1,63 +0,0 @@ -/* - * WorldGuard, a suite of tools for Minecraft - * Copyright (C) sk89q - * Copyright (C) WorldGuard team and contributors - * - * This program is free software: you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published by the - * Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program 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 Lesser General Public License - * for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this program. If not, see . - */ - -package com.sk89q.worldguard.protection; - -import static com.google.common.base.Preconditions.checkNotNull; - -import com.sk89q.worldedit.util.Location; -import com.sk89q.worldedit.world.World; -import com.sk89q.worldguard.LocalPlayer; -import com.sk89q.worldguard.WorldGuard; -import com.sk89q.worldguard.internal.platform.WorldGuardPlatform; -import com.sk89q.worldguard.protection.association.RegionAssociable; -import com.sk89q.worldguard.protection.flags.StateFlag; -import com.sk89q.worldguard.protection.regions.RegionContainer; - -/** - * This is the legacy class for accessing region data. - * - * @deprecated use {@link WorldGuardPlatform#getRegionContainer()} - */ -@Deprecated -public class GlobalRegionManager { - - /** - * Create a new instance. - * - * @param container the container - */ - public GlobalRegionManager(RegionContainer container) { - checkNotNull(container); - } - - /** - * Test the value of a state flag at a location. - * - * @param flag the flag - * @param location the location - * @return true if set to true - * @deprecated use {@link RegionContainer#createQuery()} - */ - @Deprecated - @SuppressWarnings("deprecation") - public boolean allows(StateFlag flag, Location location) { - return StateFlag.test(WorldGuard.getInstance().getPlatform().getRegionContainer().createQuery().queryState(location, (RegionAssociable) null, flag)); - } -}