-
-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathUtils.java
More file actions
1378 lines (1188 loc) · 55 KB
/
Utils.java
File metadata and controls
1378 lines (1188 loc) · 55 KB
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
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package io.github.moulberry.notenoughupdates.util;
import com.google.common.base.Splitter;
import com.google.common.collect.Lists;
import com.google.common.collect.Multimap;
import com.google.gson.*;
import com.mojang.authlib.Agent;
import com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService;
import com.mojang.authlib.yggdrasil.YggdrasilUserAuthentication;
import io.github.moulberry.notenoughupdates.NotEnoughUpdates;
import io.github.moulberry.notenoughupdates.miscfeatures.SlotLocking;
import io.github.moulberry.notenoughupdates.util.TexLoc;
import net.minecraft.block.Block;
import net.minecraft.client.Minecraft;
import net.minecraft.client.audio.PositionedSoundRecord;
import net.minecraft.client.audio.SoundHandler;
import net.minecraft.client.gui.FontRenderer;
import net.minecraft.client.gui.ScaledResolution;
import net.minecraft.client.gui.inventory.GuiContainer;
import net.minecraft.client.renderer.*;
import net.minecraft.client.renderer.block.model.ItemCameraTransforms;
import net.minecraft.client.renderer.entity.RenderItem;
import net.minecraft.client.renderer.texture.DynamicTexture;
import net.minecraft.client.renderer.texture.TextureMap;
import net.minecraft.client.renderer.vertex.DefaultVertexFormats;
import net.minecraft.client.resources.model.IBakedModel;
import net.minecraft.enchantment.Enchantment;
import net.minecraft.enchantment.EnchantmentHelper;
import net.minecraft.entity.EnumCreatureAttribute;
import net.minecraft.entity.ai.attributes.AttributeModifier;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.event.ClickEvent;
import net.minecraft.event.HoverEvent;
import net.minecraft.init.Items;
import net.minecraft.inventory.Slot;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.nbt.NBTTagList;
import net.minecraft.nbt.NBTTagString;
import net.minecraft.potion.Potion;
import net.minecraft.server.MinecraftServer;
import net.minecraft.util.*;
import net.minecraftforge.fml.common.Loader;
import org.lwjgl.BufferUtils;
import org.lwjgl.input.Keyboard;
import org.lwjgl.opengl.GL11;
import org.lwjgl.opengl.GL14;
import org.lwjgl.util.glu.Project;
import javax.swing.*;
import java.awt.*;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.InputStreamReader;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import java.net.Proxy;
import java.nio.FloatBuffer;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.util.*;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Utils {
public static boolean hasEffectOverride = false;
public static boolean disableCustomDungColours = false;
private static LinkedList<Integer> guiScales = new LinkedList<>();
private static ScaledResolution lastScale = new ScaledResolution(Minecraft.getMinecraft());
//Labymod compatibility
private static FloatBuffer projectionMatrixOld = BufferUtils.createFloatBuffer(16);
private static FloatBuffer modelviewMatrixOld = BufferUtils.createFloatBuffer(16);
public static <T> ArrayList<T> createList(T... values) {
ArrayList<T> list = new ArrayList<>();
for(T value : values)list.add(value);
return list;
}
public static void resetGuiScale() {
guiScales.clear();
}
public static ScaledResolution peekGuiScale() {
return lastScale;
}
public static ScaledResolution pushGuiScale(int scale) {
if(guiScales.size() == 0) {
if(Loader.isModLoaded("labymod")) {
GL11.glGetFloat(GL11.GL_PROJECTION_MATRIX, projectionMatrixOld);
GL11.glGetFloat(GL11.GL_MODELVIEW_MATRIX, modelviewMatrixOld);
}
}
if(scale < 0) {
if(guiScales.size() > 0) {
guiScales.pop();
}
} else {
if(scale == 0) {
guiScales.push(Minecraft.getMinecraft().gameSettings.guiScale);
} else {
guiScales.push(scale);
}
}
int newScale = guiScales.size() > 0 ? Math.max(0, Math.min(4, guiScales.peek())) : Minecraft.getMinecraft().gameSettings.guiScale;
if(newScale == 0) newScale = Minecraft.getMinecraft().gameSettings.guiScale;
int oldScale = Minecraft.getMinecraft().gameSettings.guiScale;
Minecraft.getMinecraft().gameSettings.guiScale = newScale;
ScaledResolution scaledresolution = new ScaledResolution(Minecraft.getMinecraft());
Minecraft.getMinecraft().gameSettings.guiScale = oldScale;
if(guiScales.size() > 0) {
GlStateManager.viewport(0, 0, Minecraft.getMinecraft().displayWidth, Minecraft.getMinecraft().displayHeight);
GlStateManager.matrixMode(GL11.GL_PROJECTION);
GlStateManager.loadIdentity();
GlStateManager.ortho(0.0D,
scaledresolution.getScaledWidth_double(),
scaledresolution.getScaledHeight_double(), 0.0D, 1000.0D, 3000.0D);
GlStateManager.matrixMode(GL11.GL_MODELVIEW);
GlStateManager.loadIdentity();
GlStateManager.translate(0.0F, 0.0F, -2000.0F);
} else {
if(Loader.isModLoaded("labymod") && projectionMatrixOld.limit() > 0 && modelviewMatrixOld.limit() > 0) {
GlStateManager.matrixMode(GL11.GL_PROJECTION);
GL11.glLoadMatrix(projectionMatrixOld);
GlStateManager.matrixMode(GL11.GL_MODELVIEW);
GL11.glLoadMatrix(modelviewMatrixOld);
} else {
GlStateManager.matrixMode(GL11.GL_PROJECTION);
GlStateManager.loadIdentity();
GlStateManager.ortho(0.0D,
scaledresolution.getScaledWidth_double(),
scaledresolution.getScaledHeight_double(), 0.0D, 1000.0D, 3000.0D);
GlStateManager.matrixMode(GL11.GL_MODELVIEW);
GlStateManager.loadIdentity();
GlStateManager.translate(0.0F, 0.0F, -2000.0F);
}
}
lastScale = scaledresolution;
return scaledresolution;
}
public static boolean getHasEffectOverride() {
return hasEffectOverride;
}
public static void drawItemStackWithoutGlint(ItemStack stack, int x, int y) {
RenderItem itemRender = Minecraft.getMinecraft().getRenderItem();
disableCustomDungColours = true;
RenderHelper.enableGUIStandardItemLighting();
itemRender.zLevel = -145; //Negates the z-offset of the below method.
hasEffectOverride = true;
try {
itemRender.renderItemAndEffectIntoGUI(stack, x, y);
} catch(Exception e) {e.printStackTrace();} //Catch exceptions to ensure that hasEffectOverride is set back to false.
itemRender.renderItemOverlayIntoGUI(Minecraft.getMinecraft().fontRendererObj, stack, x, y, null);
hasEffectOverride = false;
itemRender.zLevel = 0;
RenderHelper.disableStandardItemLighting();
disableCustomDungColours = false;
}
public static void drawItemStackWithText(ItemStack stack, int x, int y, String text) {
if(stack == null)return;
RenderItem itemRender = Minecraft.getMinecraft().getRenderItem();
disableCustomDungColours = true;
RenderHelper.enableGUIStandardItemLighting();
itemRender.zLevel = -145; //Negates the z-offset of the below method.
itemRender.renderItemAndEffectIntoGUI(stack, x, y);
itemRender.renderItemOverlayIntoGUI(Minecraft.getMinecraft().fontRendererObj, stack, x, y, text);
itemRender.zLevel = 0;
RenderHelper.disableStandardItemLighting();
disableCustomDungColours = false;
}
public static void drawItemStack(ItemStack stack, int x, int y) {
if(stack == null) return;
drawItemStackWithText(stack, x, y, null);
}
private static final EnumChatFormatting[] rainbow = new EnumChatFormatting[]{
EnumChatFormatting.RED,
EnumChatFormatting.GOLD,
EnumChatFormatting.YELLOW,
EnumChatFormatting.GREEN,
EnumChatFormatting.AQUA,
EnumChatFormatting.LIGHT_PURPLE,
EnumChatFormatting.DARK_PURPLE
};
public static String chromaString(String str) {
return chromaString(str, 0, false);
}
private static final Pattern CHROMA_REPLACE_PATTERN = Pattern.compile("\u00a7z(.+?)(?=\u00a7|$)");
public static String chromaStringByColourCode(String str) {
if(str.contains("\u00a7z")) {
Matcher matcher = CHROMA_REPLACE_PATTERN.matcher(str);
StringBuffer sb = new StringBuffer();
while(matcher.find()) {
matcher.appendReplacement(sb,
Utils.chromaString(matcher.group(1))
.replace("\\", "\\\\")
.replace("$", "\\$")
);
}
matcher.appendTail(sb);
str = sb.toString();
}
return str;
}
private static long startTime = 0;
public static String chromaString(String str, float offset, boolean bold) {
str = cleanColour(str);
long currentTimeMillis = System.currentTimeMillis();
if(startTime == 0) startTime = currentTimeMillis;
int chromaSpeed = NotEnoughUpdates.INSTANCE.config.misc.chromaSpeed;
if(chromaSpeed < 10) chromaSpeed = 10;
if(chromaSpeed > 5000) chromaSpeed = 5000;
StringBuilder rainbowText = new StringBuilder();
int len = 0;
for(int i=0; i<str.length(); i++) {
char c = str.charAt(i);
int index = ((int)(offset+len/12f-(currentTimeMillis-startTime)/chromaSpeed))%rainbow.length;
len += Minecraft.getMinecraft().fontRendererObj.getCharWidth(c);
if(bold) len++;
if(index < 0) index += rainbow.length;
rainbowText.append(rainbow[index]);
if(bold) rainbowText.append(EnumChatFormatting.BOLD);
rainbowText.append(c);
}
return rainbowText.toString();
}
private static char[] c = new char[]{'k', 'M', 'B', 't', 'q', 'Q', 's', 'S'};
public static String shortNumberFormat(double n, int dp) {
int pow1k = (int) Math.floor(Math.log(n) / Math.log(1000));
if (pow1k == 0 || pow1k > 8) {return String.valueOf(n);}
double mantissa = n / (Math.pow(1000, pow1k));
return (String.format("%." + dp + "f", mantissa) + c[pow1k - 1]);
}
public static String shortNumberFormat(double n) {
return shortNumberFormat(n, 1);
}
public static String trimIgnoreColour(String str) {
return trimIgnoreColourStart(trimIgnoreColourEnd(str));
}
public static String trimIgnoreColourStart(String str) {
str = str.trim();
boolean colourCodeLast = false;
StringBuilder colours = new StringBuilder();
for(int i=0; i<str.length(); i++) {
char c = str.charAt(i);
if(colourCodeLast) {
colours.append('\u00a7').append(c);
colourCodeLast = false;
continue;
}
if(c == '\u00A7') {
colourCodeLast = true;
} else if(c != ' ') {
return colours.append(str.substring(i)).toString();
}
}
return "";
}
public static String trimIgnoreColourEnd(String str) {
str = str.trim();
for(int i=str.length()-1; i>=0; i--) {
char c = str.charAt(i);
if(c == ' ') {
continue;
} else if(i > 0 && str.charAt(i-1) == '\u00a7') {
i--;
continue;
}
return str.substring(0, i+1);
}
return "";
}
public static List<String> getRawTooltip(ItemStack stack) {
List<String> list = Lists.<String>newArrayList();
String s = stack.getDisplayName();
if (stack.hasDisplayName()) {
s = EnumChatFormatting.ITALIC + s;
}
s = s + EnumChatFormatting.RESET;
if (!stack.hasDisplayName() && stack.getItem() == Items.filled_map) {
s = s + " #" + stack.getItemDamage();
}
list.add(s);
if (stack.hasTagCompound()) {
if (stack.getTagCompound().hasKey("display", 10)) {
NBTTagCompound nbttagcompound = stack.getTagCompound().getCompoundTag("display");
if (nbttagcompound.hasKey("color", 3)) {
list.add(EnumChatFormatting.ITALIC + StatCollector.translateToLocal("item.dyed"));
}
if (nbttagcompound.getTagId("Lore") == 9) {
NBTTagList nbttaglist1 = nbttagcompound.getTagList("Lore", 8);
if (nbttaglist1.tagCount() > 0) {
for (int j1 = 0; j1 < nbttaglist1.tagCount(); ++j1) {
list.add(EnumChatFormatting.DARK_PURPLE + "" + EnumChatFormatting.ITALIC + nbttaglist1.getStringTagAt(j1));
}
}
}
}
}
return list;
}
public static String floatToString(float f, int decimals) {
if(decimals <= 0) {
return String.valueOf(Math.round(f));
} else {
return String.format("%."+decimals+"f", f + 0.00001f);
}
}
public static void drawItemStackLinear(ItemStack stack, int x, int y) {
if(stack == null)return;
RenderItem itemRender = Minecraft.getMinecraft().getRenderItem();
RenderHelper.enableGUIStandardItemLighting();
itemRender.zLevel = -145; //Negates the z-offset of the below method.
IBakedModel ibakedmodel = itemRender.getItemModelMesher().getItemModel(stack);
GlStateManager.pushMatrix();
Minecraft.getMinecraft().getTextureManager().bindTexture(TextureMap.locationBlocksTexture);
Minecraft.getMinecraft().getTextureManager().getTexture(TextureMap.locationBlocksTexture).setBlurMipmap(true, true);
GlStateManager.enableRescaleNormal();
GlStateManager.enableAlpha();
GlStateManager.alphaFunc(516, 0.1F);
GlStateManager.enableBlend();
GlStateManager.blendFunc(770, 771);
GlStateManager.color(1.0F, 1.0F, 1.0F, 1.0F);
setupGuiTransform(x, y, ibakedmodel.isGui3d());
ibakedmodel = net.minecraftforge.client.ForgeHooksClient.handleCameraTransforms(ibakedmodel, ItemCameraTransforms.TransformType.GUI);
itemRender.renderItem(stack, ibakedmodel);
GlStateManager.disableAlpha();
GlStateManager.disableRescaleNormal();
GlStateManager.disableLighting();
GlStateManager.popMatrix();
Minecraft.getMinecraft().getTextureManager().bindTexture(TextureMap.locationBlocksTexture);
Minecraft.getMinecraft().getTextureManager().getTexture(TextureMap.locationBlocksTexture).restoreLastBlurMipmap();
itemRender.renderItemOverlays(Minecraft.getMinecraft().fontRendererObj, stack, x, y);
itemRender.zLevel = 0;
RenderHelper.disableStandardItemLighting();
}
private static void setupGuiTransform(int xPosition, int yPosition, boolean isGui3d) {
GlStateManager.translate((float)xPosition, (float)yPosition, 5);
GlStateManager.translate(8.0F, 8.0F, 0.0F);
GlStateManager.scale(1.0F, 1.0F, -1.0F);
GlStateManager.scale(0.5F, 0.5F, 0.5F);
if (isGui3d) {
GlStateManager.scale(40.0F, 40.0F, 40.0F);
GlStateManager.rotate(210.0F, 1.0F, 0.0F, 0.0F);
GlStateManager.rotate(-135.0F, 0.0F, 1.0F, 0.0F);
GlStateManager.enableLighting();
} else {
GlStateManager.scale(64.0F, 64.0F, 64.0F);
GlStateManager.rotate(180.0F, 1.0F, 0.0F, 0.0F);
GlStateManager.disableLighting();
}
}
public static Method getMethod(Class<?> clazz, Class<?>[] params, String... methodNames) {
for(String methodName : methodNames) {
try {
return clazz.getDeclaredMethod(methodName, params);
} catch(Exception e) {}
}
return null;
}
public static Object getField(Class<?> clazz, Object o, String... fieldNames) {
Field field = null;
for(String fieldName : fieldNames) {
try {
field = clazz.getDeclaredField(fieldName);
break;
} catch(Exception e) {}
}
if(field != null) {
field.setAccessible(true);
try {
return field.get(o);
} catch(IllegalAccessException e) {
}
}
return null;
}
public static Slot getSlotUnderMouse(GuiContainer container) {
Slot slot = (Slot) getField(GuiContainer.class, container, "theSlot", "field_147006_u");
if(slot == null){
slot = SlotLocking.getInstance().getRealSlot();
}
return slot;
}
public static void drawTexturedRect(float x, float y, float width, float height) {
drawTexturedRect(x, y, width, height, 0, 1, 0 , 1);
}
public static void drawTexturedRect(float x, float y, float width, float height, int filter) {
drawTexturedRect(x, y, width, height, 0, 1, 0 , 1, filter);
}
public static void drawTexturedRect(float x, float y, float width, float height, float uMin, float uMax, float vMin, float vMax) {
drawTexturedRect(x, y, width, height, uMin, uMax, vMin , vMax, GL11.GL_LINEAR);
}
public static String cleanColour(String in) {
return in.replaceAll("(?i)\\u00A7.", "");
}
public static String cleanColourNotModifiers(String in) {
return in.replaceAll("(?i)\\u00A7[0-9a-f]", "");
}
public static String fixBrokenAPIColour(String in) {
return in.replaceAll("(?i)\\u00C2(\\u00A7.)", "$1");
}
public static String prettyCase(String str) {
return str.substring(0, 1).toUpperCase() + str.substring(1).toLowerCase();
}
public static String[] rarityArr = new String[] {
"COMMON", "UNCOMMON", "RARE", "EPIC", "LEGENDARY", "MYTHIC", "SPECIAL", "VERY SPECIAL", "SUPREME", "DIVINE"
};
public static String[] rarityArrC = new String[] {
EnumChatFormatting.WHITE+EnumChatFormatting.BOLD.toString()+"COMMON",
EnumChatFormatting.GREEN+EnumChatFormatting.BOLD.toString()+"UNCOMMON",
EnumChatFormatting.BLUE+EnumChatFormatting.BOLD.toString()+"RARE",
EnumChatFormatting.DARK_PURPLE+EnumChatFormatting.BOLD.toString()+"EPIC",
EnumChatFormatting.GOLD+EnumChatFormatting.BOLD.toString()+"LEGENDARY",
EnumChatFormatting.LIGHT_PURPLE+EnumChatFormatting.BOLD.toString()+"MYTHIC",
EnumChatFormatting.RED+EnumChatFormatting.BOLD.toString()+"SPECIAL",
EnumChatFormatting.RED+EnumChatFormatting.BOLD.toString()+"VERY SPECIAL",
EnumChatFormatting.DARK_RED+EnumChatFormatting.BOLD.toString()+"SUPREME",
EnumChatFormatting.AQUA+EnumChatFormatting.BOLD.toString()+"DIVINE",
};
public static final HashMap<String, String> rarityArrMap = new HashMap<>();
static {
rarityArrMap.put("COMMON", rarityArrC[0]);
rarityArrMap.put("UNCOMMON", rarityArrC[1]);
rarityArrMap.put("RARE", rarityArrC[2]);
rarityArrMap.put("EPIC", rarityArrC[3]);
rarityArrMap.put("LEGENDARY", rarityArrC[4]);
rarityArrMap.put("MYTHIC", rarityArrC[5]);
rarityArrMap.put("SPECIAL", rarityArrC[6]);
rarityArrMap.put("VERY SPECIAL", rarityArrC[7]);
rarityArrMap.put("SUPREME", rarityArrC[8]);
rarityArrMap.put("DIVINE", rarityArrC[9]);
}
public static String getRarityFromInt(int rarity){
if(rarity < 0|| rarity >= rarityArr.length){ return rarityArr[0]; }
return rarityArr[rarity];
}
public static int checkItemTypePet(List<String> lore){
for(int i=lore.size()-1; i>=0; i--){
String line = Utils.cleanColour(lore.get(i));
for (int i1 = 0; i1 < rarityArr.length; i1++) {
if(line.equals(rarityArr[i1])){
return i1;
}
}
}
return -1;
}
public static int checkItemType(JsonArray lore, boolean contains, String... typeMatches) {
for(int i=lore.size()-1; i>=0; i--) {
String line = lore.get(i).getAsString();
int returnType = checkItemType(line, contains, typeMatches);
if(returnType != -1){
return returnType;
}
}
return -1;
}
public static int checkItemType(String[] lore, boolean contains, String... typeMatches) {
for(int i=lore.length-1; i>=0; i--) {
String line = lore[i];
int returnType = checkItemType(line, contains, typeMatches);
if(returnType != -1){
return returnType;
}
}
return -1;
}
public static int checkItemType(List<String> lore, boolean contains, String... typeMatches) {
for(int i=lore.size()-1; i>=0; i--) {
String line = lore.get(i);
int returnType = checkItemType(line, contains, typeMatches);
if(returnType != -1){
return returnType;
}
}
return -1;
}
private static int checkItemType(String line, boolean contains, String... typeMatches) {
for (String rarity : rarityArr) {
for (int j = 0; j < typeMatches.length; j++) {
if (contains) {
if (line.trim().contains(rarity + " " + typeMatches[j])) {
return j;
} else if (line.trim().contains(rarity + " DUNGEON " + typeMatches[j])) {
return j;
}
} else {
if (line.trim().endsWith(rarity + " " + typeMatches[j])) {
return j;
} else if (line.trim().endsWith(rarity + " DUNGEON " + typeMatches[j])) {
return j;
}
}
}
}
return -1;
}
public static float round (float value, int precision) {
int scale = (int) Math.pow(10, precision);
return (float) Math.round(value * scale) / scale;
}
public static void playPressSound() {
playSound(new ResourceLocation("gui.button.press"), true);
}
public static void playSound(ResourceLocation sound, boolean gui) {
if(NotEnoughUpdates.INSTANCE.config.misc.guiButtonClicks || !gui) {
Minecraft.getMinecraft().getSoundHandler().playSound(PositionedSoundRecord.create(sound, 1.0F));
}
}
public static String cleanDuplicateColourCodes(String line) {
StringBuilder sb = new StringBuilder();
char currentColourCode = 'r';
boolean sectionSymbolLast = false;
for(char c : line.toCharArray()) {
if((int)c > 50000) continue;
if(c == '\u00a7') {
sectionSymbolLast = true;
} else {
if(sectionSymbolLast) {
if(currentColourCode != c) {
sb.append('\u00a7');
sb.append(c);
currentColourCode = c;
}
sectionSymbolLast = false;
} else {
sb.append(c);
}
}
}
return sb.toString();
}
public static void drawTexturedRect(float x, float y, float width, float height, float uMin, float uMax, float vMin, float vMax, int filter) {
GlStateManager.enableTexture2D();
GlStateManager.enableBlend();
GlStateManager.tryBlendFuncSeparate(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA, GL11.GL_ONE, GL11.GL_ONE_MINUS_SRC_ALPHA);
GL14.glBlendFuncSeparate(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA, GL11.GL_ONE, GL11.GL_ONE_MINUS_SRC_ALPHA);
GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_MIN_FILTER, filter);
GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_MAG_FILTER, filter);
Tessellator tessellator = Tessellator.getInstance();
WorldRenderer worldrenderer = tessellator.getWorldRenderer();
worldrenderer.begin(7, DefaultVertexFormats.POSITION_TEX);
worldrenderer
.pos(x, y+height, 0.0D)
.tex(uMin, vMax).endVertex();
worldrenderer
.pos(x+width, y+height, 0.0D)
.tex(uMax, vMax).endVertex();
worldrenderer
.pos(x+width, y, 0.0D)
.tex(uMax, vMin).endVertex();
worldrenderer
.pos(x, y, 0.0D)
.tex(uMin, vMin).endVertex();
tessellator.draw();
GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_MIN_FILTER, GL11.GL_NEAREST);
GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_MAG_FILTER, GL11.GL_NEAREST);
GlStateManager.disableBlend();
}
public static void drawTexturedRectNoBlend(float x, float y, float width, float height, float uMin, float uMax, float vMin, float vMax, int filter) {
GlStateManager.enableTexture2D();
GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_MIN_FILTER, filter);
GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_MAG_FILTER, filter);
Tessellator tessellator = Tessellator.getInstance();
WorldRenderer worldrenderer = tessellator.getWorldRenderer();
worldrenderer.begin(7, DefaultVertexFormats.POSITION_TEX);
worldrenderer
.pos(x, y+height, 0.0D)
.tex(uMin, vMax).endVertex();
worldrenderer
.pos(x+width, y+height, 0.0D)
.tex(uMax, vMax).endVertex();
worldrenderer
.pos(x+width, y, 0.0D)
.tex(uMax, vMin).endVertex();
worldrenderer
.pos(x, y, 0.0D)
.tex(uMin, vMin).endVertex();
tessellator.draw();
GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_MIN_FILTER, GL11.GL_NEAREST);
GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_MAG_FILTER, GL11.GL_NEAREST);
}
public static ItemStack createItemStack(Item item, String displayname, String... lore) {
return createItemStack(item, displayname, 0, lore);
}
public static ItemStack createItemStack(Item item, String displayname, int damage, String... lore) {
ItemStack stack = new ItemStack(item, 1, damage);
NBTTagCompound tag = new NBTTagCompound();
NBTTagCompound display = new NBTTagCompound();
NBTTagList Lore = new NBTTagList();
for(String line : lore) {
Lore.appendTag(new NBTTagString(line));
}
display.setString("Name", displayname);
display.setTag("Lore", Lore);
tag.setTag("display", display);
tag.setInteger("HideFlags", 254);
stack.setTagCompound(tag);
return stack;
}
public static ItemStack editItemStackInfo(ItemStack itemStack, String displayName, boolean disableNeuToolTips, String... lore){
NBTTagCompound tag = itemStack.getTagCompound();
NBTTagCompound display = tag.getCompoundTag("display");
NBTTagList Lore = new NBTTagList();
for(String line : lore) {
Lore.appendTag(new NBTTagString(line));
}
display.setString("Name", displayName);
display.setTag("Lore", Lore);
tag.setTag("display", display);
tag.setInteger("HideFlags", 254);
if(disableNeuToolTips){
tag.setBoolean("disableNeuTooltip", true);
}
itemStack.setTagCompound(tag);
return itemStack;
}
public static void drawStringF(String str, FontRenderer fr, float x, float y, boolean shadow, int colour) {
fr.drawString(str, x, y, colour, shadow);
}
public static int getCharVertLen(char c) {
if("acegmnopqrsuvwxyz".indexOf(c) >= 0) {
return 5;
} else {
return 7;
}
}
public static float getVerticalHeight(String str) {
str = cleanColour(str);
float height = 0;
for(int i=0; i<str.length(); i++) {
char c = str.charAt(i);
int charHeight = getCharVertLen(c);
height += charHeight + 1.5f;
}
return height;
}
public static void drawStringVertical(String str, FontRenderer fr, float x, float y, boolean shadow, int colour) {
String format = FontRenderer.getFormatFromString(str);
str = cleanColour(str);
for(int i=0; i<str.length(); i++) {
char c = str.charAt(i);
int charHeight = getCharVertLen(c);
int charWidth = fr.getCharWidth(c);
fr.drawString(format+c, x+(5-charWidth)/2f, y-7+charHeight, colour, shadow);
y += charHeight + 1.5f;
}
}
public static void renderShadowedString(String str, float x, float y, int maxLength) {
int strLen = Minecraft.getMinecraft().fontRendererObj.getStringWidth(str);
float factor;
if(maxLength < 0) {
factor = 1;
} else {
factor = maxLength/(float)strLen;
factor = Math.min(1, factor);
}
for(int xOff=-2; xOff<=2; xOff++) {
for(int yOff=-2; yOff<=2; yOff++) {
if(Math.abs(xOff) != Math.abs(yOff)) {
Utils.drawStringCenteredScaledMaxWidth(Utils.cleanColourNotModifiers(str), Minecraft.getMinecraft().fontRendererObj,
x+xOff/2f*factor, y+4+yOff/2f*factor, false, maxLength,
new Color(0, 0, 0, 200/Math.max(Math.abs(xOff), Math.abs(yOff))).getRGB());
}
}
}
GlStateManager.color(1, 1, 1, 1);
Utils.drawStringCenteredScaledMaxWidth(str, Minecraft.getMinecraft().fontRendererObj,
x, y+4, false, maxLength, 4210752);
}
public static void renderAlignedString(String first, String second, float x, float y, int length) {
FontRenderer fontRendererObj = Minecraft.getMinecraft().fontRendererObj;
if(fontRendererObj.getStringWidth(first + " " + second) >= length) {
renderShadowedString(first + " " + second, x+length/2f, y, length);
} else {
for(int xOff=-2; xOff<=2; xOff++) {
for(int yOff=-2; yOff<=2; yOff++) {
if(Math.abs(xOff) != Math.abs(yOff)) {
fontRendererObj.drawString(Utils.cleanColourNotModifiers(first),
x+xOff/2f, y+yOff/2f,
new Color(0, 0, 0, 200/Math.max(Math.abs(xOff), Math.abs(yOff))).getRGB(), false);
}
}
}
int secondLen = fontRendererObj.getStringWidth(second);
GlStateManager.color(1, 1, 1, 1);
fontRendererObj.drawString(first, x, y, 4210752, false);
for(int xOff=-2; xOff<=2; xOff++) {
for(int yOff=-2; yOff<=2; yOff++) {
if(Math.abs(xOff) != Math.abs(yOff)) {
fontRendererObj.drawString(Utils.cleanColourNotModifiers(second),
x+length-secondLen+xOff/2f, y+yOff/2f,
new Color(0, 0, 0, 200/Math.max(Math.abs(xOff), Math.abs(yOff))).getRGB(), false);
}
}
}
GlStateManager.color(1, 1, 1, 1);
fontRendererObj.drawString(second, x+length-secondLen, y, 4210752, false);
}
}
public static void drawStringScaledMaxWidth(String str, FontRenderer fr, float x, float y, boolean shadow, int len, int colour) {
int strLen = fr.getStringWidth(str);
float factor = len/(float)strLen;
factor = Math.min(1, factor);
drawStringScaled(str, fr, x, y, shadow, colour, factor);
}
public static void drawStringCentered(String str, FontRenderer fr, float x, float y, boolean shadow, int colour) {
int strLen = fr.getStringWidth(str);
float x2 = x - strLen/2f;
float y2 = y - fr.FONT_HEIGHT/2f;
GL11.glTranslatef(x2, y2, 0);
fr.drawString(str, 0, 0, colour, shadow);
GL11.glTranslatef(-x2, -y2, 0);
}
public static void drawStringScaled(String str, FontRenderer fr, float x, float y, boolean shadow, int colour, float factor) {
GlStateManager.scale(factor, factor, 1);
fr.drawString(str, x/factor, y/factor, colour, shadow);
GlStateManager.scale(1/factor, 1/factor, 1);
}
public static void drawStringCenteredScaledMaxWidth(String str, FontRenderer fr, float x, float y, boolean shadow, int len, int colour) {
int strLen = fr.getStringWidth(str);
float factor = len/(float)strLen;
factor = Math.min(1, factor);
int newLen = Math.min(strLen, len);
float fontHeight = 8*factor;
drawStringScaled(str, fr, x-newLen/2, y-fontHeight/2, shadow, colour, factor);
}
public static Matrix4f createProjectionMatrix(int width, int height) {
Matrix4f projMatrix = new Matrix4f();
projMatrix.setIdentity();
projMatrix.m00 = 2.0F / (float)width;
projMatrix.m11 = 2.0F / (float)(-height);
projMatrix.m22 = -0.0020001999F;
projMatrix.m33 = 1.0F;
projMatrix.m03 = -1.0F;
projMatrix.m13 = 1.0F;
projMatrix.m23 = -1.0001999F;
return projMatrix;
}
public static void drawStringCenteredScaled(String str, FontRenderer fr, float x, float y, boolean shadow, int len, int colour) {
int strLen = fr.getStringWidth(str);
float factor = len/(float)strLen;
float fontHeight = 8*factor;
drawStringScaled(str, fr, x-len/2, y-fontHeight/2, shadow, colour, factor);
}
public static void drawStringCenteredYScaled(String str, FontRenderer fr, float x, float y, boolean shadow, int len, int colour) {
int strLen = fr.getStringWidth(str);
float factor = len/(float)strLen;
float fontHeight = 8*factor;
drawStringScaled(str, fr, x, y-fontHeight/2, shadow, colour, factor);
}
public static void drawStringCenteredYScaledMaxWidth(String str, FontRenderer fr, float x, float y, boolean shadow, int len, int colour) {
int strLen = fr.getStringWidth(str);
float factor = len/(float)strLen;
factor = Math.min(1, factor);
float fontHeight = 8*factor;
drawStringScaled(str, fr, x, y-fontHeight/2, shadow, colour, factor);
}
public static int renderStringTrimWidth(String str, FontRenderer fr, boolean shadow, int x, int y, int len, int colour, int maxLines) {
return renderStringTrimWidth(str, fr, shadow, x, y, len, colour, maxLines, 1);
}
public static int renderStringTrimWidth(String str, FontRenderer fr, boolean shadow, int x, int y, int len, int colour, int maxLines, float scale) {
len = (int)(len/scale);
int yOff = 0;
String excess;
String trimmed = trimToWidth(str, len);
String colourCodes = "";
Pattern pattern = Pattern.compile("\\u00A7.");
Matcher matcher = pattern.matcher(trimmed);
while(matcher.find()) {
colourCodes += matcher.group();
}
boolean firstLine = true;
int trimmedCharacters = trimmed.length();
int lines = 0;
while((lines++<maxLines) || maxLines<0) {
if(trimmed.length() == str.length()) {
drawStringScaled(trimmed, fr, x, y+yOff, shadow, colour, scale);
//fr.drawString(trimmed, x, y + yOff, colour, shadow);
break;
} else if(trimmed.isEmpty()) {
yOff -= 12*scale;
break;
} else {
if(firstLine) {
drawStringScaled(trimmed, fr, x, y+yOff, shadow, colour, scale);
firstLine = false;
} else {
if(trimmed.startsWith(" ")) {
trimmed = trimmed.substring(1);
}
drawStringScaled(colourCodes + trimmed, fr, x, y+yOff, shadow, colour, scale);
}
excess = str.substring(trimmedCharacters);
trimmed = trimToWidth(excess, len);
trimmedCharacters += trimmed.length();
yOff += 12*scale;
}
}
return yOff;
}
public static String trimToWidth(String str, int len) {
FontRenderer fr = Minecraft.getMinecraft().fontRendererObj;
String trim = fr.trimStringToWidth(str, len);
if(str.length() != trim.length() && !trim.endsWith(" ")) {
char next = str.charAt(trim.length());
if(next != ' ') {
String[] split = trim.split(" ");
String last = split[split.length-1];
if(last.length() < 8) {
trim = trim.substring(0, trim.length()-last.length());
}
}
}
return trim;
}
public static void drawGradientRect(int left, int top, int right, int bottom, int startColor, int endColor) {
float f = (float)(startColor >> 24 & 255) / 255.0F;
float f1 = (float)(startColor >> 16 & 255) / 255.0F;
float f2 = (float)(startColor >> 8 & 255) / 255.0F;
float f3 = (float)(startColor & 255) / 255.0F;
float f4 = (float)(endColor >> 24 & 255) / 255.0F;
float f5 = (float)(endColor >> 16 & 255) / 255.0F;
float f6 = (float)(endColor >> 8 & 255) / 255.0F;
float f7 = (float)(endColor & 255) / 255.0F;
GlStateManager.disableTexture2D();
GlStateManager.enableBlend();
GlStateManager.disableAlpha();
GlStateManager.tryBlendFuncSeparate(770, 771, 1, 0);
GlStateManager.shadeModel(7425);
Tessellator tessellator = Tessellator.getInstance();
WorldRenderer worldrenderer = tessellator.getWorldRenderer();
worldrenderer.begin(7, DefaultVertexFormats.POSITION_COLOR);
worldrenderer.pos((double)right, (double)top, 0).color(f1, f2, f3, f).endVertex();
worldrenderer.pos((double)left, (double)top, 0).color(f1, f2, f3, f).endVertex();
worldrenderer.pos((double)left, (double)bottom, 0).color(f5, f6, f7, f4).endVertex();
worldrenderer.pos((double)right, (double)bottom, 0).color(f5, f6, f7, f4).endVertex();
tessellator.draw();
GlStateManager.shadeModel(7424);
GlStateManager.disableBlend();
GlStateManager.enableAlpha();
GlStateManager.enableTexture2D();
}
public static void drawGradientRectHorz(int left, int top, int right, int bottom, int startColor, int endColor) {
float f = (float)(startColor >> 24 & 255) / 255.0F;
float f1 = (float)(startColor >> 16 & 255) / 255.0F;
float f2 = (float)(startColor >> 8 & 255) / 255.0F;
float f3 = (float)(startColor & 255) / 255.0F;
float f4 = (float)(endColor >> 24 & 255) / 255.0F;
float f5 = (float)(endColor >> 16 & 255) / 255.0F;
float f6 = (float)(endColor >> 8 & 255) / 255.0F;
float f7 = (float)(endColor & 255) / 255.0F;
GlStateManager.disableTexture2D();