use of com.palmergames.bukkit.towny.exceptions.NotRegisteredException in project Towny by ElgarL.
the class TownyEntityListener method onEntityDamageByEntityEvent.
@EventHandler(priority = EventPriority.LOWEST, ignoreCancelled = true)
public void onEntityDamageByEntityEvent(EntityDamageByEntityEvent event) {
if (plugin.isError()) {
return;
}
TownyWorld townyWorld = null;
Entity entity = event.getEntity();
if (entity instanceof ArmorStand) {
String damager = event.getDamager().getType().name();
if (damager == "PRIMED_TNT" || damager == "WITHER_SKULL" || damager == "FIREBALL" || damager == "SMALL_FIREBALL" || damager == "LARGE_FIREBALL" || damager == "WITHER") {
try {
townyWorld = TownyUniverse.getDataSource().getWorld(entity.getWorld().getName());
} catch (NotRegisteredException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
if (!locationCanExplode(townyWorld, entity.getLocation())) {
event.setCancelled(true);
return;
}
}
if (event.getDamager() instanceof Projectile) {
try {
townyWorld = TownyUniverse.getDataSource().getWorld(entity.getWorld().getName());
} catch (NotRegisteredException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
Object remover = event.getDamager();
remover = ((Projectile) remover).getShooter();
if (remover instanceof Monster) {
event.setCancelled(true);
} else if (remover instanceof Player) {
Player player = (Player) remover;
// Get destroy permissions (updates if none exist)
boolean bDestroy = PlayerCacheUtil.getCachePermission(player, entity.getLocation(), 416, (byte) 0, TownyPermission.ActionType.DESTROY);
// Allow the removal if we are permitted
if (bDestroy)
return;
/*
* Fetch the players cache
*/
PlayerCache cache = plugin.getCache(player);
event.setCancelled(true);
}
}
}
}
use of com.palmergames.bukkit.towny.exceptions.NotRegisteredException in project Towny by ElgarL.
the class TownyEntityListener method onEntityExplode.
@EventHandler(priority = EventPriority.HIGH, ignoreCancelled = true)
public void onEntityExplode(EntityExplodeEvent event) {
if (plugin.isError()) {
event.setCancelled(true);
return;
}
TownyWorld townyWorld;
/**
* Perform this test outside the block loop so we only get the world
* once per explosion.
*/
try {
townyWorld = TownyUniverse.getDataSource().getWorld(event.getLocation().getWorld().getName());
if (!townyWorld.isUsingTowny())
return;
} catch (NotRegisteredException e) {
// failed to get world so abort
return;
}
Coord coord;
List<Block> blocks = event.blockList();
Entity entity = event.getEntity();
int count = 0;
// Sort blocks by height (lowest to highest).
Collections.sort(blocks, ArraySort.getInstance());
for (Block block : blocks) {
coord = Coord.parseCoord(block.getLocation());
count++;
// Warzones
if (townyWorld.isWarZone(coord)) {
if (!TownyWarConfig.isAllowingExplosionsInWarZone()) {
if (event.getEntity() != null)
TownyMessaging.sendDebugMsg("onEntityExplode: Canceled " + event.getEntity().getEntityId() + " from exploding within " + coord.toString() + ".");
event.setCancelled(true);
return;
} else {
if (TownyWarConfig.explosionsBreakBlocksInWarZone()) {
if (TownyWarConfig.regenBlocksAfterExplosionInWarZone()) {
// ***********************************
// TODO
// On completion, remove TODO from config.yml
// comments.
/*
* if
* (!plugin.getTownyUniverse().hasProtectionRegenTask
* (new BlockLocation(block.getLocation()))) {
* ProtectionRegenTask task = new
* ProtectionRegenTask(plugin.getTownyUniverse(),
* block, false);
* task.setTaskId(plugin.getServer().getScheduler().
* scheduleSyncDelayedTask(plugin, task,
* ((TownySettings.getPlotManagementWildRegenDelay()
* + count)*20)));
* plugin.getTownyUniverse().addProtectionRegenTask
* (task ); }
*/
// TODO
// ***********************************
}
// Break the block
} else {
event.blockList().remove(block);
}
}
return;
}
// TODO: expand to protect neutrals during a war
try {
TownBlock townBlock = townyWorld.getTownBlock(coord);
// and the towns has no nation
if (townyWorld.isUsingTowny() && !townyWorld.isForceExpl()) {
if ((!townBlock.getPermissions().explosion) || (TownyUniverse.isWarTime() && TownySettings.isAllowWarBlockGriefing() && !townBlock.getTown().hasNation() && !townBlock.getTown().isBANG())) {
if (event.getEntity() != null)
TownyMessaging.sendDebugMsg("onEntityExplode: Canceled " + event.getEntity().getEntityId() + " from exploding within " + coord.toString() + ".");
event.setCancelled(true);
return;
}
}
} catch (TownyException x) {
// Wilderness explosion regeneration
if (townyWorld.isUsingTowny())
if (townyWorld.isExpl()) {
if (townyWorld.isUsingPlotManagementWildRevert() && (entity != null)) {
TownyMessaging.sendDebugMsg("onEntityExplode: Testing entity: " + entity.getType().getEntityClass().getSimpleName().toLowerCase() + " @ " + coord.toString() + ".");
if (townyWorld.isProtectingExplosionEntity(entity)) {
if ((!TownyRegenAPI.hasProtectionRegenTask(new BlockLocation(block.getLocation()))) && (block.getType() != Material.TNT)) {
ProtectionRegenTask task = new ProtectionRegenTask(plugin, block, false);
task.setTaskId(plugin.getServer().getScheduler().scheduleSyncDelayedTask(plugin, task, ((TownySettings.getPlotManagementWildRegenDelay() + count) * 20)));
TownyRegenAPI.addProtectionRegenTask(task);
event.setYield((float) 0.0);
block.getDrops().clear();
}
}
}
} else {
event.setCancelled(true);
return;
}
}
}
}
use of com.palmergames.bukkit.towny.exceptions.NotRegisteredException in project Towny by ElgarL.
the class TownyEntityListener method onEntityInteract.
@EventHandler(priority = EventPriority.HIGH, ignoreCancelled = true)
public void onEntityInteract(EntityInteractEvent event) {
if (plugin.isError()) {
event.setCancelled(true);
return;
}
Block block = event.getBlock();
Entity entity = event.getEntity();
Entity passenger = entity.getPassenger();
TownyWorld World = null;
try {
World = TownyUniverse.getDataSource().getWorld(block.getLocation().getWorld().getName());
if (!World.isUsingTowny())
return;
} catch (NotRegisteredException e) {
// World not registered with Towny.
e.printStackTrace();
return;
}
try {
TownyWorld townyWorld = TownyUniverse.getDataSource().getWorld(block.getLocation().getWorld().getName());
if (townyWorld.isUsingTowny()) {
// Prevent creatures trampling crops
if (townyWorld.isDisableCreatureTrample()) {
if ((block.getType() == Material.SOIL) || (block.getType() == Material.CROPS)) {
if (entity instanceof Creature) {
event.setCancelled(true);
return;
}
}
}
/*
* Allow players in vehicles to activate pressure plates if they
* are permitted.
*/
if (passenger != null && passenger instanceof Player) {
if (TownySettings.isSwitchMaterial(block.getType().name())) {
if (!plugin.getPlayerListener().onPlayerSwitchEvent((Player) passenger, block, null, World))
return;
}
}
// Prevent creatures triggering stone pressure plates
if (TownySettings.isCreatureTriggeringPressurePlateDisabled()) {
if (block.getType() == Material.STONE_PLATE) {
if (entity instanceof Creature) {
event.setCancelled(true);
return;
}
}
}
}
} catch (NotRegisteredException e) {
// Failed to fetch world
e.printStackTrace();
}
}
use of com.palmergames.bukkit.towny.exceptions.NotRegisteredException in project Towny by ElgarL.
the class TownyEntityListener method onCreatureSpawn.
/**
* @param event
*/
@EventHandler(priority = EventPriority.HIGH, ignoreCancelled = true)
public void onCreatureSpawn(CreatureSpawnEvent event) {
if (plugin.isError()) {
event.setCancelled(true);
return;
}
if (event.getEntity() instanceof LivingEntity) {
LivingEntity livingEntity = (LivingEntity) event.getEntity();
Location loc = event.getLocation();
Coord coord = Coord.parseCoord(loc);
TownyWorld townyWorld = null;
try {
townyWorld = TownyUniverse.getDataSource().getWorld(loc.getWorld().getName());
} catch (NotRegisteredException e) {
// Failed to fetch a world
return;
}
// remove from world if set to remove mobs globally
if (townyWorld.isUsingTowny())
if (!townyWorld.hasWorldMobs() && ((MobRemovalTimerTask.isRemovingWorldEntity(livingEntity) || ((livingEntity instanceof Villager) && !((Villager) livingEntity).isAdult() && (TownySettings.isRemovingVillagerBabiesWorld()))))) {
if (plugin.isCitizens2()) {
if (!CitizensAPI.getNPCRegistry().isNPC(livingEntity)) {
// TownyMessaging.sendDebugMsg("onCreatureSpawn world: Canceled "
// + event.getEntityType().name() +
// " from spawning within "+coord.toString()+".");
event.setCancelled(true);
}
} else
event.setCancelled(true);
}
// remove from towns if in the list and set to remove
try {
TownBlock townBlock = townyWorld.getTownBlock(coord);
if (townyWorld.isUsingTowny() && !townyWorld.isForceTownMobs()) {
if (!townBlock.getTown().hasMobs() && !townBlock.getPermissions().mobs) {
if ((MobRemovalTimerTask.isRemovingTownEntity(livingEntity) || ((livingEntity instanceof Villager) && !((Villager) livingEntity).isAdult() && (TownySettings.isRemovingVillagerBabiesTown())))) {
if (plugin.isCitizens2()) {
if (!CitizensAPI.getNPCRegistry().isNPC(livingEntity)) {
// TownyMessaging.sendDebugMsg("onCreatureSpawn town: Canceled "
// + event.getEntityType().name() +
// " from spawning within "+coord.toString()+".");
event.setCancelled(true);
}
} else
event.setCancelled(true);
}
}
}
} catch (TownyException x) {
}
}
}
use of com.palmergames.bukkit.towny.exceptions.NotRegisteredException in project Towny by ElgarL.
the class DailyTimerTask method collectTownTaxes.
/**
* Collect taxes due to the town from it's residents.
*
* @param nation
* @throws EconomyException
*/
protected void collectTownTaxes(Town town) throws EconomyException {
// Resident Tax
if (town.getTaxes() > 0) {
List<Resident> residents = new ArrayList<Resident>(town.getResidents());
ListIterator<Resident> residentItr = residents.listIterator();
Resident resident = null;
while (residentItr.hasNext()) {
resident = residentItr.next();
/*
* Only collect resident tax from this resident if it really
* still exists. We are running in an Async thread so MUST
* verify all objects.
*/
if (TownyUniverse.getDataSource().hasResident(resident.getName())) {
if (TownyPerms.getResidentPerms(resident).containsKey("towny.tax_exempt") || resident.isNPC()) {
try {
TownyMessaging.sendResidentMessage(resident, TownySettings.getTaxExemptMsg());
} catch (TownyException e) {
// Player is not online
}
continue;
} else if (town.isTaxPercentage()) {
double cost = resident.getHoldingBalance() * town.getTaxes() / 100;
resident.payTo(cost, town, "Town Tax (Percentage)");
/*
* Don't send individual message anymore to ease up on
* the lag. try {
* TownyMessaging.sendResidentMessage(resident,
* TownySettings.getPayedResidentTaxMsg() + cost); }
* catch (TownyException e) { // Player is not online }
*/
} else if (!resident.payTo(town.getTaxes(), town, "Town Tax")) {
TownyMessaging.sendTownMessage(town, TownySettings.getCouldntPayTaxesMsg(resident, "town"));
try {
// reset this resident and remove him from the town.
resident.clear();
TownyUniverse.getDataSource().saveTown(town);
} catch (EmptyTownException e) {
// No mayor so remove the town.
TownyUniverse.getDataSource().removeTown(town);
}
TownyUniverse.getDataSource().saveResident(resident);
}
// else
/*
* Don't send individual message anymore to ease up on the
* lag. try { TownyMessaging.sendResidentMessage(resident,
* TownySettings.getPayedResidentTaxMsg() +
* town.getTaxes()); } catch (TownyException e) { // Player
* is not online }
*/
}
}
}
// Plot Tax
if (town.getPlotTax() > 0 || town.getCommercialPlotTax() > 0 || town.getEmbassyPlotTax() > 0) {
// Hashtable<Resident, Integer> townPlots = new Hashtable<Resident,
// Integer>();
// Hashtable<Resident, Double> townTaxes = new Hashtable<Resident,
// Double>();
List<TownBlock> townBlocks = new ArrayList<TownBlock>(town.getTownBlocks());
ListIterator<TownBlock> townBlockItr = townBlocks.listIterator();
TownBlock townBlock = null;
while (townBlockItr.hasNext()) {
townBlock = townBlockItr.next();
if (!townBlock.hasResident())
continue;
try {
Resident resident = townBlock.getResident();
/*
* Only collect plot tax from this resident if it really
* still exists. We are running in an Async thread so MUST
* verify all objects.
*/
if (TownyUniverse.getDataSource().hasResident(resident.getName())) {
if (TownyPerms.getResidentPerms(resident).containsKey("towny.tax_exempt") || resident.isNPC()) {
continue;
}
if (!resident.payTo(townBlock.getType().getTax(town), town, String.format("Plot Tax (%s)", townBlock.getType()))) {
TownyMessaging.sendTownMessage(town, String.format(TownySettings.getLangString("msg_couldnt_pay_plot_taxes"), resident));
townBlock.setResident(null);
townBlock.setPlotPrice(-1);
// Set the plot permissions to mirror the towns.
townBlock.setType(townBlock.getType());
TownyUniverse.getDataSource().saveResident(resident);
TownyUniverse.getDataSource().saveTownBlock(townBlock);
}
// else {
// townPlots.put(resident,
// (townPlots.containsKey(resident) ?
// townPlots.get(resident) : 0) + 1);
// townTaxes.put(resident,
// (townTaxes.containsKey(resident) ?
// townTaxes.get(resident) : 0) +
// townBlock.getType().getTax(town));
// }
}
} catch (NotRegisteredException e) {
}
}
/*
* Don't send individual message anymore to ease up on the lag. for
* (Resident resident : townPlots.keySet()) { try { int numPlots =
* townPlots.get(resident); double totalCost =
* townTaxes.get(resident);
* TownyMessaging.sendResidentMessage(resident,
* String.format(TownySettings.getLangString("msg_payed_plot_cost"),
* totalCost, numPlots, town.getName())); } catch (TownyException e)
* { // Player is not online } }
*/
}
}
Aggregations