Search in sources :

Example 1 with EntityMyHorse

use of de.Keyle.MyPet.compat.v1_9_R2.entity.types.EntityMyHorse in project MyPet by xXKeyleXx.

the class EntityMyPet method g.

public void g(float motionSideways, float motionForward) {
    if (!hasRider || !this.isVehicle()) {
        super.g(motionSideways, motionForward);
        return;
    }
    if (this.onGround && this.isFlying) {
        isFlying = false;
        this.fallDistance = 0;
    }
    EntityLiving passenger = (EntityLiving) this.bt();
    if (rideSkill == null) {
        passenger.stopRiding();
        return;
    }
    // apply pitch & yaw
    this.lastYaw = (this.yaw = passenger.yaw);
    this.pitch = passenger.pitch * 0.5F;
    setYawPitch(this.yaw, this.pitch);
    this.aI = (this.aG = this.yaw);
    // get motion from passenger (player)
    motionSideways = passenger.bd * 0.5F;
    motionForward = passenger.be;
    // backwards is slower
    if (motionForward <= 0.0F) {
        motionForward *= 0.25F;
    }
    // sideways is slower too but not as slow as backwards
    motionSideways *= 0.85F;
    float speed = 0.22222F * (1F + (rideSkill.getSpeedPercent() / 100F));
    double jumpHeight = Util.clamp(rideSkill.getJumpHeight(), 0, 10);
    if (Configuration.HungerSystem.USE_HUNGER_SYSTEM && Configuration.HungerSystem.AFFECT_RIDE_SPEED) {
        double factor = Math.log10(myPet.getSaturation()) / 2;
        speed *= factor;
        jumpHeight *= factor;
    }
    // apply motion
    ride(motionSideways, motionForward, speed);
    // throw player move event
    if (Configuration.Misc.THROW_PLAYER_MOVE_EVENT_WHILE_RIDING && !(this instanceof EntityMyHorse)) {
        double delta = Math.pow(this.locX - this.lastX, 2.0D) + Math.pow(this.locY - this.lastY, 2.0D) + Math.pow(this.locZ - this.lastZ, 2.0D);
        float deltaAngle = Math.abs(this.yaw - lastYaw) + Math.abs(this.pitch - lastPitch);
        if (delta > 0.00390625D || deltaAngle > 10.0F) {
            Location to = getBukkitEntity().getLocation();
            Location from = new Location(world.getWorld(), this.lastX, this.lastY, this.lastZ, this.lastYaw, this.lastPitch);
            if (from.getX() != Double.MAX_VALUE) {
                Location oldTo = to.clone();
                PlayerMoveEvent event = new PlayerMoveEvent((Player) passenger.getBukkitEntity(), from, to);
                Bukkit.getPluginManager().callEvent(event);
                if (event.isCancelled()) {
                    passenger.getBukkitEntity().teleport(from);
                    return;
                }
                if ((!oldTo.equals(event.getTo())) && (!event.isCancelled())) {
                    passenger.getBukkitEntity().teleport(event.getTo(), PlayerTeleportEvent.TeleportCause.UNKNOWN);
                    return;
                }
            }
        }
    }
    if (jump != null && this.isVehicle()) {
        boolean doJump = false;
        if (this instanceof IJumpable) {
            if (this.jumpPower > 0.0F) {
                doJump = true;
                this.jumpPower = 0.0F;
            }
        } else {
            if (jump != null) {
                try {
                    doJump = jump.getBoolean(passenger);
                } catch (IllegalAccessException ignored) {
                }
            }
        }
        if (doJump) {
            if (onGround) {
                String jumpHeightString = JumpHelper.JUMP_FORMAT.format(jumpHeight);
                Double jumpVelocity = JumpHelper.JUMP_MAP.get(jumpHeightString);
                jumpVelocity = jumpVelocity == null ? 0.44161199999510264 : jumpVelocity;
                if (this instanceof IJumpable) {
                    getAttributeInstance(EntityHorse.attributeJumpStrength).setValue(jumpVelocity);
                }
                this.motY = jumpVelocity;
            }
        }
    }
    if (Configuration.HungerSystem.USE_HUNGER_SYSTEM && Configuration.Skilltree.Skill.Ride.HUNGER_PER_METER > 0) {
        double dX = locX - lastX;
        double dY = Math.max(0, locY - lastY);
        double dZ = locZ - lastZ;
        if (dX != 0 || dY != 0 || dZ != 0) {
            double distance = Math.sqrt(dX * dX + dY * dY + dZ * dZ);
            myPet.decreaseSaturation(Configuration.Skilltree.Skill.Ride.HUNGER_PER_METER * distance);
            double factor = Math.log10(myPet.getSaturation()) / 2;
            getAttributeInstance(GenericAttributes.MOVEMENT_SPEED).setValue((0.22222F * (1F + (rideSkill.getSpeedPercent() / 100F))) * factor);
        }
    }
}
Also used : EntityMyHorse(de.Keyle.MyPet.compat.v1_9_R1.entity.types.EntityMyHorse) PlayerMoveEvent(org.bukkit.event.player.PlayerMoveEvent) Location(org.bukkit.Location)

Example 2 with EntityMyHorse

use of de.Keyle.MyPet.compat.v1_9_R2.entity.types.EntityMyHorse in project MyPet by xXKeyleXx.

the class EntityMyPet method g.

public void g(float motionSideways, float motionForward) {
    if (!hasRider || !this.isVehicle()) {
        super.g(motionSideways, motionForward);
        return;
    }
    EntityLiving passenger = (EntityLiving) this.bw();
    if (rideSkill == null) {
        passenger.stopRiding();
        return;
    }
    // apply pitch & yaw
    this.lastYaw = (this.yaw = passenger.yaw);
    this.pitch = passenger.pitch * 0.5F;
    setYawPitch(this.yaw, this.pitch);
    this.aP = (this.aN = this.yaw);
    // get motion from passenger (player)
    motionSideways = passenger.bf * 0.5F;
    motionForward = passenger.bg;
    // backwards is slower
    if (motionForward <= 0.0F) {
        motionForward *= 0.25F;
    }
    // sideways is slower too but not as slow as backwards
    motionSideways *= 0.85F;
    float speed = 0.22222F * (1F + (rideSkill.getSpeedPercent() / 100F));
    double jumpHeight = Util.clamp(rideSkill.getJumpHeight(), 0, 10);
    if (Configuration.HungerSystem.USE_HUNGER_SYSTEM && Configuration.HungerSystem.AFFECT_RIDE_SPEED) {
        double factor = Math.log10(myPet.getSaturation()) / 2;
        speed *= factor;
        jumpHeight *= factor;
    }
    // apply motion
    ride(motionSideways, motionForward, speed);
    // throw player move event
    if (Configuration.Misc.THROW_PLAYER_MOVE_EVENT_WHILE_RIDING && !(this instanceof EntityMyHorse)) {
        double delta = Math.pow(this.locX - this.lastX, 2.0D) + Math.pow(this.locY - this.lastY, 2.0D) + Math.pow(this.locZ - this.lastZ, 2.0D);
        float deltaAngle = Math.abs(this.yaw - lastYaw) + Math.abs(this.pitch - lastPitch);
        if (delta > 0.00390625D || deltaAngle > 10.0F) {
            Location to = getBukkitEntity().getLocation();
            Location from = new Location(world.getWorld(), this.lastX, this.lastY, this.lastZ, this.lastYaw, this.lastPitch);
            if (from.getX() != Double.MAX_VALUE) {
                Location oldTo = to.clone();
                PlayerMoveEvent event = new PlayerMoveEvent((Player) passenger.getBukkitEntity(), from, to);
                Bukkit.getPluginManager().callEvent(event);
                if (event.isCancelled()) {
                    passenger.getBukkitEntity().teleport(from);
                    return;
                }
                if ((!oldTo.equals(event.getTo())) && (!event.isCancelled())) {
                    passenger.getBukkitEntity().teleport(event.getTo(), PlayerTeleportEvent.TeleportCause.UNKNOWN);
                    return;
                }
            }
        }
    }
    if (jump != null && this.isVehicle()) {
        boolean doJump = false;
        if (this instanceof IJumpable) {
            if (this.jumpPower > 0.0F) {
                doJump = true;
                this.jumpPower = 0.0F;
            }
        } else {
            if (jump != null) {
                try {
                    doJump = jump.getBoolean(passenger);
                } catch (IllegalAccessException ignored) {
                }
            }
        }
        if (doJump) {
            if (onGround) {
                String jumpHeightString = JumpHelper.JUMP_FORMAT.format(jumpHeight);
                Double jumpVelocity = JumpHelper.JUMP_MAP.get(jumpHeightString);
                jumpVelocity = jumpVelocity == null ? 0.44161199999510264 : jumpVelocity;
                if (this instanceof IJumpable) {
                    getAttributeInstance(EntityHorse.attributeJumpStrength).setValue(jumpVelocity);
                }
                this.motY = jumpVelocity;
            }
        }
    }
    if (Configuration.HungerSystem.USE_HUNGER_SYSTEM && Configuration.Skilltree.Skill.Ride.HUNGER_PER_METER > 0) {
        double dX = locX - lastX;
        double dY = Math.max(0, locY - lastY);
        double dZ = locZ - lastZ;
        if (dX != 0 || dY != 0 || dZ != 0) {
            double distance = Math.sqrt(dX * dX + dY * dY + dZ * dZ);
            myPet.decreaseSaturation(Configuration.Skilltree.Skill.Ride.HUNGER_PER_METER * distance);
            double factor = Math.log10(myPet.getSaturation()) / 2;
            getAttributeInstance(GenericAttributes.MOVEMENT_SPEED).setValue((0.22222F * (1F + (rideSkill.getSpeedPercent() / 100F))) * factor);
        }
    }
}
Also used : EntityMyHorse(de.Keyle.MyPet.compat.v1_10_R1.entity.types.EntityMyHorse) PlayerMoveEvent(org.bukkit.event.player.PlayerMoveEvent) Location(org.bukkit.Location)

