2020-04-15 14:22:03 +02:00
|
|
|
package com.minelittlepony.unicopia;
|
2018-09-16 00:45:44 +02:00
|
|
|
|
2020-04-26 14:46:03 +02:00
|
|
|
import java.util.function.Predicate;
|
2018-09-16 00:45:44 +02:00
|
|
|
|
2020-10-04 12:58:01 +02:00
|
|
|
import com.minelittlepony.unicopia.ability.magic.Caster;
|
2020-09-22 15:11:20 +02:00
|
|
|
import com.minelittlepony.unicopia.entity.Equine;
|
2022-12-09 23:34:50 +01:00
|
|
|
import com.minelittlepony.unicopia.entity.player.Pony;
|
2021-02-18 21:30:43 +01:00
|
|
|
import com.minelittlepony.unicopia.item.enchantment.UEnchantments;
|
2020-04-26 19:51:30 +02:00
|
|
|
|
2021-02-18 21:30:43 +01:00
|
|
|
import net.minecraft.enchantment.EnchantmentHelper;
|
2022-10-01 18:20:53 +02:00
|
|
|
import net.minecraft.entity.*;
|
|
|
|
import net.minecraft.entity.decoration.AbstractDecorationEntity;
|
2020-01-16 12:35:46 +01:00
|
|
|
import net.minecraft.entity.player.PlayerEntity;
|
2022-10-01 18:20:53 +02:00
|
|
|
import net.minecraft.predicate.entity.EntityPredicates;
|
2018-09-16 00:45:44 +02:00
|
|
|
|
2020-01-27 17:37:22 +01:00
|
|
|
public interface EquinePredicates {
|
2020-04-26 14:46:03 +02:00
|
|
|
Predicate<Entity> IS_PLAYER = e -> e instanceof PlayerEntity;
|
|
|
|
|
2021-03-06 22:11:17 +01:00
|
|
|
Predicate<Entity> RACE_INTERACT_WITH_CLOUDS = raceMatches(Race::canInteractWithClouds);
|
2020-04-26 14:46:03 +02:00
|
|
|
|
2021-03-06 22:11:17 +01:00
|
|
|
Predicate<Entity> PLAYER_EARTH = IS_PLAYER.and(ofRace(Race.EARTH));
|
2022-12-09 23:34:50 +01:00
|
|
|
Predicate<Entity> PLAYER_BAT = IS_PLAYER.and(ofRace(Race.BAT)).or(physicalRaceMatches(Race.BAT::equals));
|
2021-03-06 22:11:17 +01:00
|
|
|
Predicate<Entity> PLAYER_UNICORN = IS_PLAYER.and(raceMatches(Race::canCast));
|
|
|
|
Predicate<Entity> PLAYER_CHANGELING = IS_PLAYER.and(ofRace(Race.CHANGELING));
|
2021-08-04 15:38:03 +02:00
|
|
|
Predicate<Entity> PLAYER_PEGASUS = IS_PLAYER.and(e -> ((PlayerEntity)e).getAbilities().creativeMode || RACE_INTERACT_WITH_CLOUDS.test(e));
|
2020-04-26 14:46:03 +02:00
|
|
|
|
2021-09-02 19:11:51 +02:00
|
|
|
Predicate<Entity> PLAYER_CAN_USE_EARTH = IS_PLAYER.and(raceMatches(Race::canUseEarth));
|
2022-10-08 14:44:52 +02:00
|
|
|
Predicate<Entity> IS_CASTER = e -> !e.isRemoved() && (e instanceof Caster || IS_PLAYER.test(e));
|
2021-12-31 14:40:08 +01:00
|
|
|
Predicate<Entity> IS_PLACED_SPELL = e -> e instanceof Caster && !e.isRemoved();
|
2020-10-04 12:58:01 +02:00
|
|
|
|
2021-02-18 21:30:43 +01:00
|
|
|
Predicate<LivingEntity> HAS_WANT_IT_NEED_IT = e -> EnchantmentHelper.getEquipmentLevel(UEnchantments.WANT_IT_NEED_IT, e) > 0;
|
|
|
|
|
2022-10-01 18:20:53 +02:00
|
|
|
Predicate<Entity> VALID_FOR_DISGUISE = EntityPredicates.EXCEPT_SPECTATOR.and(e -> !(e instanceof LightningEntity || e instanceof AbstractDecorationEntity));
|
|
|
|
|
2021-03-06 22:11:17 +01:00
|
|
|
static Predicate<Entity> ofRace(Race race) {
|
|
|
|
return raceMatches(race::equals);
|
|
|
|
}
|
|
|
|
|
|
|
|
static Predicate<Entity> raceMatches(Predicate<Race> predicate) {
|
|
|
|
return e -> Equine.of(e).map(Equine::getSpecies).filter(predicate).isPresent();
|
2020-09-25 20:24:48 +02:00
|
|
|
}
|
2022-12-09 23:34:50 +01:00
|
|
|
|
|
|
|
static Predicate<Entity> physicalRaceMatches(Predicate<Race> predicate) {
|
|
|
|
return e -> Pony.of(e).map(Pony::getActualSpecies).filter(predicate).isPresent();
|
|
|
|
}
|
2018-09-16 00:45:44 +02:00
|
|
|
}
|