2015-09-02 11:06:48 +00:00
|
|
|
package de.epiceric.shopchest.utils;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.HashMap;
|
2015-09-04 18:16:33 +00:00
|
|
|
import java.util.List;
|
|
|
|
import java.util.UUID;
|
2015-09-02 11:06:48 +00:00
|
|
|
|
|
|
|
import org.bukkit.Location;
|
|
|
|
import org.bukkit.Material;
|
2015-09-04 18:16:33 +00:00
|
|
|
import org.bukkit.OfflinePlayer;
|
2015-09-02 11:06:48 +00:00
|
|
|
import org.bukkit.World;
|
|
|
|
import org.bukkit.block.Block;
|
|
|
|
import org.bukkit.block.Chest;
|
|
|
|
import org.bukkit.block.DoubleChest;
|
2015-09-04 18:16:33 +00:00
|
|
|
import org.bukkit.entity.Player;
|
2015-09-02 11:06:48 +00:00
|
|
|
import org.bukkit.inventory.InventoryHolder;
|
|
|
|
|
2015-09-04 18:16:33 +00:00
|
|
|
import de.epiceric.shopchest.ShopChest;
|
|
|
|
import de.epiceric.shopchest.config.Config;
|
|
|
|
import de.epiceric.shopchest.interfaces.Utils;
|
2015-09-02 11:06:48 +00:00
|
|
|
import de.epiceric.shopchest.shop.Shop;
|
|
|
|
|
|
|
|
public class ShopUtils {
|
|
|
|
|
|
|
|
private static HashMap<Location, Shop> shopLocation = new HashMap<>();
|
|
|
|
|
|
|
|
public static Shop getShop(Location location) {
|
|
|
|
|
|
|
|
Location newLocation = new Location(location.getWorld(), location.getX(), location.getY(), location.getZ());
|
|
|
|
|
|
|
|
if (shopLocation.containsKey(newLocation)) {
|
|
|
|
return shopLocation.get(newLocation);
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public static boolean isShop(Location location) {
|
|
|
|
|
|
|
|
Location newLocation = new Location(location.getWorld(), location.getX(), location.getY(), location.getZ());
|
|
|
|
|
|
|
|
return shopLocation.containsKey(newLocation);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Shop[] getShops() {
|
|
|
|
|
|
|
|
ArrayList<Shop> shops = new ArrayList<>();
|
|
|
|
|
|
|
|
for (Shop shop : shopLocation.values()) {
|
|
|
|
shops.add(shop);
|
|
|
|
}
|
|
|
|
|
|
|
|
return shops.toArray(new Shop[shops.size()]);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void addShop(Shop shop) {
|
|
|
|
|
|
|
|
Location loc = shop.getLocation();
|
|
|
|
Block b = loc.getBlock();
|
|
|
|
if (b.getType().equals(Material.CHEST) || b.getType().equals(Material.TRAPPED_CHEST)) {
|
|
|
|
Chest c = (Chest) b.getState();
|
|
|
|
InventoryHolder ih = c.getInventory().getHolder();
|
|
|
|
if (ih instanceof DoubleChest) {
|
|
|
|
DoubleChest dc = (DoubleChest) ih;
|
|
|
|
Chest r = (Chest) dc.getRightSide();
|
|
|
|
Chest l = (Chest) dc.getLeftSide();
|
|
|
|
|
|
|
|
shopLocation.put(r.getLocation(), shop);
|
|
|
|
shopLocation.put(l.getLocation(), shop);
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
shopLocation.put(shop.getLocation(), shop);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void removeShop(Shop shop) {
|
|
|
|
|
|
|
|
Location loc = shop.getLocation();
|
|
|
|
Block b = loc.getBlock();
|
|
|
|
if (b.getType().equals(Material.CHEST) || b.getType().equals(Material.TRAPPED_CHEST)) {
|
|
|
|
Chest c = (Chest) b.getState();
|
|
|
|
InventoryHolder ih = c.getInventory().getHolder();
|
|
|
|
if (ih instanceof DoubleChest) {
|
|
|
|
DoubleChest dc = (DoubleChest) ih;
|
|
|
|
Chest r = (Chest) dc.getRightSide();
|
|
|
|
Chest l = (Chest) dc.getLeftSide();
|
|
|
|
|
2015-09-06 09:58:25 +00:00
|
|
|
shop.getItem().remove();
|
2015-09-02 11:06:48 +00:00
|
|
|
shopLocation.remove(r.getLocation());
|
|
|
|
shopLocation.remove(l.getLocation());
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
shopLocation.remove(shop.getLocation());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String getConfigTitle(Location location) {
|
|
|
|
World w = location.getWorld();
|
|
|
|
int x = location.getBlockX();
|
|
|
|
int y = location.getBlockY();
|
|
|
|
int z = location.getBlockZ();
|
|
|
|
|
|
|
|
return w.getName() + "_" + String.valueOf(x) + "_" + String.valueOf(y) + "_" + String.valueOf(z);
|
|
|
|
}
|
|
|
|
|
2015-09-04 18:16:33 +00:00
|
|
|
|
|
|
|
public static int getShopLimit(Player p) {
|
|
|
|
int limit = Config.default_limit();
|
|
|
|
|
|
|
|
if (ShopChest.perm.hasGroupSupport()) {
|
|
|
|
List<String> groups = new ArrayList<String>();
|
|
|
|
|
|
|
|
for (String key : Config.shopLimits_group()) {
|
|
|
|
for (int i = 0; i < ShopChest.perm.getGroups().length; i++) {
|
|
|
|
if (ShopChest.perm.getGroups()[i].equals(key)) {
|
|
|
|
if (ShopChest.perm.playerInGroup(p, key)) {
|
|
|
|
groups.add(key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (groups.size() != 0) {
|
|
|
|
List<Integer> limits = new ArrayList<>();
|
|
|
|
for (String group : groups) {
|
|
|
|
int gLimit = ShopChest.getInstance().getConfig().getInt("shop-limits.group." + group);
|
|
|
|
limits.add(gLimit);
|
|
|
|
}
|
|
|
|
|
|
|
|
int highestLimit = 0;
|
|
|
|
for (int l : limits) {
|
|
|
|
if (l > highestLimit) {
|
|
|
|
highestLimit = l;
|
|
|
|
} else if (l == -1) {
|
|
|
|
highestLimit = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
limit = highestLimit;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
for (String key : Config.shopLimits_player()) {
|
|
|
|
int pLimit = ShopChest.getInstance().getConfig().getInt("shop-limits.player." + key);
|
|
|
|
if (Utils.isUUID(key)) {
|
|
|
|
if (p.getUniqueId().equals(UUID.fromString(key))) {
|
|
|
|
limit = pLimit;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (p.getName().equals(key)) {
|
|
|
|
limit = pLimit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return limit;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static int getShopAmount(OfflinePlayer p) {
|
|
|
|
int shopCount = 0;
|
|
|
|
|
|
|
|
for (Shop shop : ShopUtils.getShops()) {
|
|
|
|
if (shop.getVendor().equals(p)) shopCount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return shopCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-02 11:06:48 +00:00
|
|
|
}
|