Search in sources :

Example 61 with EntityHumanNPC

use of net.citizensnpcs.nms.v1_15_R1.entity.EntityHumanNPC in project Citizens2 by CitizensDev.

the class NMSImpl method getTargetNavigator.

private MCNavigator getTargetNavigator(final org.bukkit.entity.Entity entity, final NavigatorParameters params, final Function<PathNavigation, Boolean> function) {
    net.minecraft.world.entity.Entity raw = getHandle(entity);
    raw.setOnGround(true);
    // not sure of a better way around this - if onGround is false, then
    // navigation won't execute, and calling entity.move doesn't
    // entirely fix the problem.
    final PathNavigation navigation = NMSImpl.getNavigation(entity);
    final float oldWater = raw instanceof ServerPlayer ? ((EntityHumanNPC) raw).getPathfindingMalus(BlockPathTypes.WATER) : ((Mob) raw).getPathfindingMalus(BlockPathTypes.WATER);
    if (params.avoidWater() && oldWater >= 0) {
        if (raw instanceof ServerPlayer) {
            ((EntityHumanNPC) raw).setPathfindingMalus(BlockPathTypes.WATER, oldWater + 1F);
        } else {
            ((Mob) raw).setPathfindingMalus(BlockPathTypes.WATER, oldWater + 1F);
        }
    }
    return new MCNavigator() {

        float lastSpeed;

        CancelReason reason;

        @Override
        public CancelReason getCancelReason() {
            return reason;
        }

        @Override
        public Iterable<Vector> getPath() {
            return new NavigationIterable(navigation);
        }

        @Override
        public void stop() {
            Path path = getPathEntity(navigation);
            if (params.debug() && path != null) {
                for (Player player : Bukkit.getOnlinePlayers()) {
                    for (int i = 0; i < path.getNodeCount(); i++) {
                        Node pp = path.getNode(i);
                        org.bukkit.block.Block block = player.getWorld().getBlockAt(pp.x, pp.y, pp.z);
                        player.sendBlockChange(block.getLocation(), block.getBlockData());
                    }
                }
            }
            if (oldWater >= 0) {
                if (raw instanceof ServerPlayer) {
                    ((EntityHumanNPC) raw).setPathfindingMalus(BlockPathTypes.WATER, oldWater);
                } else {
                    ((Mob) raw).setPathfindingMalus(BlockPathTypes.WATER, oldWater);
                }
            }
            navigation.stop();
        }

        @Override
        public boolean update() {
            if (params.speed() != lastSpeed) {
                if (Messaging.isDebugging() && lastSpeed > 0) {
                    Messaging.debug("Repathfinding " + ((NPCHolder) entity).getNPC().getId() + " due to speed change from", lastSpeed, "to", params.speed());
                }
                Entity handle = getHandle(entity);
                EntityDimensions size = null;
                try {
                    size = (EntityDimensions) SIZE_FIELD_GETTER.invoke(handle);
                    if (handle instanceof AbstractHorse) {
                        SIZE_FIELD_SETTER.invoke(handle, new EntityDimensions(Math.min(0.99F, size.width), size.height, false));
                    }
                } catch (Throwable e) {
                    e.printStackTrace();
                }
                if (!function.apply(navigation)) {
                    reason = CancelReason.STUCK;
                }
                try {
                    SIZE_FIELD_SETTER.invoke(handle, size);
                } catch (Throwable e) {
                    e.printStackTrace();
                // minecraft requires that an entity fit onto both blocks if width >= 1f, but we'd prefer to
                // make it just fit on 1 so hack around it a bit.
                }
                lastSpeed = params.speed();
            }
            if (params.debug() && !navigation.isDone()) {
                BlockData data = Material.DANDELION.createBlockData();
                Path path = getPathEntity(navigation);
                for (Player player : Bukkit.getOnlinePlayers()) {
                    for (int i = 0; i < path.getNodeCount(); i++) {
                        Node pp = path.getNode(i);
                        player.sendBlockChange(new Vector(pp.x, pp.y, pp.z).toLocation(player.getWorld()), data);
                    }
                }
            }
            navigation.setSpeedModifier(params.speed());
            return navigation.isDone();
        }
    };
}
Also used : TrackedEntity(net.minecraft.server.level.ChunkMap.TrackedEntity) FallingBlockEntity(net.minecraft.world.entity.item.FallingBlockEntity) SkinnableEntity(net.citizensnpcs.npc.skin.SkinnableEntity) Entity(net.minecraft.world.entity.Entity) CraftEntity(org.bukkit.craftbukkit.v1_18_R2.entity.CraftEntity) LivingEntity(net.minecraft.world.entity.LivingEntity) EntityDimensions(net.minecraft.world.entity.EntityDimensions) AbstractHorse(net.minecraft.world.entity.animal.horse.AbstractHorse) Node(net.minecraft.world.level.pathfinder.Node) PathNavigation(net.minecraft.world.entity.ai.navigation.PathNavigation) EntityHumanNPC(net.citizensnpcs.nms.v1_18_R2.entity.EntityHumanNPC) BlockData(org.bukkit.block.data.BlockData) Vector(org.bukkit.util.Vector) Path(net.minecraft.world.level.pathfinder.Path) Mob(net.minecraft.world.entity.Mob) CraftPlayer(org.bukkit.craftbukkit.v1_18_R2.entity.CraftPlayer) ServerPlayer(net.minecraft.server.level.ServerPlayer) Player(org.bukkit.entity.Player) NPCHolder(net.citizensnpcs.npc.ai.NPCHolder) MCNavigator(net.citizensnpcs.npc.ai.MCNavigationStrategy.MCNavigator) Entity(net.minecraft.world.entity.Entity) CancelReason(net.citizensnpcs.api.ai.event.CancelReason) ServerPlayer(net.minecraft.server.level.ServerPlayer)

