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-11-27 21:53:16 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
|
2016-07-03 20:57:00 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.config.values.ConfigBoolValues;
|
2016-11-22 18:26:29 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.data.PlayerData;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.items.base.ItemBase;
|
2016-07-03 20:57:00 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.items.metalists.TheMiscItems;
|
2016-11-22 18:26:29 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.network.PacketHandlerHelper;
|
2016-11-16 20:31:16 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
|
2021-02-26 22:15:48 +01:00
|
|
|
import net.minecraft.block.state.BlockState;
|
2016-12-31 16:15:56 +01:00
|
|
|
import net.minecraft.entity.Entity;
|
2016-12-11 20:52:47 +01:00
|
|
|
import net.minecraft.entity.item.EntityItem;
|
2016-07-03 20:57:00 +02:00
|
|
|
import net.minecraft.entity.passive.EntityBat;
|
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.EnumRarity;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2016-12-31 16:15:56 +01:00
|
|
|
import net.minecraft.item.ItemSword;
|
2021-02-27 13:24:45 +01:00
|
|
|
import net.minecraft.util.Direction;
|
2016-11-22 19:35:52 +01:00
|
|
|
import net.minecraft.util.math.BlockPos;
|
2016-11-22 18:26:29 +01:00
|
|
|
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;
|
2016-07-03 21:06:44 +02:00
|
|
|
import net.minecraftforge.event.entity.living.LivingEvent;
|
2016-07-03 20:57:00 +02:00
|
|
|
import net.minecraftforge.fml.common.eventhandler.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
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public ItemWingsOfTheBats(String name) {
|
2015-12-03 20:15:07 +01:00
|
|
|
super(name);
|
2015-07-17 06:51:19 +02:00
|
|
|
this.setMaxStackSize(1);
|
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
|
|
|
|
* @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++) {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2016-11-22 18:26:29 +01:00
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public boolean showDurabilityBar(ItemStack stack) {
|
2016-11-22 18:26:29 +01:00
|
|
|
return true;
|
2016-07-07 17:59:45 +02:00
|
|
|
}
|
|
|
|
|
2016-11-22 18:26:29 +01:00
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public double getDurabilityForDisplay(ItemStack stack) {
|
2021-02-26 22:15:48 +01:00
|
|
|
PlayerEntity player = ActuallyAdditions.PROXY.getCurrentPlayer();
|
2019-05-02 09:10:29 +02:00
|
|
|
if (player != null) {
|
2016-11-27 21:53:16 +01:00
|
|
|
PlayerData.PlayerSave data = PlayerData.getDataFromPlayer(player);
|
2019-05-02 09:10:29 +02:00
|
|
|
if (data != null) {
|
|
|
|
double diff = MAX_FLY_TIME - data.batWingsFlyTime;
|
|
|
|
return 1 - diff / MAX_FLY_TIME;
|
2016-11-27 21:53:16 +01:00
|
|
|
}
|
2016-11-22 18:26:29 +01:00
|
|
|
}
|
2016-11-27 21:53:16 +01:00
|
|
|
return super.getDurabilityForDisplay(stack);
|
2016-07-07 17:59:45 +02:00
|
|
|
}
|
|
|
|
|
2016-11-22 18:26:29 +01:00
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public int getRGBDurabilityForDisplay(ItemStack stack) {
|
2021-02-26 22:15:48 +01:00
|
|
|
PlayerEntity player = ActuallyAdditions.PROXY.getCurrentPlayer();
|
2019-05-02 09:10:29 +02:00
|
|
|
if (player != null) {
|
2016-11-27 21:53:16 +01:00
|
|
|
PlayerData.PlayerSave data = PlayerData.getDataFromPlayer(player);
|
2019-05-02 09:10:29 +02:00
|
|
|
if (data != null) {
|
2016-11-27 21:53:16 +01:00
|
|
|
int curr = data.batWingsFlyTime;
|
2019-05-02 09:10:29 +02:00
|
|
|
return MathHelper.hsvToRGB(Math.max(0.0F, 1 - (float) curr / MAX_FLY_TIME) / 3.0F, 1.0F, 1.0F);
|
2016-11-27 21:53:16 +01:00
|
|
|
}
|
2016-11-22 18:26:29 +01:00
|
|
|
}
|
2016-11-27 21:53:16 +01:00
|
|
|
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) {
|
2017-06-29 18:30:02 +02:00
|
|
|
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
|
2019-05-02 09:10:29 +02:00
|
|
|
if (ConfigBoolValues.DO_BAT_DROPS.isEnabled() && event.getEntityLiving() instanceof EntityBat) {
|
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) {
|
|
|
|
if (StackUtil.isValid(stack) && ItemWingsOfTheBats.THE_BAT_BAT.equalsIgnoreCase(stack.getDisplayName()) && stack.getItem() instanceof ItemSword) {
|
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) {
|
|
|
|
event.getDrops().add(new EntityItem(event.getEntityLiving().world, event.getEntityLiving().posX, event.getEntityLiving().posY, event.getEntityLiving().posZ, new ItemStack(InitItems.itemMisc, event.getEntityLiving().world.rand.nextInt(2 + looting) + 1, TheMiscItems.BAT_WING.ordinal())));
|
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
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
if (!player.capabilities.isCreativeMode && !player.isSpectator()) {
|
2016-11-22 18:26:29 +01:00
|
|
|
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;
|
2016-11-22 18:26:29 +01:00
|
|
|
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) {
|
2016-11-22 18:26:29 +01:00
|
|
|
data.hasBatWings = true;
|
|
|
|
shouldSend = true;
|
|
|
|
}
|
2019-05-02 09:10:29 +02:00
|
|
|
} else {
|
2016-11-22 19:35:52 +01:00
|
|
|
tryDeduct = true;
|
2016-11-22 18:26:29 +01:00
|
|
|
}
|
2019-05-02 09:10:29 +02:00
|
|
|
} else {
|
|
|
|
if (wingsEquipped && data.batWingsFlyTime < MAX_FLY_TIME) {
|
2016-11-22 18:26:29 +01:00
|
|
|
player.capabilities.allowFlying = true;
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
if (player.capabilities.isFlying) {
|
2016-11-22 18:26:29 +01:00
|
|
|
data.batWingsFlyTime++;
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
if (player.world.getTotalWorldTime() % 10 == 0) {
|
2016-11-22 18:26:29 +01:00
|
|
|
shouldSend = true;
|
|
|
|
}
|
|
|
|
}
|
2016-11-22 19:35:52 +01:00
|
|
|
|
|
|
|
tryDeduct = true;
|
2019-05-02 09:10:29 +02:00
|
|
|
} else {
|
2016-11-22 18:26:29 +01:00
|
|
|
data.hasBatWings = false;
|
2016-11-22 19:35:52 +01:00
|
|
|
data.shouldDisableBatWings = true;
|
2016-11-22 18:26:29 +01:00
|
|
|
shouldSend = true;
|
|
|
|
|
|
|
|
player.capabilities.allowFlying = false;
|
|
|
|
player.capabilities.isFlying = false;
|
|
|
|
player.capabilities.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;
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
if (!player.capabilities.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.posX, player.posY + player.height, player.posZ);
|
2021-02-26 22:15:48 +01:00
|
|
|
BlockState state = player.world.getBlockState(pos);
|
2021-02-27 13:24:45 +01:00
|
|
|
if (state != null && state.isSideSolid(player.world, pos, Direction.DOWN)) {
|
2016-11-22 19:35:52 +01:00
|
|
|
deductTime = 10;
|
|
|
|
}
|
2016-11-22 18:26:29 +01:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
if (player.world.getTotalWorldTime() % 10 == 0) {
|
2016-11-22 19:35:52 +01:00
|
|
|
shouldSend = true;
|
|
|
|
}
|
2016-11-22 18:26:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
if (shouldSend) {
|
2017-02-13 15:23:28 +01:00
|
|
|
PacketHandlerHelper.syncPlayerData(player, false);
|
2016-11-22 19:35:52 +01:00
|
|
|
data.shouldDisableBatWings = false; //was set only temporarily to send it
|
2016-11-22 18:26:29 +01:00
|
|
|
}
|
2019-05-02 09:10:29 +02:00
|
|
|
} else {
|
|
|
|
if (data.hasBatWings) {
|
2016-11-22 18:26:29 +01:00
|
|
|
player.capabilities.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;
|
|
|
|
|
2016-07-03 20:57:00 +02:00
|
|
|
player.capabilities.allowFlying = false;
|
|
|
|
player.capabilities.isFlying = false;
|
|
|
|
player.capabilities.disableDamage = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-07-17 06:51:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public EnumRarity getRarity(ItemStack stack) {
|
2016-01-07 21:41:28 +01:00
|
|
|
return EnumRarity.EPIC;
|
2015-10-03 10:19:40 +02:00
|
|
|
}
|
2015-07-17 06:51:19 +02:00
|
|
|
}
|