StatusDisplay.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. package me.km.networking;
  2. import io.netty.buffer.ByteBuf;
  3. import java.nio.charset.StandardCharsets;
  4. import net.minecraftforge.fml.common.network.simpleimpl.IMessage;
  5. import net.minecraftforge.fml.common.network.simpleimpl.IMessageHandler;
  6. import net.minecraftforge.fml.common.network.simpleimpl.MessageContext;
  7. public class StatusDisplay implements IMessage
  8. {
  9. // 1 - add - index, text
  10. // 2 - remove - index
  11. // 3 - clear
  12. private byte action;
  13. private byte index;
  14. private int time;
  15. private String text;
  16. public StatusDisplay()
  17. {
  18. action = -1;
  19. index = -1;
  20. text = "";
  21. }
  22. public StatusDisplay(byte action, byte index, int time, String text)
  23. {
  24. this.action = action;
  25. this.index = index;
  26. this.time = time;
  27. if(text.length() > 32)
  28. {
  29. this.text = text.substring(0, 32);
  30. }
  31. else
  32. {
  33. this.text = text;
  34. }
  35. }
  36. public StatusDisplay(byte action, byte index, String text)
  37. {
  38. this(action, index, Integer.MAX_VALUE, text);
  39. }
  40. @Override
  41. public void fromBytes(ByteBuf buf)
  42. {
  43. action = buf.readByte();
  44. index = buf.readByte();
  45. time = buf.readInt();
  46. int length = buf.readInt();
  47. text = buf.readBytes(length).toString(StandardCharsets.UTF_8);
  48. }
  49. @Override
  50. public void toBytes(ByteBuf buf)
  51. {
  52. buf.writeByte(action);
  53. buf.writeByte(index);
  54. buf.writeInt(time);
  55. byte[] b = text.getBytes(StandardCharsets.UTF_8);
  56. buf.writeInt(b.length);
  57. buf.writeBytes(b);
  58. }
  59. public static class Handler implements IMessageHandler<StatusDisplay, IMessage>
  60. {
  61. @Override
  62. public IMessage onMessage(StatusDisplay message, MessageContext ctx)
  63. {
  64. switch(message.action)
  65. {
  66. case 1:
  67. StatusDisplayGui.INSTANCE.add(message.index, message.time, message.text);
  68. break;
  69. case 2:
  70. StatusDisplayGui.INSTANCE.remove(message.index);
  71. break;
  72. case 3:
  73. StatusDisplayGui.INSTANCE.clear();
  74. break;
  75. }
  76. return null;
  77. }
  78. }
  79. }