Example 3 with EntityMyHorse

use of de.Keyle.MyPet.compat.v1_9_R2.entity.types.EntityMyHorse in project MyPet by xXKeyleXx.

the class EntityMyPet method g.

public void g(float motionSideways, float motionForward) {
    if (!hasRider || !this.isVehicle()) {
        super.g(motionSideways, motionForward);
        return;
    }
    EntityLiving passenger = (EntityLiving) this.bw();
    if (rideSkill == null) {
        passenger.stopRiding();
        return;
    }
    // apply pitch & yaw
    this.lastYaw = (this.yaw = passenger.yaw);
    this.pitch = passenger.pitch * 0.5F;
    setYawPitch(this.yaw, this.pitch);
    this.aP = (this.aN = this.yaw);
    // get motion from passenger (player)
    motionSideways = passenger.be * 0.5F;
    motionForward = passenger.bf;
    // backwards is slower
    if (motionForward <= 0.0F) {
        motionForward *= 0.25F;
    }
    // sideways is slower too but not as slow as backwards
    motionSideways *= 0.85F;
    float speed = 0.22222F * (1F + (rideSkill.getSpeedPercent() / 100F));
    double jumpHeight = Util.clamp(rideSkill.getJumpHeight(), 0, 10);
    if (Configuration.HungerSystem.USE_HUNGER_SYSTEM && Configuration.HungerSystem.AFFECT_RIDE_SPEED) {
        double factor = Math.log10(myPet.getSaturation()) / 2;
        speed *= factor;
        jumpHeight *= factor;
    }
    // apply motion
    ride(motionSideways, motionForward, speed);
    // throw player move event
    if (Configuration.Misc.THROW_PLAYER_MOVE_EVENT_WHILE_RIDING && !(this instanceof EntityMyHorse)) {
        double delta = Math.pow(this.locX - this.lastX, 2.0D) + Math.pow(this.locY - this.lastY, 2.0D) + Math.pow(this.locZ - this.lastZ, 2.0D);
        float deltaAngle = Math.abs(this.yaw - lastYaw) + Math.abs(this.pitch - lastPitch);
        if (delta > 0.00390625D || deltaAngle > 10.0F) {
            Location to = getBukkitEntity().getLocation();
            Location from = new Location(world.getWorld(), this.lastX, this.lastY, this.lastZ, this.lastYaw, this.lastPitch);
            if (from.getX() != Double.MAX_VALUE) {
                Location oldTo = to.clone();
                PlayerMoveEvent event = new PlayerMoveEvent((Player) passenger.getBukkitEntity(), from, to);
                Bukkit.getPluginManager().callEvent(event);
                if (event.isCancelled()) {
                    passenger.getBukkitEntity().teleport(from);
                    return;
                }
                if ((!oldTo.equals(event.getTo())) && (!event.isCancelled())) {
                    passenger.getBukkitEntity().teleport(event.getTo(), PlayerTeleportEvent.TeleportCause.UNKNOWN);
                    return;
                }
            }
        }
    }
    if (jump != null && this.isVehicle()) {
        boolean doJump = false;
        if (this instanceof IJumpable) {
            if (this.jumpPower > 0.0F) {
                doJump = true;
                this.jumpPower = 0.0F;
            }
        } else {
            if (jump != null) {
                try {
                    doJump = jump.getBoolean(passenger);
                } catch (IllegalAccessException ignored) {
                }
            }
        }
        if (doJump) {
            if (onGround) {
                String jumpHeightString = JumpHelper.JUMP_FORMAT.format(jumpHeight);
                Double jumpVelocity = JumpHelper.JUMP_MAP.get(jumpHeightString);
                jumpVelocity = jumpVelocity == null ? 0.44161199999510264 : jumpVelocity;
                if (this instanceof IJumpable) {
                    getAttributeInstance(EntityHorse.attributeJumpStrength).setValue(jumpVelocity);
                }
                this.motY = jumpVelocity;
            }
        }
    }
    if (Configuration.HungerSystem.USE_HUNGER_SYSTEM && Configuration.Skilltree.Skill.Ride.HUNGER_PER_METER > 0) {
        double dX = locX - lastX;
        double dY = Math.max(0, locY - lastY);
        double dZ = locZ - lastZ;
        if (dX != 0 || dY != 0 || dZ != 0) {
            double distance = Math.sqrt(dX * dX + dY * dY + dZ * dZ);
            myPet.decreaseSaturation(Configuration.Skilltree.Skill.Ride.HUNGER_PER_METER * distance);
            double factor = Math.log10(myPet.getSaturation()) / 2;
            getAttributeInstance(GenericAttributes.MOVEMENT_SPEED).setValue((0.22222F * (1F + (rideSkill.getSpeedPercent() / 100F))) * factor);
        }
    }
}
Also used : EntityMyHorse(de.Keyle.MyPet.compat.v1_11_R1.entity.types.EntityMyHorse) PlayerMoveEvent(org.bukkit.event.player.PlayerMoveEvent) Location(org.bukkit.Location)

