2013-05-17 23:05:19 +02:00
|
|
|
package me.libraryaddict.disguise;
|
|
|
|
|
2013-07-22 15:33:58 +02:00
|
|
|
import java.lang.reflect.InvocationTargetException;
|
2013-06-01 08:35:31 +02:00
|
|
|
import java.util.HashMap;
|
2013-07-22 15:33:58 +02:00
|
|
|
import java.util.Random;
|
|
|
|
|
2013-05-17 23:05:19 +02:00
|
|
|
import me.libraryaddict.disguise.DisguiseTypes.Disguise;
|
2013-05-29 00:29:36 +02:00
|
|
|
import me.libraryaddict.disguise.DisguiseTypes.DisguiseSound;
|
2013-07-22 15:33:58 +02:00
|
|
|
import me.libraryaddict.disguise.DisguiseTypes.DisguiseType;
|
2013-05-29 00:29:36 +02:00
|
|
|
import me.libraryaddict.disguise.DisguiseTypes.DisguiseSound.SoundType;
|
2013-07-22 15:33:58 +02:00
|
|
|
import me.libraryaddict.disguise.DisguiseTypes.MobDisguise;
|
2013-07-24 02:16:54 +02:00
|
|
|
import me.libraryaddict.disguise.Events.DisguisedEvent;
|
|
|
|
import me.libraryaddict.disguise.Events.RedisguisedEvent;
|
|
|
|
import me.libraryaddict.disguise.Events.UndisguisedEvent;
|
2013-07-09 04:51:35 +02:00
|
|
|
import net.minecraft.server.v1_6_R2.Block;
|
|
|
|
import net.minecraft.server.v1_6_R2.EntityPlayer;
|
|
|
|
import net.minecraft.server.v1_6_R2.EntityTrackerEntry;
|
|
|
|
import net.minecraft.server.v1_6_R2.World;
|
|
|
|
import net.minecraft.server.v1_6_R2.WorldServer;
|
2013-05-29 00:29:36 +02:00
|
|
|
|
2013-07-24 02:16:54 +02:00
|
|
|
import org.bukkit.Bukkit;
|
2013-05-29 00:29:36 +02:00
|
|
|
import org.bukkit.Location;
|
2013-07-09 04:51:35 +02:00
|
|
|
import org.bukkit.craftbukkit.v1_6_R2.entity.CraftEntity;
|
|
|
|
import org.bukkit.craftbukkit.v1_6_R2.entity.CraftLivingEntity;
|
2013-05-29 00:29:36 +02:00
|
|
|
import org.bukkit.entity.Entity;
|
2013-05-29 19:17:48 +02:00
|
|
|
import org.bukkit.entity.LivingEntity;
|
2013-05-17 23:05:19 +02:00
|
|
|
import org.bukkit.entity.Player;
|
2013-05-29 00:29:36 +02:00
|
|
|
import org.bukkit.plugin.java.JavaPlugin;
|
|
|
|
|
|
|
|
import com.comphenix.protocol.Packets;
|
|
|
|
import com.comphenix.protocol.ProtocolLibrary;
|
|
|
|
import com.comphenix.protocol.events.ConnectionSide;
|
|
|
|
import com.comphenix.protocol.events.ListenerPriority;
|
|
|
|
import com.comphenix.protocol.events.PacketAdapter;
|
2013-07-22 15:33:58 +02:00
|
|
|
import com.comphenix.protocol.events.PacketContainer;
|
2013-05-29 00:29:36 +02:00
|
|
|
import com.comphenix.protocol.events.PacketEvent;
|
|
|
|
import com.comphenix.protocol.events.PacketListener;
|
|
|
|
import com.comphenix.protocol.reflect.StructureModifier;
|
2013-05-17 23:05:19 +02:00
|
|
|
|
|
|
|
public class DisguiseAPI {
|
|
|
|
|
2013-07-21 05:17:21 +02:00
|
|
|
private static HashMap<Entity, Disguise> disguises = new HashMap<Entity, Disguise>();
|
2013-05-29 00:29:36 +02:00
|
|
|
private static PacketListener packetListener;
|
|
|
|
private static JavaPlugin plugin;
|
2013-07-21 05:17:21 +02:00
|
|
|
private static boolean sendVelocity;
|
2013-05-29 00:52:54 +02:00
|
|
|
private static boolean soundsEnabled;
|
|
|
|
|
2013-07-21 05:17:21 +02:00
|
|
|
private synchronized static Disguise access(Entity entity, Disguise... args) {
|
|
|
|
if (args.length == 0)
|
|
|
|
return disguises.get(entity);
|
|
|
|
if (args[0] == null)
|
|
|
|
disguises.remove(entity);
|
2013-06-01 08:35:31 +02:00
|
|
|
else
|
2013-07-21 05:17:21 +02:00
|
|
|
disguises.put(entity, args[0]);
|
2013-06-22 22:58:53 +02:00
|
|
|
return null;
|
2013-06-01 08:35:31 +02:00
|
|
|
}
|
|
|
|
|
2013-05-29 00:52:54 +02:00
|
|
|
/**
|
|
|
|
* @param Player
|
|
|
|
* - The player to disguise
|
|
|
|
* @param Disguise
|
|
|
|
* - The disguise to wear
|
|
|
|
*/
|
|
|
|
public static void disguiseToAll(Entity entity, Disguise disguise) {
|
2013-06-01 08:35:31 +02:00
|
|
|
if (disguise == null)
|
|
|
|
return;
|
2013-07-21 05:17:21 +02:00
|
|
|
Disguise oldDisguise = getDisguise(entity);
|
2013-07-24 02:16:54 +02:00
|
|
|
if (oldDisguise != null) {
|
|
|
|
RedisguisedEvent event = new RedisguisedEvent(entity, oldDisguise, disguise);
|
|
|
|
Bukkit.getPluginManager().callEvent(event);
|
|
|
|
if (event.isCancelled())
|
|
|
|
return;
|
2013-07-21 05:17:21 +02:00
|
|
|
oldDisguise.getScheduler().cancel();
|
2013-07-24 02:16:54 +02:00
|
|
|
} else {
|
|
|
|
DisguisedEvent event = new DisguisedEvent(entity, disguise);
|
|
|
|
Bukkit.getPluginManager().callEvent(event);
|
|
|
|
if (event.isCancelled())
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (disguise.getWatcher() != null)
|
|
|
|
disguise = disguise.clone();
|
2013-07-21 05:17:21 +02:00
|
|
|
put(entity, disguise);
|
|
|
|
disguise.constructWatcher(plugin, entity);
|
2013-05-29 00:52:54 +02:00
|
|
|
refresh(entity);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void enableSounds(boolean isSoundsEnabled) {
|
|
|
|
if (soundsEnabled != isSoundsEnabled) {
|
|
|
|
soundsEnabled = isSoundsEnabled;
|
|
|
|
if (soundsEnabled) {
|
|
|
|
ProtocolLibrary.getProtocolManager().addPacketListener(packetListener);
|
|
|
|
} else {
|
|
|
|
ProtocolLibrary.getProtocolManager().removePacketListener(packetListener);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-21 05:17:21 +02:00
|
|
|
private static Disguise get(Entity obj) {
|
2013-07-06 17:43:59 +02:00
|
|
|
return access(obj);
|
|
|
|
}
|
|
|
|
|
2013-05-29 00:52:54 +02:00
|
|
|
/**
|
|
|
|
* @param Disguiser
|
|
|
|
* @return Disguise
|
|
|
|
*/
|
2013-07-21 05:17:21 +02:00
|
|
|
public static Disguise getDisguise(Entity disguiser) {
|
2013-06-01 08:35:31 +02:00
|
|
|
return get(disguiser);
|
2013-05-29 00:52:54 +02:00
|
|
|
}
|
2013-05-29 00:29:36 +02:00
|
|
|
|
2013-07-21 05:17:21 +02:00
|
|
|
@Deprecated
|
|
|
|
public static Disguise getDisguise(Object disguiser) {
|
|
|
|
return get((Entity) disguiser);
|
|
|
|
}
|
|
|
|
|
2013-05-29 00:29:36 +02:00
|
|
|
protected static void init(JavaPlugin mainPlugin) {
|
|
|
|
plugin = mainPlugin;
|
|
|
|
packetListener = new PacketAdapter(plugin, ConnectionSide.SERVER_SIDE, ListenerPriority.NORMAL,
|
2013-07-22 15:33:58 +02:00
|
|
|
Packets.Server.NAMED_SOUND_EFFECT, Packets.Server.ENTITY_STATUS) {
|
2013-05-29 00:29:36 +02:00
|
|
|
@Override
|
|
|
|
public void onPacketSending(PacketEvent event) {
|
|
|
|
StructureModifier<Object> mods = event.getPacket().getModifier();
|
2013-07-22 15:33:58 +02:00
|
|
|
Player observer = event.getPlayer();
|
|
|
|
if (event.getPacketID() == Packets.Server.NAMED_SOUND_EFFECT) {
|
2013-05-29 00:29:36 +02:00
|
|
|
String soundName = (String) mods.read(0);
|
|
|
|
SoundType soundType = null;
|
|
|
|
Location soundLoc = new Location(observer.getWorld(), ((Integer) mods.read(1)) / 8D,
|
|
|
|
((Integer) mods.read(2)) / 8D, ((Integer) mods.read(3)) / 8D);
|
|
|
|
Entity disguisedEntity = null;
|
2013-07-22 15:33:58 +02:00
|
|
|
DisguiseSound entitySound = null;
|
2013-05-29 00:29:36 +02:00
|
|
|
for (Entity entity : soundLoc.getChunk().getEntities()) {
|
|
|
|
if (DisguiseAPI.isDisguised(entity)) {
|
|
|
|
Location loc = entity.getLocation();
|
|
|
|
loc = new Location(observer.getWorld(), ((int) (loc.getX() * 8)) / 8D, ((int) (loc.getY() * 8)) / 8D,
|
|
|
|
((int) (loc.getZ() * 8)) / 8D);
|
|
|
|
if (loc.equals(soundLoc)) {
|
2013-07-22 15:33:58 +02:00
|
|
|
entitySound = DisguiseSound.getType(entity.getType().name());
|
|
|
|
if (entitySound != null) {
|
2013-05-29 20:20:50 +02:00
|
|
|
if (entity instanceof LivingEntity && ((LivingEntity) entity).getHealth() == 0) {
|
2013-05-29 19:17:48 +02:00
|
|
|
soundType = SoundType.DEATH;
|
|
|
|
} else {
|
|
|
|
boolean hasInvun = false;
|
|
|
|
if (entity instanceof LivingEntity) {
|
2013-07-09 04:51:35 +02:00
|
|
|
net.minecraft.server.v1_6_R2.EntityLiving e = ((CraftLivingEntity) entity)
|
2013-05-29 19:17:48 +02:00
|
|
|
.getHandle();
|
2013-07-02 05:29:12 +02:00
|
|
|
hasInvun = (e.noDamageTicks == e.maxNoDamageTicks);
|
2013-05-29 19:17:48 +02:00
|
|
|
} else {
|
2013-07-09 04:51:35 +02:00
|
|
|
net.minecraft.server.v1_6_R2.Entity e = ((CraftEntity) entity).getHandle();
|
2013-05-29 19:17:48 +02:00
|
|
|
hasInvun = e.isInvulnerable();
|
|
|
|
}
|
2013-07-22 15:33:58 +02:00
|
|
|
soundType = entitySound.getType(soundName, !hasInvun);
|
2013-05-29 19:17:48 +02:00
|
|
|
}
|
2013-05-29 00:29:36 +02:00
|
|
|
if (soundType != null) {
|
|
|
|
disguisedEntity = entity;
|
|
|
|
break;
|
|
|
|
}
|
2013-07-22 15:33:58 +02:00
|
|
|
}
|
2013-05-29 00:29:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (disguisedEntity != null) {
|
2013-05-29 19:17:48 +02:00
|
|
|
Disguise disguise = DisguiseAPI.getDisguise(disguisedEntity);
|
|
|
|
if (disguise.replaceSounds()) {
|
2013-07-22 15:33:58 +02:00
|
|
|
String sound = null;
|
2013-05-29 19:17:48 +02:00
|
|
|
DisguiseSound dSound = DisguiseSound.getType(disguise.getType().name());
|
2013-05-30 16:31:18 +02:00
|
|
|
if (dSound != null && soundType != null)
|
2013-05-29 19:17:48 +02:00
|
|
|
sound = dSound.getSound(soundType);
|
|
|
|
if (sound == null) {
|
|
|
|
event.setCancelled(true);
|
2013-05-29 00:29:36 +02:00
|
|
|
} else {
|
2013-07-22 15:33:58 +02:00
|
|
|
if (sound.equals("step.grass")) {
|
2013-05-29 19:17:48 +02:00
|
|
|
World world = ((CraftEntity) disguisedEntity).getHandle().world;
|
|
|
|
Block b = Block.byId[world.getTypeId(soundLoc.getBlockX(), soundLoc.getBlockY() - 1,
|
|
|
|
soundLoc.getBlockZ())];
|
|
|
|
if (b != null)
|
|
|
|
mods.write(0, b.stepSound.getStepSound());
|
|
|
|
} else {
|
2013-07-22 15:33:58 +02:00
|
|
|
mods.write(0, sound);
|
|
|
|
// Time to change the pitch and volume
|
|
|
|
if (soundType == SoundType.HURT || soundType == SoundType.DEATH
|
|
|
|
|| soundType == SoundType.IDLE) {
|
|
|
|
// If the volume is the default
|
|
|
|
if (soundType != SoundType.IDLE
|
|
|
|
&& ((Float) mods.read(4)).equals(entitySound.getDamageSoundVolume())) {
|
2013-07-22 20:38:54 +02:00
|
|
|
mods.write(4, dSound.getDamageSoundVolume());
|
2013-07-22 15:33:58 +02:00
|
|
|
}
|
|
|
|
// Here I assume its the default pitch as I can't calculate if its real.
|
2013-07-22 20:38:54 +02:00
|
|
|
if (disguise instanceof MobDisguise && disguisedEntity instanceof LivingEntity
|
|
|
|
&& ((MobDisguise) disguise).doesDisguiseAge()) {
|
2013-07-22 19:15:45 +02:00
|
|
|
boolean baby = ((CraftLivingEntity) disguisedEntity).getHandle().isBaby();
|
|
|
|
if (((MobDisguise) disguise).isAdult() == baby) {
|
|
|
|
|
|
|
|
float pitch = (Integer) mods.read(5);
|
|
|
|
if (baby) {
|
|
|
|
// If the pitch is not the expected
|
|
|
|
if (pitch > 97 || pitch < 111)
|
|
|
|
return;
|
|
|
|
pitch = (new Random().nextFloat() - new Random().nextFloat()) * 0.2F + 1.5F;
|
|
|
|
// Min = 1.5
|
|
|
|
// Cap = 97.5
|
|
|
|
// Max = 1.7
|
|
|
|
// Cap = 110.5
|
|
|
|
} else {
|
|
|
|
// If the pitch is not the expected
|
|
|
|
if (pitch >= 63 || pitch <= 76)
|
|
|
|
return;
|
|
|
|
pitch = (new Random().nextFloat() - new Random().nextFloat()) * 0.2F + 1.0F;
|
|
|
|
// Min = 1
|
|
|
|
// Cap = 63
|
|
|
|
// Max = 1.2
|
|
|
|
// Cap = 75.6
|
|
|
|
}
|
|
|
|
pitch *= 63;
|
|
|
|
if (pitch < 0)
|
|
|
|
pitch = 0;
|
|
|
|
if (pitch > 255)
|
|
|
|
pitch = 255;
|
|
|
|
mods.write(5, (int) pitch);
|
|
|
|
}
|
2013-07-22 15:33:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (event.getPacketID() == Packets.Server.ENTITY_STATUS) {
|
|
|
|
if ((Byte) mods.read(1) == 2) {
|
|
|
|
// It made a damage animation
|
|
|
|
Entity entity = event.getPacket().getEntityModifier(observer.getWorld()).read(0);
|
|
|
|
Disguise disguise = getDisguise(entity);
|
|
|
|
if (disguise != null) {
|
|
|
|
DisguiseSound disSound = DisguiseSound.getType(entity.getType().name());
|
|
|
|
if (disSound == null)
|
|
|
|
return;
|
|
|
|
SoundType soundType = null;
|
|
|
|
if (entity instanceof LivingEntity && ((LivingEntity) entity).getHealth() == 0) {
|
|
|
|
soundType = SoundType.DEATH;
|
|
|
|
} else {
|
|
|
|
soundType = SoundType.HURT;
|
|
|
|
}
|
|
|
|
if (disSound.getSound(soundType) == null) {
|
|
|
|
disSound = DisguiseSound.getType(disguise.getType().name());
|
|
|
|
if (disSound != null) {
|
|
|
|
String sound = disSound.getSound(soundType);
|
|
|
|
if (sound != null) {
|
|
|
|
Location loc = entity.getLocation();
|
|
|
|
PacketContainer packet = new PacketContainer(Packets.Server.NAMED_SOUND_EFFECT);
|
|
|
|
mods = packet.getModifier();
|
|
|
|
mods.write(0, sound);
|
|
|
|
mods.write(1, (int) (loc.getX() * 8D));
|
|
|
|
mods.write(2, (int) (loc.getY() * 8D));
|
|
|
|
mods.write(3, (int) (loc.getZ() * 8D));
|
|
|
|
mods.write(4, disSound.getDamageSoundVolume());
|
|
|
|
float pitch;
|
|
|
|
if (disguise instanceof MobDisguise && !((MobDisguise) disguise).isAdult()) {
|
|
|
|
pitch = (new Random().nextFloat() - new Random().nextFloat()) * 0.2F + 1.5F;
|
|
|
|
} else
|
|
|
|
pitch = (new Random().nextFloat() - new Random().nextFloat()) * 0.2F + 1.0F;
|
|
|
|
if (disguise.getType() == DisguiseType.BAT)
|
|
|
|
pitch *= 95F;
|
|
|
|
pitch *= 63;
|
|
|
|
if (pitch < 0)
|
|
|
|
pitch = 0;
|
|
|
|
if (pitch > 255)
|
|
|
|
pitch = 255;
|
|
|
|
mods.write(5, (int) pitch);
|
|
|
|
try {
|
|
|
|
ProtocolLibrary.getProtocolManager().sendServerPacket(observer, packet);
|
|
|
|
} catch (InvocationTargetException e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
}
|
2013-05-29 19:17:48 +02:00
|
|
|
}
|
2013-05-29 00:29:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2013-05-17 23:05:19 +02:00
|
|
|
|
|
|
|
/**
|
2013-05-29 00:52:54 +02:00
|
|
|
* @param Disguiser
|
|
|
|
* @return boolean - If the disguiser is disguised
|
2013-05-17 23:05:19 +02:00
|
|
|
*/
|
2013-07-21 05:17:21 +02:00
|
|
|
public static boolean isDisguised(Entity disguiser) {
|
2013-06-01 08:35:31 +02:00
|
|
|
return get(disguiser) != null;
|
2013-05-17 23:05:19 +02:00
|
|
|
}
|
|
|
|
|
2013-07-21 05:17:21 +02:00
|
|
|
@Deprecated
|
|
|
|
public static boolean isDisguised(Object disguiser) {
|
|
|
|
return get((Entity) disguiser) != null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static boolean isVelocitySent() {
|
|
|
|
return sendVelocity;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void put(Entity obj, Disguise disguise) {
|
2013-07-06 17:43:59 +02:00
|
|
|
access(obj, disguise);
|
|
|
|
}
|
|
|
|
|
2013-05-30 16:31:18 +02:00
|
|
|
/**
|
|
|
|
* @param Resends
|
|
|
|
* the entity to all the watching players, which is where the magic begins
|
|
|
|
*/
|
2013-05-29 00:29:36 +02:00
|
|
|
private static void refresh(Entity entity) {
|
|
|
|
EntityTrackerEntry entry = (EntityTrackerEntry) ((WorldServer) ((CraftEntity) entity).getHandle().world).tracker.trackedEntities
|
|
|
|
.get(entity.getEntityId());
|
|
|
|
if (entry != null) {
|
2013-05-29 19:17:48 +02:00
|
|
|
EntityPlayer[] players = (EntityPlayer[]) entry.trackedPlayers.toArray(new EntityPlayer[entry.trackedPlayers.size()]);
|
2013-05-29 16:25:00 +02:00
|
|
|
for (EntityPlayer player : players) {
|
2013-05-29 01:00:31 +02:00
|
|
|
if (entity instanceof Player && !player.getBukkitEntity().canSee((Player) entity))
|
|
|
|
continue;
|
2013-05-29 00:29:36 +02:00
|
|
|
entry.clear(player);
|
|
|
|
entry.updatePlayer(player);
|
|
|
|
}
|
|
|
|
}
|
2013-05-17 23:05:19 +02:00
|
|
|
}
|
|
|
|
|
2013-07-21 05:17:21 +02:00
|
|
|
public static void setVelocitySent(boolean sendVelocityPackets) {
|
|
|
|
sendVelocity = sendVelocityPackets;
|
|
|
|
}
|
|
|
|
|
2013-05-17 23:05:19 +02:00
|
|
|
/**
|
|
|
|
* @param Disguiser
|
|
|
|
* - Undisguises him
|
|
|
|
*/
|
2013-05-29 00:29:36 +02:00
|
|
|
public static void undisguiseToAll(Entity entity) {
|
2013-07-21 05:17:21 +02:00
|
|
|
Disguise disguise = getDisguise(entity);
|
|
|
|
if (disguise == null)
|
|
|
|
return;
|
2013-07-24 02:16:54 +02:00
|
|
|
UndisguisedEvent event = new UndisguisedEvent(entity, disguise);
|
|
|
|
Bukkit.getPluginManager().callEvent(event);
|
|
|
|
if (event.isCancelled())
|
|
|
|
return;
|
2013-07-21 05:17:21 +02:00
|
|
|
disguise.getScheduler().cancel();
|
|
|
|
put(entity, null);
|
|
|
|
if (entity.isValid()) {
|
|
|
|
refresh(entity);
|
|
|
|
}
|
2013-05-17 23:05:19 +02:00
|
|
|
}
|
|
|
|
}
|