2015-08-29 14:33:25 +02:00
|
|
|
/*
|
|
|
|
* This file ("AssetUtil.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-01-03 16:05:51 +01:00
|
|
|
* http://ellpeck.de/actaddlicense/
|
2015-08-29 14:33:25 +02:00
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2016-01-03 16:05:51 +01:00
|
|
|
* © 2016 Ellpeck
|
2015-08-29 14:33:25 +02:00
|
|
|
*/
|
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
package de.ellpeck.actuallyadditions.mod.util;
|
2015-03-29 15:29:05 +02:00
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.booklet.GuiBooklet;
|
2015-08-24 17:57:11 +02:00
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.client.Minecraft;
|
2015-04-19 01:50:02 +02:00
|
|
|
import net.minecraft.client.gui.FontRenderer;
|
2016-01-07 21:41:28 +01:00
|
|
|
import net.minecraft.client.renderer.GlStateManager;
|
2016-01-07 18:20:59 +01:00
|
|
|
import net.minecraft.client.renderer.RenderHelper;
|
|
|
|
import net.minecraft.client.renderer.Tessellator;
|
2016-01-07 21:41:28 +01:00
|
|
|
import net.minecraft.client.renderer.WorldRenderer;
|
2016-01-08 23:36:35 +01:00
|
|
|
import net.minecraft.client.renderer.block.model.ItemCameraTransforms.TransformType;
|
2016-01-07 21:41:28 +01:00
|
|
|
import net.minecraft.client.renderer.vertex.DefaultVertexFormats;
|
2015-08-24 17:57:11 +02:00
|
|
|
import net.minecraft.item.ItemStack;
|
2015-03-29 15:29:05 +02:00
|
|
|
import net.minecraft.util.ResourceLocation;
|
2016-01-07 18:20:59 +01:00
|
|
|
import net.minecraftforge.fml.relauncher.Side;
|
|
|
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
2015-10-23 19:05:02 +02:00
|
|
|
import org.lwjgl.opengl.GL11;
|
2015-03-29 15:29:05 +02:00
|
|
|
|
|
|
|
public class AssetUtil{
|
|
|
|
|
2015-10-03 10:16:18 +02:00
|
|
|
public static final ResourceLocation GUI_INVENTORY_LOCATION = getGuiLocation("guiInventory");
|
2015-11-13 18:56:15 +01:00
|
|
|
|
2015-03-29 15:29:05 +02:00
|
|
|
public static ResourceLocation getGuiLocation(String file){
|
2015-10-02 16:48:01 +02:00
|
|
|
return new ResourceLocation(ModUtil.MOD_ID_LOWER, "textures/gui/"+file+".png");
|
2015-03-29 15:29:05 +02:00
|
|
|
}
|
|
|
|
|
2015-10-30 20:07:36 +01:00
|
|
|
public static ResourceLocation getBookletGuiLocation(String file){
|
|
|
|
return new ResourceLocation(ModUtil.MOD_ID_LOWER, "textures/gui/booklet/"+file+".png");
|
|
|
|
}
|
|
|
|
|
2015-05-20 22:39:43 +02:00
|
|
|
public static void displayNameString(FontRenderer font, int xSize, int yPositionOfMachineText, String machineName){
|
2015-08-01 00:40:29 +02:00
|
|
|
String localMachineName = StringUtil.localize(machineName+".name");
|
2015-10-02 16:48:01 +02:00
|
|
|
font.drawString(localMachineName, xSize/2-font.getStringWidth(localMachineName)/2, yPositionOfMachineText, StringUtil.DECIMAL_COLOR_WHITE);
|
2015-04-19 01:50:02 +02:00
|
|
|
}
|
2015-08-24 17:57:11 +02:00
|
|
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
2016-01-08 23:36:35 +01:00
|
|
|
public static void renderItemInWorld(ItemStack stack){
|
|
|
|
GlStateManager.pushMatrix();
|
|
|
|
GlStateManager.disableLighting();
|
|
|
|
GlStateManager.pushAttrib();
|
|
|
|
RenderHelper.enableStandardItemLighting();
|
|
|
|
Minecraft.getMinecraft().getRenderItem().renderItem(stack, TransformType.FIXED);
|
|
|
|
RenderHelper.disableStandardItemLighting();
|
|
|
|
GlStateManager.popAttrib();
|
|
|
|
GlStateManager.enableLighting();
|
|
|
|
GlStateManager.popMatrix();
|
2015-08-24 17:57:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
2015-12-22 14:55:10 +01:00
|
|
|
public static void renderBlockInWorld(Block block, int meta){
|
2016-01-08 23:36:35 +01:00
|
|
|
renderItemInWorld(new ItemStack(block, 1, meta));
|
2015-08-24 17:57:11 +02:00
|
|
|
}
|
2015-10-23 19:05:02 +02:00
|
|
|
|
2015-12-22 14:55:10 +01:00
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public static void renderStackToGui(ItemStack stack, int x, int y, float scale){
|
2016-01-08 15:21:05 +01:00
|
|
|
GlStateManager.pushMatrix();
|
|
|
|
GlStateManager.enableBlend();
|
|
|
|
GlStateManager.blendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);
|
2015-12-22 14:55:10 +01:00
|
|
|
RenderHelper.enableGUIStandardItemLighting();
|
2016-01-08 15:21:05 +01:00
|
|
|
GlStateManager.enableDepth();
|
|
|
|
GlStateManager.enableRescaleNormal();
|
|
|
|
GlStateManager.translate(x, y, 0);
|
|
|
|
GlStateManager.scale(scale, scale, scale);
|
2015-12-22 14:55:10 +01:00
|
|
|
|
|
|
|
Minecraft mc = Minecraft.getMinecraft();
|
2016-01-07 21:41:28 +01:00
|
|
|
boolean flagBefore = mc.fontRendererObj.getUnicodeFlag();
|
|
|
|
mc.fontRendererObj.setUnicodeFlag(false);
|
|
|
|
Minecraft.getMinecraft().getRenderItem().renderItemAndEffectIntoGUI(stack, 0, 0);
|
|
|
|
Minecraft.getMinecraft().getRenderItem().renderItemOverlayIntoGUI(mc.fontRendererObj, stack, 0, 0, null);
|
|
|
|
mc.fontRendererObj.setUnicodeFlag(flagBefore);
|
2015-12-22 14:55:10 +01:00
|
|
|
|
|
|
|
//GL+MC+NEI suck
|
2015-12-22 15:01:40 +01:00
|
|
|
if(mc.currentScreen instanceof GuiBooklet || mc.currentScreen == null){
|
2015-12-22 14:55:10 +01:00
|
|
|
RenderHelper.disableStandardItemLighting();
|
|
|
|
}
|
2016-01-08 15:21:05 +01:00
|
|
|
GlStateManager.popMatrix();
|
2015-12-22 14:55:10 +01:00
|
|
|
}
|
|
|
|
|
2015-10-23 19:05:02 +02:00
|
|
|
//Copied from Gui.class and changed
|
2016-01-07 21:41:28 +01:00
|
|
|
public static void drawHorizontalGradientRect(int left, int top, int right, int bottom, int startColor, int endColor, float zLevel){
|
|
|
|
float f = (float)(startColor >> 24 & 255)/255.0F;
|
|
|
|
float f1 = (float)(startColor >> 16 & 255)/255.0F;
|
|
|
|
float f2 = (float)(startColor >> 8 & 255)/255.0F;
|
|
|
|
float f3 = (float)(startColor & 255)/255.0F;
|
|
|
|
float f4 = (float)(endColor >> 24 & 255)/255.0F;
|
|
|
|
float f5 = (float)(endColor >> 16 & 255)/255.0F;
|
|
|
|
float f6 = (float)(endColor >> 8 & 255)/255.0F;
|
|
|
|
float f7 = (float)(endColor & 255)/255.0F;
|
|
|
|
GlStateManager.disableTexture2D();
|
|
|
|
GlStateManager.enableBlend();
|
|
|
|
GlStateManager.disableAlpha();
|
|
|
|
GlStateManager.tryBlendFuncSeparate(770, 771, 1, 0);
|
|
|
|
GlStateManager.shadeModel(7425);
|
|
|
|
Tessellator tessellator = Tessellator.getInstance();
|
|
|
|
WorldRenderer worldrenderer = tessellator.getWorldRenderer();
|
|
|
|
worldrenderer.begin(7, DefaultVertexFormats.POSITION_COLOR);
|
|
|
|
worldrenderer.pos((double)left, (double)top, (double)zLevel).color(f1, f2, f3, f).endVertex();
|
2016-01-08 15:21:05 +01:00
|
|
|
worldrenderer.pos((double)left, (double)bottom, (double)zLevel).color(f1, f2, f3, f).endVertex();
|
2016-01-07 21:41:28 +01:00
|
|
|
worldrenderer.pos((double)right, (double)bottom, (double)zLevel).color(f5, f6, f7, f4).endVertex();
|
2016-01-08 15:21:05 +01:00
|
|
|
worldrenderer.pos((double)right, (double)top, (double)zLevel).color(f5, f6, f7, f4).endVertex();
|
2015-10-23 19:05:02 +02:00
|
|
|
tessellator.draw();
|
2016-01-07 21:41:28 +01:00
|
|
|
GlStateManager.shadeModel(7424);
|
|
|
|
GlStateManager.disableBlend();
|
|
|
|
GlStateManager.enableAlpha();
|
|
|
|
GlStateManager.enableTexture2D();
|
2015-10-23 19:05:02 +02:00
|
|
|
}
|
2015-03-29 15:29:05 +02:00
|
|
|
}
|