2018-10-21 12:51:13 +02:00
|
|
|
package de.ellpeck.naturesaura.packet;
|
|
|
|
|
|
|
|
import de.ellpeck.naturesaura.NaturesAura;
|
2018-11-12 22:04:40 +01:00
|
|
|
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
|
2018-11-13 11:39:28 +01:00
|
|
|
import de.ellpeck.naturesaura.chunk.AuraChunk;
|
2018-10-21 12:51:13 +02:00
|
|
|
import io.netty.buffer.ByteBuf;
|
|
|
|
import net.minecraft.client.Minecraft;
|
|
|
|
import net.minecraft.util.math.BlockPos;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
import net.minecraft.world.chunk.Chunk;
|
|
|
|
import net.minecraftforge.fml.common.network.simpleimpl.IMessage;
|
|
|
|
import net.minecraftforge.fml.common.network.simpleimpl.IMessageHandler;
|
|
|
|
import net.minecraftforge.fml.common.network.simpleimpl.MessageContext;
|
|
|
|
import net.minecraftforge.fml.relauncher.Side;
|
|
|
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
2018-10-24 13:06:24 +02:00
|
|
|
import org.apache.commons.lang3.mutable.MutableInt;
|
2018-10-21 12:51:13 +02:00
|
|
|
|
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
public class PacketAuraChunk implements IMessage {
|
|
|
|
|
|
|
|
private int chunkX;
|
|
|
|
private int chunkZ;
|
2018-10-24 13:06:24 +02:00
|
|
|
private Map<BlockPos, MutableInt> drainSpots;
|
2018-10-21 12:51:13 +02:00
|
|
|
|
2018-10-24 13:06:24 +02:00
|
|
|
public PacketAuraChunk(int chunkX, int chunkZ, Map<BlockPos, MutableInt> drainSpots) {
|
2018-10-21 12:51:13 +02:00
|
|
|
this.chunkX = chunkX;
|
|
|
|
this.chunkZ = chunkZ;
|
|
|
|
this.drainSpots = drainSpots;
|
|
|
|
}
|
|
|
|
|
|
|
|
public PacketAuraChunk() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void fromBytes(ByteBuf buf) {
|
|
|
|
this.chunkX = buf.readInt();
|
|
|
|
this.chunkZ = buf.readInt();
|
|
|
|
|
|
|
|
this.drainSpots = new HashMap<>();
|
|
|
|
int amount = buf.readInt();
|
|
|
|
for (int i = 0; i < amount; i++) {
|
|
|
|
this.drainSpots.put(
|
|
|
|
BlockPos.fromLong(buf.readLong()),
|
2018-10-24 13:06:24 +02:00
|
|
|
new MutableInt(buf.readInt())
|
2018-10-21 12:51:13 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void toBytes(ByteBuf buf) {
|
|
|
|
buf.writeInt(this.chunkX);
|
|
|
|
buf.writeInt(this.chunkZ);
|
|
|
|
|
|
|
|
buf.writeInt(this.drainSpots.size());
|
2018-10-24 13:06:24 +02:00
|
|
|
for (Map.Entry<BlockPos, MutableInt> entry : this.drainSpots.entrySet()) {
|
2018-10-21 12:51:13 +02:00
|
|
|
buf.writeLong(entry.getKey().toLong());
|
2018-10-24 13:06:24 +02:00
|
|
|
buf.writeInt(entry.getValue().intValue());
|
2018-10-21 12:51:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static class Handler implements IMessageHandler<PacketAuraChunk, IMessage> {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public IMessage onMessage(PacketAuraChunk message, MessageContext ctx) {
|
|
|
|
NaturesAura.proxy.scheduleTask(() -> {
|
|
|
|
World world = Minecraft.getMinecraft().world;
|
|
|
|
if (world != null) {
|
|
|
|
Chunk chunk = world.getChunk(message.chunkX, message.chunkZ);
|
2018-11-12 22:04:40 +01:00
|
|
|
if (chunk.hasCapability(NaturesAuraAPI.capAuraChunk, null)) {
|
|
|
|
AuraChunk auraChunk = (AuraChunk) chunk.getCapability(NaturesAuraAPI.capAuraChunk, null);
|
2018-10-21 12:51:13 +02:00
|
|
|
auraChunk.setSpots(message.drainSpots);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|