Hbm-s-Nuclear-Tech-GIT/src/main/java/com/hbm/packet/GunAnimationPacket.java
2020-07-14 12:19:46 +02:00

76 lines
2.0 KiB
Java

package com.hbm.packet;
import com.hbm.handler.GunConfiguration;
import com.hbm.items.weapon.ItemGunBase;
import com.hbm.render.anim.BusAnimation;
import com.hbm.render.anim.HbmAnimations;
import com.hbm.render.anim.HbmAnimations.AnimType;
import com.hbm.render.anim.HbmAnimations.Animation;
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 cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import io.netty.buffer.ByteBuf;
import net.minecraft.client.Minecraft;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
public class GunAnimationPacket implements IMessage {
int type;
public GunAnimationPacket() { }
public GunAnimationPacket(int type) {
this.type = type;
}
@Override
public void fromBytes(ByteBuf buf) {
type = buf.readInt();
}
@Override
public void toBytes(ByteBuf buf) {
buf.writeInt(type);
}
public static class Handler implements IMessageHandler<GunAnimationPacket, IMessage> {
@Override
@SideOnly(Side.CLIENT)
public IMessage onMessage(GunAnimationPacket m, MessageContext ctx) {
try {
EntityPlayer player = Minecraft.getMinecraft().thePlayer;
ItemStack stack = player.getHeldItem();
int slot = player.inventory.currentItem;
if(stack == null)
return null;
if(!(stack.getItem() instanceof ItemGunBase))
return null;
if(m.type < 0 || m.type >= AnimType.values().length)
return null;
GunConfiguration config = ((ItemGunBase) stack.getItem()).mainConfig;
AnimType type = AnimType.values()[m.type];
BusAnimation animation = config.animations.get(type);
if(animation != null) {
HbmAnimations.hotbar[slot] = new Animation(stack.getItem().getUnlocalizedName(), System.currentTimeMillis(), animation);
}
} catch(Exception x) { }
return null;
}
}
}