QOL #203
@ -1,40 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file is a part of the SteamWar software.
|
|
||||||
*
|
|
||||||
* Copyright (C) 2022 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.linkage.types;
|
|
||||||
|
|
||||||
import de.steamwar.linkage.LinkageType;
|
|
||||||
import de.steamwar.linkage.plan.BuildPlan;
|
|
||||||
import de.steamwar.linkage.plan.MethodBuilder;
|
|
||||||
|
|
||||||
import javax.lang.model.element.TypeElement;
|
|
||||||
|
|
||||||
public class SmartPlaceBehaviour_GENERIC implements LinkageType {
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String method() {
|
|
||||||
return "linkSmartPlace";
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void generateCode(BuildPlan buildPlan, MethodBuilder methodBuilder, String s, TypeElement typeElement) {
|
|
||||||
buildPlan.addImport("de.steamwar.bausystem.features.smartplace.SmartPlaceListener");
|
|
||||||
methodBuilder.addLine("SmartPlaceListener.add(" + s + ");");
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,45 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file is a part of the SteamWar software.
|
|
||||||
*
|
|
||||||
* Copyright (C) 2021 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.features.smartplace;
|
|
||||||
|
|
||||||
import org.bukkit.event.block.BlockPlaceEvent;
|
|
||||||
import org.bukkit.event.player.PlayerInteractEvent;
|
|
||||||
|
|
||||||
public interface SmartPlaceBehaviour {
|
|
||||||
|
|
||||||
enum SmartPlaceResult {
|
|
||||||
APPLIED,
|
|
||||||
IGNORED
|
|
||||||
}
|
|
||||||
|
|
||||||
enum SmartPlaceType {
|
|
||||||
PLACE,
|
|
||||||
INTERACT_DIRECT, // Before checking if block is interacteable
|
|
||||||
INTERACT_INDIRECT, // After checking if block is interacteable
|
|
||||||
}
|
|
||||||
|
|
||||||
SmartPlaceType getType();
|
|
||||||
default SmartPlaceResult place(BlockPlaceEvent event) {
|
|
||||||
return SmartPlaceResult.IGNORED;
|
|
||||||
}
|
|
||||||
default SmartPlaceResult interact(PlayerInteractEvent event) {
|
|
||||||
return SmartPlaceResult.IGNORED;
|
|
||||||
}
|
|
||||||
}
|
|
@ -20,82 +20,81 @@
|
|||||||
package de.steamwar.bausystem.features.smartplace;
|
package de.steamwar.bausystem.features.smartplace;
|
||||||
|
|
||||||
import de.steamwar.bausystem.configplayer.Config;
|
import de.steamwar.bausystem.configplayer.Config;
|
||||||
import de.steamwar.bausystem.linkage.LinkageUtils;
|
import de.steamwar.bausystem.utils.PlaceItemUtils;
|
||||||
import de.steamwar.linkage.Linked;
|
import de.steamwar.linkage.Linked;
|
||||||
|
import org.bukkit.Bukkit;
|
||||||
import org.bukkit.GameMode;
|
import org.bukkit.GameMode;
|
||||||
|
import org.bukkit.Material;
|
||||||
|
import org.bukkit.SoundGroup;
|
||||||
|
import org.bukkit.block.Block;
|
||||||
import org.bukkit.block.data.BlockData;
|
import org.bukkit.block.data.BlockData;
|
||||||
import org.bukkit.block.data.Directional;
|
import org.bukkit.block.data.type.Repeater;
|
||||||
import org.bukkit.block.data.Rotatable;
|
import org.bukkit.block.data.type.Sign;
|
||||||
|
import org.bukkit.block.data.type.Switch;
|
||||||
import org.bukkit.event.EventHandler;
|
import org.bukkit.event.EventHandler;
|
||||||
|
import org.bukkit.event.EventPriority;
|
||||||
import org.bukkit.event.Listener;
|
import org.bukkit.event.Listener;
|
||||||
import org.bukkit.event.block.Action;
|
import org.bukkit.event.block.Action;
|
||||||
import org.bukkit.event.block.BlockPlaceEvent;
|
import org.bukkit.event.block.BlockBreakEvent;
|
||||||
import org.bukkit.event.player.PlayerInteractEvent;
|
import org.bukkit.event.player.PlayerInteractEvent;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
@Linked
|
@Linked
|
||||||
public class SmartPlaceListener implements Listener {
|
public class SmartPlaceListener implements Listener {
|
||||||
|
|
||||||
private static List<SmartPlaceBehaviour> smartPlaceBehaviours = new ArrayList<>();
|
@EventHandler(priority = EventPriority.HIGHEST)
|
||||||
|
|
||||||
public static void add(SmartPlaceBehaviour smartPlaceBehaviour) {
|
|
||||||
smartPlaceBehaviours.add(smartPlaceBehaviour);
|
|
||||||
}
|
|
||||||
|
|
||||||
@EventHandler
|
|
||||||
public void onBlockPlace(BlockPlaceEvent event) {
|
|
||||||
if (!Config.getInstance().get(event.getPlayer()).getPlainValueOrDefault("smartPlace", false)) return;
|
|
||||||
if (smartPlaceBehaviours.isEmpty()) LinkageUtils.linkSmartPlace();
|
|
||||||
SmartPlaceBehaviour.SmartPlaceResult smartPlaceResult = SmartPlaceBehaviour.SmartPlaceResult.IGNORED;
|
|
||||||
for (SmartPlaceBehaviour smartPlaceBehaviour : smartPlaceBehaviours) {
|
|
||||||
if (smartPlaceBehaviour.getType() == SmartPlaceBehaviour.SmartPlaceType.PLACE) {
|
|
||||||
smartPlaceResult = smartPlaceBehaviour.place(event);
|
|
||||||
}
|
|
||||||
if (smartPlaceResult == SmartPlaceBehaviour.SmartPlaceResult.APPLIED) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@EventHandler
|
|
||||||
public void onPlayerInteract(PlayerInteractEvent event) {
|
public void onPlayerInteract(PlayerInteractEvent event) {
|
||||||
if (!Config.getInstance().get(event.getPlayer()).getPlainValueOrDefault("smartPlace", false)) return;
|
if (!Config.getInstance().get(event.getPlayer()).getPlainValueOrDefault("smartPlace", false)) return;
|
||||||
if (smartPlaceBehaviours.isEmpty()) LinkageUtils.linkSmartPlace();
|
|
||||||
if (event.getAction() != Action.RIGHT_CLICK_BLOCK) return;
|
if (event.getAction() != Action.RIGHT_CLICK_BLOCK) return;
|
||||||
if (event.getPlayer().getGameMode() == GameMode.SPECTATOR) return;
|
if (event.getPlayer().getGameMode() == GameMode.SPECTATOR) return;
|
||||||
|
|
||||||
for (SmartPlaceBehaviour smartPlaceBehaviour : smartPlaceBehaviours) {
|
boolean shouldRotate = event.getPlayer().isSneaking();
|
||||||
SmartPlaceBehaviour.SmartPlaceResult smartPlaceResult = SmartPlaceBehaviour.SmartPlaceResult.IGNORED;
|
Material blockType = event.getClickedBlock().getType();
|
||||||
if (smartPlaceBehaviour.getType() == SmartPlaceBehaviour.SmartPlaceType.INTERACT_DIRECT) {
|
switch (blockType) {
|
||||||
smartPlaceResult = smartPlaceBehaviour.interact(event);
|
case REPEATER:
|
||||||
}
|
if (shouldRotate && (event.getItem() == null || event.getItem().getType() == Material.REPEATER)) {
|
||||||
if (smartPlaceResult == SmartPlaceBehaviour.SmartPlaceResult.APPLIED) {
|
Repeater repeater = (Repeater) event.getClickedBlock().getBlockData();
|
||||||
|
int i = repeater.getDelay() - 1;
|
||||||
|
if (i <= 0) i += 4;
|
||||||
|
repeater.setDelay(i);
|
||||||
|
event.getClickedBlock().setBlockData(repeater);
|
||||||
|
event.setCancelled(true);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
BlockData blockData = event.getClickedBlock().getBlockData();
|
||||||
|
if (blockData instanceof Switch) {
|
||||||
|
if (!shouldRotate && (event.getItem() == null || event.getItem().getType() == event.getClickedBlock().getType())) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
shouldRotate = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!event.getClickedBlock().getType().isInteractable()) return;
|
PlaceItemUtils.PlaceItemResult result = PlaceItemUtils.placeItem(event.getPlayer(), event.getItem(), event.getClickedBlock(), event.getBlockFace(), event.getHand(), true, false, shouldRotate, false);
|
||||||
if (event.getItem() == null) return;
|
if (result.isSuccess()) {
|
||||||
if (!event.getMaterial().isBlock()) return;
|
event.setCancelled(true);
|
||||||
try {
|
Block block = event.getClickedBlock().getRelative(event.getBlockFace());
|
||||||
BlockData blockData = event.getItem().getType().createBlockData();
|
SoundGroup soundGroup = block.getBlockData().getSoundGroup();
|
||||||
if (!(blockData instanceof Directional) && !(blockData instanceof Rotatable)) {
|
Bukkit.getOnlinePlayers().forEach(player -> {
|
||||||
return;
|
if (!(event.getClickedBlock().getBlockData() instanceof Sign) && player == event.getPlayer()) {
|
||||||
}
|
return;
|
||||||
} catch (Exception e) {
|
}
|
||||||
return;
|
player.playSound(block.getLocation(), soundGroup.getPlaceSound(), soundGroup.getVolume() * 0.8F, soundGroup.getPitch() * 0.8F);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
// Fix Double sound for original player
|
||||||
|
}
|
||||||
|
|
||||||
for (SmartPlaceBehaviour smartPlaceBehaviour : smartPlaceBehaviours) {
|
@EventHandler
|
||||||
SmartPlaceBehaviour.SmartPlaceResult smartPlaceResult = SmartPlaceBehaviour.SmartPlaceResult.IGNORED;
|
public void onBlockBreak(BlockBreakEvent event) {
|
||||||
if (smartPlaceBehaviour.getType() == SmartPlaceBehaviour.SmartPlaceType.INTERACT_INDIRECT) {
|
if (!Config.getInstance().get(event.getPlayer()).getPlainValueOrDefault("smartPlace", false)) return;
|
||||||
smartPlaceResult = smartPlaceBehaviour.interact(event);
|
if (!event.getPlayer().isSneaking()) return;
|
||||||
}
|
event.setCancelled(true);
|
||||||
if (smartPlaceResult == SmartPlaceBehaviour.SmartPlaceResult.APPLIED) {
|
event.getBlock().setType(Material.AIR, false);
|
||||||
return;
|
|
||||||
}
|
SoundGroup soundGroup = event.getBlock().getBlockData().getSoundGroup();
|
||||||
}
|
Bukkit.getOnlinePlayers().forEach(player -> {
|
||||||
|
if (player == event.getPlayer()) return;
|
||||||
|
player.playSound(event.getBlock().getLocation(), soundGroup.getBreakSound(), soundGroup.getVolume() * 0.8F, soundGroup.getPitch() * 0.8F);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,63 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file is a part of the SteamWar software.
|
|
||||||
*
|
|
||||||
* Copyright (C) 2021 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.features.smartplace.behaviour;
|
|
||||||
|
|
||||||
import de.steamwar.bausystem.features.smartplace.SmartPlaceBehaviour;
|
|
||||||
import de.steamwar.linkage.Linked;
|
|
||||||
import org.bukkit.block.Block;
|
|
||||||
import org.bukkit.block.BlockFace;
|
|
||||||
import org.bukkit.block.data.BlockData;
|
|
||||||
import org.bukkit.block.data.Directional;
|
|
||||||
import org.bukkit.block.data.Rotatable;
|
|
||||||
import org.bukkit.event.block.BlockPlaceEvent;
|
|
||||||
|
|
||||||
@Linked
|
|
||||||
public class BlockPlaceBehaviour implements SmartPlaceBehaviour {
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public SmartPlaceType getType() {
|
|
||||||
return SmartPlaceType.PLACE;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public SmartPlaceResult place(BlockPlaceEvent event) {
|
|
||||||
if (!event.getPlayer().isSneaking()) {
|
|
||||||
return SmartPlaceResult.IGNORED;
|
|
||||||
}
|
|
||||||
|
|
||||||
SmartPlaceResult smartPlaceResult = SmartPlaceResult.IGNORED;
|
|
||||||
Block block = event.getBlockPlaced();
|
|
||||||
BlockData blockData = block.getBlockData();
|
|
||||||
if (blockData instanceof Directional) {
|
|
||||||
Directional directional = (Directional) blockData;
|
|
||||||
BlockFace blockFace = directional.getFacing().getOppositeFace();
|
|
||||||
if (directional.getFaces().contains(blockFace)) {
|
|
||||||
directional.setFacing(blockFace);
|
|
||||||
}
|
|
||||||
smartPlaceResult = SmartPlaceResult.APPLIED;
|
|
||||||
} else if (blockData instanceof Rotatable) {
|
|
||||||
Rotatable rotatable = (Rotatable) blockData;
|
|
||||||
rotatable.setRotation(rotatable.getRotation().getOppositeFace());
|
|
||||||
smartPlaceResult = SmartPlaceResult.APPLIED;
|
|
||||||
}
|
|
||||||
block.setBlockData(blockData);
|
|
||||||
return smartPlaceResult;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,84 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file is a part of the SteamWar software.
|
|
||||||
*
|
|
||||||
* Copyright (C) 2021 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.features.smartplace.behaviour;
|
|
||||||
|
|
||||||
import de.steamwar.bausystem.features.smartplace.SmartPlaceBehaviour;
|
|
||||||
import de.steamwar.linkage.Linked;
|
|
||||||
import org.bukkit.Material;
|
|
||||||
import org.bukkit.World;
|
|
||||||
import org.bukkit.block.Block;
|
|
||||||
import org.bukkit.block.BlockFace;
|
|
||||||
import org.bukkit.block.data.BlockData;
|
|
||||||
import org.bukkit.block.data.Directional;
|
|
||||||
import org.bukkit.block.data.Rotatable;
|
|
||||||
import org.bukkit.event.Event;
|
|
||||||
import org.bukkit.event.player.PlayerInteractEvent;
|
|
||||||
import org.bukkit.inventory.InventoryHolder;
|
|
||||||
|
|
||||||
@Linked
|
|
||||||
public class BlockRotatingBehaviour implements SmartPlaceBehaviour {
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public SmartPlaceType getType() {
|
|
||||||
return SmartPlaceType.INTERACT_INDIRECT;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public SmartPlaceResult interact(PlayerInteractEvent event) {
|
|
||||||
if (!(event.getClickedBlock().getState() instanceof InventoryHolder)) {
|
|
||||||
return SmartPlaceResult.IGNORED;
|
|
||||||
}
|
|
||||||
|
|
||||||
BlockData blockData = event.getMaterial().createBlockData();
|
|
||||||
if (!(blockData instanceof Directional) && !(blockData instanceof Rotatable)) {
|
|
||||||
return SmartPlaceResult.IGNORED;
|
|
||||||
}
|
|
||||||
|
|
||||||
event.setUseInteractedBlock(Event.Result.DENY);
|
|
||||||
World world = event.getPlayer().getWorld();
|
|
||||||
Block block = world.getBlockAt(event.getClickedBlock().getX() + event.getBlockFace().getModX(), event.getClickedBlock().getY() + event.getBlockFace().getModY(), event.getClickedBlock().getZ() + event.getBlockFace().getModZ());
|
|
||||||
if (!block.getType().isAir()) {
|
|
||||||
return SmartPlaceResult.IGNORED;
|
|
||||||
}
|
|
||||||
block.setType(event.getMaterial());
|
|
||||||
blockData = event.getItem().getType().createBlockData();
|
|
||||||
BlockFace blockFace = event.getBlockFace();
|
|
||||||
if ((blockFace == BlockFace.UP || blockFace == BlockFace.DOWN) && blockData instanceof Directional) {
|
|
||||||
blockFace = event.getPlayer().getFacing().getOppositeFace();
|
|
||||||
}
|
|
||||||
if (block.getType() == Material.HOPPER || block.getType() == Material.OBSERVER) {
|
|
||||||
blockFace = blockFace.getOppositeFace();
|
|
||||||
}
|
|
||||||
if (blockData instanceof Directional) {
|
|
||||||
Directional directional = (Directional) blockData;
|
|
||||||
if (directional.getFaces().contains(blockFace)) {
|
|
||||||
directional.setFacing(blockFace);
|
|
||||||
}
|
|
||||||
} else if (blockData instanceof Rotatable) {
|
|
||||||
try {
|
|
||||||
((Rotatable) blockData).setRotation(blockFace);
|
|
||||||
} catch (Exception e) {
|
|
||||||
// Ignore
|
|
||||||
}
|
|
||||||
}
|
|
||||||
block.setBlockData(blockData);
|
|
||||||
return SmartPlaceResult.APPLIED;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,54 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file is a part of the SteamWar software.
|
|
||||||
*
|
|
||||||
* Copyright (C) 2021 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.features.smartplace.behaviour;
|
|
||||||
|
|
||||||
import de.steamwar.bausystem.features.smartplace.SmartPlaceBehaviour;
|
|
||||||
import de.steamwar.linkage.Linked;
|
|
||||||
import org.bukkit.Material;
|
|
||||||
import org.bukkit.block.data.type.Repeater;
|
|
||||||
import org.bukkit.event.player.PlayerInteractEvent;
|
|
||||||
|
|
||||||
@Linked
|
|
||||||
public class ReverseRepeaterBehaviour implements SmartPlaceBehaviour {
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public SmartPlaceType getType() {
|
|
||||||
return SmartPlaceType.INTERACT_DIRECT;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public SmartPlaceResult interact(PlayerInteractEvent event) {
|
|
||||||
if (event.getPlayer().isSneaking()) {
|
|
||||||
if (event.getClickedBlock().getType() == Material.REPEATER) {
|
|
||||||
if (event.getItem() != null && event.getMaterial() != Material.REPEATER) {
|
|
||||||
return SmartPlaceResult.APPLIED;
|
|
||||||
}
|
|
||||||
Repeater repeater = (Repeater) event.getClickedBlock().getBlockData();
|
|
||||||
int i = repeater.getDelay() - 1;
|
|
||||||
if (i <= 0) i += 4;
|
|
||||||
repeater.setDelay(i);
|
|
||||||
event.getClickedBlock().setBlockData(repeater);
|
|
||||||
event.setCancelled(true);
|
|
||||||
}
|
|
||||||
return SmartPlaceResult.APPLIED;
|
|
||||||
}
|
|
||||||
return SmartPlaceResult.IGNORED;
|
|
||||||
}
|
|
||||||
}
|
|
@ -67,7 +67,7 @@ public class SignEditFrom20 implements Listener {
|
|||||||
public void editSign(PlayerInteractEvent event) {
|
public void editSign(PlayerInteractEvent event) {
|
||||||
if (event.getClickedBlock() == null || !event.getClickedBlock().getType().name().contains("SIGN")) return;
|
if (event.getClickedBlock() == null || !event.getClickedBlock().getType().name().contains("SIGN")) return;
|
||||||
if (event.getAction() == Action.RIGHT_CLICK_BLOCK && !event.getPlayer().isSneaking()) {
|
if (event.getAction() == Action.RIGHT_CLICK_BLOCK && !event.getPlayer().isSneaking()) {
|
||||||
PlaceItemUtils.placeItem(event.getPlayer(), event.getItem(), event.getClickedBlock(), event.getBlockFace(), event.getHand(), false, true, false);
|
PlaceItemUtils.placeItem(event.getPlayer(), event.getItem(), event.getClickedBlock(), event.getBlockFace(), event.getHand(), false, true, false, true);
|
||||||
event.setCancelled(true);
|
event.setCancelled(true);
|
||||||
}
|
}
|
||||||
if (!event.getPlayer().isSneaking()) return;
|
if (!event.getPlayer().isSneaking()) return;
|
||||||
|
@ -83,8 +83,10 @@ public class PlaceItemUtils {
|
|||||||
* @param force allow illegal states to be created by placing the block
|
* @param force allow illegal states to be created by placing the block
|
||||||
* @param applyPhysics apply physics while placing the block
|
* @param applyPhysics apply physics while placing the block
|
||||||
* @param rotateAway rotate everything in the opposite direction, so a block facing the Player will face away, and the other way round
|
* @param rotateAway rotate everything in the opposite direction, so a block facing the Player will face away, and the other way round
|
||||||
|
* @param playSound enables sound of placing
|
||||||
*/
|
*/
|
||||||
public PlaceItemResult placeItem(Player player, ItemStack itemStack, Block against, BlockFace againstSide, EquipmentSlot hand, boolean force, boolean applyPhysics, boolean rotateAway) {
|
public PlaceItemResult placeItem(Player player, ItemStack itemStack, Block against, BlockFace againstSide, EquipmentSlot hand, boolean force, boolean applyPhysics, boolean rotateAway, boolean playSound) {
|
||||||
|
// TODO: Place inside of player
|
||||||
// If the ItemStack is null or air we cannot place it
|
// If the ItemStack is null or air we cannot place it
|
||||||
if (itemStack == null) return PlaceItemResult.NO_ITEM_HELD;
|
if (itemStack == null) return PlaceItemResult.NO_ITEM_HELD;
|
||||||
if (itemStack.getType().isAir()) return PlaceItemResult.NO_ITEM_HELD;
|
if (itemStack.getType().isAir()) return PlaceItemResult.NO_ITEM_HELD;
|
||||||
@ -137,16 +139,6 @@ public class PlaceItemUtils {
|
|||||||
return PlaceItemResult.NO_VALID_PLACEMENT;
|
return PlaceItemResult.NO_VALID_PLACEMENT;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (blockData instanceof Switch) {
|
|
||||||
// Levers and Buttons are always Rotated the other way
|
|
||||||
Switch switchType = (Switch) blockData;
|
|
||||||
switch (switchType.getAttachedFace()) {
|
|
||||||
case FLOOR:
|
|
||||||
case CEILING:
|
|
||||||
switchType.setFacing(switchType.getFacing().getOppositeFace());
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (blockData == null) return PlaceItemResult.NO_BLOCK_ITEM_HELD;
|
if (blockData == null) return PlaceItemResult.NO_BLOCK_ITEM_HELD;
|
||||||
@ -202,6 +194,13 @@ public class PlaceItemUtils {
|
|||||||
} else {
|
} else {
|
||||||
switchType.setFacing(againstSide);
|
switchType.setFacing(againstSide);
|
||||||
}
|
}
|
||||||
|
// Levers and Buttons are always Rotated the other way
|
||||||
|
switch (switchType.getAttachedFace()) {
|
||||||
|
case FLOOR:
|
||||||
|
case CEILING:
|
||||||
|
switchType.setFacing(switchType.getFacing().getOppositeFace());
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (blockData instanceof RedstoneWire) {
|
if (blockData instanceof RedstoneWire) {
|
||||||
@ -299,9 +298,11 @@ public class PlaceItemUtils {
|
|||||||
skull.update(true, false);
|
skull.update(true, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Play the corresponding sound of placing the now placed Block
|
if (playSound) {
|
||||||
SoundGroup soundGroup = blockData.getSoundGroup();
|
// Play the corresponding sound of placing the now placed Block
|
||||||
block.getWorld().playSound(block.getLocation(), soundGroup.getPlaceSound(), soundGroup.getVolume() * 0.8F, soundGroup.getPitch() * 0.8F);
|
SoundGroup soundGroup = blockData.getSoundGroup();
|
||||||
|
block.getWorld().playSound(block.getLocation(), soundGroup.getPlaceSound(), soundGroup.getVolume() * 0.8F, soundGroup.getPitch() * 0.8F);
|
||||||
|
}
|
||||||
return PlaceItemResult.SUCCESS;
|
return PlaceItemResult.SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren