2015-08-29 14:33:25 +02:00
|
|
|
|
/*
|
|
|
|
|
* This file ("TooltipEvent.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://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
|
|
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
|
*
|
|
|
|
|
* <EFBFBD> 2015 Ellpeck
|
|
|
|
|
*/
|
|
|
|
|
|
2015-05-04 17:26:50 +02:00
|
|
|
|
package ellpeck.actuallyadditions.event;
|
|
|
|
|
|
|
|
|
|
import cpw.mods.fml.common.eventhandler.SubscribeEvent;
|
2015-09-13 20:50:32 +02:00
|
|
|
|
import ellpeck.actuallyadditions.booklet.GuiBooklet;
|
|
|
|
|
import ellpeck.actuallyadditions.booklet.InitBooklet;
|
|
|
|
|
import ellpeck.actuallyadditions.booklet.page.BookletPage;
|
2015-08-01 00:30:56 +02:00
|
|
|
|
import ellpeck.actuallyadditions.config.values.ConfigBoolValues;
|
2015-09-14 11:02:16 +02:00
|
|
|
|
import ellpeck.actuallyadditions.items.InitItems;
|
2015-09-23 18:36:53 +02:00
|
|
|
|
import ellpeck.actuallyadditions.util.*;
|
2015-09-13 20:50:32 +02:00
|
|
|
|
import net.minecraft.client.Minecraft;
|
|
|
|
|
import net.minecraft.client.audio.PositionedSoundRecord;
|
2015-08-01 00:30:56 +02:00
|
|
|
|
import net.minecraft.item.Item;
|
2015-08-30 01:19:03 +02:00
|
|
|
|
import net.minecraft.util.EnumChatFormatting;
|
2015-09-13 20:50:32 +02:00
|
|
|
|
import net.minecraft.util.ResourceLocation;
|
2015-05-04 17:26:50 +02:00
|
|
|
|
import net.minecraftforge.event.entity.player.ItemTooltipEvent;
|
|
|
|
|
import net.minecraftforge.oredict.OreDictionary;
|
2015-09-13 20:50:32 +02:00
|
|
|
|
import org.lwjgl.input.Keyboard;
|
2015-05-04 17:26:50 +02:00
|
|
|
|
|
|
|
|
|
public class TooltipEvent{
|
|
|
|
|
|
2015-09-13 20:50:32 +02:00
|
|
|
|
private static final String ADVANCED_INFO_TEXT_PRE = EnumChatFormatting.DARK_GRAY+" ";
|
|
|
|
|
private static final String ADVANCED_INFO_HEADER_PRE = EnumChatFormatting.GRAY+" -";
|
2015-08-01 00:30:56 +02:00
|
|
|
|
|
2015-09-14 01:58:42 +02:00
|
|
|
|
@SuppressWarnings("unchecked")
|
2015-08-01 01:30:50 +02:00
|
|
|
|
@SubscribeEvent
|
2015-05-04 17:26:50 +02:00
|
|
|
|
public void onTooltipEvent(ItemTooltipEvent event){
|
2015-09-13 20:50:32 +02:00
|
|
|
|
//Booklet Access
|
2015-09-23 21:34:12 +02:00
|
|
|
|
if(event.itemStack != null && !(Minecraft.getMinecraft().currentScreen instanceof GuiBooklet)){
|
|
|
|
|
for(BookletPage page : InitBooklet.pagesWithItemStackData){
|
|
|
|
|
if(ItemUtil.areItemsEqual(event.itemStack, page.getItemStackForPage(), true)){
|
|
|
|
|
int keyCode = KeyBinds.keybindOpenBooklet.getKeyCode();
|
|
|
|
|
if(!ConfigBoolValues.NEED_BOOKLET_FOR_KEYBIND_INFO.isEnabled() || Minecraft.getMinecraft().thePlayer.inventory.hasItem(InitItems.itemLexicon)){
|
|
|
|
|
if(ConfigBoolValues.SHOW_NEED_BOOKLET_FOR_KEYBIND_INFO.isEnabled()){
|
|
|
|
|
event.toolTip.add(EnumChatFormatting.GOLD+StringUtil.localizeFormatted("booklet."+ModUtil.MOD_ID_LOWER+".keyToSeeRecipe", keyCode > 0 && keyCode < Keyboard.KEYBOARD_SIZE ? "'"+Keyboard.getKeyName(keyCode)+"'" : "[NONE]"));
|
|
|
|
|
}
|
|
|
|
|
if(Keyboard.isKeyDown(KeyBinds.keybindOpenBooklet.getKeyCode())){
|
|
|
|
|
GuiBooklet book = new GuiBooklet();
|
|
|
|
|
Minecraft.getMinecraft().getSoundHandler().playSound(PositionedSoundRecord.func_147674_a(new ResourceLocation("gui.button.press"), 1.0F));
|
|
|
|
|
Minecraft.getMinecraft().displayGuiScreen(book);
|
|
|
|
|
book.openIndexEntry(page.getChapter().entry, InitBooklet.entries.indexOf(page.getChapter().entry)/GuiBooklet.BUTTONS_PER_PAGE+1, true);
|
|
|
|
|
book.openChapter(page.getChapter(), page);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
if(ConfigBoolValues.SHOW_NEED_BOOKLET_FOR_KEYBIND_INFO.isEnabled()){
|
|
|
|
|
event.toolTip.addAll(Minecraft.getMinecraft().fontRenderer.listFormattedStringToWidth(EnumChatFormatting.DARK_RED+StringUtil.localizeFormatted("booklet."+ModUtil.MOD_ID_LOWER+".noBookletInInventory"), GuiBooklet.TOOLTIP_SPLIT_LENGTH));
|
2015-09-13 20:50:32 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-09-23 21:34:12 +02:00
|
|
|
|
break;
|
2015-09-13 20:50:32 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//Advanced Item Info
|
2015-08-01 00:30:56 +02:00
|
|
|
|
if(event.itemStack.getItem() != null){
|
2015-08-02 09:58:36 +02:00
|
|
|
|
if(ConfigBoolValues.CTRL_EXTRA_INFO.isEnabled()){
|
|
|
|
|
if(KeyUtil.isControlPressed()){
|
2015-08-30 01:19:03 +02:00
|
|
|
|
event.toolTip.add(EnumChatFormatting.DARK_GRAY+""+EnumChatFormatting.ITALIC+StringUtil.localize("tooltip."+ModUtil.MOD_ID_LOWER+".extraInfo.desc")+":");
|
2015-08-01 00:30:56 +02:00
|
|
|
|
|
|
|
|
|
//OreDict Names
|
|
|
|
|
int[] oreIDs = OreDictionary.getOreIDs(event.itemStack);
|
2015-09-13 20:50:32 +02:00
|
|
|
|
event.toolTip.add(ADVANCED_INFO_HEADER_PRE+StringUtil.localize("tooltip."+ModUtil.MOD_ID_LOWER+".oredictName.desc")+":");
|
2015-08-01 00:30:56 +02:00
|
|
|
|
if(oreIDs.length > 0){
|
|
|
|
|
for(int oreID : oreIDs){
|
2015-09-13 20:50:32 +02:00
|
|
|
|
event.toolTip.add(ADVANCED_INFO_TEXT_PRE+OreDictionary.getOreName(oreID));
|
2015-08-01 00:30:56 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else{
|
2015-09-13 20:50:32 +02:00
|
|
|
|
event.toolTip.add(ADVANCED_INFO_TEXT_PRE+StringUtil.localize("tooltip."+ModUtil.MOD_ID_LOWER+".noOredictNameAvail.desc"));
|
2015-08-01 00:30:56 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//Code Name
|
2015-09-13 20:50:32 +02:00
|
|
|
|
event.toolTip.add(ADVANCED_INFO_HEADER_PRE+StringUtil.localize("tooltip."+ModUtil.MOD_ID_LOWER+".codeName.desc")+":");
|
|
|
|
|
event.toolTip.add(ADVANCED_INFO_TEXT_PRE+Item.itemRegistry.getNameForObject(event.itemStack.getItem()));
|
2015-08-01 00:30:56 +02:00
|
|
|
|
|
|
|
|
|
//Base Item's Unlocalized Name
|
|
|
|
|
String baseName = event.itemStack.getItem().getUnlocalizedName();
|
2015-08-02 01:52:12 +02:00
|
|
|
|
if(baseName != null){
|
2015-09-13 20:50:32 +02:00
|
|
|
|
event.toolTip.add(ADVANCED_INFO_HEADER_PRE+StringUtil.localize("tooltip."+ModUtil.MOD_ID_LOWER+".baseUnlocName.desc")+":");
|
|
|
|
|
event.toolTip.add(ADVANCED_INFO_TEXT_PRE+baseName);
|
2015-08-02 01:52:12 +02:00
|
|
|
|
}
|
2015-08-01 00:30:56 +02:00
|
|
|
|
|
|
|
|
|
//Unlocalized Name
|
|
|
|
|
String metaName = event.itemStack.getItem().getUnlocalizedName(event.itemStack);
|
2015-08-02 01:52:12 +02:00
|
|
|
|
if(metaName != null && baseName != null && !metaName.equals(baseName)){
|
2015-09-13 20:50:32 +02:00
|
|
|
|
event.toolTip.add(ADVANCED_INFO_HEADER_PRE+StringUtil.localize("tooltip."+ModUtil.MOD_ID_LOWER+".unlocName.desc")+":");
|
|
|
|
|
event.toolTip.add(ADVANCED_INFO_TEXT_PRE+metaName);
|
2015-08-01 00:30:56 +02:00
|
|
|
|
}
|
2015-08-17 23:59:38 +02:00
|
|
|
|
|
|
|
|
|
//Disabling Info
|
2015-09-14 01:58:42 +02:00
|
|
|
|
event.toolTip.addAll(Minecraft.getMinecraft().fontRenderer.listFormattedStringToWidth(EnumChatFormatting.ITALIC+StringUtil.localize("tooltip."+ModUtil.MOD_ID_LOWER+".disablingInfo.desc"), GuiBooklet.TOOLTIP_SPLIT_LENGTH));
|
2015-08-01 00:30:56 +02:00
|
|
|
|
}
|
2015-08-02 09:58:36 +02:00
|
|
|
|
else{
|
|
|
|
|
if(ConfigBoolValues.CTRL_INFO_FOR_EXTRA_INFO.isEnabled()){
|
2015-08-30 01:19:03 +02:00
|
|
|
|
event.toolTip.add(EnumChatFormatting.DARK_GRAY+""+EnumChatFormatting.ITALIC+StringUtil.localize("tooltip."+ModUtil.MOD_ID_LOWER+".ctrlForMoreInfo.desc"));
|
2015-08-02 09:58:36 +02:00
|
|
|
|
}
|
2015-05-04 17:26:50 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|