/* * This file ("BookletPageAA.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-2016 Ellpeck */ package de.ellpeck.actuallyadditions.mod.booklet.page; import de.ellpeck.actuallyadditions.api.ActuallyAdditionsAPI; import de.ellpeck.actuallyadditions.api.booklet.BookletPage; import de.ellpeck.actuallyadditions.api.internal.IBookletGui; import de.ellpeck.actuallyadditions.mod.util.ModUtil; import de.ellpeck.actuallyadditions.mod.util.StringUtil; import de.ellpeck.actuallyadditions.mod.util.Util; import net.minecraft.item.ItemStack; import net.minecraft.util.text.TextFormatting; import org.apache.commons.lang3.ArrayUtils; import java.util.HashMap; import java.util.Map; public class BookletPageAA extends BookletPage{ protected final int localizationKey; private final HashMap textReplacements = new HashMap(); private boolean hasNoText; public BookletPageAA(int localizationKey){ this.localizationKey = localizationKey; } @Override public int getID(){ return this.chapter.getPageId(this); } @Override public final String getText(){ if(this.hasNoText){ return null; } String base = StringUtil.localize("booklet."+ModUtil.MOD_ID+".chapter."+this.chapter.getIdentifier()+".text."+this.localizationKey); base = base.replaceAll("", TextFormatting.DARK_GREEN+""); base = base.replaceAll("", TextFormatting.BLUE+""); base = base.replaceAll("", TextFormatting.BLACK+""); base = base.replaceAll("", "\n"); base = base.replaceAll("", TextFormatting.ITALIC+""); base = base.replaceAll("", TextFormatting.DARK_RED+""+TextFormatting.UNDERLINE); //This is fucking important so go read it now for(Object o : this.textReplacements.entrySet()){ Map.Entry e = (Map.Entry)o; base = base.replaceAll((String)e.getKey(), (String)e.getValue()); } return base; } @Override public void renderPre(IBookletGui gui, int mouseX, int mouseY, int ticksElapsed, boolean mousePressed){ } @Override public void render(IBookletGui gui, int mouseX, int mouseY, int ticksElapsed, boolean mousePressed){ } @Override public void updateScreen(int ticksElapsed){ } @Override public ItemStack[] getItemStacksForPage(){ return null; } @Override public String getClickToSeeRecipeString(){ return TextFormatting.GOLD+StringUtil.localize("booklet."+ModUtil.MOD_ID+".clickToSeeRecipe"); } public BookletPage setNoText(){ this.hasNoText = true; return this; } public BookletPageAA addTextReplacement(String text, int replacement){ return this.addTextReplacement(text, Integer.toString(replacement)); } public BookletPageAA addTextReplacement(String text, String replacement){ this.textReplacements.put(text, replacement); return this; } public void addToPagesWithItemStackData(){ if(!ActuallyAdditionsAPI.BOOKLET_PAGES_WITH_ITEM_DATA.contains(this)){ ItemStack[] stacks = this.getItemStacksForPage(); if(stacks != null && stacks.length > 0){ //Ensure that there is at least one ItemStack for(ItemStack stack : stacks){ if(stack != null){ ActuallyAdditionsAPI.addPageWithItemStackData(this); break; } } } } } }