Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2015
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.76 KB | None | 0 0
  1. package com.realitycube.core.Handler.Message;
  2.  
  3. import com.google.common.base.Converter;
  4. import com.realitycube.RealityCube;
  5.  
  6. import io.netty.buffer.ByteBuf;
  7. import net.minecraft.entity.player.EntityPlayer;
  8. import net.minecraft.entity.player.EntityPlayerMP;
  9. import net.minecraft.world.World;
  10. import cpw.mods.fml.common.network.ByteBufUtils;
  11. import cpw.mods.fml.common.network.simpleimpl.IMessage;
  12. import cpw.mods.fml.common.network.simpleimpl.IMessageHandler;
  13. import cpw.mods.fml.common.network.simpleimpl.MessageContext;
  14.  
  15.  
  16. public class MessagePlayingSound implements IMessage, IMessageHandler<MessagePlayingSound, IMessage>
  17. {
  18.  
  19.     private int x, y, z;
  20.     private int sound;
  21.  
  22.     public MessagePlayingSound()
  23.     {
  24.     }
  25.  
  26.     public MessagePlayingSound(int x, int y, int z, int sound)
  27.     {
  28.         this.x = x;
  29.         this.y = y;
  30.         this.z = z;
  31.         this.sound = sound;
  32.     }
  33.  
  34.     @Override
  35.     public void fromBytes(ByteBuf buf)
  36.     {
  37.         this.x = Integer.parseInt(ByteBufUtils.readUTF8String(buf));
  38.         this.y = Integer.parseInt(ByteBufUtils.readUTF8String(buf));
  39.         this.z = Integer.parseInt(ByteBufUtils.readUTF8String(buf));
  40.         this.sound = Integer.parseInt(ByteBufUtils.readUTF8String(buf));
  41.     }
  42.  
  43.     @Override
  44.     public void toBytes(ByteBuf buf)
  45.     {  
  46.         ByteBufUtils.writeUTF8String(buf, String.valueOf(this.x));
  47.         ByteBufUtils.writeUTF8String(buf, String.valueOf(this.y));
  48.         ByteBufUtils.writeUTF8String(buf, String.valueOf(this.z));
  49.         ByteBufUtils.writeUTF8String(buf, String.valueOf(this.sound));
  50.     }
  51.  
  52.     @Override
  53.     public IMessage onMessage(MessagePlayingSound message, MessageContext ctx)
  54.     {
  55.         EntityPlayer player = RealityCube.proxy.getClientPlayer();
  56.         player.worldObj.playSound(this.x, this.y, this.z,  "realitycube:metalfurnace"+String.valueOf(this.sound), 2F, 1, false);
  57.         return null;
  58.     }
  59.  
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement