2017-02-13 18:42:33 +01:00
|
|
|
/*
|
|
|
|
* This file ("ItemInfraredGoggles.java") is part of the Actually Additions mod for Minecraft.
|
|
|
|
* It is created and owned by Ellpeck and distributed
|
|
|
|
* under the Actually Additions License to be found at
|
|
|
|
* http://ellpeck.de/actaddlicense
|
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
|
|
|
* © 2015-2017 Ellpeck
|
|
|
|
*/
|
|
|
|
|
|
|
|
package de.ellpeck.actuallyadditions.mod.items;
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
import java.util.List;
|
|
|
|
import java.util.Set;
|
|
|
|
|
2017-02-14 18:18:38 +01:00
|
|
|
import de.ellpeck.actuallyadditions.api.misc.IGoggles;
|
2017-02-13 18:42:33 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.items.base.ItemArmorAA;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.material.InitArmorMaterials;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
|
2017-02-13 20:12:47 +01:00
|
|
|
import io.netty.util.internal.ConcurrentSet;
|
2017-02-13 18:42:33 +01:00
|
|
|
import net.minecraft.entity.Entity;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.item.EnumRarity;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.util.math.AxisAlignedBB;
|
|
|
|
import net.minecraftforge.common.MinecraftForge;
|
|
|
|
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
|
|
|
|
import net.minecraftforge.fml.common.gameevent.TickEvent.ClientTickEvent;
|
|
|
|
import net.minecraftforge.fml.relauncher.Side;
|
|
|
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public class ItemEngineerGoggles extends ItemArmorAA implements IGoggles {
|
2017-02-13 18:42:33 +01:00
|
|
|
|
2019-02-27 19:53:05 +01:00
|
|
|
private final Set<Entity> cachedGlowingEntities = new ConcurrentSet<>();
|
2017-02-13 20:12:47 +01:00
|
|
|
|
2017-02-14 18:18:38 +01:00
|
|
|
private final boolean displayMobs;
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public ItemEngineerGoggles(String name, boolean displayMobs) {
|
2017-11-02 22:49:53 +01:00
|
|
|
super(name, InitArmorMaterials.armorMaterialGoggles, 0, StackUtil.getEmpty());
|
2017-02-14 18:18:38 +01:00
|
|
|
this.displayMobs = displayMobs;
|
2017-02-13 18:42:33 +01:00
|
|
|
this.setMaxDamage(0);
|
|
|
|
|
|
|
|
MinecraftForge.EVENT_BUS.register(this);
|
|
|
|
}
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public static boolean isWearing(EntityPlayer player) {
|
2017-04-01 19:40:39 +02:00
|
|
|
ItemStack face = player.inventory.armorInventory.get(3);
|
|
|
|
return StackUtil.isValid(face) && face.getItem() instanceof IGoggles;
|
|
|
|
}
|
|
|
|
|
2017-02-13 18:42:33 +01:00
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
@SubscribeEvent
|
2019-05-02 09:10:29 +02:00
|
|
|
public void onClientTick(ClientTickEvent event) {
|
2018-05-10 11:38:58 +02:00
|
|
|
EntityPlayer player = ActuallyAdditions.PROXY.getCurrentPlayer();
|
2019-05-02 09:10:29 +02:00
|
|
|
if (player != null && isWearing(player)) {
|
2017-02-14 18:18:38 +01:00
|
|
|
ItemStack face = player.inventory.armorInventory.get(3);
|
2019-05-02 09:10:29 +02:00
|
|
|
if (((IGoggles) face.getItem()).displaySpectralMobs()) {
|
2017-02-14 18:18:38 +01:00
|
|
|
double range = 8;
|
2019-05-02 09:10:29 +02:00
|
|
|
AxisAlignedBB aabb = new AxisAlignedBB(player.posX - range, player.posY - range, player.posZ - range, player.posX + range, player.posY + range, player.posZ + range);
|
2017-02-14 18:18:38 +01:00
|
|
|
List<Entity> entities = player.world.getEntitiesWithinAABB(Entity.class, aabb);
|
2019-05-02 09:10:29 +02:00
|
|
|
if (entities != null && !entities.isEmpty()) {
|
2017-02-14 18:18:38 +01:00
|
|
|
this.cachedGlowingEntities.addAll(entities);
|
|
|
|
}
|
2017-02-13 18:42:33 +01:00
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
if (!this.cachedGlowingEntities.isEmpty()) {
|
|
|
|
for (Entity entity : this.cachedGlowingEntities) {
|
|
|
|
if (entity.isDead || entity.getDistanceSq(player.posX, player.posY, player.posZ) > range * range) {
|
2017-02-14 18:18:38 +01:00
|
|
|
entity.setGlowing(false);
|
2017-02-13 20:12:47 +01:00
|
|
|
|
2017-02-14 18:18:38 +01:00
|
|
|
this.cachedGlowingEntities.remove(entity);
|
2019-05-02 09:10:29 +02:00
|
|
|
} else {
|
2017-02-14 18:18:38 +01:00
|
|
|
entity.setGlowing(true);
|
|
|
|
}
|
2017-02-13 20:12:47 +01:00
|
|
|
}
|
|
|
|
}
|
2017-02-14 18:18:38 +01:00
|
|
|
|
|
|
|
return;
|
2017-02-13 20:12:47 +01:00
|
|
|
}
|
|
|
|
}
|
2017-02-14 18:18:38 +01:00
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
if (!this.cachedGlowingEntities.isEmpty()) {
|
|
|
|
for (Entity entity : this.cachedGlowingEntities) {
|
|
|
|
if (!entity.isDead) {
|
2017-02-14 18:18:38 +01:00
|
|
|
entity.setGlowing(false);
|
2017-02-13 18:42:33 +01:00
|
|
|
}
|
|
|
|
}
|
2017-02-14 18:18:38 +01:00
|
|
|
this.cachedGlowingEntities.clear();
|
2017-02-13 18:42:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public EnumRarity getRarity(ItemStack stack) {
|
2017-02-13 18:42:33 +01:00
|
|
|
return EnumRarity.RARE;
|
|
|
|
}
|
2017-02-14 18:18:38 +01:00
|
|
|
|
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public boolean displaySpectralMobs() {
|
2017-02-14 18:18:38 +01:00
|
|
|
return this.displayMobs;
|
|
|
|
}
|
2017-02-13 18:42:33 +01:00
|
|
|
}
|