mirror of
https://github.com/ChestShop-authors/ChestShop-3.git
synced 2024-12-19 14:57:35 +01:00
a49d51ce97
- Added partial transactions (You have 5 items, shop wants 10 - you can sell your items for half the price) - Added a warning to the HTML generator - Fixed Towny integration - Fixed occasional ArrayOutOfBoundsExceptions - Fixed an error when a shop couldn't be created because a sign (not shop sign) was on other side of the block - Added SCL (SimpleChestLock) protection plugin to supported plugins - Updated Metrics (and added a new asynch thread for startup) - Removed Bukkit-1.0 workaround - Fixed plugin.yml formatting
47 lines
2.2 KiB
Java
47 lines
2.2 KiB
Java
package com.Acrobot.ChestShop.Utils;
|
|
|
|
import com.Acrobot.ChestShop.Config.Config;
|
|
import com.Acrobot.ChestShop.Config.Property;
|
|
import com.palmergames.bukkit.towny.NotRegisteredException;
|
|
import com.palmergames.bukkit.towny.object.TownBlockType;
|
|
import org.bukkit.Location;
|
|
import org.bukkit.block.Block;
|
|
import org.bukkit.entity.Player;
|
|
|
|
|
|
/**
|
|
* @author Acrobot
|
|
*/
|
|
public class uTowny {
|
|
public static boolean isInsideShopPlot(Location chestlocation, Location signLocation) {
|
|
return uSign.towny.getTownyUniverse().getTownBlock(chestlocation).getType() == TownBlockType.COMMERCIAL && uSign.towny.getTownyUniverse().getTownBlock(signLocation).getType() == TownBlockType.COMMERCIAL;
|
|
}
|
|
|
|
public static boolean isPlotOwner(Player player, Location chestLocation, Location signLocation) {
|
|
if (Config.getBoolean(Property.TOWNY_SHOPS_FOR_OWNERS_ONLY)) return isBlockOwner(player, chestLocation) && isBlockOwner(player, signLocation);
|
|
return isResident(player, chestLocation) && isResident(player, signLocation);
|
|
}
|
|
|
|
public static boolean isInWilderness(Location chestLocation, Location signLocation) {
|
|
return isInWilderness(chestLocation.getBlock()) || isInWilderness(signLocation.getBlock());
|
|
}
|
|
|
|
private static boolean isInWilderness(Block block){
|
|
return uSign.towny.getTownyUniverse().isWilderness(block);
|
|
}
|
|
|
|
public static boolean canBuild(Player player, Location chestLocation, Location signLocation) {
|
|
return uSign.towny == null || !Config.getBoolean(Property.TOWNY_INTEGRATION) || (!isInWilderness(chestLocation, signLocation) && isInsideShopPlot(chestLocation, signLocation) && isPlotOwner(player, chestLocation, signLocation));
|
|
}
|
|
|
|
private static boolean isBlockOwner(Player player, Location location) {
|
|
try { return uSign.towny.getTownyUniverse().getTownBlock(location).isOwner(uSign.towny.getTownyUniverse().getResident(player.getName()));
|
|
} catch (NotRegisteredException ex) { return false; }
|
|
}
|
|
|
|
private static boolean isResident(Player p, Location l){
|
|
try { return uSign.towny.getTownyUniverse().getTownBlock(l).getTown().hasResident(p.getName());
|
|
} catch (NotRegisteredException ex) { return false; }
|
|
}
|
|
}
|