Applied-Energistics-2-tiler.../core/sync/packets/PacketMockExplosion.java

55 lines
1.2 KiB
Java
Raw Normal View History

package appeng.core.sync.packets;
2014-02-09 02:34:52 +01:00
import io.netty.buffer.ByteBuf;
import io.netty.buffer.Unpooled;
import java.io.IOException;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.world.World;
import appeng.core.CommonHelper;
import appeng.core.sync.AppEngPacket;
2014-02-09 02:34:52 +01:00
import appeng.core.sync.network.INetworkInfo;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
public class PacketMockExplosion extends AppEngPacket
{
final public double x;
final public double y;
final public double z;
@Override
@SideOnly(Side.CLIENT)
2014-02-09 02:34:52 +01:00
public void clientPacketData(INetworkInfo network, AppEngPacket packet, EntityPlayer player)
{
World world = CommonHelper.proxy.getWorld();
world.spawnParticle( "largeexplode", this.x, this.y, this.z, 1.0D, 0.0D, 0.0D );
}
// automatic.
2014-02-09 02:34:52 +01:00
public PacketMockExplosion(ByteBuf stream) throws IOException {
x = stream.readDouble();
y = stream.readDouble();
z = stream.readDouble();
}
// api
public PacketMockExplosion(double x, double y, double z) throws IOException {
this.x = x;
this.y = y;
this.z = z;
2014-02-09 02:34:52 +01:00
ByteBuf data = Unpooled.buffer();
data.writeInt( getPacketID() );
data.writeDouble( x );
data.writeDouble( y );
data.writeDouble( z );
2014-02-09 02:34:52 +01:00
configureWrite( data );
}
}