ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/items/ItemWingsOfTheBats.java

203 lines
8.5 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("ItemWingsOfTheBats.java") is part of the Actually Additions mod for Minecraft.
2015-08-29 14:33:25 +02:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.items;
2015-07-17 06:51:19 +02:00
2016-07-03 20:57:00 +02:00
import de.ellpeck.actuallyadditions.mod.config.values.ConfigBoolValues;
import de.ellpeck.actuallyadditions.mod.data.PlayerData;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.items.base.ItemBase;
import de.ellpeck.actuallyadditions.mod.network.PacketHandlerHelper;
import de.ellpeck.actuallyadditions.mod.proxy.ClientProxy;
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
import net.minecraft.block.BlockState;
2016-12-31 16:15:56 +01:00
import net.minecraft.entity.Entity;
import net.minecraft.entity.LivingEntity;
2021-03-01 21:30:45 +01:00
import net.minecraft.entity.item.ItemEntity;
import net.minecraft.entity.passive.BatEntity;
2021-02-26 22:15:48 +01:00
import net.minecraft.entity.player.PlayerEntity;
2015-07-17 06:51:19 +02:00
import net.minecraft.item.ItemStack;
import net.minecraft.item.SwordItem;
import net.minecraft.util.Direction;
2016-11-22 19:35:52 +01:00
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.MathHelper;
2016-07-03 20:57:00 +02:00
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.event.entity.living.LivingDropsEvent;
import net.minecraftforge.event.entity.living.LivingEvent;
import net.minecraftforge.eventbus.api.SubscribeEvent;
2015-07-17 06:51:19 +02:00
2019-05-02 09:10:29 +02:00
public class ItemWingsOfTheBats extends ItemBase {
2015-07-17 06:51:19 +02:00
2016-12-31 16:15:56 +01:00
public static final String THE_BAT_BAT = "the bat bat";
2016-11-22 19:35:52 +01:00
public static final int MAX_FLY_TIME = 800;
2015-07-17 06:51:19 +02:00
public ItemWingsOfTheBats() {
super(ActuallyItems.defaultProps().maxStackSize(1));
2016-07-03 20:57:00 +02:00
// TODO: Lets move this somewhere global. Don't like event logic in a single place.
2016-07-03 20:57:00 +02:00
MinecraftForge.EVENT_BUS.register(this);
}
2016-11-26 21:32:27 +01:00
/**
* Checks if the Player has Wings in its Inventory
*
* @param player The Player
2021-02-27 16:33:00 +01:00
*
2016-11-26 21:32:27 +01:00
* @return The Wings
*/
2021-02-26 22:15:48 +01:00
public static ItemStack getWingItem(PlayerEntity player) {
2019-05-02 09:10:29 +02:00
for (int i = 0; i < player.inventory.getSizeInventory(); i++) {
2021-02-27 16:33:00 +01:00
if (StackUtil.isValid(player.inventory.getStackInSlot(i)) && player.inventory.getStackInSlot(i).getItem() instanceof ItemWingsOfTheBats) {
return player.inventory.getStackInSlot(i);
}
2016-11-26 21:32:27 +01:00
}
2017-11-02 22:49:53 +01:00
return StackUtil.getEmpty();
2016-11-26 21:32:27 +01:00
}
@Override
2019-05-02 09:10:29 +02:00
public boolean showDurabilityBar(ItemStack stack) {
return true;
2016-07-07 17:59:45 +02:00
}
@Override
2019-05-02 09:10:29 +02:00
public double getDurabilityForDisplay(ItemStack stack) {
PlayerEntity player = ClientProxy.getCurrentPlayer();
2019-05-02 09:10:29 +02:00
if (player != null) {
PlayerData.PlayerSave data = PlayerData.getDataFromPlayer(player);
double diff = MAX_FLY_TIME - data.batWingsFlyTime;
return 1 - diff / MAX_FLY_TIME;
}
return super.getDurabilityForDisplay(stack);
2016-07-07 17:59:45 +02:00
}
@Override
2019-05-02 09:10:29 +02:00
public int getRGBDurabilityForDisplay(ItemStack stack) {
PlayerEntity player = ClientProxy.getCurrentPlayer();
2019-05-02 09:10:29 +02:00
if (player != null) {
PlayerData.PlayerSave data = PlayerData.getDataFromPlayer(player);
int curr = data.batWingsFlyTime;
return MathHelper.hsvToRGB(Math.max(0.0F, 1 - (float) curr / MAX_FLY_TIME) / 3.0F, 1.0F, 1.0F);
}
return super.getRGBDurabilityForDisplay(stack);
2016-07-07 17:59:45 +02:00
}
2016-07-03 20:57:00 +02:00
@SubscribeEvent
2019-05-02 09:10:29 +02:00
public void onEntityDropEvent(LivingDropsEvent event) {
Entity source = event.getSource().getTrueSource();
2016-12-31 16:15:56 +01:00
2021-02-26 22:15:48 +01:00
if (event.getEntityLiving().world != null && !event.getEntityLiving().world.isRemote && source instanceof PlayerEntity) {
2016-07-03 20:57:00 +02:00
//Drop Wings from Bats
if (ConfigBoolValues.DO_BAT_DROPS.isEnabled() && event.getEntityLiving() instanceof BatEntity) {
2016-12-31 16:15:56 +01:00
int looting = event.getLootingLevel();
Iterable<ItemStack> equip = source.getHeldEquipment();
2019-05-02 09:10:29 +02:00
for (ItemStack stack : equip) {
// Todo: [port] this might not work anymore due to the way things are checked
if (StackUtil.isValid(stack) && ItemWingsOfTheBats.THE_BAT_BAT.equalsIgnoreCase(stack.getDisplayName().getString()) && stack.getItem() instanceof SwordItem) {
2016-12-31 16:15:56 +01:00
looting += 3;
break;
}
}
2019-05-02 09:10:29 +02:00
if (event.getEntityLiving().world.rand.nextInt(15) <= looting * 2) {
LivingEntity entityLiving = event.getEntityLiving();
event.getDrops().add(new ItemEntity(event.getEntityLiving().world, entityLiving.getPosX(), entityLiving.getPosY(), entityLiving.getPosZ(), new ItemStack(ActuallyItems.BAT_WING.get(), event.getEntityLiving().world.rand.nextInt(2 + looting) + 1)));
2016-07-03 20:57:00 +02:00
}
}
}
}
@SubscribeEvent
2019-05-02 09:10:29 +02:00
public void livingUpdateEvent(LivingEvent.LivingUpdateEvent event) {
2021-02-26 22:15:48 +01:00
if (event.getEntityLiving() instanceof PlayerEntity) {
PlayerEntity player = (PlayerEntity) event.getEntityLiving();
2016-07-03 20:57:00 +02:00
2021-02-28 15:47:54 +01:00
if (!player.isCreative() && !player.isSpectator()) {
PlayerData.PlayerSave data = PlayerData.getDataFromPlayer(player);
2019-05-02 09:10:29 +02:00
if (!player.world.isRemote) {
2016-11-22 19:35:52 +01:00
boolean tryDeduct = false;
boolean shouldSend = false;
boolean wingsEquipped = StackUtil.isValid(ItemWingsOfTheBats.getWingItem(player));
2019-05-02 09:10:29 +02:00
if (!data.hasBatWings) {
if (data.batWingsFlyTime <= 0) {
if (wingsEquipped) {
data.hasBatWings = true;
shouldSend = true;
}
2019-05-02 09:10:29 +02:00
} else {
2016-11-22 19:35:52 +01:00
tryDeduct = true;
}
2019-05-02 09:10:29 +02:00
} else {
if (wingsEquipped && data.batWingsFlyTime < MAX_FLY_TIME) {
player.abilities.allowFlying = true;
if (player.abilities.isFlying) {
data.batWingsFlyTime++;
if (player.world.getWorldInfo().getGameTime() % 10 == 0) {
shouldSend = true;
}
}
2016-11-22 19:35:52 +01:00
tryDeduct = true;
2019-05-02 09:10:29 +02:00
} else {
data.hasBatWings = false;
2016-11-22 19:35:52 +01:00
data.shouldDisableBatWings = true;
shouldSend = true;
player.abilities.allowFlying = false;
player.abilities.isFlying = false;
player.abilities.disableDamage = false;
}
}
2019-05-02 09:10:29 +02:00
if (tryDeduct && data.batWingsFlyTime > 0) {
2016-11-22 19:35:52 +01:00
int deductTime = 0;
if (!player.abilities.isFlying) {
2016-11-22 19:35:52 +01:00
deductTime = 2;
2019-05-02 09:10:29 +02:00
} else {
BlockPos pos = new BlockPos(player.getPosX(), player.getPosY() + player.getHeight(), player.getPosZ());
2021-02-26 22:15:48 +01:00
BlockState state = player.world.getBlockState(pos);
if (state.isSolidSide(player.world, pos, Direction.DOWN)) {
2016-11-22 19:35:52 +01:00
deductTime = 10;
}
}
2019-05-02 09:10:29 +02:00
if (deductTime > 0) {
data.batWingsFlyTime = Math.max(0, data.batWingsFlyTime - deductTime);
2016-11-22 19:35:52 +01:00
if (player.world.getWorldInfo().getGameTime() % 10 == 0) {
2016-11-22 19:35:52 +01:00
shouldSend = true;
}
}
}
2019-05-02 09:10:29 +02:00
if (shouldSend) {
PacketHandlerHelper.syncPlayerData(player, false);
2016-11-22 19:35:52 +01:00
data.shouldDisableBatWings = false; //was set only temporarily to send it
}
2019-05-02 09:10:29 +02:00
} else {
if (data.hasBatWings) {
player.abilities.allowFlying = true;
2019-05-02 09:10:29 +02:00
} else if (data.shouldDisableBatWings) { //so that other modded flying won't be disabled
2016-11-22 19:35:52 +01:00
data.shouldDisableBatWings = false;
player.abilities.allowFlying = false;
player.abilities.isFlying = false;
player.abilities.disableDamage = false;
2016-07-03 20:57:00 +02:00
}
}
}
}
2015-07-17 06:51:19 +02:00
}
}