2021-08-31 10:42:42 +02:00
|
|
|
/*
|
|
|
|
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.fightsystem.utils;
|
|
|
|
|
2021-09-28 13:08:10 +02:00
|
|
|
import com.comphenix.tinyprotocol.Reflection;
|
2021-08-31 12:09:34 +02:00
|
|
|
import de.steamwar.fightsystem.listener.Recording;
|
|
|
|
import de.steamwar.fightsystem.record.GlobalRecorder;
|
2021-09-28 13:08:10 +02:00
|
|
|
import de.steamwar.fightsystem.record.REntity;
|
2021-08-31 10:42:42 +02:00
|
|
|
import net.md_5.bungee.api.chat.BaseComponent;
|
|
|
|
import net.minecraft.server.v1_8_R3.ChatComponentText;
|
|
|
|
import net.minecraft.server.v1_8_R3.PacketPlayOutChat;
|
2021-09-28 13:08:10 +02:00
|
|
|
import net.royawesome.jlibnoise.MathHelper;
|
2021-08-31 12:09:34 +02:00
|
|
|
import org.bukkit.Effect;
|
|
|
|
import org.bukkit.Location;
|
2021-08-31 10:42:42 +02:00
|
|
|
import org.bukkit.Material;
|
2021-08-31 12:09:34 +02:00
|
|
|
import org.bukkit.World;
|
2021-08-31 10:42:42 +02:00
|
|
|
import org.bukkit.craftbukkit.v1_8_R3.entity.CraftPlayer;
|
|
|
|
import org.bukkit.entity.Player;
|
2021-08-31 11:19:56 +02:00
|
|
|
import org.bukkit.event.Listener;
|
2021-08-31 10:42:42 +02:00
|
|
|
import org.bukkit.scoreboard.Team;
|
|
|
|
|
2021-09-28 13:08:10 +02:00
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.Map;
|
|
|
|
import java.util.UUID;
|
|
|
|
|
2021-08-31 10:42:42 +02:00
|
|
|
public class BountifulWrapper8 implements BountifulWrapper.IBountifulWrapper {
|
2021-09-18 14:30:32 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean mainHand(Object packet) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-08-31 10:42:42 +02:00
|
|
|
@Override
|
2021-09-18 14:30:32 +02:00
|
|
|
public boolean bowInHand(boolean mainHand, Player p) {
|
2021-08-31 10:42:42 +02:00
|
|
|
return p.getInventory().getItemInHand().getType() == Material.BOW;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void toActionbar(Player player, BaseComponent... components) {
|
|
|
|
PacketPlayOutChat packet = new PacketPlayOutChat(new ChatComponentText(BaseComponent.toLegacyText(components)), (byte)2);
|
|
|
|
((CraftPlayer) player).getHandle().playerConnection.sendPacket(packet);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void toChat(Player player, BaseComponent... components) {
|
|
|
|
PacketPlayOutChat packet = new PacketPlayOutChat(new ChatComponentText(BaseComponent.toLegacyText(components)), (byte)0);
|
|
|
|
((CraftPlayer) player).getHandle().playerConnection.sendPacket(packet);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void setAttackSpeed(Player player) {
|
|
|
|
// nothing to do
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void setNametagVisibility(Team team) {
|
|
|
|
//nothing to do
|
|
|
|
}
|
2021-08-31 11:19:56 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public Listener newDenyArrowPickupListener() {
|
|
|
|
return new Listener() {};
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Listener newDenyHandSwapListener() {
|
|
|
|
return new Listener() {};
|
|
|
|
}
|
2021-08-31 12:09:34 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void recordHandItems(Player player) {
|
|
|
|
GlobalRecorder.getInstance().item(player, Recording.disarmNull(player.getInventory().getItemInHand()), "MAINHAND");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Listener newHandSwapRecorder() {
|
|
|
|
return new Listener() {};
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void spawnParticle(World world, String particleName, double x, double y, double z) {
|
|
|
|
world.playEffect(new Location(world, x, y, z), Effect.valueOf(particleName), 1);
|
|
|
|
}
|
2021-09-28 13:08:10 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public Object getDataWatcherObject(int index, Class<?> type) {
|
|
|
|
return index;
|
|
|
|
}
|
|
|
|
|
2021-09-29 08:10:20 +02:00
|
|
|
private static final Class<?> watchableObject = Reflection.getClass("{nms}.DataWatcher$WatchableObject");
|
2021-09-28 13:08:10 +02:00
|
|
|
private static final Reflection.ConstructorInvoker watchableObjectConstructor = Reflection.getConstructor(watchableObject, int.class, int.class, Object.class);
|
|
|
|
private static final Map<Class<?>, Integer> watchableDatatypes = new HashMap<>();
|
|
|
|
static {
|
|
|
|
watchableDatatypes.put(byte.class, 0);
|
|
|
|
watchableDatatypes.put(short.class, 1);
|
|
|
|
watchableDatatypes.put(int.class, 2);
|
|
|
|
watchableDatatypes.put(float.class, 3);
|
|
|
|
watchableDatatypes.put(String.class, 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Object getDataWatcherItem(Object dwo, Object value) {
|
|
|
|
return watchableObjectConstructor.invoke(watchableDatatypes.get(value.getClass()), dwo, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static final Reflection.FieldAccessor<Integer> teleportX = Reflection.getField(REntity.teleportPacket, int.class, 1);
|
|
|
|
private static final Reflection.FieldAccessor<Integer> teleportY = Reflection.getField(REntity.teleportPacket, int.class, 2);
|
|
|
|
private static final Reflection.FieldAccessor<Integer> teleportZ = Reflection.getField(REntity.teleportPacket, int.class, 3);
|
|
|
|
@Override
|
|
|
|
public void setTeleportPacketPosition(Object packet, double x, double y, double z) {
|
|
|
|
teleportX.set(packet, MathHelper.floor(x * 32));
|
|
|
|
teleportY.set(packet, MathHelper.floor(y * 32));
|
|
|
|
teleportZ.set(packet, MathHelper.floor(z * 32));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void setSpawnPacketUUID(Object packet, UUID uuid) {
|
|
|
|
// field not present
|
|
|
|
}
|
|
|
|
|
|
|
|
private static final Reflection.FieldAccessor<Integer> equipmentSlot = Reflection.getField(REntity.equipmentPacket, int.class, 1);
|
|
|
|
@Override
|
|
|
|
public void setEquipmentPacketSlot(Object packet, String slot) {
|
|
|
|
switch(slot){
|
|
|
|
case "HEAD":
|
|
|
|
equipmentSlot.set(packet, 4);
|
|
|
|
break;
|
|
|
|
case "CHEST":
|
|
|
|
equipmentSlot.set(packet, 3);
|
|
|
|
break;
|
|
|
|
case "LEGS":
|
|
|
|
equipmentSlot.set(packet, 2);
|
|
|
|
break;
|
|
|
|
case "FEET":
|
|
|
|
equipmentSlot.set(packet, 1);
|
|
|
|
break;
|
|
|
|
case "MAINHAND":
|
|
|
|
case "OFFHAND":
|
|
|
|
default:
|
|
|
|
equipmentSlot.set(packet, 0);
|
|
|
|
}
|
|
|
|
}
|
2021-08-31 10:42:42 +02:00
|
|
|
}
|