2020-04-15 14:22:03 +02:00
|
|
|
package com.minelittlepony.unicopia.ability;
|
2018-09-20 16:28:17 +02:00
|
|
|
|
2020-04-15 14:22:03 +02:00
|
|
|
import com.minelittlepony.unicopia.Race;
|
2020-04-25 15:37:17 +02:00
|
|
|
import com.minelittlepony.unicopia.ability.data.Hit;
|
2020-04-15 18:12:00 +02:00
|
|
|
import com.minelittlepony.unicopia.entity.player.Pony;
|
2020-04-15 14:22:03 +02:00
|
|
|
import com.minelittlepony.unicopia.util.VecHelper;
|
2018-09-20 16:28:17 +02:00
|
|
|
|
2020-01-16 12:35:46 +01:00
|
|
|
import net.minecraft.client.network.packet.EntityPassengersSetS2CPacket;
|
2018-09-20 16:28:17 +02:00
|
|
|
import net.minecraft.entity.Entity;
|
2020-01-16 12:35:46 +01:00
|
|
|
import net.minecraft.entity.LivingEntity;
|
|
|
|
import net.minecraft.entity.player.PlayerEntity;
|
|
|
|
import net.minecraft.server.network.ServerPlayerEntity;
|
2018-09-20 16:28:17 +02:00
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
2020-01-27 17:37:22 +01:00
|
|
|
/**
|
|
|
|
* Pegasi ability to pick up and carry other players
|
|
|
|
*/
|
2020-04-25 15:46:29 +02:00
|
|
|
public class CarryAbility implements Ability<Hit> {
|
2018-09-20 16:28:17 +02:00
|
|
|
|
|
|
|
@Override
|
2020-04-15 18:12:00 +02:00
|
|
|
public int getWarmupTime(Pony player) {
|
2018-09-20 16:28:17 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2020-04-15 18:12:00 +02:00
|
|
|
public int getCooldownTime(Pony player) {
|
2018-09-20 16:28:17 +02:00
|
|
|
return 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean canUse(Race playerSpecies) {
|
|
|
|
return playerSpecies.canFly();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2020-04-15 18:12:00 +02:00
|
|
|
public Hit tryActivate(Pony player) {
|
2020-04-25 15:37:17 +02:00
|
|
|
return Hit.INSTANCE;
|
2018-09-20 16:28:17 +02:00
|
|
|
}
|
|
|
|
|
2020-01-16 12:35:46 +01:00
|
|
|
protected LivingEntity findRider(PlayerEntity player, World w) {
|
2018-09-20 16:28:17 +02:00
|
|
|
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;
|
2019-02-02 17:50:48 +01:00
|
|
|
}
|
2018-09-20 16:28:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2020-04-25 15:37:17 +02:00
|
|
|
public Hit.Serializer<Hit> getSerializer() {
|
|
|
|
return Hit.SERIALIZER;
|
2018-09-20 16:28:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@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());
|
2018-09-20 16:28:17 +02:00
|
|
|
|
|
|
|
if (rider != null) {
|
|
|
|
rider.startRiding(player, true);
|
|
|
|
} else {
|
2020-01-16 12:35:46 +01:00
|
|
|
player.removeAllPassengers();
|
2018-09-20 16:28:17 +02:00
|
|
|
}
|
|
|
|
|
2020-01-16 12:35:46 +01:00
|
|
|
if (player instanceof ServerPlayerEntity) {
|
|
|
|
((ServerPlayerEntity)player).networkHandler.sendPacket(new EntityPassengersSetS2CPacket(player));
|
2018-09-20 16:28:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2020-04-15 18:12:00 +02:00
|
|
|
public void preApply(Pony player) {
|
2018-09-20 16:28:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2020-04-15 18:12:00 +02:00
|
|
|
public void postApply(Pony player) {
|
2018-09-20 16:28:17 +02:00
|
|
|
}
|
2020-01-16 12:35:46 +01:00
|
|
|
|
|
|
|
public interface IPickupImmuned {
|
|
|
|
|
|
|
|
}
|
2018-09-20 16:28:17 +02:00
|
|
|
}
|