107 lines
No EOL
3.6 KiB
Java
107 lines
No EOL
3.6 KiB
Java
package gregtech.common.items;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
import gregtech.api.interfaces.tileentity.IGregTechDeviceInformation;
|
|
import gregtech.api.items.GT_Generic_Item;
|
|
import gregtech.api.util.GT_LanguageManager;
|
|
import java.util.ArrayList;
|
|
import java.util.LinkedList;
|
|
import java.util.List;
|
|
import java.util.UUID;
|
|
import net.minecraft.creativetab.CreativeTabs;
|
|
import net.minecraft.item.Item;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
import net.minecraft.tileentity.TileEntity;
|
|
import net.minecraft.util.ChunkCoordinates;
|
|
import net.minecraft.world.World;
|
|
import shedar.mods.ic2.nuclearcontrol.api.CardState;
|
|
import shedar.mods.ic2.nuclearcontrol.api.ICardWrapper;
|
|
import shedar.mods.ic2.nuclearcontrol.api.IPanelDataSource;
|
|
import shedar.mods.ic2.nuclearcontrol.api.IRemoteSensor;
|
|
import shedar.mods.ic2.nuclearcontrol.api.PanelSetting;
|
|
import shedar.mods.ic2.nuclearcontrol.api.PanelString;
|
|
|
|
public class GT_SensorCard_Item
|
|
extends GT_Generic_Item
|
|
implements IRemoteSensor, IPanelDataSource
|
|
{
|
|
public GT_SensorCard_Item(String aUnlocalized, String aEnglish)
|
|
{
|
|
super(aUnlocalized, aEnglish, "Insert into Display Panel");
|
|
setMaxStackSize(1);
|
|
}
|
|
|
|
public void addAdditionalToolTips(List aList, ItemStack aStack)
|
|
{
|
|
super.addAdditionalToolTips(aList, aStack);
|
|
if (aStack != null)
|
|
{
|
|
NBTTagCompound tNBT = aStack.getTagCompound();
|
|
if (tNBT == null)
|
|
{
|
|
aList.add("Missing Coodinates!");
|
|
}
|
|
else
|
|
{
|
|
aList.add("Device at:");
|
|
aList.add(String.format("x: %d, y: %d, z: %d", new Object[] { Integer.valueOf(tNBT.getInteger("x")), Integer.valueOf(tNBT.getInteger("y")), Integer.valueOf(tNBT.getInteger("z")) }));
|
|
}
|
|
}
|
|
}
|
|
|
|
public CardState update(TileEntity aPanel, ICardWrapper aCard, int aMaxRange)
|
|
{
|
|
ChunkCoordinates target = aCard.getTarget();
|
|
TileEntity tTileEntity = aPanel.getWorldObj().getTileEntity(target.posX, target.posY, target.posZ);
|
|
if ((tTileEntity != null) && ((tTileEntity instanceof IGregTechDeviceInformation)) && (((IGregTechDeviceInformation)tTileEntity).isGivingInformation()))
|
|
{
|
|
String[] tInfoData = ((IGregTechDeviceInformation)tTileEntity).getInfoData();
|
|
for (int i = 0; i < tInfoData.length; i++) {
|
|
aCard.setString("mString" + i, tInfoData[i]);
|
|
}
|
|
return CardState.OK;
|
|
}
|
|
return CardState.NO_TARGET;
|
|
}
|
|
|
|
public List<PanelString> getStringData(int aSettings, ICardWrapper aCard, boolean aLabels)
|
|
{
|
|
List<PanelString> rList = new LinkedList();
|
|
for (int i = 0; i < 8; i++) {
|
|
if ((aSettings & 1 << i) != 0)
|
|
{
|
|
PanelString line = new PanelString();
|
|
line.textLeft = GT_LanguageManager.getTranslation(aCard.getString("mString" + i), "\\\\");
|
|
rList.add(line);
|
|
}
|
|
}
|
|
return rList;
|
|
}
|
|
|
|
public List<PanelSetting> getSettingsList()
|
|
{
|
|
List<PanelSetting> rList = new ArrayList(30);
|
|
for (int i = 0; i < 8; i++) {
|
|
rList.add(new PanelSetting("" + (i + 1), 1 << i, getCardType()));
|
|
}
|
|
return rList;
|
|
}
|
|
|
|
private static final UUID CARD_TYPE = new UUID(0L, 41L);
|
|
|
|
public UUID getCardType()
|
|
{
|
|
return CARD_TYPE;
|
|
}
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
public void getSubItems(Item var1, CreativeTabs aTab, List aList) {}
|
|
}
|
|
|
|
|
|
|
|
/* Location: F:\Torrent\minecraft\jd-gui-0.3.6.windows\gregtech_1.7.10-5.07.07-dev.jar
|
|
|
|
* Qualified Name: gregtech.common.items.GT_SensorCard_Item
|
|
|
|
* JD-Core Version: 0.7.0.1
|
|
|
|
*/ |