ChestShop-3/src/main/java/com/Acrobot/ChestShop/Listeners/PreShopCreation/MoneyChecker.java

50 lines
1.5 KiB
Java
Raw Normal View History

2013-01-15 21:33:00 +01:00
package com.Acrobot.ChestShop.Listeners.PreShopCreation;
import com.Acrobot.ChestShop.ChestShop;
2013-01-15 21:33:00 +01:00
import com.Acrobot.ChestShop.Configuration.Properties;
import com.Acrobot.ChestShop.Events.Economy.CurrencyCheckEvent;
2013-01-15 21:33:00 +01:00
import com.Acrobot.ChestShop.Events.PreShopCreationEvent;
import com.Acrobot.ChestShop.Permission;
import com.Acrobot.ChestShop.Signs.ChestShopSign;
import org.bukkit.entity.Player;
import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
import java.math.BigDecimal;
2013-01-24 22:35:28 +01:00
import static com.Acrobot.ChestShop.Events.PreShopCreationEvent.CreationOutcome.NOT_ENOUGH_MONEY;
2013-01-15 21:33:00 +01:00
import static com.Acrobot.ChestShop.Permission.NOFEE;
import static com.Acrobot.ChestShop.Signs.ChestShopSign.NAME_LINE;
/**
* @author Acrobot
*/
public class MoneyChecker implements Listener {
@EventHandler
public static void onPreShopCreation(PreShopCreationEvent event) {
BigDecimal shopCreationPrice = Properties.SHOP_CREATION_PRICE;
2013-01-15 21:33:00 +01:00
if (shopCreationPrice.compareTo(BigDecimal.ZERO) == 0) {
2013-01-15 21:33:00 +01:00
return;
}
if (ChestShopSign.isAdminShop(event.getSignLine(NAME_LINE))) {
return;
}
Player player = event.getPlayer();
if (Permission.has(player, NOFEE)) {
return;
}
CurrencyCheckEvent currencyCheckEvent = new CurrencyCheckEvent(shopCreationPrice, player);
ChestShop.callEvent(currencyCheckEvent);
if (!currencyCheckEvent.hasEnough()) {
2013-01-24 22:35:28 +01:00
event.setOutcome(NOT_ENOUGH_MONEY);
}
2013-01-15 21:33:00 +01:00
}
}