Example 62 with EntityHumanNPC

use of net.citizensnpcs.nms.v1_15_R1.entity.EntityHumanNPC in project Citizens2 by CitizensDev.

the class NMSImpl method updateAI.

public static void updateAI(LivingEntity entity) {
    if (entity instanceof Mob) {
        Mob handle = (Mob) entity;
        handle.getSensing().tick();
        handle.getNavigation().tick();
        handle.getMoveControl().tick();
        handle.getLookControl().tick();
        handle.getJumpControl().tick();
    } else if (entity instanceof EntityHumanNPC) {
        ((EntityHumanNPC) entity).updateAI();
    }
}
Also used : Mob(net.minecraft.world.entity.Mob) EntityHumanNPC(net.citizensnpcs.nms.v1_18_R2.entity.EntityHumanNPC)

Example 63 with EntityHumanNPC

use of net.citizensnpcs.nms.v1_15_R1.entity.EntityHumanNPC in project Citizens2 by CitizensDev.

the class NMSImpl method getDestination.

@Override
public Location getDestination(org.bukkit.entity.Entity entity) {
    Entity handle = getHandle(entity);
    MoveControl controller = handle instanceof Mob ? ((Mob) handle).getMoveControl() : handle instanceof EntityHumanNPC ? ((EntityHumanNPC) handle).getMoveControl() : null;
    return new Location(entity.getWorld(), controller.getWantedX(), controller.getWantedY(), controller.getWantedZ());
}
Also used : TrackedEntity(net.minecraft.server.level.ChunkMap.TrackedEntity) FallingBlockEntity(net.minecraft.world.entity.item.FallingBlockEntity) SkinnableEntity(net.citizensnpcs.npc.skin.SkinnableEntity) Entity(net.minecraft.world.entity.Entity) CraftEntity(org.bukkit.craftbukkit.v1_18_R2.entity.CraftEntity) LivingEntity(net.minecraft.world.entity.LivingEntity) Mob(net.minecraft.world.entity.Mob) MoveControl(net.minecraft.world.entity.ai.control.MoveControl) FlyingMoveControl(net.minecraft.world.entity.ai.control.FlyingMoveControl) EntityHumanNPC(net.citizensnpcs.nms.v1_18_R2.entity.EntityHumanNPC) Location(org.bukkit.Location) ResourceLocation(net.minecraft.resources.ResourceLocation)

