Add Region section Support for /tnt /fire /freeze
Dieser Commit ist enthalten in:
Ursprung
64e8217440
Commit
ea345fb46c
@ -19,18 +19,15 @@
|
|||||||
|
|
||||||
package de.steamwar.bausystem.commands;
|
package de.steamwar.bausystem.commands;
|
||||||
|
|
||||||
|
import de.steamwar.bausystem.world.Region;
|
||||||
import org.bukkit.event.EventHandler;
|
import org.bukkit.event.EventHandler;
|
||||||
import org.bukkit.event.block.BlockBurnEvent;
|
import org.bukkit.event.block.BlockBurnEvent;
|
||||||
import org.bukkit.event.block.BlockSpreadEvent;
|
import org.bukkit.event.block.BlockSpreadEvent;
|
||||||
|
|
||||||
public class CommandFire extends ToggleCommand {
|
public class CommandFire extends RegionToggleCommand {
|
||||||
|
|
||||||
public CommandFire(){
|
public CommandFire() {
|
||||||
super(true);
|
super();
|
||||||
}
|
|
||||||
|
|
||||||
public static ToggleCommand getInstance(){
|
|
||||||
return getInstance(CommandFire.class);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -45,15 +42,29 @@ public class CommandFire extends ToggleCommand {
|
|||||||
String getDisableMessage(){
|
String getDisableMessage(){
|
||||||
return "§aFeuerschaden aktiviert";
|
return "§aFeuerschaden aktiviert";
|
||||||
}
|
}
|
||||||
|
@Override
|
||||||
|
String getNoRegionMessage() {
|
||||||
|
return "§cDu befindest dich derzeit in keiner Region";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
boolean toggle(Region region) {
|
||||||
|
region.setFire(!region.isFire());
|
||||||
|
return region.isFire();
|
||||||
|
}
|
||||||
|
|
||||||
@EventHandler
|
@EventHandler
|
||||||
public void onFireDamage(BlockBurnEvent e) {
|
public void onFireDamage(BlockBurnEvent e) {
|
||||||
e.setCancelled(true);
|
Region.getRegion(e.getBlock().getLocation(), region -> {
|
||||||
|
if (region.isFire()) e.setCancelled(true);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@EventHandler
|
@EventHandler
|
||||||
public void onFireSpread(BlockSpreadEvent e){
|
public void onFireSpread(BlockSpreadEvent e){
|
||||||
e.setCancelled(true);
|
Region.getRegion(e.getBlock().getLocation(), region -> {
|
||||||
|
if (region.isFire()) e.setCancelled(true);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,36 +1,41 @@
|
|||||||
/*
|
/*
|
||||||
This file is a part of the SteamWar software.
|
*
|
||||||
|
* This file is a part of the SteamWar software.
|
||||||
Copyright (C) 2020 SteamWar.de-Serverteam
|
*
|
||||||
|
* Copyright (C) 2020 SteamWar.de-Serverteam
|
||||||
This program is free software: you can redistribute it and/or modify
|
*
|
||||||
it under the terms of the GNU Affero General Public License as published by
|
* This program is free software: you can redistribute it and/or modify
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
* it under the terms of the GNU Affero General Public License as published by
|
||||||
(at your option) any later version.
|
* 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
|
* This program is distributed in the hope that it will be useful,
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
GNU Affero General Public License for more details.
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
You should have received a copy of the GNU Affero General Public License
|
*
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
*/
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
* /
|
||||||
|
*/
|
||||||
|
|
||||||
package de.steamwar.bausystem.commands;
|
package de.steamwar.bausystem.commands;
|
||||||
|
|
||||||
|
import de.steamwar.bausystem.BauSystem;
|
||||||
|
import de.steamwar.bausystem.world.Region;
|
||||||
|
import org.bukkit.Bukkit;
|
||||||
|
import org.bukkit.Location;
|
||||||
|
import org.bukkit.Material;
|
||||||
|
import org.bukkit.entity.EntityType;
|
||||||
import org.bukkit.event.EventHandler;
|
import org.bukkit.event.EventHandler;
|
||||||
import org.bukkit.event.block.*;
|
import org.bukkit.event.block.*;
|
||||||
|
import org.bukkit.event.entity.EntitySpawnEvent;
|
||||||
import org.bukkit.event.inventory.InventoryMoveItemEvent;
|
import org.bukkit.event.inventory.InventoryMoveItemEvent;
|
||||||
|
|
||||||
public class CommandFreeze extends ToggleCommand {
|
public class CommandFreeze extends RegionToggleCommand {
|
||||||
|
|
||||||
public CommandFreeze(){
|
public CommandFreeze(){
|
||||||
super(false);
|
super();
|
||||||
}
|
|
||||||
|
|
||||||
public static ToggleCommand getInstance(){
|
|
||||||
return getInstance(CommandFreeze.class);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -45,39 +50,75 @@ public class CommandFreeze extends ToggleCommand {
|
|||||||
String getDisableMessage(){
|
String getDisableMessage(){
|
||||||
return "§aWelt aufgetaut";
|
return "§aWelt aufgetaut";
|
||||||
}
|
}
|
||||||
|
@Override
|
||||||
|
String getNoRegionMessage() {
|
||||||
|
return "§cDu befindest dich derzeit in keiner Region";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
boolean toggle(Region region) {
|
||||||
|
region.setFreeze(!region.isFreeze());
|
||||||
|
return region.isFreeze();
|
||||||
|
}
|
||||||
|
|
||||||
|
@EventHandler
|
||||||
|
public void onEntitySpawn(EntitySpawnEvent e) {
|
||||||
|
Region.getRegion(e.getLocation(), region -> {
|
||||||
|
if (!region.isFreeze()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (e.getEntityType() == EntityType.FALLING_BLOCK) {
|
||||||
|
e.setCancelled(true);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
@EventHandler
|
@EventHandler
|
||||||
public void onPhysicsEvent(BlockPhysicsEvent e){
|
public void onPhysicsEvent(BlockPhysicsEvent e){
|
||||||
e.setCancelled(true);
|
Region.getRegion(e.getBlock().getLocation(), region -> {
|
||||||
|
if (region.isFreeze()) e.setCancelled(true);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@EventHandler
|
@EventHandler
|
||||||
public void onPistonExtend(BlockPistonExtendEvent e){
|
public void onPistonExtend(BlockPistonExtendEvent e){
|
||||||
e.setCancelled(true);
|
Region.getRegion(e.getBlock().getLocation(), region -> {
|
||||||
|
if (region.isFreeze()) e.setCancelled(true);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@EventHandler
|
@EventHandler
|
||||||
public void onPistonRetract(BlockPistonRetractEvent e){
|
public void onPistonRetract(BlockPistonRetractEvent e){
|
||||||
e.setCancelled(true);
|
Region.getRegion(e.getBlock().getLocation(), region -> {
|
||||||
|
if (region.isFreeze()) e.setCancelled(true);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@EventHandler
|
@EventHandler
|
||||||
public void onBlockGrow(BlockGrowEvent e){
|
public void onBlockGrow(BlockGrowEvent e){
|
||||||
e.setCancelled(true);
|
Region.getRegion(e.getBlock().getLocation(), region -> {
|
||||||
|
if (region.isFreeze()) e.setCancelled(true);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@EventHandler
|
@EventHandler
|
||||||
public void onRedstoneEvent(BlockRedstoneEvent e){
|
public void onRedstoneEvent(BlockRedstoneEvent e){
|
||||||
e.setNewCurrent(e.getOldCurrent());
|
Region.getRegion(e.getBlock().getLocation(), region -> {
|
||||||
|
if (region.isFreeze()) e.setNewCurrent(e.getOldCurrent());
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@EventHandler
|
@EventHandler
|
||||||
public void onBlockDispense(BlockDispenseEvent e){
|
public void onBlockDispense(BlockDispenseEvent e){
|
||||||
e.setCancelled(true);
|
Region.getRegion(e.getBlock().getLocation(), region -> {
|
||||||
|
if (region.isFreeze()) e.setCancelled(true);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@EventHandler
|
@EventHandler
|
||||||
public void onInventoryMoveEvent(InventoryMoveItemEvent e){
|
public void onInventoryMoveEvent(InventoryMoveItemEvent e){
|
||||||
e.setCancelled(true);
|
Region.getRegion(e.getDestination().getLocation(), region -> {
|
||||||
|
if (region.isFreeze()) e.setCancelled(true);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -20,12 +20,14 @@
|
|||||||
package de.steamwar.bausystem.commands;
|
package de.steamwar.bausystem.commands;
|
||||||
|
|
||||||
import de.steamwar.bausystem.BauSystem;
|
import de.steamwar.bausystem.BauSystem;
|
||||||
|
import de.steamwar.bausystem.world.Region;
|
||||||
import de.steamwar.core.TPSWatcher;
|
import de.steamwar.core.TPSWatcher;
|
||||||
import de.steamwar.sql.BauweltMember;
|
import de.steamwar.sql.BauweltMember;
|
||||||
import de.steamwar.sql.SteamwarUser;
|
import de.steamwar.sql.SteamwarUser;
|
||||||
import org.bukkit.command.Command;
|
import org.bukkit.command.Command;
|
||||||
import org.bukkit.command.CommandExecutor;
|
import org.bukkit.command.CommandExecutor;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
@ -33,10 +35,17 @@ public class CommandInfo implements CommandExecutor {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
|
public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
|
||||||
|
if (!(sender instanceof Player)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
Player player = (Player) sender;
|
||||||
|
|
||||||
sender.sendMessage(BauSystem.PREFIX + "Besitzer: §e" + SteamwarUser.get(BauSystem.getOwnerID()).getUserName());
|
sender.sendMessage(BauSystem.PREFIX + "Besitzer: §e" + SteamwarUser.get(BauSystem.getOwnerID()).getUserName());
|
||||||
sender.sendMessage(BauSystem.PREFIX + "TNT-Schaden: " + CommandTNT.getTntMode().getName());
|
Region.getRegion(player.getLocation(), region -> {
|
||||||
sender.sendMessage(BauSystem.PREFIX + "Feuerschaden: " + (CommandFire.getInstance().isOn() ? "§aAUS" : "§cAN"));
|
sender.sendMessage(BauSystem.PREFIX + "§eTNT§8: " + region.getTntMode().getName() + " §eFire§8: " + (region.isFire() ? "§aAUS" : "§cAN") + " §eFreeze§8: " + (region.isFreeze() ? "§aAN" : "§cAUS"));
|
||||||
sender.sendMessage(BauSystem.PREFIX + "Eingefroren: " + (CommandFreeze.getInstance().isOn() ? "§aJA" : "§cNEIN"));
|
}, () -> {
|
||||||
|
sender.sendMessage(BauSystem.PREFIX + "§7Du bist in keiner Region.");
|
||||||
|
});
|
||||||
|
|
||||||
List<BauweltMember> members = BauweltMember.getMembers(BauSystem.getOwnerID());
|
List<BauweltMember> members = BauweltMember.getMembers(BauSystem.getOwnerID());
|
||||||
StringBuilder membermessage = new StringBuilder().append(BauSystem.PREFIX).append("Mitglieder: ");
|
StringBuilder membermessage = new StringBuilder().append(BauSystem.PREFIX).append("Mitglieder: ");
|
||||||
|
@ -45,8 +45,11 @@ public class CommandProtect implements CommandExecutor {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
for(Region region : Region.getRegions()){
|
Region region = Region.getRegion(player);
|
||||||
if(region.inRegion(player.getLocation()) && region.hasProtection()){
|
if (region == null || !region.hasProtection()) {
|
||||||
|
player.sendMessage(BauSystem.PREFIX + "§cDu befindest dich derzeit in keiner (M)WG-Region");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
try {
|
try {
|
||||||
Schematic schem = null;
|
Schematic schem = null;
|
||||||
if(args.length > 0){
|
if(args.length > 0){
|
||||||
@ -64,9 +67,4 @@ public class CommandProtect implements CommandExecutor {
|
|||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
player.sendMessage(BauSystem.PREFIX + "§cDu befindest dich derzeit in keiner (M)WG-Region");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -45,8 +45,11 @@ public class CommandReset implements CommandExecutor {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
for(Region region : Region.getRegions()){
|
Region region = Region.getRegion(player);
|
||||||
if(region.inRegion(player.getLocation())){
|
if (region == null) {
|
||||||
|
player.sendMessage(BauSystem.PREFIX + "§cDu befindest dich derzeit in keiner Region");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
try {
|
try {
|
||||||
if(args.length > 0){
|
if(args.length > 0){
|
||||||
Schematic schem = Schematic.getSchemFromDB(args[0], player.getUniqueId());
|
Schematic schem = Schematic.getSchemFromDB(args[0], player.getUniqueId());
|
||||||
@ -65,9 +68,4 @@ public class CommandReset implements CommandExecutor {
|
|||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
player.sendMessage(BauSystem.PREFIX + "§cDu befindest dich derzeit in keiner Region");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -36,12 +36,6 @@ import org.bukkit.event.entity.EntityExplodeEvent;
|
|||||||
|
|
||||||
public class CommandTNT implements CommandExecutor, Listener {
|
public class CommandTNT implements CommandExecutor, Listener {
|
||||||
|
|
||||||
private static TNTMode tntMode = Region.buildAreaEnabled() ? TNTMode.ONLY_TB : TNTMode.OFF;
|
|
||||||
|
|
||||||
public static TNTMode getTntMode() {
|
|
||||||
return tntMode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public enum TNTMode {
|
public enum TNTMode {
|
||||||
ON("§aan"),
|
ON("§aan"),
|
||||||
ONLY_TB("§7nur §eTestblock"),
|
ONLY_TB("§7nur §eTestblock"),
|
||||||
@ -83,6 +77,10 @@ public class CommandTNT implements CommandExecutor, Listener {
|
|||||||
return "§cEine Explosion hätte Blöcke im Baubereich zerstört";
|
return "§cEine Explosion hätte Blöcke im Baubereich zerstört";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private String getNoRegionMessage() {
|
||||||
|
return "§cDu befindest dich derzeit in keiner Region";
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean onCommand(CommandSender sender, Command command, String s, String[] args) {
|
public boolean onCommand(CommandSender sender, Command command, String s, String[] args) {
|
||||||
if (!(sender instanceof Player)) return false;
|
if (!(sender instanceof Player)) return false;
|
||||||
@ -93,74 +91,72 @@ public class CommandTNT implements CommandExecutor, Listener {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TNTMode requestedMode = null;
|
||||||
|
String requestedMessage = null;
|
||||||
if (args.length != 0) {
|
if (args.length != 0) {
|
||||||
switch (args[0].toLowerCase()) {
|
switch (args[0].toLowerCase()) {
|
||||||
case "an":
|
case "an":
|
||||||
case "on":
|
case "on":
|
||||||
tntMode = TNTMode.ON;
|
requestedMode = TNTMode.ON;
|
||||||
sendToActionBar(getEnableMessage());
|
requestedMessage = getEnableMessage();
|
||||||
return false;
|
break;
|
||||||
case "aus":
|
case "aus":
|
||||||
case "off":
|
case "off":
|
||||||
tntMode = TNTMode.OFF;
|
requestedMode = TNTMode.OFF;
|
||||||
sendToActionBar(getDisableMessage());
|
requestedMessage = getDisableMessage();
|
||||||
return false;
|
break;
|
||||||
case "testblock":
|
case "testblock":
|
||||||
case "tb":
|
case "tb":
|
||||||
if (!Region.buildAreaEnabled()) break;
|
if (!Region.buildAreaEnabled()) break;
|
||||||
tntMode = TNTMode.ONLY_TB;
|
requestedMode = TNTMode.ONLY_TB;
|
||||||
sendToActionBar(getTestblockEnableMessage());
|
requestedMessage = getTestblockEnableMessage();
|
||||||
return false;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (tntMode) {
|
TNTMode finalRequestedMode = requestedMode;
|
||||||
|
String finalRequestedMessage = requestedMessage;
|
||||||
|
Region.getRegion(player.getLocation(), region -> {
|
||||||
|
if (finalRequestedMode != null) {
|
||||||
|
region.setTntMode(finalRequestedMode);
|
||||||
|
RegionToggleCommand.actionBar(region, finalRequestedMessage);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
switch (region.getTntMode()) {
|
||||||
case ON:
|
case ON:
|
||||||
case ONLY_TB:
|
case ONLY_TB:
|
||||||
tntMode = TNTMode.OFF;
|
region.setTntMode(TNTMode.OFF);
|
||||||
sendToActionBar(getDisableMessage());
|
RegionToggleCommand.actionBar(region, getDisableMessage());
|
||||||
break;
|
break;
|
||||||
case OFF:
|
case OFF:
|
||||||
if (Region.buildAreaEnabled()) {
|
if (Region.buildAreaEnabled()) {
|
||||||
tntMode = TNTMode.ONLY_TB;
|
region.setTntMode(TNTMode.ONLY_TB);
|
||||||
sendToActionBar(getTestblockEnableMessage());
|
RegionToggleCommand.actionBar(region, getTestblockEnableMessage());
|
||||||
} else {
|
} else {
|
||||||
tntMode = TNTMode.ON;
|
region.setTntMode(TNTMode.ON);
|
||||||
sendToActionBar(getEnableMessage());
|
RegionToggleCommand.actionBar(region, getEnableMessage());
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
}, () -> RegionToggleCommand.actionBar(player, getNoRegionMessage()));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@EventHandler
|
@EventHandler
|
||||||
public void onExplode(EntityExplodeEvent event) {
|
public void onExplode(EntityExplodeEvent event) {
|
||||||
switch (tntMode) {
|
event.blockList().removeIf(block -> {
|
||||||
case ON:
|
Region region = Region.getRegion(block.getLocation());
|
||||||
break;
|
if (region == null) return false;
|
||||||
case OFF:
|
if (region.getTntMode() == TNTMode.OFF) return true;
|
||||||
event.blockList().clear();
|
if (region.getTntMode() == TNTMode.ON) return false;
|
||||||
break;
|
|
||||||
case ONLY_TB:
|
|
||||||
boolean blocksDestroyed = event.blockList().removeIf(block -> {
|
|
||||||
for (Region region : Region.getRegions()) {
|
|
||||||
if (region.hasBuildRegion() && region.inBuildRegion(block.getLocation())) {
|
if (region.hasBuildRegion() && region.inBuildRegion(block.getLocation())) {
|
||||||
|
RegionToggleCommand.actionBar(region, getDamageMessage());
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
if (blocksDestroyed) {
|
|
||||||
sendToActionBar(getDamageMessage());
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void sendToActionBar(String message) {
|
|
||||||
Bukkit.getOnlinePlayers().forEach(p -> p.spigot().sendMessage(ChatMessageType.ACTION_BAR, TextComponent.fromLegacyText(message)));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -45,8 +45,11 @@ public class CommandTestblock implements CommandExecutor {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
for(Region region : Region.getRegions()){
|
Region region = Region.getRegion(player);
|
||||||
if(region.inRegion(player.getLocation()) && region.hasTestblock()){
|
if (region == null || !region.hasTestblock()) {
|
||||||
|
player.sendMessage(BauSystem.PREFIX + "§cDu befindest dich derzeit in keiner Region");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
try {
|
try {
|
||||||
Schematic schem = null;
|
Schematic schem = null;
|
||||||
if(args.length > 0){
|
if(args.length > 0){
|
||||||
@ -64,9 +67,4 @@ public class CommandTestblock implements CommandExecutor {
|
|||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
player.sendMessage(BauSystem.PREFIX + "§cDu befindest dich derzeit in keiner Region");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,83 @@
|
|||||||
|
/*
|
||||||
|
*
|
||||||
|
* This file is a part of the SteamWar software.
|
||||||
|
*
|
||||||
|
* Copyright (C) 2020 SteamWar.de-Serverteam
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero 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 Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
* /
|
||||||
|
*/
|
||||||
|
|
||||||
|
package de.steamwar.bausystem.commands;
|
||||||
|
|
||||||
|
import de.steamwar.bausystem.BauSystem;
|
||||||
|
import de.steamwar.bausystem.Permission;
|
||||||
|
import de.steamwar.bausystem.world.Region;
|
||||||
|
import de.steamwar.bausystem.world.Welt;
|
||||||
|
import net.md_5.bungee.api.ChatMessageType;
|
||||||
|
import net.md_5.bungee.api.chat.TextComponent;
|
||||||
|
import net.minecraft.server.v1_15_R1.BlockCactus;
|
||||||
|
import org.bukkit.Bukkit;
|
||||||
|
import org.bukkit.command.Command;
|
||||||
|
import org.bukkit.command.CommandExecutor;
|
||||||
|
import org.bukkit.command.CommandSender;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
import org.bukkit.event.Listener;
|
||||||
|
|
||||||
|
public abstract class RegionToggleCommand implements CommandExecutor, Listener {
|
||||||
|
|
||||||
|
RegionToggleCommand() {
|
||||||
|
Bukkit.getPluginManager().registerEvents(this, BauSystem.getPlugin());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
|
||||||
|
if(!(sender instanceof Player))
|
||||||
|
return false;
|
||||||
|
Player player = (Player) sender;
|
||||||
|
|
||||||
|
if (Welt.noPermission(player, Permission.world)){
|
||||||
|
player.sendMessage(BauSystem.PREFIX + getNoPermMessage());
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
Region.getRegion(player.getLocation(), region -> {
|
||||||
|
if (toggle(region)) {
|
||||||
|
actionBar(region, getEnableMessage());
|
||||||
|
} else {
|
||||||
|
actionBar(region, getDisableMessage());
|
||||||
|
}
|
||||||
|
}, () -> actionBar(player, getNoRegionMessage()));
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void actionBar(Region region, String s) {
|
||||||
|
Bukkit.getOnlinePlayers().stream().filter(player -> region.inRegion(player.getLocation())).forEach(player -> player.spigot().sendMessage(ChatMessageType.ACTION_BAR, TextComponent.fromLegacyText(s)));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void actionBar(Player player, String s) {
|
||||||
|
player.spigot().sendMessage(ChatMessageType.ACTION_BAR, TextComponent.fromLegacyText(s));
|
||||||
|
}
|
||||||
|
|
||||||
|
abstract String getNoRegionMessage();
|
||||||
|
abstract String getNoPermMessage();
|
||||||
|
abstract String getEnableMessage();
|
||||||
|
abstract String getDisableMessage();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@code true} for {@link #getEnableMessage()}, {@code false} for {@link #getDisableMessage()}
|
||||||
|
*/
|
||||||
|
abstract boolean toggle(Region region);
|
||||||
|
|
||||||
|
}
|
@ -1,87 +0,0 @@
|
|||||||
/*
|
|
||||||
This file is a part of the SteamWar software.
|
|
||||||
|
|
||||||
Copyright (C) 2020 SteamWar.de-Serverteam
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU Affero 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 Affero General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU Affero General Public License
|
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package de.steamwar.bausystem.commands;
|
|
||||||
|
|
||||||
import de.steamwar.bausystem.BauSystem;
|
|
||||||
import de.steamwar.bausystem.Permission;
|
|
||||||
import de.steamwar.bausystem.world.Welt;
|
|
||||||
import net.md_5.bungee.api.ChatMessageType;
|
|
||||||
import net.md_5.bungee.api.chat.TextComponent;
|
|
||||||
import org.bukkit.Bukkit;
|
|
||||||
import org.bukkit.command.Command;
|
|
||||||
import org.bukkit.command.CommandExecutor;
|
|
||||||
import org.bukkit.command.CommandSender;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
import org.bukkit.event.HandlerList;
|
|
||||||
import org.bukkit.event.Listener;
|
|
||||||
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
public abstract class ToggleCommand implements CommandExecutor, Listener {
|
|
||||||
|
|
||||||
private static Map<Class<? extends ToggleCommand>, Boolean> enabled = new HashMap<>();
|
|
||||||
private static Map<Class<? extends ToggleCommand>, ToggleCommand> instance = new HashMap<>();
|
|
||||||
|
|
||||||
ToggleCommand(boolean on){
|
|
||||||
enabled.put(getClass(), false);
|
|
||||||
if(on)
|
|
||||||
toggle();
|
|
||||||
instance.put(getClass(), this);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
|
|
||||||
if(!(sender instanceof Player))
|
|
||||||
return false;
|
|
||||||
Player player = (Player) sender;
|
|
||||||
|
|
||||||
if (Welt.noPermission(player, Permission.world)){
|
|
||||||
player.sendMessage(BauSystem.PREFIX + getNoPermMessage());
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
toggle();
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
static ToggleCommand getInstance(Class<? extends ToggleCommand> clazz){
|
|
||||||
return instance.get(clazz);
|
|
||||||
}
|
|
||||||
|
|
||||||
abstract String getNoPermMessage();
|
|
||||||
abstract String getEnableMessage();
|
|
||||||
abstract String getDisableMessage();
|
|
||||||
|
|
||||||
public boolean isOn(){
|
|
||||||
return enabled.get(getClass());
|
|
||||||
}
|
|
||||||
|
|
||||||
public void toggle(){
|
|
||||||
enabled.compute(getClass(), (clazz, value) -> !value);
|
|
||||||
if(enabled.get(getClass())){
|
|
||||||
Bukkit.getPluginManager().registerEvents(this, BauSystem.getPlugin());
|
|
||||||
Bukkit.getOnlinePlayers().forEach(player -> player.spigot().sendMessage(ChatMessageType.ACTION_BAR, TextComponent.fromLegacyText(getEnableMessage())));
|
|
||||||
}else{
|
|
||||||
HandlerList.unregisterAll(this);
|
|
||||||
Bukkit.getOnlinePlayers().forEach(player -> player.spigot().sendMessage(ChatMessageType.ACTION_BAR, TextComponent.fromLegacyText(getDisableMessage())));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -19,8 +19,6 @@
|
|||||||
|
|
||||||
package de.steamwar.bausystem.world;
|
package de.steamwar.bausystem.world;
|
||||||
|
|
||||||
import de.steamwar.bausystem.commands.CommandFreeze;
|
|
||||||
import de.steamwar.bausystem.commands.CommandTNT;
|
|
||||||
import de.steamwar.bausystem.commands.CommandTPSLimiter;
|
import de.steamwar.bausystem.commands.CommandTPSLimiter;
|
||||||
import de.steamwar.bausystem.tracer.record.RecordStateMachine;
|
import de.steamwar.bausystem.tracer.record.RecordStateMachine;
|
||||||
import de.steamwar.core.TPSWatcher;
|
import de.steamwar.core.TPSWatcher;
|
||||||
@ -61,8 +59,12 @@ public class BauScoreboard implements Listener {
|
|||||||
strings.add("§1");
|
strings.add("§1");
|
||||||
strings.add("§eUhrzeit§8: §7" + new SimpleDateFormat("HH:mm:ss").format(Calendar.getInstance().getTime()));
|
strings.add("§eUhrzeit§8: §7" + new SimpleDateFormat("HH:mm:ss").format(Calendar.getInstance().getTime()));
|
||||||
strings.add("§2");
|
strings.add("§2");
|
||||||
strings.add("§eTNT§8: " + CommandTNT.getTntMode().getName());
|
Region region = Region.getRegion(p);
|
||||||
strings.add("§eFreeze§8: " + (CommandFreeze.getInstance().isOn() ? "§aan" : "§caus"));
|
if (region != null) {
|
||||||
|
strings.add("§eTNT§8: " + region.getTntMode().getName());
|
||||||
|
strings.add("§eFreeze§8: " + (region.isFreeze() ? "§aan" : "§caus"));
|
||||||
|
strings.add("§eFire§8: " + (region.isFire() ? "§aaus" : "§can"));
|
||||||
|
}
|
||||||
strings.add("§eTrace§8: " + RecordStateMachine.getRecordStatus().getName());
|
strings.add("§eTrace§8: " + RecordStateMachine.getRecordStatus().getName());
|
||||||
strings.add("§eLoader§8: " + (AutoLoader.hasLoader(p) ? "§aan" : "§caus"));
|
strings.add("§eLoader§8: " + (AutoLoader.hasLoader(p) ? "§aan" : "§caus"));
|
||||||
|
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
package de.steamwar.bausystem.world;
|
package de.steamwar.bausystem.world;
|
||||||
|
|
||||||
import com.sk89q.worldedit.extent.clipboard.Clipboard;
|
import com.sk89q.worldedit.extent.clipboard.Clipboard;
|
||||||
|
import de.steamwar.bausystem.commands.CommandTNT.TNTMode;
|
||||||
import de.steamwar.core.Core;
|
import de.steamwar.core.Core;
|
||||||
import de.steamwar.sql.NoClipboardException;
|
import de.steamwar.sql.NoClipboardException;
|
||||||
import de.steamwar.sql.Schematic;
|
import de.steamwar.sql.Schematic;
|
||||||
@ -28,10 +29,12 @@ import org.bukkit.Location;
|
|||||||
import org.bukkit.configuration.ConfigurationSection;
|
import org.bukkit.configuration.ConfigurationSection;
|
||||||
import org.bukkit.configuration.InvalidConfigurationException;
|
import org.bukkit.configuration.InvalidConfigurationException;
|
||||||
import org.bukkit.configuration.file.YamlConfiguration;
|
import org.bukkit.configuration.file.YamlConfiguration;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
|
import java.util.function.Consumer;
|
||||||
import java.util.logging.Level;
|
import java.util.logging.Level;
|
||||||
|
|
||||||
public class Region {
|
public class Region {
|
||||||
@ -39,10 +42,6 @@ public class Region {
|
|||||||
private static final List<Region> regions = new ArrayList<>();
|
private static final List<Region> regions = new ArrayList<>();
|
||||||
private static boolean buildArea = false;
|
private static boolean buildArea = false;
|
||||||
|
|
||||||
public static boolean buildAreaEnabled() {
|
|
||||||
return buildArea;
|
|
||||||
}
|
|
||||||
|
|
||||||
static{
|
static{
|
||||||
YamlConfiguration config = new YamlConfiguration();
|
YamlConfiguration config = new YamlConfiguration();
|
||||||
try {
|
try {
|
||||||
@ -64,23 +63,125 @@ public class Region {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static boolean buildAreaEnabled() {
|
||||||
|
return buildArea;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Region getRegion(Player player) {
|
||||||
|
return getRegion(player.getLocation());
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Region getRegion(Location location) {
|
||||||
|
for (Region region : regions) {
|
||||||
|
if (region.inRegion(location)) return region;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void getRegion(Location location, Consumer<Region> regionConsumer) {
|
||||||
|
getRegion(location, regionConsumer, () -> {});
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void getRegion(Location location, Consumer<Region> regionConsumer, Runnable noRegion) {
|
||||||
|
boolean b = true;
|
||||||
|
for (Region region : regions) {
|
||||||
|
if (region.inRegion(location)) {
|
||||||
|
regionConsumer.accept(region);
|
||||||
|
b = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (b) {
|
||||||
|
noRegion.run();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static List<Region> getRegions(){
|
public static List<Region> getRegions(){
|
||||||
return regions;
|
return regions;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static Region getRegionByName(String name) {
|
||||||
|
for (Region region : regions) {
|
||||||
|
if (region.name.equals(name)) return region;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
private final String name;
|
||||||
private final int minX;
|
private final int minX;
|
||||||
private final int minY;
|
private final int minY;
|
||||||
private final int minZ;
|
private final int minZ;
|
||||||
private final Prototype prototype;
|
private final Prototype prototype;
|
||||||
|
private final String optionsLinkedWith; // nullable
|
||||||
|
private Region linkedRegion = null; // nullable
|
||||||
|
|
||||||
|
private TNTMode tntMode = Region.buildAreaEnabled() ? TNTMode.ONLY_TB : TNTMode.OFF;
|
||||||
|
private boolean freeze = false;
|
||||||
|
private boolean fire = false;
|
||||||
|
|
||||||
private Region(ConfigurationSection config){
|
private Region(ConfigurationSection config){
|
||||||
|
name = config.getName();
|
||||||
minX = config.getInt("minX");
|
minX = config.getInt("minX");
|
||||||
minY = config.getInt("minY");
|
minY = config.getInt("minY");
|
||||||
minZ = config.getInt("minZ");
|
minZ = config.getInt("minZ");
|
||||||
prototype = Prototype.prototypes.get(config.getString("prototype"));
|
prototype = Prototype.prototypes.get(config.getString("prototype"));
|
||||||
|
optionsLinkedWith = config.getString("optionsLinkedWith", null);
|
||||||
regions.add(this);
|
regions.add(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void link() {
|
||||||
|
if (optionsLinkedWith != null && linkedRegion == null) {
|
||||||
|
linkedRegion = getRegionByName(optionsLinkedWith);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public TNTMode getTntMode() {
|
||||||
|
return tntMode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTntMode(TNTMode tntMode) {
|
||||||
|
this.tntMode = tntMode;
|
||||||
|
link();
|
||||||
|
if (linkedRegion != null) {
|
||||||
|
linkedRegion.setTntModeOther(tntMode);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void setTntModeOther(TNTMode tntMode) {
|
||||||
|
this.tntMode = tntMode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isFreeze() {
|
||||||
|
return freeze;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFreeze(boolean freeze) {
|
||||||
|
this.freeze = freeze;
|
||||||
|
link();
|
||||||
|
if (linkedRegion != null) {
|
||||||
|
linkedRegion.setFreezeOther(freeze);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFreezeOther(boolean freeze) {
|
||||||
|
this.freeze = freeze;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isFire() {
|
||||||
|
return fire;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFire(boolean fire) {
|
||||||
|
this.fire = fire;
|
||||||
|
link();
|
||||||
|
if (linkedRegion != null) {
|
||||||
|
linkedRegion.setFireOther(fire);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFireOther(boolean fire) {
|
||||||
|
this.fire = fire;
|
||||||
|
}
|
||||||
|
|
||||||
public boolean inRegion(Location l){
|
public boolean inRegion(Location l){
|
||||||
return prototype.inRegion(this, l);
|
return prototype.inRegion(this, l);
|
||||||
}
|
}
|
||||||
|
@ -20,8 +20,6 @@
|
|||||||
package de.steamwar.bausystem.world;
|
package de.steamwar.bausystem.world;
|
||||||
|
|
||||||
import de.steamwar.bausystem.BauSystem;
|
import de.steamwar.bausystem.BauSystem;
|
||||||
import de.steamwar.bausystem.commands.CommandFire;
|
|
||||||
import de.steamwar.bausystem.commands.CommandFreeze;
|
|
||||||
import de.steamwar.bausystem.commands.CommandScript;
|
import de.steamwar.bausystem.commands.CommandScript;
|
||||||
import de.steamwar.bausystem.commands.CommandTNT;
|
import de.steamwar.bausystem.commands.CommandTNT;
|
||||||
import de.steamwar.bausystem.tracer.record.RecordStateMachine;
|
import de.steamwar.bausystem.tracer.record.RecordStateMachine;
|
||||||
@ -153,6 +151,8 @@ public class ScriptListener implements Listener {
|
|||||||
index = ifJumpIndex;
|
index = ifJumpIndex;
|
||||||
}
|
}
|
||||||
continue;
|
continue;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
PlayerCommandPreprocessEvent preprocessEvent = new PlayerCommandPreprocessEvent(player, "/" + command);
|
PlayerCommandPreprocessEvent preprocessEvent = new PlayerCommandPreprocessEvent(player, "/" + command);
|
||||||
@ -235,6 +235,8 @@ public class ScriptListener implements Listener {
|
|||||||
case "--":
|
case "--":
|
||||||
add(scriptExecutor, args[0], -1);
|
add(scriptExecutor, args[0], -1);
|
||||||
return;
|
return;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
setValue(scriptExecutor, args[0], args[1]);
|
setValue(scriptExecutor, args[0], args[1]);
|
||||||
}
|
}
|
||||||
@ -280,18 +282,20 @@ public class ScriptListener implements Listener {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private static int getValue(ScriptExecutor scriptExecutor, String key) {
|
private static int getValue(ScriptExecutor scriptExecutor, String key) {
|
||||||
|
Region region = Region.getRegion(scriptExecutor.player);
|
||||||
switch (key) {
|
switch (key) {
|
||||||
case "trace":
|
case "trace":
|
||||||
return RecordStateMachine.getRecordStatus().isTracing() ? 1 : 0;
|
return RecordStateMachine.getRecordStatus().isTracing() ? 1 : 0;
|
||||||
case "tnt":
|
case "tnt":
|
||||||
return CommandTNT.getTntMode() == CommandTNT.TNTMode.OFF ? 0 : 1;
|
return region == null || region.getTntMode() == CommandTNT.TNTMode.OFF ? 0 : 1;
|
||||||
case "freeze":
|
case "freeze":
|
||||||
return CommandFreeze.getInstance().isOn() ? 1 : 0;
|
return region == null || !region.isFreeze() ? 0 : 1;
|
||||||
case "fire":
|
case "fire":
|
||||||
return CommandFire.getInstance().isOn() ? 1 : 0;
|
return region == null || !region.isFire() ? 0 : 1;
|
||||||
}
|
default:
|
||||||
return scriptExecutor.variables.getOrDefault(key, 0);
|
return scriptExecutor.variables.getOrDefault(key, 0);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private static boolean isVariable(ScriptExecutor scriptExecutor, String key) {
|
private static boolean isVariable(ScriptExecutor scriptExecutor, String key) {
|
||||||
switch (key) {
|
switch (key) {
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren