Advertisement
Guest User

Untitled

a guest
Jul 16th, 2016
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.72 KB | None | 0 0
  1. package pcl.OpenFM.TileEntity;
  2.  
  3. import net.minecraft.client.Minecraft;
  4. import net.minecraft.client.gui.FontRenderer;
  5. import net.minecraft.client.renderer.OpenGlHelper;
  6. import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
  7. import net.minecraft.tileentity.TileEntity;
  8.  
  9. import org.lwjgl.opengl.GL11;
  10.  
  11. public class RadioRenderer extends TileEntitySpecialRenderer {
  12.  
  13. public Integer ticks = 0;
  14. public String text = null;
  15. String output = "";
  16. int count = 0;
  17.  
  18. private static final Minecraft mc = Minecraft.getMinecraft();
  19.  
  20. @Override
  21. public void renderTileEntityAt(TileEntity tileEntity, double x, double y, double z, float partialTick, int destroyStage) {
  22. TileEntityRadio radio = (TileEntityRadio) tileEntity;
  23. float light = tileEntity.getWorld().getLightBrightness(tileEntity.getPos());
  24. Minecraft.getMinecraft().entityRenderer.disableLightmap();
  25. OpenGlHelper.setLightmapTextureCoords(OpenGlHelper.lightmapTexUnit, light, light);
  26.  
  27. //RenderManager renderMan = RenderManager.instance;
  28.  
  29. GL11.glPushMatrix();
  30.  
  31. int dir = tileEntity.getBlockMetadata();
  32. GL11.glNormal3f(0, 1, 0);
  33. if (dir == 0) {
  34. GL11.glTranslatef((float)x +.501F, (float)y + .72F, (float)z - .01F);
  35. GL11.glRotatef(0F, 0F, 1F, 0F);
  36. } else if (dir == 1) {
  37. GL11.glTranslatef((float)x + 1.01f, (float)y + .72F, (float)z + .5F);
  38. GL11.glRotatef(270F, 0F, 1F, 0F);
  39. } else if (dir == 2) {
  40. GL11.glTranslatef((float)x + .5f, (float)y + .72F, (float)z + 1.01F);
  41. GL11.glRotatef(180F, 0F, 1F, 0F);
  42. } else if (dir == 3) {
  43. GL11.glTranslatef((float)x - .01f, (float)y + .72F, (float)z + .5f);
  44. GL11.glRotatef(90, 0F, 1F, 0F);
  45. }
  46.  
  47. GL11.glScalef(-0.016666668F, -0.016666668F, 0.016666668F);
  48. GL11.glDisable(GL11.GL_LIGHTING);
  49. GL11.glEnable(GL11.GL_BLEND);
  50. GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);
  51. ++this.ticks;
  52. if (this.ticks > 20) {
  53. if (radio.getScreenText().length() > 6) {
  54. output = scrollText(radio.getScreenText());
  55. } else {
  56. output = radio.getScreenText();
  57. }
  58. }
  59. mc.getRenderManager().getFontRenderer().drawString(output, -37 / 2, 0, radio.getScreenColor());
  60. GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
  61. GL11.glEnable(GL11.GL_LIGHTING);
  62. GL11.glPopMatrix();
  63. }
  64.  
  65. public String scrollText(String text) {
  66. FontRenderer fontRenderer = mc.getRenderManager().getFontRenderer();
  67. text = " " + text + " ";
  68. if (text.length() > count + 6) {
  69. output = text.substring(count, count + 6);
  70. if (fontRenderer.getStringWidth(output) / 6 < 5) {
  71. output = text.substring(count, count + 7);
  72. }
  73. count++;
  74. this.ticks = 0;
  75. if (count > text.length()) {
  76. count = 0;
  77. }
  78. } else {
  79. count = 0;
  80. }
  81. return output;
  82. }
  83. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement