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-09-30 17:32:32 +02:00
|
|
|
import de.steamwar.fightsystem.Config;
|
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-10-07 09:54:53 +02:00
|
|
|
import net.minecraft.server.v1_8_R3.DataWatcher;
|
|
|
|
import net.minecraft.server.v1_8_R3.EntityEnderDragon;
|
|
|
|
import net.minecraft.server.v1_8_R3.PacketPlayOutEntityMetadata;
|
|
|
|
import net.minecraft.server.v1_8_R3.PacketPlayOutSpawnEntityLiving;
|
2021-09-28 13:08:10 +02:00
|
|
|
import net.royawesome.jlibnoise.MathHelper;
|
2021-09-30 17:32:32 +02:00
|
|
|
import org.bukkit.*;
|
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-30 17:32:32 +02:00
|
|
|
import java.util.*;
|
2021-09-28 13:08:10 +02:00
|
|
|
|
2021-08-31 10:42:42 +02:00
|
|
|
public class BountifulWrapper8 implements BountifulWrapper.IBountifulWrapper {
|
2021-09-18 14:30:32 +02:00
|
|
|
|
2021-09-30 17:32:32 +02:00
|
|
|
public BountifulWrapper8() {
|
|
|
|
EntityEnderDragon dragon = new EntityEnderDragon(null);
|
2021-10-01 11:53:41 +02:00
|
|
|
dragon.setLocation(Config.ArenaRegion.centerX(), -100, Config.ArenaRegion.centerZ(), 0, 0);
|
2021-09-30 17:32:32 +02:00
|
|
|
this.spawnDragonId = dragon.getId();
|
|
|
|
this.spawnDragon = new PacketPlayOutSpawnEntityLiving(dragon);
|
|
|
|
}
|
|
|
|
|
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 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-09-30 17:32:32 +02:00
|
|
|
|
2021-10-01 11:53:41 +02:00
|
|
|
private final Map<FightUI.BossBarType, PacketPlayOutEntityMetadata> barMap = new HashMap<>();
|
2021-09-30 17:32:32 +02:00
|
|
|
@Override
|
|
|
|
public void setBossbar(double leftBlueProgress, double leftRedProgress, String leftBlueText, String leftRedText) {
|
2021-10-01 11:53:41 +02:00
|
|
|
barMap.clear();
|
|
|
|
barMap.put(FightUI.BossBarType.BLUE_LEFT, createPacket(leftBlueProgress, leftBlueText));
|
|
|
|
barMap.put(FightUI.BossBarType.RED_LEFT, createPacket(leftRedProgress, leftRedText));
|
|
|
|
}
|
|
|
|
|
|
|
|
private PacketPlayOutEntityMetadata createPacket(double progress, String text) {
|
|
|
|
DataWatcher watcher = new DataWatcher(null);
|
|
|
|
watcher.a(0, (byte) 0x20);
|
|
|
|
watcher.a(2, text);
|
|
|
|
watcher.a(3, (byte) 1);
|
|
|
|
watcher.a(4, (byte) 1);
|
|
|
|
watcher.a(6, (float)(progress * 200));
|
|
|
|
//watcher.a(10, text);
|
|
|
|
//watcher.a(11, (byte) 1);
|
|
|
|
return new PacketPlayOutEntityMetadata(spawnDragonId, watcher, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void removeFromBar(Player player, FightUI.BossBarType type) {
|
2021-09-30 17:32:32 +02:00
|
|
|
// not used
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2021-10-01 11:53:41 +02:00
|
|
|
public void addToBar(Player player, FightUI.BossBarType type) {
|
2021-09-30 17:32:32 +02:00
|
|
|
// not used
|
|
|
|
}
|
|
|
|
|
|
|
|
private final Set<Player> seesDragon = new HashSet<>();
|
|
|
|
private final PacketPlayOutSpawnEntityLiving spawnDragon;
|
|
|
|
private final int spawnDragonId;
|
|
|
|
@Override
|
|
|
|
public void broadcastBossbar() {
|
|
|
|
seesDragon.removeIf(player -> !player.isOnline());
|
|
|
|
Bukkit.getOnlinePlayers().forEach(player -> {
|
|
|
|
if(!seesDragon.contains(player)) {
|
|
|
|
((CraftPlayer)player).getHandle().playerConnection.sendPacket(spawnDragon);
|
|
|
|
seesDragon.add(player);
|
|
|
|
}
|
|
|
|
|
2021-10-01 11:53:41 +02:00
|
|
|
((CraftPlayer) player).getHandle().playerConnection.sendPacket(barMap.get(FightUI.getInstance().bossBarType(player)));
|
2021-09-30 17:32:32 +02:00
|
|
|
});
|
|
|
|
}
|
2021-08-31 10:42:42 +02:00
|
|
|
}
|