Example 4 with EntityMyHorse

use of de.Keyle.MyPet.compat.v1_9_R2.entity.types.EntityMyHorse in project MyPet by xXKeyleXx.

the class EntityMyPet method g.

public void g(float motionSideways, float motionForward) {
    if (!hasRider || !this.isVehicle()) {
        super.g(motionSideways, motionForward);
        return;
    }
    if (this.onGround && this.isFlying) {
        isFlying = false;
        this.fallDistance = 0;
    }
    EntityLiving passenger = (EntityLiving) this.bu();
    Ride rideSkill = myPet.getSkills().get(RideImpl.class);
    if (rideSkill == null || !rideSkill.getActive().getValue()) {
        passenger.stopRiding();
        return;
    }
    // apply pitch & yaw
    this.lastYaw = (this.yaw = passenger.yaw);
    this.pitch = passenger.pitch * 0.5F;
    setYawPitch(this.yaw, this.pitch);
    this.aP = (this.aN = this.yaw);
    // get motion from passenger (player)
    motionSideways = passenger.be * 0.5F;
    motionForward = passenger.bf;
    // backwards is slower
    if (motionForward <= 0.0F) {
        motionForward *= 0.25F;
    }
    // sideways is slower too but not as slow as backwards
    motionSideways *= 0.85F;
    float speed = 0.22222F * (1F + (rideSkill.getSpeedIncrease().getValue() / 100F));
    double jumpHeight = Util.clamp(1 + rideSkill.getJumpHeight().getValue().doubleValue(), 0, 10);
    float ascendSpeed = 0.2f;
    if (Configuration.HungerSystem.USE_HUNGER_SYSTEM && Configuration.HungerSystem.AFFECT_RIDE_SPEED) {
        double factor = Math.log10(myPet.getSaturation()) / 2;
        speed *= factor;
        jumpHeight *= factor;
        ascendSpeed *= factor;
    }
    // apply motion
    ride(motionSideways, motionForward, speed);
    // throw player move event
    if (Configuration.Misc.THROW_PLAYER_MOVE_EVENT_WHILE_RIDING && !(this instanceof EntityMyHorse)) {
        double delta = Math.pow(this.locX - this.lastX, 2.0D) + Math.pow(this.locY - this.lastY, 2.0D) + Math.pow(this.locZ - this.lastZ, 2.0D);
        float deltaAngle = Math.abs(this.yaw - lastYaw) + Math.abs(this.pitch - lastPitch);
        if (delta > 0.00390625D || deltaAngle > 10.0F) {
            Location to = getBukkitEntity().getLocation();
            Location from = new Location(world.getWorld(), this.lastX, this.lastY, this.lastZ, this.lastYaw, this.lastPitch);
            if (from.getX() != Double.MAX_VALUE) {
                Location oldTo = to.clone();
                PlayerMoveEvent event = new PlayerMoveEvent((Player) passenger.getBukkitEntity(), from, to);
                Bukkit.getPluginManager().callEvent(event);
                if (event.isCancelled()) {
                    passenger.getBukkitEntity().teleport(from);
                    return;
                }
                if ((!oldTo.equals(event.getTo())) && (!event.isCancelled())) {
                    passenger.getBukkitEntity().teleport(event.getTo(), PlayerTeleportEvent.TeleportCause.UNKNOWN);
                    return;
                }
            }
        }
    }
    if (jump != null && this.isVehicle()) {
        boolean doJump = false;
        if (this instanceof IJumpable) {
            if (this.jumpPower > 0.0F) {
                doJump = true;
                this.jumpPower = 0.0F;
            } else if (!this.onGround && jump != null) {
                try {
                    doJump = jump.getBoolean(passenger);
                } catch (IllegalAccessException ignored) {
                }
            }
        } else {
            if (jump != null) {
                try {
                    doJump = jump.getBoolean(passenger);
                } catch (IllegalAccessException ignored) {
                }
            }
        }
        if (doJump) {
            if (onGround) {
                jumpHeight = new BigDecimal(jumpHeight).setScale(1, BigDecimal.ROUND_HALF_UP).doubleValue();
                String jumpHeightString = JumpHelper.JUMP_FORMAT.format(jumpHeight);
                Double jumpVelocity = JumpHelper.JUMP_MAP.get(jumpHeightString);
                jumpVelocity = jumpVelocity == null ? 0.44161199999510264 : jumpVelocity;
                if (this instanceof IJumpable) {
                    getAttributeInstance(EntityHorse.attributeJumpStrength).setValue(jumpVelocity);
                }
                this.motY = jumpVelocity;
            } else if (rideSkill.getCanFly().getValue()) {
                if (limitCounter <= 0 && rideSkill.getFlyLimit().getValue().doubleValue() > 0) {
                    canFly = false;
                } else if (flyCheckCounter-- <= 0) {
                    canFly = MyPetApi.getHookHelper().canMyPetFlyAt(getBukkitEntity().getLocation());
                    if (canFly && !Permissions.hasExtended(getOwner().getPlayer(), "MyPet.extended.ride.fly")) {
                        canFly = false;
                    }
                    flyCheckCounter = 5;
                }
                if (canFly) {
                    if (this.motY < ascendSpeed) {
                        this.motY = ascendSpeed;
                        this.fallDistance = 0;
                        this.isFlying = true;
                    }
                }
            }
        } else {
            flyCheckCounter = 0;
        }
    }
    if (Configuration.HungerSystem.USE_HUNGER_SYSTEM && Configuration.Skilltree.Skill.Ride.HUNGER_PER_METER > 0) {
        double dX = locX - lastX;
        double dY = Math.max(0, locY - lastY);
        double dZ = locZ - lastZ;
        if (dX != 0 || dY != 0 || dZ != 0) {
            double distance = Math.sqrt(dX * dX + dY * dY + dZ * dZ);
            if (isFlying && rideSkill.getFlyLimit().getValue().doubleValue() > 0) {
                limitCounter -= distance;
            }
            myPet.decreaseSaturation(Configuration.Skilltree.Skill.Ride.HUNGER_PER_METER * distance);
            double factor = Math.log10(myPet.getSaturation()) / 2;
            getAttributeInstance(GenericAttributes.MOVEMENT_SPEED).setValue((0.22222F * (1F + (rideSkill.getSpeedIncrease().getValue() / 100F))) * factor);
        }
    }
}
Also used : PlayerMoveEvent(org.bukkit.event.player.PlayerMoveEvent) BigDecimal(java.math.BigDecimal) EntityMyHorse(de.Keyle.MyPet.compat.v1_9_R2.entity.types.EntityMyHorse) Ride(de.Keyle.MyPet.api.skill.skills.Ride) Location(org.bukkit.Location)

Aggregations

Location (org.bukkit.Location)4 PlayerMoveEvent (org.bukkit.event.player.PlayerMoveEvent)4 Ride (de.Keyle.MyPet.api.skill.skills.Ride)1 EntityMyHorse (de.Keyle.MyPet.compat.v1_10_R1.entity.types.EntityMyHorse)1 EntityMyHorse (de.Keyle.MyPet.compat.v1_11_R1.entity.types.EntityMyHorse)1 EntityMyHorse (de.Keyle.MyPet.compat.v1_9_R1.entity.types.EntityMyHorse)1 EntityMyHorse (de.Keyle.MyPet.compat.v1_9_R2.entity.types.EntityMyHorse)1 BigDecimal (java.math.BigDecimal)1