ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/jei/RecipeWrapperWithButton.java

70 lines
2.4 KiB
Java
Raw Normal View History

/*
2016-05-16 22:52:27 +02:00
* This file ("RecipeWrapperWithButton.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
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
*/
package de.ellpeck.actuallyadditions.mod.jei;
import de.ellpeck.actuallyadditions.api.booklet.IBookletPage;
import de.ellpeck.actuallyadditions.mod.booklet.gui.GuiBooklet;
2016-11-10 21:07:15 +01:00
import de.ellpeck.actuallyadditions.mod.booklet.misc.BookletUtils;
import de.ellpeck.actuallyadditions.mod.inventory.gui.TexturedButton;
import de.ellpeck.actuallyadditions.mod.util.ModUtil;
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
2016-11-08 23:35:11 +01:00
import mezz.jei.api.recipe.BlankRecipeWrapper;
import net.minecraft.client.Minecraft;
2016-10-31 20:19:55 +01:00
import javax.annotation.Nullable;
import java.util.Collections;
import java.util.List;
2016-11-08 23:35:11 +01:00
public abstract class RecipeWrapperWithButton extends BlankRecipeWrapper{
2016-05-19 20:05:12 +02:00
protected final TexturedButton theButton;
public RecipeWrapperWithButton(){
this.theButton = new TexturedButton(GuiBooklet.RES_LOC_GADGETS, 23782, this.getButtonX(), this.getButtonY(), 0, 0, 20, 20);
}
2016-02-01 17:49:55 +01:00
public abstract int getButtonX();
public abstract int getButtonY();
2016-10-31 20:19:55 +01:00
@Override
public boolean handleClick(Minecraft minecraft, int mouseX, int mouseY, int mouseButton){
if(this.theButton.mousePressed(minecraft, mouseX, mouseY)){
this.theButton.playPressSound(minecraft.getSoundHandler());
IBookletPage page = this.getPage();
if(page != null){
2016-11-10 21:07:15 +01:00
Minecraft.getMinecraft().displayGuiScreen(BookletUtils.createBookletGuiFromPage(Minecraft.getMinecraft().currentScreen, page));
return true;
}
}
return false;
}
public abstract IBookletPage getPage();
2016-02-01 17:49:55 +01:00
2016-10-31 20:19:55 +01:00
@Override
public void drawInfo(Minecraft minecraft, int recipeWidth, int recipeHeight, int mouseX, int mouseY){
2017-06-17 00:48:49 +02:00
this.theButton.func_191745_a(minecraft, mouseX, mouseY, 0F);
2016-10-31 20:19:55 +01:00
}
@Nullable
@Override
public List<String> getTooltipStrings(int mouseX, int mouseY){
if(this.theButton.isMouseOver()){
return Collections.singletonList(StringUtil.localize("booklet."+ModUtil.MOD_ID+".clickToSeeRecipe"));
}
else{
return Collections.emptyList();
}
}
}