aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/GT_Client.java
blob: f893690f10596bf0cd91b3c0cf82d1dd03bfbc68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
// Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) 
// Source File Name:   GT_Client.java

package gregtech.common;

import codechicken.lib.vec.Rotation;
import codechicken.lib.vec.Transformation;
import cpw.mods.fml.client.registry.RenderingRegistry;
import cpw.mods.fml.common.eventhandler.SubscribeEvent;
import cpw.mods.fml.common.gameevent.TickEvent;
import cpw.mods.fml.relauncher.Side;
import gregtech.GT_Mod;
import gregtech.api.GregTech_API;
import gregtech.api.enums.*;
import gregtech.api.interfaces.internal.IGT_Mod;
import gregtech.api.interfaces.metatileentity.IMetaTileEntity;
import gregtech.api.interfaces.tileentity.ICoverable;
import gregtech.api.interfaces.tileentity.ITurnable;
import gregtech.api.metatileentity.BaseMetaPipeEntity;
import gregtech.api.objects.GT_FluidStack;
import gregtech.api.objects.GT_ItemStack;
import gregtech.api.util.*;
import gregtech.common.entities.GT_Entity_Arrow;
import gregtech.common.entities.GT_Entity_Arrow_Potion;
import gregtech.common.render.GT_CapeRenderer;
import gregtech.common.render.GT_MetaGenerated_Item_Renderer;
import gregtech.common.render.GT_MetaGenerated_Tool_Renderer;
import gregtech.common.render.GT_Renderer_Block;
import gregtech.common.render.GT_Renderer_Entity_Arrow;
import ic2.api.tile.IWrenchable;

import java.io.PrintStream;
import java.lang.reflect.Field;
import java.net.URL;
import java.util.*;

import net.minecraft.block.Block;
import net.minecraft.client.Minecraft;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.init.Blocks;
import net.minecraft.item.ItemStack;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.ChatComponentText;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World;
import net.minecraftforge.client.event.DrawBlockHighlightEvent;
import net.minecraftforge.client.event.RenderPlayerEvent;

import org.lwjgl.opengl.GL11;

// Referenced classes of package gregtech.common:
//            GT_Proxy

