aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/de/torui/coflsky/WSCommandHandler.java
blob: b3cb1e4356eeff09a05f154a5efaff4510c56d63 (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
package de.torui.coflsky;

import de.torui.coflsky.core.Command;
import de.torui.coflsky.core.WriteToChatCommand;
import de.torui.coflsky.websocket.WSClient;
import net.minecraft.client.Minecraft;
import net.minecraft.client.audio.ISound;
import net.minecraft.client.audio.PositionedSound;
import net.minecraft.client.audio.PositionedSoundRecord;
import net.minecraft.client.audio.SoundCategory;
import net.minecraft.client.audio.SoundEventAccessorComposite;
import net.minecraft.client.audio.SoundHandler;
import net.minecraft.client.audio.SoundManager;
import net.minecraft.command.ICommandManager;
import net.minecraft.entity.Entity;
import net.minecraft.event.ClickEvent;
import net.minecraft.event.ClickEvent.Action;
import net.minecraft.server.MinecraftServer;
import net.minecraft.util.ChatComponentText;
import net.minecraft.util.ChatStyle;
import net.minecraft.util.IChatComponent;
import net.minecraft.util.ResourceLocation;
import net.minecraftforge.client.ClientCommandHandler;
import net.minecraftforge.client.event.sound.SoundEvent;

public class WSCommandHandler {
	public static boolean HandleCommand(Command cmd, Entity sender) {
		//Entity sender = Minecraft.getMinecraft().thePlayer;
		System.out.println("Handling Command=" + cmd.toString());
		switch(cmd.getType()) {
		case WriteToChat:
			WriteToChat(cmd);
			break;
		case Execute:
			Execute(cmd, sender);
			break;
		case PlaySound:
			PlaySound(cmd, sender);
		default:
			break;
		}
		
		return true;
	}
	
	private static void PlaySound(Command cmd, Entity sender) {
		
		//Minecraft.getMinecraft().theWorld.playSoundAtEntity(sender,	"random.explode",1f, 1f);
		
		SoundHandler handler = Minecraft.getMinecraft().getSoundHandler();
				
			//random.explode
			PositionedSoundRecord psr = PositionedSoundRecord.create(new ResourceLocation(WSClient.gson.fromJson(cmd.getData(), String.class)));
			handler.playSound(psr);
	}

	private static void Execute(Command cmd, Entity sender) {
		
		//Minecraft.getMinecraft().thePlayer.sendChatMessage(cmd.getData());
		System.out.println("Execute: " + cmd.getData() + " sender:" + sender);
		
		Minecraft.getMinecraft().thePlayer.sendChatMessage(WSClient.gson.fromJson(cmd.getData(), String.class));
		
		//ICommandManager manager = MinecraftServer.getServer().getCommandManager();
		//System.out.println("CommandManager: " + manager);
		//manager.executeCommand(sender, cmd.getData());
	}

	private static void WriteToChat(Command cmd) {
		WriteToChatCommand wcmd = WSClient.gson.fromJson(cmd.getData(), WriteToChatCommand.class);
		//System.out.println("Executing wcmd Text=" + wcmd.Text + " OnClick="  + wcmd.OnClick);
		
		if(wcmd.Text != null ) {
			IChatComponent comp = new ChatComponentText(wcmd.Text);
			
			ChatStyle style;
			if(wcmd.OnClick != null) {
				if(wcmd.OnClick.startsWith("http")) {
					style = new ChatStyle().setChatClickEvent(new ClickEvent(Action.OPEN_URL, wcmd.OnClick));
				} else {
					style = new ChatStyle().setChatClickEvent(new ClickEvent(Action.RUN_COMMAND, "/cofl callback "  +wcmd.OnClick));
				}
				comp.setChatStyle(style);
			}
			
			Minecraft.getMinecraft().thePlayer.addChatMessage(comp);
		}
		
	}
}