Advertisement
Guest User

TextureCustomCompass

a guest
Jul 12th, 2015
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.79 KB | None | 0 0
  1. package lumien.randomthings.client;
  2.  
  3. import net.minecraft.client.Minecraft;
  4. import net.minecraft.client.renderer.texture.TextureAtlasSprite;
  5. import net.minecraft.client.renderer.texture.TextureUtil;
  6. import net.minecraft.util.BlockPos;
  7. import net.minecraft.util.MathHelper;
  8. import net.minecraft.world.World;
  9. import net.minecraftforge.fml.relauncher.Side;
  10. import net.minecraftforge.fml.relauncher.SideOnly;
  11.  
  12. @SideOnly(Side.CLIENT)
  13. public class TextureCustomCompass extends TextureAtlasSprite
  14. {
  15.     /** Current compass heading in radians */
  16.     public double currentAngle;
  17.     /** Speed and direction of compass rotation */
  18.     public double angleDelta;
  19.     private static final String __OBFID = "CL_00001071";
  20.  
  21.     public TextureCustomCompass(String iconName)
  22.     {
  23.         super(iconName);
  24.     }
  25.  
  26.     public void updateAnimation()
  27.     {
  28.         Minecraft minecraft = Minecraft.getMinecraft();
  29.  
  30.         if (minecraft.theWorld != null && minecraft.thePlayer != null)
  31.         {
  32.             this.updateCompass(minecraft.theWorld, minecraft.thePlayer.posX, minecraft.thePlayer.posZ, (double) minecraft.thePlayer.rotationYaw, false, false);
  33.         }
  34.         else
  35.         {
  36.             this.updateCompass((World) null, 0.0D, 0.0D, 0.0D, true, false);
  37.         }
  38.     }
  39.  
  40.     /**
  41.      * Updates the compass based on the given x,z coords and camera direction
  42.      */
  43.     public void updateCompass(World worldIn, double p_94241_2_, double p_94241_4_, double p_94241_6_, boolean p_94241_8_, boolean p_94241_9_)
  44.     {
  45.         if (!this.framesTextureData.isEmpty())
  46.         {
  47.             double d3 = 0.0D;
  48.  
  49.             if (worldIn != null && !p_94241_8_)
  50.             {
  51.                 BlockPos blockpos = new BlockPos(0, 0, 0);
  52.                 double d4 = (double) blockpos.getX() - p_94241_2_;
  53.                 double d5 = (double) blockpos.getZ() - p_94241_4_;
  54.                 p_94241_6_ %= 360.0D;
  55.                 d3 = -((p_94241_6_ - 90.0D) * Math.PI / 180.0D - Math.atan2(d5, d4));
  56.  
  57.                 if (!worldIn.provider.isSurfaceWorld())
  58.                 {
  59.                     d3 = Math.random() * Math.PI * 2.0D;
  60.                 }
  61.             }
  62.  
  63.             if (p_94241_9_)
  64.             {
  65.                 this.currentAngle = d3;
  66.             }
  67.             else
  68.             {
  69.                 double d6;
  70.  
  71.                 for (d6 = d3 - this.currentAngle; d6 < -Math.PI; d6 += (Math.PI * 2D))
  72.                 {
  73.                     ;
  74.                 }
  75.  
  76.                 while (d6 >= Math.PI)
  77.                 {
  78.                     d6 -= (Math.PI * 2D);
  79.                 }
  80.  
  81.                 d6 = MathHelper.clamp_double(d6, -1.0D, 1.0D);
  82.                 this.angleDelta += d6 * 0.1D;
  83.                 this.angleDelta *= 0.8D;
  84.                 this.currentAngle += this.angleDelta;
  85.             }
  86.  
  87.             int i;
  88.  
  89.             for (i = (int) ((this.currentAngle / (Math.PI * 2D) + 1.0D) * (double) this.framesTextureData.size()) % this.framesTextureData.size(); i < 0; i = (i + this.framesTextureData.size()) % this.framesTextureData.size())
  90.             {
  91.                 ;
  92.             }
  93.  
  94.             if (i != this.frameCounter)
  95.             {
  96.                 this.frameCounter = i;
  97.                 TextureUtil.uploadTextureMipmap((int[][]) this.framesTextureData.get(this.frameCounter), this.width, this.height, this.originX, this.originY, false, false);
  98.             }
  99.         }
  100.     }
  101. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement