Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.realitycube.core.Handler.Message;
- import com.google.common.base.Converter;
- import com.realitycube.RealityCube;
- import io.netty.buffer.ByteBuf;
- import net.minecraft.entity.player.EntityPlayer;
- import net.minecraft.entity.player.EntityPlayerMP;
- import net.minecraft.world.World;
- import cpw.mods.fml.common.network.ByteBufUtils;
- import cpw.mods.fml.common.network.simpleimpl.IMessage;
- import cpw.mods.fml.common.network.simpleimpl.IMessageHandler;
- import cpw.mods.fml.common.network.simpleimpl.MessageContext;
- public class MessagePlayingSound implements IMessage, IMessageHandler<MessagePlayingSound, IMessage>
- {
- private int x, y, z;
- private int sound;
- public MessagePlayingSound()
- {
- }
- public MessagePlayingSound(int x, int y, int z, int sound)
- {
- this.x = x;
- this.y = y;
- this.z = z;
- this.sound = sound;
- }
- @Override
- public void fromBytes(ByteBuf buf)
- {
- this.x = Integer.parseInt(ByteBufUtils.readUTF8String(buf));
- this.y = Integer.parseInt(ByteBufUtils.readUTF8String(buf));
- this.z = Integer.parseInt(ByteBufUtils.readUTF8String(buf));
- this.sound = Integer.parseInt(ByteBufUtils.readUTF8String(buf));
- }
- @Override
- public void toBytes(ByteBuf buf)
- {
- ByteBufUtils.writeUTF8String(buf, String.valueOf(this.x));
- ByteBufUtils.writeUTF8String(buf, String.valueOf(this.y));
- ByteBufUtils.writeUTF8String(buf, String.valueOf(this.z));
- ByteBufUtils.writeUTF8String(buf, String.valueOf(this.sound));
- }
- @Override
- public IMessage onMessage(MessagePlayingSound message, MessageContext ctx)
- {
- EntityPlayer player = RealityCube.proxy.getClientPlayer();
- player.worldObj.playSound(this.x, this.y, this.z, "realitycube:metalfurnace"+String.valueOf(this.sound), 2F, 1, false);
- return null;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement