2016-01-17 01:09:36 +01:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("RecipeWrapperWithButton.java") is part of the Actually Additions mod for Minecraft.
|
2016-01-17 01:09:36 +01:00
|
|
|
* 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
|
2016-01-17 01:09:36 +01:00
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2017-01-01 16:23:26 +01:00
|
|
|
* © 2015-2017 Ellpeck
|
2016-01-17 01:09:36 +01:00
|
|
|
*/
|
|
|
|
|
2016-01-17 01:14:30 +01:00
|
|
|
package de.ellpeck.actuallyadditions.mod.jei;
|
2016-01-17 01:09:36 +01:00
|
|
|
|
2016-11-10 19:50:01 +01:00
|
|
|
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;
|
2016-11-10 19:50:01 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.inventory.gui.TexturedButton;
|
2016-01-17 01:09:36 +01:00
|
|
|
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;
|
2016-01-17 01:09:36 +01:00
|
|
|
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-01-17 01:09:36 +01:00
|
|
|
|
2016-05-19 20:05:12 +02:00
|
|
|
protected final TexturedButton theButton;
|
2016-01-17 01:09:36 +01:00
|
|
|
|
|
|
|
public RecipeWrapperWithButton(){
|
2016-11-10 19:50:01 +01:00
|
|
|
this.theButton = new TexturedButton(GuiBooklet.RES_LOC_GADGETS, 23782, this.getButtonX(), this.getButtonY(), 0, 0, 20, 20);
|
2016-01-17 01:09:36 +01:00
|
|
|
}
|
|
|
|
|
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());
|
2016-01-17 01:09:36 +01:00
|
|
|
|
2016-11-10 19:50:01 +01:00
|
|
|
IBookletPage page = this.getPage();
|
2016-01-17 01:09:36 +01:00
|
|
|
if(page != null){
|
2016-11-10 21:07:15 +01:00
|
|
|
Minecraft.getMinecraft().displayGuiScreen(BookletUtils.createBookletGuiFromPage(Minecraft.getMinecraft().currentScreen, page));
|
2016-01-17 01:09:36 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-11-10 19:50:01 +01:00
|
|
|
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){
|
|
|
|
this.theButton.drawButton(minecraft, mouseX, mouseY);
|
|
|
|
}
|
|
|
|
|
|
|
|
@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();
|
|
|
|
}
|
2016-01-17 01:09:36 +01:00
|
|
|
}
|
|
|
|
}
|