Advertisement
Guest User

Untitled

a guest
Mar 25th, 2017
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5.23 KB | None | 0 0
  1. package com.lyesoussaiden.AETM.core.gui.clientside;
  2.  
  3. import org.lwjgl.opengl.GL11;
  4.  
  5. import com.lyesoussaiden.AETM.core.capabilities.karma.IKarmaCapability;
  6. import com.lyesoussaiden.AETM.core.capabilities.karma.KarmaCapability_Provider;
  7. import com.lyesoussaiden.AETM.core.util.AETM_KarmaHelper;
  8.  
  9. import net.minecraft.client.Minecraft;
  10. import net.minecraft.client.gui.Gui;
  11. import net.minecraft.client.gui.ScaledResolution;
  12. import net.minecraft.client.renderer.GlStateManager;
  13. import net.minecraft.client.renderer.Tessellator;
  14. import net.minecraft.client.renderer.VertexBuffer;
  15. import net.minecraft.client.renderer.GlStateManager.DestFactor;
  16. import net.minecraft.client.renderer.GlStateManager.SourceFactor;
  17. import net.minecraft.client.renderer.vertex.DefaultVertexFormats;
  18. import net.minecraft.util.ResourceLocation;
  19.  
  20. public class Karma_Gui extends Gui{
  21.    
  22.     private int width, height;
  23.     private IKarmaCapability karma;
  24.     private ResourceLocation guiLocation = new ResourceLocation("aetm:textures/gui/karma.png");
  25.     private static float rotationAngleA = 0.0f, rotationAngleB = 0.0f;
  26.    
  27.     public Karma_Gui(Minecraft client)
  28.     {      
  29.         ScaledResolution scaled = new ScaledResolution(client);
  30.         width = scaled.getScaledWidth();
  31.         height = scaled.getScaledHeight();
  32.        
  33.         karma = client.player.getCapability(KarmaCapability_Provider.KARMA_CAP, null);
  34.        
  35.         float rotationSpeed = 0.1f;
  36.         rotationAngleA += client.getRenderPartialTicks() * rotationSpeed;
  37.         rotationAngleB += client.getRenderPartialTicks() * (rotationSpeed / 2.0f);
  38.                
  39.         if(rotationAngleA > 360.0f)
  40.             rotationAngleA = 0.0f;
  41.                
  42.         if(rotationAngleB > 360.0f)
  43.             rotationAngleB = 0.0f;
  44.        
  45.         client.getTextureManager().bindTexture(guiLocation);
  46.         //drawBars(client);
  47.        
  48.        
  49.         GlStateManager.enableBlend();
  50.         drawOrb(client);
  51.         drawOrbOverlay(client);
  52.         drawText(client);
  53.        
  54.        
  55.         GlStateManager.color(1.0f, 1.0f, 1.0f, 1.0f);
  56.  
  57.  
  58.     }
  59.    
  60.     public void drawBars(Minecraft client)
  61.     {
  62.         this.drawTexturedModalRect((this.width / 2) - 91, 0, 0, 64, 91, 5);
  63.     }
  64.    
  65.     public void drawOrb(Minecraft client)
  66.     {              
  67.         GlStateManager.pushMatrix();
  68.             GlStateManager.scale(0.8f, 0.8f, 1.0f);
  69.             GlStateManager.translate(width / (2 * 0.8f) - 32.0f, height / 100.0f, 0.0f);
  70.             this.drawTexturedModalRect(0, 0, 0, 0, 64, 64);
  71.         GlStateManager.popMatrix();
  72.        
  73.         GlStateManager.pushMatrix();
  74.             GlStateManager.color(1.0f, 1.0f, 1.0f, 0.15f);
  75.             this.drawRotatedTexture(width / (2 * 0.7f) - 32.0f, (height / 100.0f) + 5.0f, 64 * 1, 0, 64, 64, rotationAngleA, 1.0f, 0.7f);
  76.         GlStateManager.popMatrix();
  77.        
  78.         GlStateManager.pushMatrix();
  79.             GlStateManager.color(1.0f, 1.0f, 1.0f, 0.15f);
  80.             this.drawRotatedTexture(width / (2 * 0.7f) - 32.0f, (height / 100.0f) + 5.0f, 64 * 2, 0, 64, 64, rotationAngleB, -1.0f, 0.7f);
  81.         GlStateManager.popMatrix();
  82.        
  83.        
  84.     }
  85.    
  86.     public void drawText(Minecraft client)
  87.     {
  88.         if(karma != null)
  89.         {
  90.             String string = Integer.toString(karma.getKarma());
  91.            
  92.             int sizeIncrease = 2;
  93.             float sizeIncreaseFloat = (float)sizeIncrease;
  94.            
  95.             GlStateManager.pushMatrix();
  96.                 GlStateManager.translate((width / 2) + 0.5f, 64.0f / 2.0f - (client.fontRendererObj.FONT_HEIGHT * sizeIncrease) / 2, 0.0f);
  97.                 GlStateManager.scale(sizeIncreaseFloat, sizeIncreaseFloat, 1.0f);
  98.                 this.drawString(client.fontRendererObj, string, (-client.fontRendererObj.getStringWidth(string) / 2), 0, Integer.parseInt("ffffff", 16));
  99.             GlStateManager.popMatrix();
  100.         }
  101.     }
  102.    
  103.     public void drawOrbOverlay(Minecraft client)
  104.     {
  105.         float scale = 0.8f;
  106.        
  107.         GlStateManager.pushMatrix();
  108.             GlStateManager.scale(scale, scale, 1.0f);
  109.             GlStateManager.translate(width / (2 * scale) - 32.0f, height / 100.0f, 0.0f);
  110.             GlStateManager.color(0.5f, 0.5f, 0.5f);
  111.             this.drawTexturedModalRect(0, 0, 64 * 3, 0, 64, 64);
  112.         GlStateManager.popMatrix();
  113.     }
  114.    
  115.     public void drawRotatedTexture(float x, float y, int textureX, int textureY, int width, int height, float rotation, float direction, float scale)
  116.     {
  117.         float scaledWidth = width*scale;
  118.         float scaledHeight = height*scale;
  119.        
  120.         GlStateManager.scale(scale, scale, 1.0f);
  121.        
  122.         GlStateManager.translate(x + (width / 2), y + (height / 2), 0.0f);
  123.         GlStateManager.rotate(rotation, 0.0f, 0.0f, direction);
  124.         GlStateManager.translate(0.0f - (width / 2), 0.0f - (height / 2), 0.0f);       
  125.        
  126.         float f = 0.00390625F;
  127.         float f1 = 0.00390625F;
  128.         Tessellator tessellator = Tessellator.getInstance();
  129.         VertexBuffer vertexbuffer = tessellator.getBuffer();
  130.         vertexbuffer.begin(7, DefaultVertexFormats.POSITION_TEX);
  131.         vertexbuffer.pos(0.0d, height, (double)this.zLevel).tex((double)((float)(textureX + 0) * 0.00390625F), (double)((float)(textureY + height) * 0.00390625F)).endVertex();
  132.         vertexbuffer.pos(width, height, (double)this.zLevel).tex((double)((float)(textureX + width) * 0.00390625F), (double)((float)(textureY + height) * 0.00390625F)).endVertex();
  133.         vertexbuffer.pos(width, 0.0d, (double)this.zLevel).tex((double)((float)(textureX + width) * 0.00390625F), (double)((float)(textureY + 0) * 0.00390625F)).endVertex();
  134.         vertexbuffer.pos(0.0d, 0.0d, (double)this.zLevel).tex((double)((float)(textureX + 0) * 0.00390625F), (double)((float)(textureY + 0) * 0.00390625F)).endVertex();
  135.         tessellator.draw();
  136.     }
  137.  
  138. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement