Plex-FAWE/worldedit-forge/src/main/java/com/sk89q/worldedit/forge/WECUIPacketHandler.java

63 lines
2.5 KiB
Java
Raw Normal View History

2014-04-04 22:03:18 +00:00
/*
* WorldEdit, a Minecraft world manipulation toolkit
* Copyright (C) sk89q <http://www.sk89q.com>
* Copyright (C) WorldEdit team and contributors
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by the
* Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2013-02-24 20:16:12 +00:00
package com.sk89q.worldedit.forge;
import java.nio.charset.Charset;
2013-02-24 20:16:12 +00:00
import net.minecraft.entity.player.EntityPlayerMP;
2014-10-12 19:27:51 +00:00
import net.minecraft.network.NetHandlerPlayServer;
import net.minecraft.network.play.client.C17PacketCustomPayload;
2013-02-24 20:16:12 +00:00
import com.sk89q.worldedit.LocalSession;
2014-10-12 19:27:51 +00:00
import cpw.mods.fml.common.eventhandler.SubscribeEvent;
import cpw.mods.fml.common.network.FMLEventChannel;
import cpw.mods.fml.common.network.FMLNetworkEvent.ServerCustomPacketEvent;
import cpw.mods.fml.common.network.NetworkRegistry;
2014-10-12 19:27:51 +00:00
public class WECUIPacketHandler {
2013-02-24 20:16:12 +00:00
public static final Charset UTF_8_CHARSET = Charset.forName("UTF-8");
2014-10-12 19:27:51 +00:00
private static FMLEventChannel WECUI_CHANNEL;
public static void init() {
WECUI_CHANNEL = NetworkRegistry.INSTANCE.newEventDrivenChannel(ForgeWorldEdit.CUI_PLUGIN_CHANNEL);
WECUI_CHANNEL.register(new WECUIPacketHandler());
}
2013-02-24 20:16:12 +00:00
2014-10-12 19:27:51 +00:00
@SubscribeEvent
public void onPacketData(ServerCustomPacketEvent event) {
C17PacketCustomPayload rawPacket = (C17PacketCustomPayload) event.packet.toC17Packet();
if (event.packet.channel().equals(ForgeWorldEdit.CUI_PLUGIN_CHANNEL)) {
EntityPlayerMP player = getPlayerFromEvent(event);
2014-04-06 19:07:10 +00:00
LocalSession session = ForgeWorldEdit.inst.getSession((EntityPlayerMP) player);
if (session.hasCUISupport()) {
return;
}
2014-10-12 19:27:51 +00:00
String text = new String(rawPacket.func_149558_e(), UTF_8_CHARSET);
session.handleCUIInitializationMessage(text);
2013-02-24 20:16:12 +00:00
}
}
2014-10-12 19:27:51 +00:00
private static EntityPlayerMP getPlayerFromEvent(ServerCustomPacketEvent event) {
return ((NetHandlerPlayServer) event.handler).playerEntity;
}
2013-02-24 20:16:12 +00:00
}