TechReborn/src/main/java/techreborn/items/ItemFrequencyTransmitter.java

155 lines
6.8 KiB
Java
Raw Normal View History

/*
* This file is part of TechReborn, licensed under the MIT License (MIT).
*
* Copyright (c) 2017 TechReborn
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
2016-03-30 07:45:15 +02:00
package techreborn.items;
import net.minecraft.entity.EntityLivingBase;
2016-03-30 07:45:15 +02:00
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.IItemPropertyGetter;
2016-03-30 07:45:15 +02:00
import net.minecraft.item.ItemStack;
2016-05-11 07:35:09 +02:00
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.util.*;
2016-05-11 07:35:09 +02:00
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.text.TextComponentString;
2016-05-13 08:46:17 +02:00
import net.minecraft.util.text.TextFormatting;
import net.minecraft.util.text.translation.I18n;
2016-03-30 07:45:15 +02:00
import net.minecraft.world.World;
2016-05-11 07:35:09 +02:00
import net.minecraftforge.common.DimensionManager;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
import reborncore.client.hud.StackInfoElement;
import reborncore.common.util.ChatUtils;
import reborncore.common.util.Color;
2016-03-30 07:45:15 +02:00
import techreborn.client.TechRebornCreativeTabMisc;
import techreborn.init.ModItems;
2016-05-22 06:51:26 +02:00
import techreborn.lib.MessageIDs;
2016-05-11 07:35:09 +02:00
import javax.annotation.Nullable;
2016-05-11 07:35:09 +02:00
import java.util.List;
2016-03-30 07:45:15 +02:00
public class ItemFrequencyTransmitter extends ItemTRNoDestroy {
2016-03-30 07:45:15 +02:00
2016-10-08 21:46:16 +02:00
public ItemFrequencyTransmitter() {
2016-03-30 07:45:15 +02:00
setUnlocalizedName("techreborn.frequencyTransmitter");
setCreativeTab(TechRebornCreativeTabMisc.instance);
2016-05-12 07:37:55 +02:00
setMaxStackSize(1);
this.addPropertyOverride(new ResourceLocation("techreborn:coords"), new IItemPropertyGetter() {
@SideOnly(Side.CLIENT)
public float apply(ItemStack stack,
@Nullable
World worldIn,
@Nullable
EntityLivingBase entityIn) {
if (stack != ItemStack.EMPTY && stack.hasTagCompound() && stack.getTagCompound() != null && stack.getTagCompound().hasKey("x") && stack.getTagCompound().hasKey("y") && stack.getTagCompound().hasKey("z") && stack.getTagCompound().hasKey("dim")) {
return 1.0F;
}
return 0.0F;
}
});
2016-03-30 07:45:15 +02:00
}
2016-10-08 21:46:16 +02:00
@Override
2016-11-19 13:50:08 +01:00
public EnumActionResult onItemUse(EntityPlayer player, World world, BlockPos pos,
2016-10-08 21:46:16 +02:00
EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ) {
2016-11-19 13:50:08 +01:00
ItemStack stack = player.getHeldItem(hand);
stack.setTagCompound(new NBTTagCompound());
stack.getTagCompound().setInteger("x", pos.getX());
stack.getTagCompound().setInteger("y", pos.getY());
stack.getTagCompound().setInteger("z", pos.getZ());
stack.getTagCompound().setInteger("dim", world.provider.getDimension());
2016-05-11 07:35:09 +02:00
2017-06-12 21:33:30 +02:00
if (!world.isRemote) {
ChatUtils.sendNoSpamMessages(MessageIDs.freqTransmitterID, new TextComponentString(
TextFormatting.GRAY + I18n.translateToLocal("techreborn.message.setTo") + " X: " +
TextFormatting.GOLD + pos.getX() +
TextFormatting.GRAY + " Y: " +
TextFormatting.GOLD + pos.getY() +
TextFormatting.GRAY + " Z: " +
TextFormatting.GOLD + pos.getZ() +
TextFormatting.GRAY + " " + I18n.translateToLocal("techreborn.message.in") + " " +
TextFormatting.GOLD + DimensionManager.getProviderType(world.provider.getDimension())
.getName() + " (" + world.provider.getDimension() + ")"));
2016-05-11 07:35:09 +02:00
}
return EnumActionResult.SUCCESS;
2016-05-11 07:35:09 +02:00
}
2016-10-08 21:46:16 +02:00
@Override
2016-11-19 13:50:08 +01:00
public ActionResult<ItemStack> onItemRightClick(World world, EntityPlayer player,
2016-10-08 21:46:16 +02:00
EnumHand hand) {
2016-11-19 13:50:08 +01:00
ItemStack stack = player.getHeldItem(hand);
2016-10-08 21:46:16 +02:00
if (player.isSneaking()) {
stack.setTagCompound(null);
2017-06-12 21:33:30 +02:00
if (!world.isRemote) {
2016-05-22 06:51:26 +02:00
ChatUtils.sendNoSpamMessages(MessageIDs.freqTransmitterID, new TextComponentString(
2016-10-08 21:46:16 +02:00
TextFormatting.GRAY + I18n.translateToLocal("techreborn.message.coordsHaveBeen") + " "
+ TextFormatting.GOLD + I18n.translateToLocal("techreborn.message.cleared")));
}
}
return new ActionResult<>(EnumActionResult.SUCCESS, stack);
}
2016-10-08 21:46:16 +02:00
public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean par4) {
2017-06-12 21:33:30 +02:00
if (stack.hasTagCompound() && stack.getTagCompound() != null && stack.getTagCompound().hasKey("x") && stack.getTagCompound().hasKey("y") && stack.getTagCompound().hasKey("z") && stack.getTagCompound().hasKey("dim")) {
int x = stack.getTagCompound().getInteger("x");
int y = stack.getTagCompound().getInteger("y");
int z = stack.getTagCompound().getInteger("z");
int dim = stack.getTagCompound().getInteger("dim");
2016-05-11 07:35:09 +02:00
2017-06-12 21:33:30 +02:00
list.add(TextFormatting.GRAY + "X: " + TextFormatting.GOLD + x);
list.add(TextFormatting.GRAY + "Y: " + TextFormatting.GOLD + y);
list.add(TextFormatting.GRAY + "Z: " + TextFormatting.GOLD + z);
list.add(TextFormatting.DARK_GRAY + DimensionManager.getProviderType(dim).getName());
2016-05-11 07:35:09 +02:00
2017-06-12 21:33:30 +02:00
} else {
list.add(TextFormatting.GRAY + I18n.translateToLocal("techreborn.message.noCoordsSet"));
2016-05-11 07:35:09 +02:00
}
2016-03-30 07:45:15 +02:00
}
public static class StackInfoFreqTransmitter extends StackInfoElement {
public StackInfoFreqTransmitter() {
super(ModItems.FREQUENCY_TRANSMITTER);
}
@Override
public String getText(ItemStack stack) {
String text = "";
Color gold = Color.GOLD;
Color grey = Color.GRAY;
if (stack.getItem() instanceof ItemFrequencyTransmitter) {
if (stack.hasTagCompound() && stack.getTagCompound() != null && stack.getTagCompound().hasKey("x") && stack.getTagCompound().hasKey("y") && stack.getTagCompound().hasKey("z") && stack.getTagCompound().hasKey("dim")) {
int coordX = stack.getTagCompound().getInteger("x");
int coordY = stack.getTagCompound().getInteger("y");
int coordZ = stack.getTagCompound().getInteger("z");
int coordDim = stack.getTagCompound().getInteger("dim");
text = grey + "X: " + gold + coordX + grey + " Y: " + gold + coordY + grey + " Z: " + gold + coordZ + grey + " Dim: " + gold + DimensionManager.getProviderType(coordDim).getName() + " (" + coordDim + ")";
} else {
text = grey + I18n.translateToLocal("techreborn.message.noCoordsSet");
}
}
return text;
}
}
2016-03-30 07:45:15 +02:00
}