DungeonsXL/core/src/main/java/de/erethon/dungeonsxl/sign/button/WaveSign.java

123 lines
3.4 KiB
Java

/*
* Copyright (C) 2012-2022 Frank Baumann
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package de.erethon.dungeonsxl.sign.button;
import de.erethon.dungeonsxl.api.DungeonsAPI;
import de.erethon.dungeonsxl.api.sign.Button;
import de.erethon.dungeonsxl.api.world.InstanceWorld;
import de.erethon.dungeonsxl.config.DMessage;
import de.erethon.dungeonsxl.dungeon.DGame;
import de.erethon.dungeonsxl.player.DPermission;
import de.erethon.dungeonsxl.trigger.InteractTrigger;
import de.erethon.bedrock.misc.NumberUtil;
import de.erethon.dungeonsxl.world.DGameWorld;
import org.bukkit.ChatColor;
import org.bukkit.block.Sign;
/**
* @author Frank Baumann, Daniel Saukel
*/
public class WaveSign extends Button {
private double mobCountIncreaseRate;
private boolean teleport;
public WaveSign(DungeonsAPI api, Sign sign, String[] lines, InstanceWorld instance) {
super(api, sign, lines, instance);
}
public double getMobCountIncreaseRate() {
return mobCountIncreaseRate;
}
public void setMobCountIncreaseRate(double mobCountIncreaseRate) {
this.mobCountIncreaseRate = mobCountIncreaseRate;
}
public boolean getTeleport() {
return teleport;
}
public void setTeleport(boolean teleport) {
this.teleport = teleport;
}
@Override
public String getName() {
return "Wave";
}
@Override
public String getBuildPermission() {
return DPermission.SIGN.getNode() + ".wave";
}
@Override
public boolean isOnDungeonInit() {
return false;
}
@Override
public boolean isProtected() {
return true;
}
@Override
public boolean isSetToAir() {
return false;
}
@Override
public boolean validate() {
return true;
}
@Override
public void initialize() {
if (!getLine(1).isEmpty()) {
mobCountIncreaseRate = NumberUtil.parseDouble(getLine(1), 2);
}
if (!getLine(2).isEmpty()) {
teleport = getLine(2).equals("+") || getLine(2).equals("true");
}
if (!getTriggers().isEmpty()) {
setToAir();
return;
}
InteractTrigger trigger = InteractTrigger.getOrCreate(0, getSign().getBlock(), (DGameWorld) getGameWorld());
if (trigger != null) {
trigger.addListener(this);
addTrigger(trigger);
}
getSign().setLine(0, ChatColor.DARK_BLUE + "############");
getSign().setLine(1, DMessage.SIGN_WAVE_1.getMessage());
getSign().setLine(2, DMessage.SIGN_WAVE_2.getMessage());
getSign().setLine(3, ChatColor.DARK_BLUE + "############");
getSign().update();
}
@Override
public void push() {
((DGame) getGame()).finishWave(mobCountIncreaseRate, teleport);
}
}