public class GT_Client extends GT_Proxy
    implements Runnable
{

    public boolean isServerSide()
    {
        return true;
    }

    public boolean isClientSide()
    {
        return true;
    }

    public boolean isBukkitSide()
    {
        return false;
    }

    public EntityPlayer getThePlayer()
    {
        return Minecraft.getMinecraft().thePlayer;
    }

    public int addArmor(String aPrefix)
    {
        return RenderingRegistry.addNewArmourRendererPrefix(aPrefix);
    }

    public GT_Client()
    {
        mCapeRenderer = new GT_CapeRenderer(mCapeList);
        mAnimationTick = 0L;
        mAnimationDirection = false;
        isFirstClientPlayerTick = true;
        mMessage = "";
        mPosR = Arrays.asList(new Materials[] {
            /**Materials.ChargedCertusQuartz, **/Materials.Enderium, Materials.Vinteum, Materials.Uranium235, Materials.InfusedGold, Materials.Plutonium241, Materials.NaquadahEnriched, Materials.Naquadria, Materials.InfusedOrder, Materials.Force, 
            Materials.Pyrotheum, Materials.Sunnarium, Materials.Glowstone, Materials.Thaumium, Materials.InfusedVis, Materials.InfusedAir, Materials.InfusedFire, Materials.FierySteel, Materials.Firestone
        });
        mPosG = Arrays.asList(new Materials[] {
            /**Materials.ChargedCertusQuartz, **/Materials.Enderium, Materials.Vinteum, Materials.Uranium235, Materials.InfusedGold, Materials.Plutonium241, Materials.NaquadahEnriched, Materials.Naquadria, Materials.InfusedOrder, Materials.Force, 
            Materials.Pyrotheum, Materials.Sunnarium, Materials.Glowstone, Materials.InfusedAir, Materials.InfusedEarth
        });
        mPosB = Arrays.asList(new Materials[] {
            /**Materials.ChargedCertusQuartz, **/Materials.Enderium, Materials.Vinteum, Materials.Uranium235, Materials.InfusedGold, Materials.Plutonium241, Materials.NaquadahEnriched, Materials.Naquadria, Materials.InfusedOrder, Materials.InfusedVis, 
            Materials.InfusedWater, Materials.Thaumium
        });
        mNegR = Arrays.asList(new Materials[] {
            Materials.InfusedEntropy, Materials.NetherStar
        });
        mNegG = Arrays.asList(new Materials[] {
            Materials.InfusedEntropy, Materials.NetherStar
        });
        mNegB = Arrays.asList(new Materials[] {
            Materials.InfusedEntropy, Materials.NetherStar
        });
        mMoltenPosR = Arrays.asList(new Materials[] {
            Materials.Enderium, Materials.NetherStar, Materials.Vinteum, Materials.Uranium235, Materials.InfusedGold, Materials.Plutonium241, Materials.NaquadahEnriched, Materials.Naquadria, Materials.InfusedOrder, Materials.Force, 
            Materials.Pyrotheum, Materials.Sunnarium, Materials.Glowstone, Materials.Thaumium, Materials.InfusedVis, Materials.InfusedAir, Materials.InfusedFire, Materials.FierySteel, Materials.Firestone
        });
        mMoltenPosG = Arrays.asList(new Materials[] {
            Materials.Enderium, Materials.NetherStar, Materials.Vinteum, Materials.Uranium235, Materials.InfusedGold, Materials.Plutonium241, Materials.NaquadahEnriched, Materials.Naquadria, Materials.InfusedOrder, Materials.Force, 
            Materials.Pyrotheum, Materials.Sunnarium, Materials.Glowstone, Materials.InfusedAir, Materials.InfusedEarth
        });
        mMoltenPosB = Arrays.asList(new Materials[] {
            Materials.Enderium, Materials.NetherStar, Materials.Vinteum, Materials.Uranium235, Materials.InfusedGold, Materials.Plutonium241, Materials.NaquadahEnriched, Materials.Naquadria, Materials.InfusedOrder, Materials.InfusedVis, 
            Materials.InfusedWater, Materials.Thaumium
        });
        mMoltenNegR = Arrays.asList(new Materials[] {
            Materials.InfusedEntropy
        });
        mMoltenNegG = Arrays.asList(new Materials[] {
            Materials.InfusedEntropy
        });
        mMoltenNegB = Arrays.asList(new Materials[] {
            Materials.InfusedEntropy
        });
    }

    public void onPreLoad()
    {
        super.onPreLoad();
        String arr$[] = {
            "renadi", "hanakocz", "MysteryDump", "Flaver4", "x_Fame", "Peluche321", "Goshen_Ithilien", "manf", "Bimgo", "leagris", 
            "IAmMinecrafter02", "Cerous", "Devilin_Pixy", "Bkarlsson87", "BadAlchemy", "CaballoCraft", "melanclock", "Resursator", "demanzke", "AndrewAmmerlaan", 
            "Deathlycraft", "Jirajha", "Axlegear", "kei_kouma", "Dracion", "dungi", "Dorfschwein", "Zero Tw0", "mattiagraz85", "sebastiank30", 
            "Plem", "invultri", "grillo126", "malcanteth", "Malevolence_", "Nicholas_Manuel", "Sirbab", "kehaan", "bpgames123", "semig0d", 
            "9000bowser", "Sovereignty89", "Kris1432", "xander_cage_", "samuraijp", "bsaa", "SpwnX", "tworf", "Kadah", "kanni", 
            "Stute", "Hegik", "Onlyme", "t3hero", "Hotchi", "jagoly", "Nullav", "BH5432", "Sibmer", "inceee", 
            "foxxx0", "Hartok", "TMSama", "Shlnen", "Carsso", "zessirb", "meep310", "Seldron", "yttr1um", "hohounk", 
            "freebug", "Sylphio", "jmarler", "Saberawr", "r00teniy", "Neonbeta", "yinscape", "voooon24", "Quintine", "peach774", 
            "lepthymo", "bildeman", "Kremnari", "Aerosalo", "OndraSter", "oscares91", "mr10movie", "Daxx367x2", "EGERTRONx", "aka13_404", 
            "Abouttabs", "Johnstaal", "djshiny99", "megatronp", "DZCreeper", "Kane_Hart", "Truculent", "vidplace7", "simon6689", "MomoNasty", 
            "UnknownXLV", "goreacraft", "Fluttermine", "Daddy_Cecil", "MrMaleficus", "TigersFangs", "cublikefoot", "chainman564", "NikitaBuker", "Misha999777", 
            "25FiveDetail", "AntiCivilBoy", "michaelbrady", "xXxIceFirexXx", "Speedynutty68", "GarretSidzaka", "HallowCharm977", "mastermind1919", "The_Hypersonic", "diamondguy2798", 
            "zF4ll3nPr3d4t0r", "CrafterOfMines57", "XxELIT3xSNIP3RxX", "SuterusuKusanagi", "xavier0014", "adamros", "alexbegt"
        };
        int len$ = arr$.length;
        for(int i$ = 0; i$ < len$; i$++)
        {
            String tName = arr$[i$];
            mCapeList.add(tName.toLowerCase());
        }

        (new Thread(this)).start();
    }

  public void onLoad()
  {
    super.onLoad();
    new GT_Renderer_Block();
    new GT_MetaGenerated_Item_Renderer();
    new GT_MetaGenerated_Tool_Renderer();
    new GT_Renderer_Entity_Arrow(GT_Entity_Arrow.class, "arrow");
    new GT_Renderer_Entity_Arrow(GT_Entity_Arrow_Potion.class, "arrow_potions");
  }

    public void onPostLoad()
    {
        super.onPostLoad();
label0:
        for(int i = 1; i < GregTech_API.METATILEENTITIES.length; i++)
            try
            {
                do
                {
                    if(i >= GregTech_API.METATILEENTITIES.length)
                        continue label0;
                    if(GregTech_API.METATILEENTITIES[i] != null)
                        GregTech_API.METATILEENTITIES[i].getStackForm(1L).getTooltip(null, true);
                    i++;
                } while(true);
            }
            catch(Throwable e)
            {
                e.printStackTrace(GT_Log.err);
            }

        
//        super.onPostLoad();
//            
//            for (int i = 1; i < GregTech_API.METATILEENTITIES.length; i++) {
//              try {
//                for (; i < GregTech_API.METATILEENTITIES.length; i++) if (GregTech_API.METATILEENTITIES[i] != null) GregTech_API.METATILEENTITIES[i].getStackForm(1L).getTooltip(null, true);
//              } catch (Throwable e) {
//                e.printStackTrace(GT_Log.err);
//              }
//            }
    }

  public void run()
  {
    try
    {
      GT_Log.out.println("GT_Mod: Downloading Cape List.");
      @SuppressWarnings("resource")
	Scanner tScanner = new Scanner(new URL("http://files.minecraftforge.net/maven/com/gregoriust/gregtech/capelist.txt").openStream());
      while (tScanner.hasNextLine())
      {
        String tName = tScanner.nextLine();
        if (!this.mCapeList.contains(tName.toLowerCase())) {
          this.mCapeList.add(tName.toLowerCase());
        }
      }
    }
    catch (Throwable e) {}
    try
    {
      GT_Log.out.println("GT_Mod: Downloading News.");
      @SuppressWarnings("resource")
	Scanner tScanner = new Scanner(new URL("http://files.minecraftforge.net/maven/com/gregoriust/gregtech/message.txt").openStream());
      while (tScanner.hasNextLine()) {
        this.mMessage = (this.mMessage + tScanner.nextLine() + " ");
      }
    }
    catch (Throwable e) {}
  }
  
  @SubscribeEvent
  public void onPlayerTickEventClient(TickEvent.PlayerTickEvent aEvent)
  {
    if ((!aEvent.player.isDead) && (aEvent.phase == TickEvent.Phase.END) && (aEvent.side.isClient()))
    {
      ArrayList<GT_PlayedSound> tList = new ArrayList();
      for (Map.Entry<GT_PlayedSound, Integer> tEntry : GT_Utility.sPlayedSoundMap.entrySet()) {
        if (((Integer)tEntry.getValue()).intValue() < 0) {
          tList.add(tEntry.getKey());
        } else {
          tEntry.setValue(Integer.valueOf(((Integer)tEntry.getValue()).intValue() - 1));
        }
      }
      GT_PlayedSound tKey;
      for (Iterator i$ = tList.iterator(); i$.hasNext(); GT_Utility.sPlayedSoundMap.remove(tKey)) {
        tKey = (GT_PlayedSound)i$.next();
      }
      if ((this.isFirstClientPlayerTick) && (aEvent.player == GT_Values.GT.getThePlayer()))
      {
        this.isFirstClientPlayerTick = false;
        GT_FluidStack.fixAllThoseFuckingFluidIDs();
        if ((this.mMessage.length() > 5) && (GregTech_API.sSpecialFile.get(ConfigCategories.news, this.mMessage, true))) {
          aEvent.player.addChatComponentMessage(new ChatComponentText(this.mMessage));
        }
        try
        {
          int tVersion = Integer.parseInt(((String)Class.forName("ic2.core.IC2").getField("VERSION").get(null)).substring(4, 7));
          if (GT_Values.D1) {
            GT_Log.out.println("Industrialcraft Version: " + tVersion);
          }
          if (tVersion < 624)
          {
            aEvent.player.addChatComponentMessage(new ChatComponentText("GregTech: Please update your IndustrialCraft here:"));
            aEvent.player.addChatComponentMessage(new ChatComponentText("ic2api.player.to:8080/job/IC2_experimental/" + (GT_Mod.MAX_IC2 < Integer.MAX_VALUE ? GT_Mod.MAX_IC2 : 624) + "/"));
          }
          else if (tVersion > GT_Mod.MAX_IC2)
          {
            aEvent.player.addChatComponentMessage(new ChatComponentText("GregTech: Please downgrade your IndustrialCraft here:"));
            aEvent.player.addChatComponentMessage(new ChatComponentText("ic2api.player.to:8080/job/IC2_experimental/" + GT_Mod.MAX_IC2 + "/"));
          }
        }
        catch (Throwable e)
        {
          aEvent.player.addChatComponentMessage(new ChatComponentText("GregTech: Please get the recommended Version of IndustrialCraft here:"));
          aEvent.player.addChatComponentMessage(new ChatComponentText("ic2api.player.to:8080/job/IC2_experimental/" + (GT_Mod.MAX_IC2 < Integer.MAX_VALUE ? GT_Mod.MAX_IC2 : 624) + "/"));
        }
      }
    }
  }
  
  @SubscribeEvent
  public void onDrawBlockHighlight(DrawBlockHighlightEvent aEvent)
  {
    if (GT_Utility.isStackValid(aEvent.currentItem))
    {
      Block aBlock = aEvent.player.worldObj.getBlock(aEvent.target.blockX, aEvent.target.blockY, aEvent.target.blockZ);
      TileEntity aTileEntity = aEvent.player.worldObj.getTileEntity(aEvent.target.blockX, aEvent.target.blockY, aEvent.target.blockZ);
      try
      {
        Class.forName("codechicken.lib.vec.Rotation");
        if (((aTileEntity instanceof BaseMetaPipeEntity)) && (((ICoverable)aTileEntity).getCoverIDAtSide((byte)aEvent.target.sideHit) == 0) && ((GT_Utility.isStackInList(aEvent.currentItem, GregTech_API.sCovers.keySet())) || (GT_Utility.isStackInList(aEvent.currentItem, GregTech_API.sCrowbarList)) || (GT_Utility.isStackInList(aEvent.currentItem, GregTech_API.sScrewdriverList))))
        {
          drawGrid(aEvent);
          return;
        }
        if ((((aTileEntity instanceof ITurnable)) || (ROTATABLE_VANILLA_BLOCKS.contains(aBlock)) || ((aTileEntity instanceof IWrenchable))) && (GT_Utility.isStackInList(aEvent.currentItem, GregTech_API.sWrenchList)))
        {
          drawGrid(aEvent);
          return;
        }
      }
      catch (Throwable e)
      {
        if (GT_Values.D1) {
          e.printStackTrace(GT_Log.err);
        }
      }
    }
  }

    private static void drawGrid(DrawBlockHighlightEvent aEvent)
    {
        GL11.glPushMatrix();
        GL11.glTranslated(-(aEvent.player.lastTickPosX + (aEvent.player.posX - aEvent.player.lastTickPosX) * (double)aEvent.partialTicks), -(aEvent.player.lastTickPosY + (aEvent.player.posY - aEvent.player.lastTickPosY) * (double)aEvent.partialTicks), -(aEvent.player.lastTickPosZ + (aEvent.player.posZ - aEvent.player.lastTickPosZ) * (double)aEvent.partialTicks));
        GL11.glTranslated((float)aEvent.target.blockX + 0.5F, (float)aEvent.target.blockY + 0.5F, (float)aEvent.target.blockZ + 0.5F);
        Rotation.sideRotations[aEvent.target.sideHit].glApply();
        GL11.glTranslated(0.0D, -0.501D, 0.0D);
        GL11.glLineWidth(2.0F);
        GL11.glColor4f(0.0F, 0.0F, 0.0F, 0.5F);
        GL11.glBegin(1);
        GL11.glVertex3d(0.5D, 0.0D, -0.25D);
        GL11.glVertex3d(-0.5D, 0.0D, -0.25D);
        GL11.glVertex3d(0.5D, 0.0D, 0.25D);
        GL11.glVertex3d(-0.5D, 0.0D, 0.25D);
        GL11.glVertex3d(0.25D, 0.0D, -0.5D);
        GL11.glVertex3d(0.25D, 0.0D, 0.5D);
        GL11.glVertex3d(-0.25D, 0.0D, -0.5D);
        GL11.glVertex3d(-0.25D, 0.0D, 0.5D);
        GL11.glEnd();
        GL11.glPopMatrix();
    }

    @SubscribeEvent
    public void receiveRenderEvent(net.minecraftforge.client.event.RenderPlayerEvent.Pre aEvent)
    {
        if(GT_Utility.getFullInvisibility(aEvent.entityPlayer))
        {
            aEvent.setCanceled(true);
            return;
        } else
        {
            return;
        }
    }

    @SubscribeEvent
    public void receiveRenderSpecialsEvent(net.minecraftforge.client.event.RenderPlayerEvent.Specials.Pre aEvent)
    {
        mCapeRenderer.receiveRenderSpecialsEvent(aEvent);
    }

    @SubscribeEvent
    public void onClientTickEvent(cpw.mods.fml.common.gameevent.TickEvent.ClientTickEvent aEvent)
    {
        if(aEvent.phase == cpw.mods.fml.common.gameevent.TickEvent.Phase.END)
        {
            mAnimationTick++;
            if(mAnimationTick % 50L == 0L)
                mAnimationDirection = !mAnimationDirection;
            int tDirection = mAnimationDirection ? 1 : -1;
            for(Iterator i$ = mPosR.iterator(); i$.hasNext();)
            {
                Materials tMaterial = (Materials)i$.next();
                tMaterial.mRGBa[0] += tDirection;
            }

            for(Iterator i$ = mPosG.iterator(); i$.hasNext();)
            {
                Materials tMaterial = (Materials)i$.next();
                tMaterial.mRGBa[1] += tDirection;
            }

            for(Iterator i$ = mPosB.iterator(); i$.hasNext();)
            {
                Materials tMaterial = (Materials)i$.next();
                tMaterial.mRGBa[2] += tDirection;
            }

            for(Iterator i$ = mPosA.iterator(); i$.hasNext();)
            {
                Materials tMaterial = (Materials)i$.next();
                tMaterial.mRGBa[3] += tDirection;
            }

            for(Iterator i$ = mNegR.iterator(); i$.hasNext();)
            {
                Materials tMaterial = (Materials)i$.next();
                tMaterial.mRGBa[0] -= tDirection;
            }

            for(Iterator i$ = mNegG.iterator(); i$.hasNext();)
            {
                Materials tMaterial = (Materials)i$.next();
                tMaterial.mRGBa[1] -= tDirection;
            }

            for(Iterator i$ = mNegB.iterator(); i$.hasNext();)
            {
                Materials tMaterial = (Materials)i$.next();
                tMaterial.mRGBa[2] -= tDirection;
            }

            for(Iterator i$ = mNegA.iterator(); i$.hasNext();)
            {
                Materials tMaterial = (Materials)i$.next();
                tMaterial.mRGBa[3] -= tDirection;
            }

            for(Iterator i$ = mMoltenPosR.iterator(); i$.hasNext();)
            {
                Materials tMaterial = (Materials)i$.next();
                tMaterial.mMoltenRGBa[0] += tDirection;
            }

            for(Iterator i$ = mMoltenPosG.iterator(); i$.hasNext();)
            {
                Materials tMaterial = (Materials)i$.next();
                tMaterial.mMoltenRGBa[1] += tDirection;
            }

            for(Iterator i$ = mMoltenPosB.iterator(); i$.hasNext();)
            {
                Materials tMaterial = (Materials)i$.next();
                tMaterial.mMoltenRGBa[2] += tDirection;
            }

            for(Iterator i$ = mMoltenPosA.iterator(); i$.hasNext();)
            {
                Materials tMaterial = (Materials)i$.next();
                tMaterial.mMoltenRGBa[3] += tDirection;
            }

            for(Iterator i$ = mMoltenNegR.iterator(); i$.hasNext();)
            {
                Materials tMaterial = (Materials)i$.next();
                tMaterial.mMoltenRGBa[0] -= tDirection;
            }

            for(Iterator i$ = mMoltenNegG.iterator(); i$.hasNext();)
            {
                Materials tMaterial = (Materials)i$.next();
                tMaterial.mMoltenRGBa[1] -= tDirection;
            }

            for(Iterator i$ = mMoltenNegB.iterator(); i$.hasNext();)
            {
                Materials tMaterial = (Materials)i$.next();
                tMaterial.mMoltenRGBa[2] -= tDirection;
            }

            for(Iterator i$ = mMoltenNegA.iterator(); i$.hasNext();)
            {
                Materials tMaterial = (Materials)i$.next();
                tMaterial.mMoltenRGBa[3] -= tDirection;
            }

        }
    }

    public void doSonictronSound(ItemStack aStack, World aWorld, double aX, double aY, double aZ)
    {
        if(GT_Utility.isStackInvalid(aStack))
            return;
        String tString = "note.harp";
        int i = 0;
        int j = mSoundItems.size();
        do
        {
            if(i >= j)
                break;
            if(GT_Utility.areStacksEqual((ItemStack)mSoundItems.get(i), aStack))
            {
                tString = (String)mSoundNames.get(i);
                break;
            }
            i++;
        } while(true);
        if(tString.startsWith("random.explode"))
            if(aStack.stackSize == 3)
                tString = "random.fuse";
            else
            if(aStack.stackSize == 2)
                tString = "random.old_explode";
        if(tString.startsWith("streaming."))
            switch(aStack.stackSize)
            {
            case 1: // '\001'
                tString = (new StringBuilder()).append(tString).append("13").toString();
                break;

            case 2: // '\002'
                tString = (new StringBuilder()).append(tString).append("cat").toString();
                break;

            case 3: // '\003'
                tString = (new StringBuilder()).append(tString).append("blocks").toString();
                break;

            case 4: // '\004'
                tString = (new StringBuilder()).append(tString).append("chirp").toString();
                break;

            case 5: // '\005'
                tString = (new StringBuilder()).append(tString).append("far").toString();
                break;

            case 6: // '\006'
                tString = (new StringBuilder()).append(tString).append("mall").toString();
                break;

            case 7: // '\007'
                tString = (new StringBuilder()).append(tString).append("mellohi").toString();
                break;

            case 8: // '\b'
                tString = (new StringBuilder()).append(tString).append("stal").toString();
                break;

            case 9: // '\t'
                tString = (new StringBuilder()).append(tString).append("strad").toString();
                break;

            case 10: // '\n'
                tString = (new StringBuilder()).append(tString).append("ward").toString();
                break;

            case 11: // '\013'
                tString = (new StringBuilder()).append(tString).append("11").toString();
                break;

            case 12: // '\f'
                tString = (new StringBuilder()).append(tString).append("wait").toString();
                break;

            default:
                tString = (new StringBuilder()).append(tString).append("wherearewenow").toString();
                break;
            }
        if(tString.startsWith("streaming."))
            aWorld.playRecord(tString.substring(10, tString.length()), (int)aX, (int)aY, (int)aZ);
        else
            aWorld.playSound(aX, aY, aZ, tString, 3F, tString.startsWith("note.") ? (float)Math.pow(2D, (double)(aStack.stackSize - 13) / 12D) : 1.0F, false);
    }

    private final HashSet mCapeList = new HashSet();
    private final GT_CapeRenderer mCapeRenderer;
    private long mAnimationTick;
    private boolean mAnimationDirection;
    private boolean isFirstClientPlayerTick;
    private String mMessage;
    private static List ROTATABLE_VANILLA_BLOCKS;
    private final List mPosR;
    private final List mPosG;
    private final List mPosB;
    private final List mPosA = Arrays.asList(new Object[0]);
    private final List mNegR;
    private final List mNegG;
    private final List mNegB;
    private final List mNegA = Arrays.asList(new Object[0]);
    private final List mMoltenPosR;
    private final List mMoltenPosG;
    private final List mMoltenPosB;
    private final List mMoltenPosA = Arrays.asList(new Object[0]);
    private final List mMoltenNegR;
    private final List mMoltenNegG;
    private final List mMoltenNegB;
    private final List mMoltenNegA = Arrays.asList(new Object[0]);

    static 
    {
        ROTATABLE_VANILLA_BLOCKS = Arrays.asList(new Block[] {
            Blocks.piston, Blocks.sticky_piston, Blocks.furnace, Blocks.lit_furnace, Blocks.dropper, Blocks.dispenser, Blocks.chest, Blocks.trapped_chest, Blocks.ender_chest, Blocks.hopper, 
            Blocks.pumpkin, Blocks.lit_pumpkin
        });
    }
}