Example 64 with EntityHumanNPC

use of net.citizensnpcs.nms.v1_15_R1.entity.EntityHumanNPC in project Citizens2 by CitizensDev.

the class PlayerPathfinder method findPath.

public Path findPath(PathNavigationRegion var0, EntityHumanNPC var1, Set<BlockPos> var2, float var3, int var4, float var5) {
    this.openSet.clear();
    this.nodeEvaluator.prepare(var0, var1);
    Node var6 = this.nodeEvaluator.getStart();
    Map<Target, BlockPos> var7 = var2.stream().collect(Collectors.toMap(p -> this.nodeEvaluator.getGoal(p.getX(), p.getY(), p.getZ()), Function.identity()));
    Path var8 = findPath(var0.getProfiler(), var6, var7, var3, var4, var5);
    this.nodeEvaluator.done();
    return var8;
}
Also used : ImmutableSet(com.google.common.collect.ImmutableSet) Path(net.minecraft.world.level.pathfinder.Path) ProfilerFiller(net.minecraft.util.profiling.ProfilerFiller) Set(java.util.Set) Setting(net.citizensnpcs.Settings.Setting) BinaryHeap(net.minecraft.world.level.pathfinder.BinaryHeap) Function(java.util.function.Function) Collectors(java.util.stream.Collectors) Sets(com.google.common.collect.Sets) List(java.util.List) Stream(java.util.stream.Stream) Lists(com.google.common.collect.Lists) EntityHumanNPC(net.citizensnpcs.nms.v1_17_R1.entity.EntityHumanNPC) BlockPos(net.minecraft.core.BlockPos) Target(net.minecraft.world.level.pathfinder.Target) Map(java.util.Map) MetricCategory(net.minecraft.util.profiling.metrics.MetricCategory) PathFinder(net.minecraft.world.level.pathfinder.PathFinder) Optional(java.util.Optional) Comparator(java.util.Comparator) Mob(net.minecraft.world.entity.Mob) PathNavigationRegion(net.minecraft.world.level.PathNavigationRegion) Node(net.minecraft.world.level.pathfinder.Node) Path(net.minecraft.world.level.pathfinder.Path) Target(net.minecraft.world.level.pathfinder.Target) Node(net.minecraft.world.level.pathfinder.Node) BlockPos(net.minecraft.core.BlockPos)

Example 65 with EntityHumanNPC

use of net.citizensnpcs.nms.v1_15_R1.entity.EntityHumanNPC in project Citizens2 by CitizensDev.

the class NMSImpl method look.

@Override
public void look(org.bukkit.entity.Entity entity, Location to, boolean headOnly, boolean immediate) {
    Entity handle = NMSImpl.getHandle(entity);
    if (immediate || headOnly || BAD_CONTROLLER_LOOK.contains(handle.getBukkitEntity().getType()) || (!(handle instanceof EntityInsentient) && !(handle instanceof EntityHumanNPC))) {
        Location fromLocation = entity.getLocation(FROM_LOCATION);
        double xDiff, yDiff, zDiff;
        xDiff = to.getX() - fromLocation.getX();
        yDiff = to.getY() - fromLocation.getY();
        zDiff = to.getZ() - fromLocation.getZ();
        double distanceXZ = Math.sqrt(xDiff * xDiff + zDiff * zDiff);
        double distanceY = Math.sqrt(distanceXZ * distanceXZ + yDiff * yDiff);
        double yaw = Math.toDegrees(Math.acos(xDiff / distanceXZ));
        double pitch = Math.toDegrees(Math.acos(yDiff / distanceY)) - (handle.getBukkitEntity().getType() == EntityType.PHANTOM ? 45 : 90);
        if (zDiff < 0.0)
            yaw += Math.abs(180 - yaw) * 2;
        if (handle instanceof EntityEnderDragon) {
            yaw = Util.getDragonYaw(handle.getBukkitEntity(), xDiff, zDiff);
        } else {
            yaw = yaw - 90;
        }
        if (headOnly) {
            setHeadYaw(entity, (float) yaw);
        } else {
            look(entity, (float) yaw, (float) pitch);
        }
        return;
    }
    if (handle instanceof EntityInsentient) {
        ((EntityInsentient) handle).getControllerLook().a(to.getX(), to.getY(), to.getZ(), ((EntityInsentient) handle).dW(), ((EntityInsentient) handle).dU());
        while (((EntityLiving) handle).aK >= 180F) {
            ((EntityLiving) handle).aK -= 360F;
        }
        while (((EntityLiving) handle).aK < -180F) {
            ((EntityLiving) handle).aK += 360F;
        }
    } else if (handle instanceof EntityHumanNPC) {
        ((EntityHumanNPC) handle).getNPC().getOrAddTrait(SmoothRotationTrait.class).rotateToFace(to);
    }
}
Also used : CraftEntity(org.bukkit.craftbukkit.v1_15_R1.entity.CraftEntity) LivingEntity(org.bukkit.entity.LivingEntity) Entity(net.minecraft.server.v1_15_R1.Entity) SkinnableEntity(net.citizensnpcs.npc.skin.SkinnableEntity) PathEntity(net.minecraft.server.v1_15_R1.PathEntity) EntityEnderDragon(net.minecraft.server.v1_15_R1.EntityEnderDragon) EntityInsentient(net.minecraft.server.v1_15_R1.EntityInsentient) EntityHumanNPC(net.citizensnpcs.nms.v1_15_R1.entity.EntityHumanNPC) Location(org.bukkit.Location)

Aggregations

SkinnableEntity (net.citizensnpcs.npc.skin.SkinnableEntity)44 LivingEntity (org.bukkit.entity.LivingEntity)32 Location (org.bukkit.Location)20 Mob (net.minecraft.world.entity.Mob)14 Player (org.bukkit.entity.Player)12 Set (java.util.Set)10 EntityHumanNPC (net.citizensnpcs.nms.v1_12_R1.entity.EntityHumanNPC)10 TrackedEntity (net.minecraft.server.level.ChunkMap.TrackedEntity)10 LivingEntity (net.minecraft.world.entity.LivingEntity)10 CancelReason (net.citizensnpcs.api.ai.event.CancelReason)9 EntityHumanNPC (net.citizensnpcs.nms.v1_10_R1.entity.EntityHumanNPC)9 EntityHumanNPC (net.citizensnpcs.nms.v1_14_R1.entity.EntityHumanNPC)9 EntityHumanNPC (net.citizensnpcs.nms.v1_15_R1.entity.EntityHumanNPC)9 EntityHumanNPC (net.citizensnpcs.nms.v1_17_R1.entity.EntityHumanNPC)9 EntityHumanNPC (net.citizensnpcs.nms.v1_18_R2.entity.EntityHumanNPC)9 EntityHumanNPC (net.citizensnpcs.nms.v1_8_R3.entity.EntityHumanNPC)8 Entity (net.minecraft.world.entity.Entity)8 EntityHumanNPC (net.citizensnpcs.nms.v1_11_R1.entity.EntityHumanNPC)7 EntityHumanNPC (net.citizensnpcs.nms.v1_16_R3.entity.EntityHumanNPC)7 MCNavigator (net.citizensnpcs.npc.ai.MCNavigationStrategy.MCNavigator)7