Unicopia/src/main/java/com/minelittlepony/unicopia/ability/CarryAbility.java

85 lines
2.1 KiB
Java
Raw Normal View History

package com.minelittlepony.unicopia.ability;
import com.minelittlepony.unicopia.Race;
import com.minelittlepony.unicopia.ability.data.Hit;
import com.minelittlepony.unicopia.entity.player.Pony;
import com.minelittlepony.unicopia.util.VecHelper;
import net.minecraft.entity.Entity;
2020-01-16 12:35:46 +01:00
import net.minecraft.entity.LivingEntity;
import net.minecraft.entity.player.PlayerEntity;
2020-06-26 11:44:47 +02:00
import net.minecraft.network.packet.s2c.play.EntityPassengersSetS2CPacket;
2020-01-16 12:35:46 +01:00
import net.minecraft.server.network.ServerPlayerEntity;
import net.minecraft.world.World;
/**
* Pegasi ability to pick up and carry other players
*/
2020-04-25 15:46:29 +02:00
public class CarryAbility implements Ability<Hit> {
@Override
2020-04-15 18:12:00 +02:00
public int getWarmupTime(Pony player) {
return 0;
}
@Override
2020-04-15 18:12:00 +02:00
public int getCooldownTime(Pony player) {
return 10;
}
@Override
public boolean canUse(Race race) {
return race.canFly();
}
@Override
2020-04-15 18:12:00 +02:00
public Hit tryActivate(Pony player) {
return Hit.INSTANCE;
}
2020-01-16 12:35:46 +01:00
protected LivingEntity findRider(PlayerEntity player, World w) {
Entity hit = VecHelper.getLookedAtEntity(player, 10);
2020-01-16 12:35:46 +01:00
if (hit instanceof LivingEntity && !player.isConnectedThroughVehicle(hit)) {
if (!(hit instanceof IPickupImmuned)) {
return (LivingEntity)hit;
}
}
return null;
}
@Override
public Hit.Serializer<Hit> getSerializer() {
return Hit.SERIALIZER;
}
@Override
2020-04-15 18:12:00 +02:00
public void apply(Pony iplayer, Hit data) {
2020-01-16 12:35:46 +01:00
PlayerEntity player = iplayer.getOwner();
LivingEntity rider = findRider(player, iplayer.getWorld());
if (rider != null) {
rider.startRiding(player, true);
} else {
2020-01-16 12:35:46 +01:00
player.removeAllPassengers();
}
2020-01-16 12:35:46 +01:00
if (player instanceof ServerPlayerEntity) {
((ServerPlayerEntity)player).networkHandler.sendPacket(new EntityPassengersSetS2CPacket(player));
}
}
@Override
public void preApply(Pony player, AbilitySlot slot) {
}
@Override
public void postApply(Pony player, AbilitySlot slot) {
}
2020-01-16 12:35:46 +01:00
public interface IPickupImmuned {
}
}