Applied-Energistics-2-tiler.../core/sync/AppEngPacket.java

46 lines
1.2 KiB
Java
Raw Normal View History

package appeng.core.sync;
2014-02-09 02:34:52 +01:00
import io.netty.buffer.ByteBuf;
import net.minecraft.entity.player.EntityPlayer;
2014-02-09 02:34:52 +01:00
import appeng.core.sync.network.INetworkInfo;
import appeng.core.sync.network.NetworkHandler;
import cpw.mods.fml.common.network.internal.FMLProxyPacket;
public abstract class AppEngPacket
{
2014-02-09 02:34:52 +01:00
private ByteBuf p;
AppEngPacketHandlerBase.PacketTypes id;
final public int getPacketID()
{
return AppEngPacketHandlerBase.PacketTypes.getID( this.getClass() ).ordinal();
}
2014-02-09 02:34:52 +01:00
public void serverPacketData(INetworkInfo manager, AppEngPacket packet, EntityPlayer player)
{
throw new RuntimeException( "This packet ( " + getPacketID() + " does not implement a server side handler." );
}
2014-02-09 02:34:52 +01:00
public void clientPacketData(INetworkInfo network, AppEngPacket packet, EntityPlayer player)
{
throw new RuntimeException( "This packet ( " + getPacketID() + " does not implement a client side handler." );
}
2014-02-09 02:34:52 +01:00
protected void configureWrite(ByteBuf data)
{
2014-02-16 08:33:17 +01:00
data.capacity( data.readableBytes() );
2014-02-09 02:34:52 +01:00
p = data;
}
2014-02-09 02:34:52 +01:00
public FMLProxyPacket getProxy()
{
if ( p.array().length > 30000 ) // 2k walking room :)
throw new IllegalArgumentException( "Sorry AE2 made a huge packet by accident!" );
2014-02-09 02:34:52 +01:00
return new FMLProxyPacket( p, NetworkHandler.instance.getChannel() );
}
}