aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/xmrvizzy/skyblocker/skyblock/special/SpecialEffects.java
blob: 84af889c6a303c5ee4326b837ace21eaa874d436 (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
package me.xmrvizzy.skyblocker.skyblock.special;

import com.mojang.blaze3d.systems.RenderSystem;
import me.xmrvizzy.skyblocker.config.SkyblockerConfigManager;
import me.xmrvizzy.skyblocker.utils.Utils;
import net.fabricmc.fabric.api.client.message.v1.ClientReceiveMessageEvents;
import net.minecraft.client.MinecraftClient;
import net.minecraft.enchantment.Enchantments;
import net.minecraft.item.ItemStack;
import net.minecraft.item.Items;
import net.minecraft.nbt.StringNbtReader;
import net.minecraft.particle.ParticleTypes;
import net.minecraft.text.Text;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class SpecialEffects {
	private static final Logger LOGGER = LoggerFactory.getLogger(SpecialEffects.class);
	private static final Pattern DROP_PATTERN = Pattern.compile("(?:\\[[A-Z+]+] )?(?<player>[A-Za-z0-9_]+) unlocked (?<item>.+)!");
	private static final ItemStack NECRON_HANDLE = new ItemStack(Items.STICK);
	private static final ItemStack SCROLL = new ItemStack(Items.WRITABLE_BOOK);
	private static ItemStack TIER_5_SKULL;
	private static ItemStack FIFTH_STAR;

	static {
		NECRON_HANDLE.addEnchantment(Enchantments.PROTECTION, 1);
		SCROLL.addEnchantment(Enchantments.PROTECTION, 1);
		try {
			TIER_5_SKULL = ItemStack.fromNbt(StringNbtReader.parse("{id:\"minecraft:player_head\",Count:1,tag:{SkullOwner:{Id:[I;-1613868903,-527154034,-1445577520,748807544],Properties:{textures:[{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTEwZjlmMTA4NWQ0MDcxNDFlYjc3NjE3YTRhYmRhYWEwOGQ4YWYzM2I5NjAyMDBmZThjMTI2YzFkMTQ0NTY4MiJ9fX0=\"}]}}}}"));
			FIFTH_STAR = ItemStack.fromNbt(StringNbtReader.parse("{id:\"minecraft:player_head\",Count:1,tag:{SkullOwner:{Id:[I;1904417095,756174249,-1302927470,1407004198],Properties:{textures:[{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNzFjODA0MjUyN2Y4MWM4ZTI5M2UyODEwMTEzNDg5ZjQzOTRjYzZlZmUxNWQxYWZhYzQzMTU3MWM3M2I2MmRjNCJ9fX0=\"}]}}}}"));
		} catch (Exception e) {
			TIER_5_SKULL = ItemStack.EMPTY;
			FIFTH_STAR = ItemStack.EMPTY;
			LOGGER.error("[Skyblocker Special Effects] Failed to parse NBT for a player head!", e);
		}
	}

	public static void init() {
		ClientReceiveMessageEvents.GAME.register(SpecialEffects::displayRareDropEffect);
	}

	private static void displayRareDropEffect(Text message, boolean overlay) {
		//We don't check if we're in dungeons because that check doesn't work in m7 which defeats the point of this
		//It might also allow it to work with Croesus
		if (Utils.isOnSkyblock() && SkyblockerConfigManager.get().general.specialEffects.rareDungeonDropEffects) {
			try {
				String stringForm = message.getString();
				Matcher matcher = DROP_PATTERN.matcher(stringForm);

				if (matcher.matches()) {
					MinecraftClient client = MinecraftClient.getInstance();
					String player = matcher.group("player");

					if (player.equals(client.getSession().getUsername())) {
						ItemStack stack = getStackFromName(matcher.group("item"));

						if (!stack.isEmpty()) {
							if (RenderSystem.isOnRenderThread()) {
								client.particleManager.addEmitter(client.player, ParticleTypes.PORTAL, 30);
								client.gameRenderer.showFloatingItem(stack);
							} else {
								RenderSystem.recordRenderCall(() -> {
									client.particleManager.addEmitter(client.player, ParticleTypes.PORTAL, 30);
									client.gameRenderer.showFloatingItem(stack);
								});
							}
						}
					}
				}
			} catch (Exception e) { //In case there's a regex failure or something else bad happens
				LOGGER.error("[Skyblocker Special Effects] An unexpected exception was encountered: ", e);
			}
		}
	}

	private static ItemStack getStackFromName(String itemName) {
		return switch (itemName) {
			//M7
			case "Necron Dye" -> new ItemStack(Items.ORANGE_DYE);
			case "Dark Claymore" -> new ItemStack(Items.STONE_SWORD);
			case "Necron's Handle", "Shiny Necron's Handle" -> NECRON_HANDLE;
			case "Enchanted Book (Thunderlord VII)" -> new ItemStack(Items.ENCHANTED_BOOK);
			case "Master Skull - Tier 5" -> TIER_5_SKULL;
			case "Shadow Warp", "Wither Shield", "Implosion" -> SCROLL;
			case "Fifth Master Star" -> FIFTH_STAR;

			//M6
			case "Giant's Sword" -> new ItemStack(Items.IRON_SWORD);

			default -> ItemStack.EMPTY;
		};
	}
}