/worldguard-legacy/src/main/java/com/sk89q/worldguard/bukkit/listener/WorldGuardWorldListener.java

http://github.com/sk89q/worldguard · Java · 103 lines · 56 code · 13 blank · 34 comment · 14 complexity · 419cb3d345ee41cb1a85a1c82b7e17e2 MD5 · raw file

  1. /*
  2. * WorldGuard, a suite of tools for Minecraft
  3. * Copyright (C) sk89q <http://www.sk89q.com>
  4. * Copyright (C) WorldGuard team and contributors
  5. *
  6. * This program is free software: you can redistribute it and/or modify it
  7. * under the terms of the GNU Lesser General Public License as published by the
  8. * Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful, but WITHOUT
  12. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
  14. * for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. package com.sk89q.worldguard.bukkit.listener;
  20. import com.sk89q.worldguard.bukkit.BukkitUtil;
  21. import com.sk89q.worldguard.bukkit.ConfigurationManager;
  22. import com.sk89q.worldguard.bukkit.WorldConfiguration;
  23. import com.sk89q.worldguard.bukkit.WorldGuardPlugin;
  24. import org.bukkit.World;
  25. import org.bukkit.entity.Entity;
  26. import org.bukkit.event.EventHandler;
  27. import org.bukkit.event.Listener;
  28. import org.bukkit.event.world.ChunkLoadEvent;
  29. import org.bukkit.event.world.WorldLoadEvent;
  30. import java.util.logging.Logger;
  31. public class WorldGuardWorldListener implements Listener {
  32. private static final Logger log = Logger.getLogger(WorldGuardWorldListener.class.getCanonicalName());
  33. private WorldGuardPlugin plugin;
  34. /**
  35. * Construct the object;
  36. *
  37. * @param plugin The plugin instance
  38. */
  39. public WorldGuardWorldListener(WorldGuardPlugin plugin) {
  40. this.plugin = plugin;
  41. }
  42. /**
  43. * Register events.
  44. */
  45. public void registerEvents() {
  46. plugin.getServer().getPluginManager().registerEvents(this, plugin);
  47. }
  48. @EventHandler
  49. public void onChunkLoad(ChunkLoadEvent event) {
  50. ConfigurationManager cfg = plugin.getGlobalStateManager();
  51. if (cfg.activityHaltToggle) {
  52. int removed = 0;
  53. for (Entity entity : event.getChunk().getEntities()) {
  54. if (BukkitUtil.isIntensiveEntity(entity)) {
  55. entity.remove();
  56. removed++;
  57. }
  58. }
  59. if (removed > 50) {
  60. log.info("Halt-Act: " + removed + " entities (>50) auto-removed from " + event.getChunk().toString());
  61. }
  62. }
  63. }
  64. @EventHandler
  65. public void onWorldLoad(WorldLoadEvent event) {
  66. initWorld(event.getWorld());
  67. }
  68. /**
  69. * Initialize the settings for the specified world
  70. * @see WorldConfiguration#alwaysRaining
  71. * @see WorldConfiguration#disableWeather
  72. * @see WorldConfiguration#alwaysThundering
  73. * @see WorldConfiguration#disableThunder
  74. * @param world The specified world
  75. */
  76. public void initWorld(World world) {
  77. ConfigurationManager cfg = plugin.getGlobalStateManager();
  78. WorldConfiguration wcfg = cfg.get(world);
  79. if (wcfg.alwaysRaining && !wcfg.disableWeather) {
  80. world.setStorm(true);
  81. } else if (wcfg.disableWeather && !wcfg.alwaysRaining) {
  82. world.setStorm(false);
  83. }
  84. if (wcfg.alwaysThundering && !wcfg.disableThunder) {
  85. world.setThundering(true);
  86. } else if (wcfg.disableThunder && !wcfg.alwaysThundering) {
  87. world.setStorm(false);
  88. }
  89. }
  90. }