aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/common/Meta_GT_Proxy.java
blob: 15bd666b53c015741e803082c13dc5454aef73a3 (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
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
package gtPlusPlus.xmod.gregtech.common;

import gregtech.api.GregTech_API;
import gregtech.api.enums.ConfigCategories;
import gregtech.api.enums.Dyes;
import gregtech.api.enums.GT_Values;
import gregtech.api.enums.Materials;
import gregtech.api.enums.OreDictNames;
import gregtech.api.enums.OrePrefixes;
import gregtech.api.enums.SubTag;
import gregtech.api.enums.TC_Aspects;
import gregtech.api.enums.ToolDictNames;
import gregtech.api.objects.ItemData;
import gregtech.api.objects.MaterialStack;
import gregtech.api.util.GT_Log;
import gregtech.api.util.GT_OreDictUnificator;
import gregtech.api.util.GT_Recipe;
import gregtech.api.util.GT_RecipeRegistrator;
import gregtech.api.util.GT_Utility;
import gregtech.common.GT_Proxy.OreDictEventContainer;
import gtPlusPlus.core.lib.CORE;
import gtPlusPlus.core.util.Utils;
import gtPlusPlus.xmod.gregtech.api.enums.GregtechOrePrefixes;
import gtPlusPlus.xmod.gregtech.api.enums.GregtechOrePrefixes.GT_Materials;
import gtPlusPlus.xmod.gregtech.api.util.GregtechOreDictUnificator;
import gtPlusPlus.xmod.gregtech.api.util.GregtechRecipeRegistrator;
import gtPlusPlus.xmod.gregtech.common.items.MetaGeneratedGregtechItems;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;

import net.minecraft.init.Blocks;
import net.minecraft.item.ItemBlock;
import net.minecraft.item.ItemStack;
import net.minecraftforge.oredict.OreDictionary;
import cpw.mods.fml.common.Loader;
import cpw.mods.fml.common.ModContainer;
import cpw.mods.fml.common.eventhandler.SubscribeEvent;

public class Meta_GT_Proxy {

	//Silly Vars
	private static final Collection<String> mIgnoredItems = new HashSet<String>(Arrays.asList(new String[]{"itemGhastTear", "itemFlint", "itemClay", "itemBucketSaltWater",
			"itemBucketFreshWater", "itemBucketWater", "itemRock", "itemReed", "itemArrow", "itemSaw", "itemKnife", "itemHammer", "itemChisel", "itemRubber",
			"itemEssence", "itemIlluminatedPanel", "itemSkull", "itemRawRubber", "itemBacon", "itemJetpackAccelerator", "itemLazurite", "itemIridium",
			"itemTear", "itemClaw", "itemFertilizer", "itemTar", "itemSlimeball", "itemCoke", "itemBeeswax", "itemBeeQueen", "itemForcicium", "itemForcillium",
			"itemRoyalJelly", "itemHoneydew", "itemHoney", "itemPollen", "itemReedTypha", "itemSulfuricAcid", "itemPotash", "itemCompressedCarbon",
			"itemBitumen", "itemBioFuel", "itemCokeSugar", "itemCokeCactus", "itemCharcoalSugar", "itemCharcoalCactus", "itemSludge", "itemEnrichedAlloy",
			"itemQuicksilver", "itemMercury", "itemOsmium", "itemUltimateCircuit", "itemEnergizedStar", "itemAntimatterMolecule", "itemAntimatterGlob",
			"itemCoal", "itemBoat", "itemHerbalMedicineCake", "itemCakeSponge", "itemFishandPumpkinCakeSponge", "itemSoulCleaver", "itemInstantCake",
			"itemWhippingCream", "itemGlisteningWhippingCream", "itemCleaver", "itemHerbalMedicineWhippingCream", "itemStrangeWhippingCream",
			"itemBlazeCleaver", "itemBakedCakeSponge", "itemMagmaCake", "itemGlisteningCake", "itemOgreCleaver", "itemFishandPumpkinCake",
			"itemMagmaWhippingCream", "itemMultimeter", "itemSuperconductor"}));
	private static final Collection<String> mIgnoredNames = new HashSet<String>(Arrays.asList(new String[]{"grubBee", "chainLink", "candyCane", "bRedString", "bVial",
			"bFlask", "anorthositeSmooth", "migmatiteSmooth", "slateSmooth", "travertineSmooth", "limestoneSmooth", "orthogneissSmooth", "marbleSmooth",
			"honeyDrop", "lumpClay", "honeyEqualssugar", "flourEqualswheat", "bluestoneInsulated", "blockWaterstone", "blockSand", "blockTorch",
			"blockPumpkin", "blockClothRock", "blockStainedHardenedClay", "blockQuartzPillar", "blockQuartzChiselled", "blockSpawner", "blockCloth", "mobHead",
			"mobEgg", "enderFlower", "enderChest", "clayHardened", "dayGemMaterial", "nightGemMaterial", "snowLayer", "bPlaceholder", "hardenedClay",
			"eternalLifeEssence", "sandstone", "wheatRice", "transdimBlock", "bambooBasket", "lexicaBotania", "livingwoodTwig", "redstoneCrystal",
			"pestleAndMortar", "glowstone", "whiteStone", "stoneSlab", "transdimBlock", "clayBowl", "clayPlate", "ceramicBowl", "ceramicPlate", "ovenRack",
			"clayCup", "ceramicCup", "batteryBox", "transmutationStone", "torchRedstoneActive", "coal", "charcoal", "cloth", "cobblestoneSlab",
			"stoneBrickSlab", "cobblestoneWall", "stoneBrickWall", "cobblestoneStair", "stoneBrickStair", "blockCloud", "blockDirt", "blockTyrian",
			"blockCarpet", "blockFft", "blockLavastone", "blockHolystone", "blockConcrete", "sunnariumPart", "brSmallMachineCyaniteProcessor", "meteoriteCoal",
			"blockCobble", "pressOreProcessor", "crusherOreProcessor", "grinderOreProcessor", "blockRubber", "blockHoney", "blockHoneydew", "blockPeat",
			"blockRadioactive", "blockSlime", "blockCocoa", "blockSugarCane", "blockLeather", "blockClayBrick", "solarPanelHV", "cableRedNet", "stoneBowl",
			"crafterWood", "taintedSoil", "brickXyEngineering", "breederUranium", "wireMill", "chunkLazurite", "aluminumNatural", "aluminiumNatural",
			"naturalAluminum", "naturalAluminium", "antimatterMilligram", "antimatterGram", "strangeMatter", "coalGenerator", "electricFurnace",
			"unfinishedTank", "valvePart", "aquaRegia", "leatherSeal", "leatherSlimeSeal", "hambone", "slimeball", "clay", "enrichedUranium", "camoPaste",
			"antiBlock", "burntQuartz", "salmonRaw", "blockHopper", "blockEnderObsidian", "blockIcestone", "blockMagicWood", "blockEnderCore", "blockHeeEndium",
			"oreHeeEndPowder", "oreHeeStardust", "oreHeeIgneousRock", "oreHeeInstabilityOrb", "crystalPureFluix", "shardNether", "gemFluorite",
			"stickObsidian", "caveCrystal", "shardCrystal", "dyeCrystal","shardFire","shardWater","shardAir","shardEarth","ingotRefinedIron","blockMarble","ingotUnstable"}));
	private static final Collection<String> mInvalidNames = new HashSet<String>(Arrays.asList(new String[]{"diamondShard", "redstoneRoot", "obsidianStick", "bloodstoneOre",
			"universalCable", "bronzeTube", "ironTube", "netherTube", "obbyTube", "infiniteBattery", "eliteBattery", "advancedBattery", "10kEUStore",
			"blueDye", "MonazitOre", "quartzCrystal", "whiteLuminiteCrystal", "darkStoneIngot", "invisiumIngot", "demoniteOrb", "enderGem", "starconiumGem",
			"osmoniumIngot", "tapaziteGem", "zectiumIngot", "foolsRubyGem", "rubyGem", "meteoriteGem", "adamiteShard", "sapphireGem", "copperIngot",
			"ironStick", "goldStick", "diamondStick", "reinforcedStick", "draconicStick", "emeraldStick", "copperStick", "tinStick", "silverStick",
			"bronzeStick", "steelStick", "leadStick", "manyullynStick", "arditeStick", "cobaltStick", "aluminiumStick", "alumiteStick", "oilsandsOre",
			"copperWire", "superconductorWire", "sulfuricAcid", "conveyorBelt", "ironWire", "aluminumWire", "aluminiumWire", "silverWire", "tinWire",
			"dustSiliconSmall", "AluminumOre", "plateHeavyT2", "blockWool", "alloyPlateEnergizedHardened", "gasWood", "alloyPlateEnergized", "SilverOre",
			"LeadOre", "TinOre", "CopperOre", "silverOre", "leadOre", "tinOre", "copperOre", "bauxiteOre", "HSLivingmetalIngot", "oilMoving", "oilStill",
			"oilBucket", "petroleumOre", "dieselFuel", "diamondNugget", "planks", "wood", "stick", "sticks", "naquadah", "obsidianRod", "stoneRod",
			"thaumiumRod", "steelRod", "netherrackRod", "woodRod", "ironRod", "cactusRod", "flintRod", "copperRod", "cobaltRod", "alumiteRod", "blueslimeRod",
			"arditeRod", "manyullynRod", "bronzeRod", "boneRod", "slimeRod", "redalloyBundled", "bluestoneBundled", "infusedteslatiteInsulated",
			"redalloyInsulated", "infusedteslatiteBundled"}));
	public static boolean mOreDictActivated = false;
	public static boolean mSortToTheEnd = true;
	public final static HashSet<ItemStack> mRegisteredOres = new HashSet<ItemStack>(10000);
	public final static Collection<GregtechOreDictEventContainer> mEvents = new HashSet<GregtechOreDictEventContainer>();
	public final static Collection<OreDictEventContainer> mEventsFake = new HashSet<OreDictEventContainer>();

	public Meta_GT_Proxy() {	
		Utils.LOG_INFO("GT_PROXY - initialized.");
		for (String tOreName : OreDictionary.getOreNames()) {
			ItemStack tOreStack;
			for (Iterator<?> i$ = OreDictionary.getOres(tOreName).iterator(); i$.hasNext(); registerOre(new OreDictionary.OreRegisterEvent(tOreName, tOreStack))) {
				tOreStack = (ItemStack) i$.next();
			}
		}
	}

	/*public static Fluid addFluid(String aName, String aLocalized, GT_Materials aMaterial, int aState, int aTemperatureK) {
		return addFluid(aName, aLocalized, aMaterial, aState, aTemperatureK, null, null, 0);
	}

	public static Fluid addFluid(String aName, String aLocalized, GT_Materials aMaterial, int aState, int aTemperatureK, ItemStack aFullContainer,
			ItemStack aEmptyContainer, int aFluidAmount) {
		return addFluid(aName, aName.toLowerCase(), aLocalized, aMaterial, null, aState, aTemperatureK, aFullContainer, aEmptyContainer, aFluidAmount);
	}

	public static Fluid addFluid(String aName, String aTexture, String aLocalized, GT_Materials aMaterial, short[] aRGBa, int aState, int aTemperatureK,
			ItemStack aFullContainer, ItemStack aEmptyContainer, int aFluidAmount) {
		aName = aName.toLowerCase();
		Fluid rFluid = new GregtechFluid(aName, aTexture, aRGBa != null ? aRGBa : Dyes._NULL.getRGBA());
		GT_LanguageManager.addStringLocalization(rFluid.getUnlocalizedName(), aLocalized == null ? aName : aLocalized);
		if (FluidRegistry.registerFluid(rFluid)) {
			switch (aState) {
			case 0:
				rFluid.setGaseous(false);
				rFluid.setViscosity(10000);
				break;
			case 1:
			case 4:
				rFluid.setGaseous(false);
				rFluid.setViscosity(1000);
				break;
			case 2:
				rFluid.setGaseous(true);
				rFluid.setDensity(-100);
				rFluid.setViscosity(200);
				break;
			case 3:
				rFluid.setGaseous(true);
				rFluid.setDensity(55536);
				rFluid.setViscosity(10);
				rFluid.setLuminosity(15);
			}
		} else {
			rFluid = FluidRegistry.getFluid(aName);
		}
		if (rFluid.getTemperature() == new Fluid("test").getTemperature()) {
			rFluid.setTemperature(aTemperatureK);
		}
		if (aMaterial != null) {
			switch (aState) {
			case 0:
				aMaterial.mSolid = rFluid;
				break;
			case 1:
				aMaterial.mFluid = rFluid;
				break;
			case 2:
				aMaterial.mGas = rFluid;
				break;
			case 3:
				aMaterial.mPlasma = rFluid;
				break;
			case 4:
				aMaterial.mStandardMoltenFluid = rFluid;
			}
		}
		if ((aFullContainer != null) && (aEmptyContainer != null)
				&& (!FluidContainerRegistry.registerFluidContainer(new FluidStack(rFluid, aFluidAmount), aFullContainer, aEmptyContainer))) {
			GT_Values.RA.addFluidCannerRecipe(aFullContainer, GT_Utility.getContainerItem(aFullContainer, false), null, new FluidStack(rFluid, aFluidAmount));
		}
		return rFluid;
	}*/

	@SubscribeEvent
	public static void registerOre2(OreDictionary.OreRegisterEvent aEvent) {
		ModContainer tContainer = Loader.instance().activeModContainer();
		String aMod = tContainer == null ? "UNKNOWN" : tContainer.getModId();
		String aOriginalMod = aMod;
		if (GregtechOreDictUnificator.isRegisteringOres()) {
			aMod = CORE.MODID;
		} else if (aMod.equals(CORE.MODID)) {
			aMod = "UNKNOWN";
		}
		if ((aEvent == null) || (aEvent.Ore == null) || (aEvent.Ore.getItem() == null) || (aEvent.Name == null) || (aEvent.Name.isEmpty())
				|| (aEvent.Name.replaceAll("_", "").length() - aEvent.Name.length() == 9)) {
			if (aOriginalMod.equals(CORE.MODID)) {
				aOriginalMod = "UNKNOWN";
			}
			GT_Log.ore
			.println(aOriginalMod
					+ " did something very bad! The registration is too invalid to even be shown properly. This happens only if you register null, invalid Items, empty Strings or even nonexisting Events to the OreDict.");
			throw new IllegalArgumentException(
					aOriginalMod
					+ " did something very bad! The registration is too invalid to even be shown properly. This happens only if you register null, invalid Items, empty Strings or even nonexisting Events to the OreDict.");
		}
		try {
			aEvent.Ore.stackSize = 1;

			String tModToName = aMod + " -> " + aEvent.Name;
			if ((mOreDictActivated) || (GregTech_API.sPostloadStarted) || ((mSortToTheEnd) && (GregTech_API.sLoadFinished))) {
				tModToName = aOriginalMod + " --Late--> " + aEvent.Name;
			}
			if (((aEvent.Ore.getItem() instanceof ItemBlock)) || (GT_Utility.getBlockFromStack(aEvent.Ore) != Blocks.air)) {
				GregtechOreDictUnificator.addToBlacklist(aEvent.Ore);
			}
			mRegisteredOres.add(aEvent.Ore);			
			if (mIgnoredNames.contains(aEvent.Name)) {
				GT_Log.ore.println(tModToName + " is getting ignored via hardcode.");
				return;
			}
			if ((aEvent.Name.contains("|")) || (aEvent.Name.contains("*")) || (aEvent.Name.contains(":")) || (aEvent.Name.contains("."))
					|| (aEvent.Name.contains("$"))) {
				GT_Log.ore.println(tModToName + " is using a private Prefix and is therefor getting ignored properly.");
				return;
			}
			if (aEvent.Name.contains(" ")) {
				GT_Log.ore.println(tModToName + " is getting re-registered because the OreDict Name containing invalid spaces.");
				GregtechOreDictUnificator.registerOre(aEvent.Name.replaceAll(" ", ""), GT_Utility.copyAmount(1L, new Object[]{aEvent.Ore}));
				aEvent.Ore.setStackDisplayName("Invalid OreDictionary Tag");
				return;
			}
			if (mInvalidNames.contains(aEvent.Name)) {
				GT_Log.ore.println(tModToName + " is wrongly registered and therefor getting ignored.");

				return;
			}
			GregtechOrePrefixes aPrefix = GregtechOrePrefixes.getOrePrefix(aEvent.Name);
			GT_Materials aMaterial = GT_Materials._NULL;			
			if (aPrefix == null) {
				if (aEvent.Name.toLowerCase().equals(aEvent.Name)) {
					GT_Log.ore.println(tModToName + " is invalid due to being solely lowercased.");
					return;
				}
				if (aEvent.Name.toUpperCase().equals(aEvent.Name)) {
					GT_Log.ore.println(tModToName + " is invalid due to being solely uppercased.");
					return;
				}
				if (Character.isUpperCase(aEvent.Name.charAt(0))) {
					GT_Log.ore.println(tModToName + " is invalid due to the first character being uppercased.");
				}
			} else {
				if (aPrefix.mDontUnificateActively) {
					GregtechOreDictUnificator.addToBlacklist(aEvent.Ore);
				}
				if (aPrefix != aPrefix.mPrefixInto) {
					String tNewName = aEvent.Name.replaceFirst(aPrefix.toString(), aPrefix.mPrefixInto.toString());
					if (!GregtechOreDictUnificator.isRegisteringOres()) {
						GT_Log.ore.println(tModToName + " uses a depricated Prefix, and is getting re-registered as " + tNewName);
					}
					GregtechOreDictUnificator.registerOre(tNewName, aEvent.Ore);
					return;
				}
				String tName = aEvent.Name.replaceFirst(aPrefix.toString(), "");
				if (tName.length() > 0) {
					char firstChar = tName.charAt(0);
					if (Character.isUpperCase(firstChar) || Character.isLowerCase(firstChar) || firstChar == '_') {
						if (aPrefix.mIsMaterialBased) {
							aMaterial = GT_Materials.get(tName);
							if (aMaterial != aMaterial.mMaterialInto) {
								GregtechOreDictUnificator.registerOre(aPrefix, aMaterial.mMaterialInto, aEvent.Ore);
								if (!GregtechOreDictUnificator.isRegisteringOres()) {
									GT_Log.ore.println(tModToName + " uses a deprecated Material and is getting re-registered as "
											+ aPrefix.get(aMaterial.mMaterialInto));
								}
								return;
							}
							if (!aPrefix.isIgnored(aMaterial)) {
								aPrefix.add(GT_Utility.copyAmount(1L, new Object[]{aEvent.Ore}));
							}
							if (aMaterial != GT_Materials._NULL) {
								GT_Materials tReRegisteredMaterial;
								for (Iterator<?> i$ = aMaterial.mOreReRegistrations.iterator(); i$.hasNext(); GregtechOreDictUnificator.registerOre(aPrefix,
										tReRegisteredMaterial, aEvent.Ore)) {
									tReRegisteredMaterial = (GT_Materials) i$.next();
								}
								aMaterial.add(GT_Utility.copyAmount(1L, new Object[]{aEvent.Ore}));								
								switch (aPrefix) {								
								case gem:								
									break;
								case plate:
									break;								
								case stick:
									if (!GregtechRecipeRegistrator.sRodMaterialList.contains(aMaterial)) {
										GregtechRecipeRegistrator.sRodMaterialList.add(aMaterial);
									}
									break;
								case dust:
									break;
								case ingot:								
									break;
								}
								if (aPrefix.mIsUnificatable && !aMaterial.mUnificatable) {
									return;
								}
							} else {
								for (Dyes tDye : Dyes.VALUES) {
									if (aEvent.Name.endsWith(tDye.name().replaceFirst("dye", ""))) {
										GregtechOreDictUnificator.addToBlacklist(aEvent.Ore);
										GT_Log.ore.println(tModToName + " Oh man, why the fuck would anyone need a OreDictified Color for this, that is even too much for GregTech... do not report this, this is just a random Comment about how ridiculous this is.");
										return;
									}
								}
								//								System.out.println("Material Name: "+aEvent.Name+ " !!!Unknown Material detected!!! Please report to GregTech Intergalactical for additional compatiblity. This is not an Error, an Issue nor a Lag Source, it is just an Information, which you should pass to me.");
								//								GT_Log.ore.println(tModToName + " uses an unknown Material. Report this to GregTech.");
								return;
							}
						} else {
							aPrefix.add(GT_Utility.copyAmount(1L, new Object[]{aEvent.Ore}));
						}
					}
				} else if (aPrefix.mIsSelfReferencing) {
					aPrefix.add(GT_Utility.copyAmount(1L, new Object[]{aEvent.Ore}));
				} else {
					GT_Log.ore.println(tModToName + " uses a Prefix as full OreDict Name, and is therefor invalid.");
					aEvent.Ore.setStackDisplayName("Invalid OreDictionary Tag");
					return;
				}
			}
			GT_Log.ore.println(tModToName);
			GregtechOreDictEventContainer tOre = new GregtechOreDictEventContainer(aEvent, aPrefix, aMaterial, aMod);
			if ((!mOreDictActivated) || (!GregTech_API.sUnificationEntriesRegistered)) {
				mEvents.add(tOre);
			} else {
				mEvents.clear();
			}
			if (mOreDictActivated) {
				registerRecipes(tOre);
			}
		} catch (Throwable e) {
			e.printStackTrace(GT_Log.err);
		}
	}

	private static final void registerRecipes(GregtechOreDictEventContainer tOre) {
		if ((tOre.mEvent.Ore == null) || (tOre.mEvent.Ore.getItem() == null)) {
			return;
		}
		if (tOre.mEvent.Ore.stackSize != 1) {
			tOre.mEvent.Ore.stackSize = 1;
		}
		if (tOre.mPrefix != null) {
			if (!tOre.mPrefix.isIgnored(tOre.mMaterial)) {
				tOre.mPrefix.processOre((GT_Materials) (tOre.mMaterial == null ? GT_Materials._NULL : tOre.mMaterial), tOre.mEvent.Name, tOre.mModID,
						GT_Utility.copyAmount(1L, new Object[]{tOre.mEvent.Ore}));
			}
		} else {
			//			System.out.println("Thingy Name: "+ aOre.mEvent.Name+ " !!!Unknown 'Thingy' detected!!! This Object seems to probably not follow a valid OreDictionary Convention, or I missed a Convention. Please report to GregTech Intergalactical for additional compatiblity. This is not an Error, an Issue nor a Lag Source, it is just an Information, which you should pass to me.");
		}
	}

	private static final void registerRecipes(OreDictEventContainer aOre) {
		if ((aOre.mEvent.Ore == null) || (aOre.mEvent.Ore.getItem() == null)) {
			return;
		}
		if (aOre.mEvent.Ore.stackSize != 1) {
			aOre.mEvent.Ore.stackSize = 1;
		}
		if (aOre.mPrefix != null) {
			if (!aOre.mPrefix.isIgnored(aOre.mMaterial)) {
				aOre.mPrefix.processOre(aOre.mMaterial == null ? Materials._NULL : aOre.mMaterial, aOre.mEvent.Name, aOre.mModID,
						GT_Utility.copyAmount(1L, new Object[]{aOre.mEvent.Ore}));
			}
		} else {
			//			System.out.println("Thingy Name: "+ aOre.mEvent.Name+ " !!!Unknown 'Thingy' detected!!! This Object seems to probably not follow a valid OreDictionary Convention, or I missed a Convention. Please report to GregTech Intergalactical for additional compatiblity. This is not an Error, an Issue nor a Lag Source, it is just an Information, which you should pass to me.");
		}
	}
	
	

	public static void registerUnificationEntries() {
		GregTech_API.sUnification.mConfig.save();
		GregTech_API.sUnification.mConfig.load();
		GregtechOreDictUnificator.resetUnificationEntries();
		for (GregtechOreDictEventContainer tOre : mEvents) {
			if ((!(tOre.mEvent.Ore.getItem() instanceof MetaGeneratedGregtechItems)) && (tOre.mPrefix != null) && (tOre.mPrefix.mIsUnificatable)
					&& (tOre.mMaterial != null)) {
				if (GregtechOreDictUnificator.isBlacklisted(tOre.mEvent.Ore)) {
					GregtechOreDictUnificator.addAssociation(tOre.mPrefix, tOre.mMaterial, tOre.mEvent.Ore, true);
				} else {
					GregtechOreDictUnificator.addAssociation(tOre.mPrefix, tOre.mMaterial, tOre.mEvent.Ore, false);
					GregtechOreDictUnificator.set(tOre.mPrefix, tOre.mMaterial, tOre.mEvent.Ore, (tOre.mModID != null) && (GregTech_API.sUnification.get(ConfigCategories.specialunificationtargets + "." + tOre.mModID, tOre.mEvent.Name, false)), true);
				}
			}
		}
		for (GregtechOreDictEventContainer tOre : mEvents) {
			if (((tOre.mEvent.Ore.getItem() instanceof MetaGeneratedGregtechItems)) && (tOre.mPrefix != null) && (tOre.mPrefix.mIsUnificatable)
					&& (tOre.mMaterial != null)) {
				if (GregtechOreDictUnificator.isBlacklisted(tOre.mEvent.Ore)) {
					GregtechOreDictUnificator.addAssociation(tOre.mPrefix, tOre.mMaterial, tOre.mEvent.Ore, true);
				} else {
					GregtechOreDictUnificator.addAssociation(tOre.mPrefix, tOre.mMaterial, tOre.mEvent.Ore, false);
					GregtechOreDictUnificator.set(tOre.mPrefix, tOre.mMaterial, tOre.mEvent.Ore, (tOre.mModID != null) &&
							(GregTech_API.sUnification.get(ConfigCategories.specialunificationtargets + "." + tOre.mModID, tOre.mEvent.Name, false)), true);
				}
			}
		}
		GregTech_API.sUnificationEntriesRegistered = true;
		GregTech_API.sUnification.mConfig.save();
		GT_Recipe.reInit();
	}

	public static void activateOreDictHandler() {
		mOreDictActivated = true;
		GregtechOreDictEventContainer tEvent;
		if (mEvents.size() == 0){
			Utils.LOG_INFO("Found nothing to iterate over for use in material addition.");
		}
		for (Iterator<GregtechOreDictEventContainer> i$ = mEvents.iterator(); i$.hasNext(); registerRecipes(tEvent)) {
			tEvent = (GregtechOreDictEventContainer) i$.next();
		}
		OreDictEventContainer tEvent2;
		if (mEventsFake.size() == 0){
			Utils.LOG_INFO("Found nothing to iterate over for use in GT material addition.");
		}
		for (Iterator<OreDictEventContainer> i$ = mEventsFake.iterator(); i$.hasNext(); registerRecipes(tEvent2)) {
			tEvent2 = (OreDictEventContainer) i$.next();
		}
	}


	//Dunno
	public static class GregtechOreDictEventContainer {
		public final OreDictionary.OreRegisterEvent mEvent;
		public final GregtechOrePrefixes mPrefix;
		public final GT_Materials mMaterial;
		public final String mModID;

		public GregtechOreDictEventContainer(OreDictionary.OreRegisterEvent aEvent, GregtechOrePrefixes aPrefix, GT_Materials aMaterial, String aModID) {
			this.mEvent = aEvent;
			this.mPrefix = aPrefix;
			this.mMaterial = aMaterial;
			this.mModID = ((aModID == null) || (aModID.equals("UNKNOWN")) ? null : aModID);
		}
	}

	public static boolean areWeUsingGregtech5uExperimental(){
		int version = GregTech_API.VERSION;
		if (version == 508 || version == 507){
			return false;
		}
		else if (version == 509){
			return true;
		}
		else {
			return false;
		}
	}
	
	
	
	
	
	
	@SubscribeEvent
	public void registerOre(OreDictionary.OreRegisterEvent aEvent) {
		ModContainer tContainer = Loader.instance().activeModContainer();
		String aMod = tContainer == null ? "UNKNOWN" : tContainer.getModId();
		String aOriginalMod = aMod;
		if (GT_OreDictUnificator.isRegisteringOres()) {
			aMod = "gregtech";
		} else if (aMod.equals("gregtech")) {
			aMod = "UNKNOWN";
		}
		if ((aEvent == null) || (aEvent.Ore == null) || (aEvent.Ore.getItem() == null) || (aEvent.Name == null) || (aEvent.Name.isEmpty())
				|| (aEvent.Name.replaceAll("_", "").length() - aEvent.Name.length() == 9)) {
			if (aOriginalMod.equals("gregtech")) {
				aOriginalMod = "UNKNOWN";
			}
			GT_Log.ore
			.println(aOriginalMod
					+ " did something very bad! The registration is too invalid to even be shown properly. This happens only if you register null, invalid Items, empty Strings or even nonexisting Events to the OreDict.");
			throw new IllegalArgumentException(
					aOriginalMod
					+ " did something very bad! The registration is too invalid to even be shown properly. This happens only if you register null, invalid Items, empty Strings or even nonexisting Events to the OreDict.");
		}
		try {
			aEvent.Ore.stackSize = 1;
			if (true || aEvent.Ore.getUnlocalizedName().startsWith("item.oreberry")) {
				if ((aOriginalMod.toLowerCase().contains("xycraft")) || (aOriginalMod.toLowerCase().contains("tconstruct"))
						|| ((aOriginalMod.toLowerCase().contains("natura")) && (!aOriginalMod.toLowerCase().contains("natural")))) {
					if (GT_Values.D1) {
						GT_Log.ore.println(aMod + " -> " + aEvent.Name + " is getting ignored, because of racism. :P");
					}
					return;
				}
			}
			String tModToName = aMod + " -> " + aEvent.Name;
			if ((mOreDictActivated) || (GregTech_API.sPostloadStarted) || ((mSortToTheEnd) && (GregTech_API.sLoadFinished))) {
				tModToName = aOriginalMod + " --Late--> " + aEvent.Name;
			}
			if (((aEvent.Ore.getItem() instanceof ItemBlock)) || (GT_Utility.getBlockFromStack(aEvent.Ore) != Blocks.air)) {
				GT_OreDictUnificator.addToBlacklist(aEvent.Ore);
			}
			mRegisteredOres.add(aEvent.Ore);
			if ((aEvent.Name.startsWith("item")) && (mIgnoredItems.contains(aEvent.Name))) {
				GT_Log.ore.println(tModToName);
				if (aEvent.Name.equals("itemCopperWire")) {
					GT_OreDictUnificator.registerOre(OreDictNames.craftingWireCopper, aEvent.Ore);
				}
				if (aEvent.Name.equals("itemRubber")) {
					GT_OreDictUnificator.registerOre(OrePrefixes.ingot, Materials.Rubber, aEvent.Ore);
				}
				return;
			}
			if (mIgnoredNames.contains(aEvent.Name)) {
				GT_Log.ore.println(tModToName + " is getting ignored via hardcode.");
				return;
			}
			if (aEvent.Name.equals("stone")) {
				GT_OreDictUnificator.registerOre("stoneSmooth", aEvent.Ore);
				return;
			}
			if (aEvent.Name.equals("cobblestone")) {
				GT_OreDictUnificator.registerOre("stoneCobble", aEvent.Ore);
				return;
			}
			if ((aEvent.Name.contains("|")) || (aEvent.Name.contains("*")) || (aEvent.Name.contains(":")) || (aEvent.Name.contains("."))
					|| (aEvent.Name.contains("$"))) {
				GT_Log.ore.println(tModToName + " is using a private Prefix and is therefor getting ignored properly.");
				return;
			}
			if (aEvent.Name.equals("copperWire")) {
				GT_OreDictUnificator.registerOre(OreDictNames.craftingWireCopper, aEvent.Ore);
			}
			if (aEvent.Name.equals("oreHeeEndrium")) {
				GT_OreDictUnificator.registerOre(OrePrefixes.ore, Materials.Endium, aEvent.Ore);
			}
			if (aEvent.Name.equals("sheetPlastic")) {
				GT_OreDictUnificator.registerOre(OrePrefixes.plate, Materials.Plastic, aEvent.Ore);
			}
			if (aEvent.Name.equals("shardAir")) {
				GT_OreDictUnificator.registerOre(OrePrefixes.gem, Materials.InfusedAir, aEvent.Ore);
				return;
			}
			if (aEvent.Name.equals("shardWater")) {
				GT_OreDictUnificator.registerOre(OrePrefixes.gem, Materials.InfusedWater, aEvent.Ore);
				return;
			}
			if (aEvent.Name.equals("shardFire")) {
				GT_OreDictUnificator.registerOre(OrePrefixes.gem, Materials.InfusedFire, aEvent.Ore);
				return;
			}
			if (aEvent.Name.equals("shardEarth")) {
				GT_OreDictUnificator.registerOre(OrePrefixes.gem, Materials.InfusedEarth, aEvent.Ore);
				return;
			}
			if (aEvent.Name.equals("shardOrder")) {
				GT_OreDictUnificator.registerOre(OrePrefixes.gem, Materials.InfusedOrder, aEvent.Ore);
				return;
			}
			if (aEvent.Name.equals("shardEntropy")) {
				GT_OreDictUnificator.registerOre(OrePrefixes.gem, Materials.InfusedEntropy, aEvent.Ore);
				return;
			}
			if (aEvent.Name.equals("fieryIngot")) {
				GT_OreDictUnificator.registerOre(OrePrefixes.ingot, Materials.FierySteel, aEvent.Ore);
				return;
			}
			if (aEvent.Name.equals("ironwood")) {
				GT_OreDictUnificator.registerOre(OrePrefixes.ingot, Materials.IronWood, aEvent.Ore);
				return;
			}
			if (aEvent.Name.equals("steeleaf")) {
				GT_OreDictUnificator.registerOre(OrePrefixes.ingot, Materials.Steeleaf, aEvent.Ore);
				return;
			}
			if (aEvent.Name.equals("knightmetal")) {
				GT_OreDictUnificator.registerOre(OrePrefixes.ingot, Materials.Knightmetal, aEvent.Ore);
				return;
			}
			if (aEvent.Name.contains(" ")) {
				GT_Log.ore.println(tModToName + " is getting re-registered because the OreDict Name containing invalid spaces.");
				GT_OreDictUnificator.registerOre(aEvent.Name.replaceAll(" ", ""), GT_Utility.copyAmount(1L, new Object[]{aEvent.Ore}));
				aEvent.Ore.setStackDisplayName("Invalid OreDictionary Tag");
				return;
			}
			if (mInvalidNames.contains(aEvent.Name)) {
				GT_Log.ore.println(tModToName + " is wrongly registered and therefor getting ignored.");

				return;
			}
			OrePrefixes aPrefix = OrePrefixes.getOrePrefix(aEvent.Name);
			Materials aMaterial = Materials._NULL;
			if ((aPrefix == OrePrefixes.nugget) && (aMod.equals("Thaumcraft")) && (aEvent.Ore.getItem().getUnlocalizedName().contains("ItemResource"))) {
				return;
			}
			if (aPrefix == null) {
				if (aEvent.Name.toLowerCase().equals(aEvent.Name)) {
					GT_Log.ore.println(tModToName + " is invalid due to being solely lowercased.");
					return;
				}
				if (aEvent.Name.toUpperCase().equals(aEvent.Name)) {
					GT_Log.ore.println(tModToName + " is invalid due to being solely uppercased.");
					return;
				}
				if (Character.isUpperCase(aEvent.Name.charAt(0))) {
					GT_Log.ore.println(tModToName + " is invalid due to the first character being uppercased.");
				}
			} else {
				if (aPrefix.mDontUnificateActively) {
					GT_OreDictUnificator.addToBlacklist(aEvent.Ore);
				}
				if (aPrefix != aPrefix.mPrefixInto) {
					String tNewName = aEvent.Name.replaceFirst(aPrefix.toString(), aPrefix.mPrefixInto.toString());
					if (!GT_OreDictUnificator.isRegisteringOres()) {
						GT_Log.ore.println(tModToName + " uses a depricated Prefix, and is getting re-registered as " + tNewName);
					}
					GT_OreDictUnificator.registerOre(tNewName, aEvent.Ore);
					return;
				}
				String tName = aEvent.Name.replaceFirst(aPrefix.toString(), "");
				if (tName.length() > 0) {
					char firstChar = tName.charAt(0);
					if (Character.isUpperCase(firstChar) || Character.isLowerCase(firstChar) || firstChar == '_') {
						if (aPrefix.mIsMaterialBased) {
							aMaterial = Materials.get(tName);
							if (aMaterial != aMaterial.mMaterialInto) {
								GT_OreDictUnificator.registerOre(aPrefix, aMaterial.mMaterialInto, aEvent.Ore);
								if (!GT_OreDictUnificator.isRegisteringOres()) {
									GT_Log.ore.println(tModToName + " uses a deprecated Material and is getting re-registered as "
											+ aPrefix.get(aMaterial.mMaterialInto));
								}
								return;
							}
							if (!aPrefix.isIgnored(aMaterial)) {
								aPrefix.add(GT_Utility.copyAmount(1L, new Object[]{aEvent.Ore}));
							}
							if (aMaterial != Materials._NULL) {
								Materials tReRegisteredMaterial;
								for (Iterator i$ = aMaterial.mOreReRegistrations.iterator(); i$.hasNext(); GT_OreDictUnificator.registerOre(aPrefix,
										tReRegisteredMaterial, aEvent.Ore)) {
									tReRegisteredMaterial = (Materials) i$.next();
								}
								aMaterial.add(GT_Utility.copyAmount(1L, new Object[]{aEvent.Ore}));
								if ((GregTech_API.sThaumcraftCompat != null) && (aPrefix.doGenerateItem(aMaterial)) && (!aPrefix.isIgnored(aMaterial))) {
									long tAmount = aPrefix.mMaterialAmount < 0L ? 3628800L : aPrefix.mMaterialAmount;
									List<TC_Aspects.TC_AspectStack> tAspects = new ArrayList();
									TC_Aspects.TC_AspectStack tAspect;
									for (Iterator i$ = aPrefix.mAspects.iterator(); i$.hasNext(); tAspect.addToAspectList(tAspects)) {
										tAspect = (TC_Aspects.TC_AspectStack) i$.next();
									}
									tAspect = null;
									for (Iterator i$ = aMaterial.mAspects.iterator(); i$.hasNext(); tAspect.copy(tAspect.mAmount * tAmount / 3628800L)
											.addToAspectList(tAspects)) {
										tAspect = (TC_Aspects.TC_AspectStack) i$.next();
									}
									GregTech_API.sThaumcraftCompat.registerThaumcraftAspectsToItem(GT_Utility.copyAmount(1L, new Object[]{aEvent.Ore}),
											tAspects, aEvent.Name);
								}
								switch (aPrefix) {
								case crystal:
									if ((aMaterial == Materials.CertusQuartz) || (aMaterial == Materials.NetherQuartz) || (aMaterial == Materials.Fluix)) {
										GT_OreDictUnificator.registerOre(OrePrefixes.gem, aMaterial, aEvent.Ore);
									}
									break;
								case gem:
									switch (aMaterial) {
									case Lapis:
									case Sodalite:
										GT_OreDictUnificator.registerOre(Dyes.dyeBlue, aEvent.Ore);
										break;
									case Lazurite:
										GT_OreDictUnificator.registerOre(Dyes.dyeCyan, aEvent.Ore);
										break;
									case InfusedAir:
									case InfusedWater:
									case InfusedFire:
									case InfusedEarth:
									case InfusedOrder:
									case InfusedEntropy:
										GT_OreDictUnificator.registerOre(aMaterial.name().replaceFirst("Infused", "shard"), aEvent.Ore);
										break;
									case Chocolate:
										GT_OreDictUnificator.registerOre(Dyes.dyeBrown, aEvent.Ore);
										break;
									case CertusQuartz:
									case NetherQuartz:
										GT_OreDictUnificator.registerOre(OrePrefixes.item.get(aMaterial), aEvent.Ore);
									case Fluix:
									case Quartz:
									case Quartzite:
										GT_OreDictUnificator.registerOre(OrePrefixes.crystal, aMaterial, aEvent.Ore);
										GT_OreDictUnificator.registerOre(OreDictNames.craftingQuartz, aEvent.Ore);
									default:
										break;
									}
									break;
								case cableGt01:
									if (aMaterial == Materials.Tin) {
										GT_OreDictUnificator.registerOre(OreDictNames.craftingWireTin, aEvent.Ore);
									}
									if (aMaterial == Materials.AnyCopper) {
										GT_OreDictUnificator.registerOre(OreDictNames.craftingWireCopper, aEvent.Ore);
									}
									if (aMaterial == Materials.Gold) {
										GT_OreDictUnificator.registerOre(OreDictNames.craftingWireGold, aEvent.Ore);
									}
									if (aMaterial == Materials.AnyIron) {
										GT_OreDictUnificator.registerOre(OreDictNames.craftingWireIron, aEvent.Ore);
									}
									break;
								case lens:
									if ((aMaterial.contains(SubTag.TRANSPARENT)) && (aMaterial.mColor != Dyes._NULL)) {
										GT_OreDictUnificator.registerOre("craftingLens" + aMaterial.mColor.toString().replaceFirst("dye", ""), aEvent.Ore);
									}
									break;
								case plate:
									if ((aMaterial == Materials.Plastic) || (aMaterial == Materials.Rubber)) {
										GT_OreDictUnificator.registerOre(OrePrefixes.sheet, aMaterial, aEvent.Ore);
									}
									if (aMaterial == Materials.Silicon) {
										GT_OreDictUnificator.registerOre(OrePrefixes.item, aMaterial, aEvent.Ore);
									}
									if (aMaterial == Materials.Wood) {
										GT_OreDictUnificator.addToBlacklist(aEvent.Ore);
										GT_OreDictUnificator.registerOre(OrePrefixes.plank, aMaterial, aEvent.Ore);
									}
									break;
								case cell:
									if (aMaterial == Materials.Empty) {
										GT_OreDictUnificator.addToBlacklist(aEvent.Ore);
									}
									break;
								case gearGt:
									GT_OreDictUnificator.registerOre(OrePrefixes.gear, aMaterial, aEvent.Ore);
									break;
								case stick:
									if (!GT_RecipeRegistrator.sRodMaterialList.contains(aMaterial)) {
										GT_RecipeRegistrator.sRodMaterialList.add(aMaterial);
									}
									if (aMaterial == Materials.Wood) {
										GT_OreDictUnificator.addToBlacklist(aEvent.Ore);
									}
									if ((aMaterial == Materials.Tin) || (aMaterial == Materials.Lead) || (aMaterial == Materials.SolderingAlloy)) {
										GT_OreDictUnificator.registerOre(ToolDictNames.craftingToolSolderingMetal, aEvent.Ore);
									}
									break;
								case dust:
									if (aMaterial == Materials.Salt) {
										GT_OreDictUnificator.registerOre("itemSalt", aEvent.Ore);
									}
									if (aMaterial == Materials.Wood) {
										GT_OreDictUnificator.registerOre("pulpWood", aEvent.Ore);
									}
									if (aMaterial == Materials.Wheat) {
										GT_OreDictUnificator.registerOre("foodFlour", aEvent.Ore);
									}
									if (aMaterial == Materials.Lapis) {
										GT_OreDictUnificator.registerOre(Dyes.dyeBlue, aEvent.Ore);
									}
									if (aMaterial == Materials.Lazurite) {
										GT_OreDictUnificator.registerOre(Dyes.dyeCyan, aEvent.Ore);
									}
									if (aMaterial == Materials.Sodalite) {
										GT_OreDictUnificator.registerOre(Dyes.dyeBlue, aEvent.Ore);
									}
									if (aMaterial == Materials.Cocoa) {
										GT_OreDictUnificator.registerOre(Dyes.dyeBrown, aEvent.Ore);
										GT_OreDictUnificator.registerOre("foodCocoapowder", aEvent.Ore);
									}
									if (aMaterial == Materials.Coffee) {
										GT_OreDictUnificator.registerOre(Dyes.dyeBrown, aEvent.Ore);
									}
									if (aMaterial == Materials.BrownLimonite) {
										GT_OreDictUnificator.registerOre(Dyes.dyeBrown, aEvent.Ore);
									}
									if (aMaterial == Materials.YellowLimonite) {
										GT_OreDictUnificator.registerOre(Dyes.dyeYellow, aEvent.Ore);
									}
									break;
								case ingot:
									if (aMaterial == Materials.Rubber) {
										GT_OreDictUnificator.registerOre("itemRubber", aEvent.Ore);
									}
									if (aMaterial == Materials.FierySteel) {
										GT_OreDictUnificator.registerOre("fieryIngot", aEvent.Ore);
									}
									if (aMaterial == Materials.IronWood) {
										GT_OreDictUnificator.registerOre("ironwood", aEvent.Ore);
									}
									if (aMaterial == Materials.Steeleaf) {
										GT_OreDictUnificator.registerOre("steeleaf", aEvent.Ore);
									}
									if (aMaterial == Materials.Knightmetal) {
										GT_OreDictUnificator.registerOre("knightmetal", aEvent.Ore);
									}
									if ((aMaterial == Materials.Brass) && (aEvent.Ore.getItemDamage() == 2)
											&& (aEvent.Ore.getUnlocalizedName().equals("item.ingotBrass"))
											&& (new ItemStack(aEvent.Ore.getItem(), 1, 0).getUnlocalizedName().contains("red"))) {
										GT_OreDictUnificator.set(OrePrefixes.ingot, Materials.RedAlloy, new ItemStack(aEvent.Ore.getItem(), 1, 0));
										GT_OreDictUnificator.set(OrePrefixes.ingot, Materials.BlueAlloy, new ItemStack(aEvent.Ore.getItem(), 1, 1));
										GT_OreDictUnificator.set(OrePrefixes.ingot, Materials.Brass, new ItemStack(aEvent.Ore.getItem(), 1, 2));								
										GT_Values.RA.addCutterRecipe(new ItemStack(aEvent.Ore.getItem(), 1, 3), new ItemStack(aEvent.Ore.getItem(), 16, 4),
												null, 400, 8);
									}
									break;
								default:
									break;
								}
								if (aPrefix.mIsUnificatable && !aMaterial.mUnificatable) {
									return;
								}
							} else {
								for (Dyes tDye : Dyes.VALUES) {
									if (aEvent.Name.endsWith(tDye.name().replaceFirst("dye", ""))) {
										GT_OreDictUnificator.addToBlacklist(aEvent.Ore);
										GT_Log.ore.println(tModToName + " Oh man, why the fuck would anyone need a OreDictified Color for this, that is even too much for GregTech... do not report this, this is just a random Comment about how ridiculous this is.");
										return;
									}
								}
								//								System.out.println("Material Name: "+aEvent.Name+ " !!!Unknown Material detected!!! Please report to GregTech Intergalactical for additional compatiblity. This is not an Error, an Issue nor a Lag Source, it is just an Information, which you should pass to me.");
								//								GT_Log.ore.println(tModToName + " uses an unknown Material. Report this to GregTech.");
								return;
							}
						} else {
							aPrefix.add(GT_Utility.copyAmount(1L, new Object[]{aEvent.Ore}));
						}
					}
				} else if (aPrefix.mIsSelfReferencing) {
					aPrefix.add(GT_Utility.copyAmount(1L, new Object[]{aEvent.Ore}));
				} else {
					GT_Log.ore.println(tModToName + " uses a Prefix as full OreDict Name, and is therefor invalid.");
					aEvent.Ore.setStackDisplayName("Invalid OreDictionary Tag");
					return;
				}
				switch (aPrefix) {
				case dye:
					if (GT_Utility.isStringValid(tName)) {
						GT_OreDictUnificator.registerOre(OrePrefixes.dye, aEvent.Ore);
					}
					break;
				case stoneSmooth:
					GT_OreDictUnificator.registerOre("stone", aEvent.Ore);
					break;
				case stoneCobble:
					GT_OreDictUnificator.registerOre("cobblestone", aEvent.Ore);
					break;
				case plank:
					if (tName.equals("Wood")) {
						GT_OreDictUnificator.addItemData(aEvent.Ore, new ItemData(Materials.Wood, 3628800L, new MaterialStack[0]));
					}
					break;
				case slab:
					if (tName.equals("Wood")) {
						GT_OreDictUnificator.addItemData(aEvent.Ore, new ItemData(Materials.Wood, 1814400L, new MaterialStack[0]));
					}
					break;
				case sheet:
					if (tName.equals("Plastic")) {
						GT_OreDictUnificator.registerOre(OrePrefixes.plate, Materials.Plastic, aEvent.Ore);
					}
					if (tName.equals("Rubber")) {
						GT_OreDictUnificator.registerOre(OrePrefixes.plate, Materials.Rubber, aEvent.Ore);
					}
					break;
				case crafting:
					if (tName.equals("ToolSolderingMetal")) {
						GregTech_API.registerSolderingMetal(aEvent.Ore);
					}
					if (tName.equals("IndustrialDiamond")) {
						GT_OreDictUnificator.addToBlacklist(aEvent.Ore);
					}
					if (tName.equals("WireCopper")) {
						GT_OreDictUnificator.registerOre(OrePrefixes.wire, Materials.Copper, aEvent.Ore);
					}
					break;
				case wood:
					if (tName.equals("Rubber")) {
						GT_OreDictUnificator.registerOre("logRubber", aEvent.Ore);
					}
					break;
				case food:
					if (tName.equals("Cocoapowder")) {
						GT_OreDictUnificator.registerOre(OrePrefixes.dust, Materials.Cocoa, aEvent.Ore);
					}
					break;
				default:
					break;
				}
			}
			GT_Log.ore.println(tModToName);

			//GregtechOreDictEventContainer tOre = new GregtechOreDictEventContainer(aEvent, aPrefix, aMaterial, aMod);
			OreDictEventContainer tOreFake = new OreDictEventContainer(aEvent, aPrefix, aMaterial, aMod);
			if ((!mOreDictActivated) || (!GregTech_API.sUnificationEntriesRegistered)) {
				mEventsFake.add(tOreFake);
			} else {
				mEventsFake.clear();
			}
			if (mOreDictActivated) {
				registerRecipes(tOreFake);
			}
		} catch (Throwable e) {
			e.printStackTrace(GT_Log.err);
		}
	
	}
	
	
	

}