92 lines
2.3 KiB
Java
92 lines
2.3 KiB
Java
package appeng.items.tools;
|
|
|
|
import java.util.EnumSet;
|
|
import java.util.List;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
import net.minecraft.util.StatCollector;
|
|
import net.minecraft.world.World;
|
|
import appeng.api.implementations.items.IMemoryCard;
|
|
import appeng.api.implementations.items.MemoryCardMessages;
|
|
import appeng.core.features.AEFeature;
|
|
import appeng.core.localization.GuiText;
|
|
import appeng.core.localization.PlayerMessages;
|
|
import appeng.items.AEBaseItem;
|
|
import appeng.util.Platform;
|
|
|
|
public class ToolMemoryCard extends AEBaseItem implements IMemoryCard
|
|
{
|
|
|
|
public ToolMemoryCard() {
|
|
super( ToolMemoryCard.class );
|
|
setfeature( EnumSet.of( AEFeature.Core ) );
|
|
setMaxStackSize( 1 );
|
|
}
|
|
|
|
@Override
|
|
public void addInformation(ItemStack i, EntityPlayer p, List l, boolean b)
|
|
{
|
|
l.add( StatCollector.translateToLocal( getSettingsName( i ) ) );
|
|
NBTTagCompound data = getData( i );
|
|
if ( data.hasKey( "tooltip" ) )
|
|
{
|
|
l.add( StatCollector.translateToLocal( data.getString( "tooltip" ) ) );
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public boolean doesSneakBypassUse(World world, int x, int y, int z, EntityPlayer player)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public void setMemoryCardContents(ItemStack is, String SettingsName, NBTTagCompound data)
|
|
{
|
|
NBTTagCompound c = Platform.openNbtData( is );
|
|
c.setString( "Config", SettingsName );
|
|
c.setTag( "Data", data );
|
|
}
|
|
|
|
@Override
|
|
public String getSettingsName(ItemStack is)
|
|
{
|
|
NBTTagCompound c = Platform.openNbtData( is );
|
|
String name = c.getString( "Config" );
|
|
return name == null || name == "" ? GuiText.Blank.getUnlocalized() : name;
|
|
}
|
|
|
|
@Override
|
|
public NBTTagCompound getData(ItemStack is)
|
|
{
|
|
NBTTagCompound c = Platform.openNbtData( is );
|
|
NBTTagCompound o = c.getCompoundTag( "Data" );
|
|
if ( o == null )
|
|
o = new NBTTagCompound();
|
|
return (NBTTagCompound) o.copy();
|
|
}
|
|
|
|
@Override
|
|
public void notifyUser(EntityPlayer player, MemoryCardMessages msg)
|
|
{
|
|
if ( Platform.isClient() )
|
|
return;
|
|
|
|
switch (msg)
|
|
{
|
|
case INVALID_MACHINE:
|
|
player.addChatMessage( PlayerMessages.InvalidMachine.get() );
|
|
break;
|
|
case SETTINGS_LOADED:
|
|
player.addChatMessage( PlayerMessages.LoadedSettings.get() );
|
|
break;
|
|
case SETTINGS_SAVED:
|
|
player.addChatMessage( PlayerMessages.SavedSettings.get() );
|
|
break;
|
|
default:
|
|
}
|
|
}
|
|
|
|
}
|