Search in sources :

Example 1 with INetworkComponent

use of de.dytanic.cloudnetcore.network.components.INetworkComponent in project CloudNet by Dytanic.

the class PacketInCustomSubChannelMessage method handleInput.

@Override
public void handleInput(Document data, PacketSender packetSender) {
    DefaultType defaultType = data.getObject("defaultType", DefaultType.class);
    String channel = data.getString("channel");
    String message = data.getString("message");
    Document document = data.getDocument("value");
    if (defaultType.equals(DefaultType.BUKKIT)) {
        if (data.contains("serverId")) {
            MinecraftServer minecraftServer = CloudNet.getInstance().getServer(data.getString("serverId"));
            if (minecraftServer != null) {
                minecraftServer.sendPacket(new PacketOutCustomSubChannelMessage(channel, message, document));
                return;
            }
            CloudServer cloudServer = CloudNet.getInstance().getCloudGameServer(data.getString("serverId"));
            if (cloudServer != null) {
                cloudServer.sendPacket(new PacketOutCustomSubChannelMessage(channel, message, document));
            }
        } else {
            CloudNet.getInstance().getNetworkManager().sendAll(new PacketOutCustomSubChannelMessage(channel, message, document), new ChannelFilter() {

                @Override
                public boolean accept(INetworkComponent networkComponent) {
                    return networkComponent instanceof MinecraftServer || networkComponent instanceof CloudServer;
                }
            });
        }
    } else {
        if (data.contains("serverId")) {
            ProxyServer proxyServer = CloudNet.getInstance().getProxy(data.getString("serverId"));
            if (proxyServer != null) {
                proxyServer.sendPacket(new PacketOutCustomSubChannelMessage(channel, message, document));
            }
        } else {
            CloudNet.getInstance().getNetworkManager().sendToProxy(new PacketOutCustomSubChannelMessage(channel, message, document));
        }
    }
}
Also used : ChannelFilter(de.dytanic.cloudnetcore.network.components.util.ChannelFilter) PacketOutCustomSubChannelMessage(de.dytanic.cloudnetcore.network.packet.out.PacketOutCustomSubChannelMessage) INetworkComponent(de.dytanic.cloudnetcore.network.components.INetworkComponent) DefaultType(de.dytanic.cloudnet.lib.DefaultType) CloudServer(de.dytanic.cloudnetcore.network.components.CloudServer) Document(de.dytanic.cloudnet.lib.utility.document.Document) MinecraftServer(de.dytanic.cloudnetcore.network.components.MinecraftServer) ProxyServer(de.dytanic.cloudnetcore.network.components.ProxyServer)

Example 2 with INetworkComponent

use of de.dytanic.cloudnetcore.network.components.INetworkComponent in project CloudNet by Dytanic.

the class PacketInSendScreenLine method handleInput.

@Override
public void handleInput(Document data, PacketSender packetSender) {
    Collection<ScreenInfo> screenInfos = data.getObject("screenInfo", new TypeToken<Collection<ScreenInfo>>() {
    }.getType());
    CloudNet.getInstance().getEventManager().callEvent(new ScreenInfoEvent(screenInfos));
    for (ScreenInfo screenInfo : screenInfos) {
        if (CloudNet.getInstance().getScreenProvider().getMainServiceId() != null && screenInfo.getServiceId().getServerId().equalsIgnoreCase(CloudNet.getInstance().getScreenProvider().getMainServiceId().getServerId()))
            System.out.println("[" + screenInfo.getServiceId().getServerId() + "] " + screenInfo.getLine());
    }
    CloudNet.getInstance().getNetworkManager().handleScreen(((INetworkComponent) packetSender), screenInfos);
}
Also used : INetworkComponent(de.dytanic.cloudnetcore.network.components.INetworkComponent) ScreenInfo(de.dytanic.cloudnet.lib.server.screen.ScreenInfo) TypeToken(com.google.gson.reflect.TypeToken) ScreenInfoEvent(de.dytanic.cloudnetcore.api.event.server.ScreenInfoEvent)

Aggregations

INetworkComponent (de.dytanic.cloudnetcore.network.components.INetworkComponent)2 TypeToken (com.google.gson.reflect.TypeToken)1 DefaultType (de.dytanic.cloudnet.lib.DefaultType)1 ScreenInfo (de.dytanic.cloudnet.lib.server.screen.ScreenInfo)1 Document (de.dytanic.cloudnet.lib.utility.document.Document)1 ScreenInfoEvent (de.dytanic.cloudnetcore.api.event.server.ScreenInfoEvent)1 CloudServer (de.dytanic.cloudnetcore.network.components.CloudServer)1 MinecraftServer (de.dytanic.cloudnetcore.network.components.MinecraftServer)1 ProxyServer (de.dytanic.cloudnetcore.network.components.ProxyServer)1 ChannelFilter (de.dytanic.cloudnetcore.network.components.util.ChannelFilter)1 PacketOutCustomSubChannelMessage (de.dytanic.cloudnetcore.network.packet.out.PacketOutCustomSubChannelMessage)1