mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
72 lines
1.5 KiB
Java
72 lines
1.5 KiB
Java
package com.hbm.packet;
|
|
|
|
import com.hbm.items.tool.ItemSatInterface;
|
|
import com.hbm.saveddata.SatelliteSavedData;
|
|
import com.hbm.saveddata.satellites.Satellite;
|
|
|
|
import cpw.mods.fml.common.network.simpleimpl.IMessage;
|
|
import cpw.mods.fml.common.network.simpleimpl.IMessageHandler;
|
|
import cpw.mods.fml.common.network.simpleimpl.MessageContext;
|
|
import io.netty.buffer.ByteBuf;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
public class SatCoordPacket implements IMessage {
|
|
|
|
int x;
|
|
int y;
|
|
int z;
|
|
int freq;
|
|
|
|
public SatCoordPacket()
|
|
{
|
|
|
|
}
|
|
|
|
public SatCoordPacket(int x, int y, int z, int freq)
|
|
{
|
|
this.x = x;
|
|
this.y = y;
|
|
this.z = z;
|
|
this.freq = freq;
|
|
}
|
|
|
|
@Override
|
|
public void fromBytes(ByteBuf buf) {
|
|
x = buf.readInt();
|
|
y = buf.readInt();
|
|
z = buf.readInt();
|
|
freq = buf.readInt();
|
|
}
|
|
|
|
@Override
|
|
public void toBytes(ByteBuf buf) {
|
|
buf.writeInt(x);
|
|
buf.writeInt(y);
|
|
buf.writeInt(z);
|
|
buf.writeInt(freq);
|
|
}
|
|
|
|
public static class Handler implements IMessageHandler<SatCoordPacket, IMessage> {
|
|
|
|
@Override
|
|
public IMessage onMessage(SatCoordPacket m, MessageContext ctx) {
|
|
|
|
EntityPlayer p = ctx.getServerHandler().playerEntity;
|
|
|
|
if(p.getHeldItem() != null && p.getHeldItem().getItem() instanceof ItemSatInterface) {
|
|
|
|
int freq = ItemSatInterface.getFreq(p.getHeldItem());
|
|
|
|
if(freq == m.freq) {
|
|
Satellite sat = SatelliteSavedData.getData(p.worldObj).getSatFromFreq(m.freq);
|
|
|
|
if(sat != null)
|
|
sat.onCoordAction(p.worldObj, p, m.x, m.y, m.z);
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|
|
}
|