use of net.minecraft.server.v1_13_R1.EntityPlayer in project FunnyGuilds by FunnyGuilds.
the class V1_16R3PacketAccessor method getOrInstallChannelHandler.
@Override
public FunnyGuildsChannelHandler getOrInstallChannelHandler(Player player) {
final EntityPlayer entityPlayer = ((CraftPlayer) player).getHandle();
final Channel channel = entityPlayer.playerConnection.networkManager.channel;
final ChannelPipeline pipeline = channel.pipeline();
return this.channelHandlerInstaller.installChannelHandlerInPipeline(pipeline);
}
use of net.minecraft.server.v1_13_R1.EntityPlayer in project FunnyGuilds by FunnyGuilds.
the class V1_9R2PacketAccessor method getOrInstallChannelHandler.
@Override
public FunnyGuildsChannelHandler getOrInstallChannelHandler(Player player) {
final EntityPlayer entityPlayer = ((CraftPlayer) player).getHandle();
final Channel channel = entityPlayer.playerConnection.networkManager.channel;
final ChannelPipeline pipeline = channel.pipeline();
return this.channelHandlerInstaller.installChannelHandlerInPipeline(pipeline);
}
use of net.minecraft.server.v1_13_R1.EntityPlayer in project Arcade2 by ShootGame.
the class GamePlayer method getAttribute.
@Override
public Attribute getAttribute(AttributeKey key) {
EntityPlayer mojang = this.getMojang();
if (this.attributeMap == null) {
try {
Field mojangMap = EntityLiving.class.getDeclaredField("attributeMap");
mojangMap.setAccessible(true);
this.attributeMap = new TrackingAttributeMap((AttributeMapBase) mojangMap.get(mojang));
} catch (ReflectiveOperationException ex) {
this.game.getPlugin().getLogger().log(Level.SEVERE, "Could not inject attribute map", ex);
return null;
}
}
return this.attributeMap.getAttribute(key);
}
use of net.minecraft.server.v1_13_R1.EntityPlayer in project Citizens2 by CitizensDev.
the class NMSImpl method sendTabListRemove.
@Override
public void sendTabListRemove(Player recipient, Collection<? extends SkinnableEntity> skinnableNPCs) {
Preconditions.checkNotNull(recipient);
Preconditions.checkNotNull(skinnableNPCs);
EntityPlayer[] entities = new EntityPlayer[skinnableNPCs.size()];
int i = 0;
for (SkinnableEntity skinnable : skinnableNPCs) {
entities[i] = (EntityPlayer) skinnable;
i++;
}
NMSImpl.sendPacket(recipient, new PacketPlayOutPlayerInfo(PacketPlayOutPlayerInfo.EnumPlayerInfoAction.REMOVE_PLAYER, entities));
}
use of net.minecraft.server.v1_13_R1.EntityPlayer in project Citizens2 by CitizensDev.
the class NMSImpl method attack.
@Override
public void attack(LivingEntity attacker, LivingEntity btarget) {
EntityLiving handle = getHandle(attacker);
EntityLiving target = getHandle(btarget);
if (handle instanceof EntityPlayer) {
EntityPlayer humanHandle = (EntityPlayer) handle;
humanHandle.attack(target);
PlayerAnimation.ARM_SWING.play(humanHandle.getBukkitEntity());
return;
}
AttributeInstance attackDamage = handle.getAttributeInstance(GenericAttributes.ATTACK_DAMAGE);
float f = (float) (attackDamage == null ? 1 : attackDamage.getValue());
int i = 0;
if (target instanceof EntityLiving) {
f += EnchantmentManager.a(handle.getItemInMainHand(), target.getMonsterType());
i += EnchantmentManager.a(handle);
}
boolean flag = target.damageEntity(DamageSource.mobAttack(handle), f);
if (!flag)
return;
if (i > 0) {
target.g(-Math.sin(handle.yaw * Math.PI / 180.0F) * i * 0.5F, 0.1D, Math.cos(handle.yaw * Math.PI / 180.0F) * i * 0.5F);
handle.motX *= 0.6D;
handle.motZ *= 0.6D;
}
int fireAspectLevel = EnchantmentManager.getFireAspectEnchantmentLevel(handle);
if (fireAspectLevel > 0) {
target.setOnFire(fireAspectLevel * 4);
}
}
Aggregations