blob: d625238baa2ef6720319cb6c21166806da8524f8 (
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
|
package de.torui.coflsky;
import java.net.URISyntaxException;
import org.lwjgl.input.Keyboard;
import de.torui.coflsky.websocket.WSClientWrapper;
import net.minecraft.client.settings.KeyBinding;
import net.minecraftforge.client.ClientCommandHandler;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.fml.client.registry.ClientRegistry;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.Mod.EventHandler;
import net.minecraftforge.fml.common.event.FMLInitializationEvent;
import net.minecraftforge.fml.relauncher.Side;
@Mod(modid = CoflSky.MODID, version = CoflSky.VERSION)
public class CoflSky
{
public static final String MODID = "CoflSky";
public static final String VERSION = "1.2-Alpha";
public static WSClientWrapper Wrapper;
public static KeyBinding[] keyBindings;
public static final String[] webSocketURIPrefix = new String [] {
"wss://sky-commands.coflnet.com/modsocket",
"wss://sky-mod.coflnet.com/modsocket",
"ws://sky-commands.coflnet.com/modsocket",
"ws://sky-mod.coflnet.com/modsocket",
};
public static String CommandUri = "https://sky-commands.coflnet.com/api/mod/commands";
@EventHandler
public void init(FMLInitializationEvent event) throws URISyntaxException
{
System.out.println(">>>Started");
CoflSky.Wrapper = new WSClientWrapper(webSocketURIPrefix);
keyBindings = new KeyBinding[] {
new KeyBinding("key.replay_last.onclick", Keyboard.KEY_R, "SkyCofl"),
};
if(event.getSide() == Side.CLIENT) {
ClientCommandHandler.instance.registerCommand(new CoflSkyCommand());
ClientCommandHandler.instance.registerCommand(new ColfCommand());
for (int i = 0; i < keyBindings.length; ++i)
{
ClientRegistry.registerKeyBinding(keyBindings[i]);
}
}
MinecraftForge.EVENT_BUS.register(new EventRegistry());
}
}
|