/src/org/getspout/spout/packet/standard/MCCraftPacket103SetSlot.java

https://github.com/d4l3k/SpoutPlugin · Java · 184 lines · 144 code · 19 blank · 21 comment · 6 complexity · 349d6c5b7580012b1a4366400f5b57db MD5 · raw file

  1. /*
  2. * This file is part of Spout (http://wiki.getspout.org/).
  3. *
  4. * Spout is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU Lesser General Public License as published by
  6. * the Free Software Foundation, either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * Spout is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. package org.getspout.spout.packet.standard;
  18. import java.lang.reflect.Field;
  19. import java.util.logging.Level;
  20. import java.util.logging.Logger;
  21. import net.minecraft.server.Packet;
  22. import net.minecraft.server.Packet103SetSlot;
  23. import org.bukkit.inventory.ItemStack;
  24. import org.getspout.spoutapi.packet.standard.MCPacket103SetSlot;
  25. /**
  26. * Implementation of MCPacket103SetSlot
  27. * @author Richard Robertson
  28. */
  29. public class MCCraftPacket103SetSlot extends MCCraftPacket implements MCPacket103SetSlot
  30. {
  31. private static Field windowField, slotField, itemStackField;
  32. private int rawWindow, rawSlot;
  33. private net.minecraft.server.ItemStack notchStack;
  34. private ItemStack bukkitStack;
  35. private Slot slot;
  36. private Window window;
  37. // Glom onto Notch's packet
  38. static
  39. {
  40. Class<Packet103SetSlot> packetclass = Packet103SetSlot.class;
  41. try
  42. {
  43. windowField = packetclass.getDeclaredField("a");
  44. slotField = packetclass.getDeclaredField("b");
  45. itemStackField = packetclass.getDeclaredField("c");
  46. windowField.setAccessible(true);
  47. slotField.setAccessible(true);
  48. itemStackField.setAccessible(true);
  49. }
  50. catch (Exception ex)
  51. {
  52. Logger.getLogger("Minecraft").log(Level.WARNING, "org.getspout.spout.packet.standard.MCCraftPacket103SetSlot\nError accessing net.minecraft.server.Packet103SetSlot.");
  53. }
  54. }
  55. @Override
  56. public Slot getSlot()
  57. {
  58. return slot;
  59. }
  60. @Override
  61. public void setSlot(Slot slot)
  62. {
  63. this.slot = slot;
  64. try
  65. {
  66. rawWindow = slot.rawWindowId;
  67. window = Window.getWindowById(rawWindow);
  68. rawSlot = slot.rawSlotId;
  69. windowField.set(packet, rawWindow);
  70. slotField.set(packet, rawSlot);
  71. }
  72. catch (Exception ex)
  73. {
  74. }
  75. }
  76. @Override
  77. public Window getWindow()
  78. {
  79. return window;
  80. }
  81. @Override
  82. public int getRawSlot()
  83. {
  84. return rawSlot;
  85. }
  86. @Override
  87. public void setRawSlot(int slot)
  88. {
  89. rawSlot = slot;
  90. try
  91. {
  92. slotField.set(packet, slot);
  93. this.slot = Slot.getSlotByRawValues(rawWindow, rawSlot);
  94. }
  95. catch (Exception ex)
  96. {
  97. }
  98. }
  99. @Override
  100. public int getRawWindow()
  101. {
  102. return rawWindow;
  103. }
  104. @Override
  105. public void setRawWindow(int window)
  106. {
  107. rawWindow = window;
  108. try
  109. {
  110. windowField.set(packet, window);
  111. this.window = Window.getWindowById(window);
  112. slot = Slot.getSlotByRawValues(rawWindow, rawSlot);
  113. }
  114. catch (Exception ex)
  115. {
  116. }
  117. }
  118. @Override
  119. public ItemStack getItemStack()
  120. {
  121. return bukkitStack;
  122. }
  123. @Override
  124. public void setItemStack(ItemStack itemStack)
  125. {
  126. bukkitStack = itemStack;
  127. if (bukkitStack == null)
  128. notchStack = null;
  129. else
  130. notchStack = new net.minecraft.server.ItemStack(bukkitStack.getTypeId(), bukkitStack.getAmount(), bukkitStack.getDurability());
  131. try
  132. {
  133. itemStackField.set(packet, notchStack);
  134. }
  135. catch (Exception ex)
  136. {
  137. }
  138. }
  139. @Override
  140. public void setPacket(Packet packet, int packetId)
  141. {
  142. super.setPacket(packet, packetId);
  143. try
  144. {
  145. rawWindow = ((Integer)windowField.get(packet)).intValue();
  146. window = Window.getWindowById(rawWindow);
  147. rawSlot = ((Integer)slotField.get(packet)).intValue();
  148. slot = Slot.getSlotByRawValues(rawWindow, rawSlot);
  149. notchStack = (net.minecraft.server.ItemStack)itemStackField.get(packet);
  150. if (notchStack != null)
  151. bukkitStack = new ItemStack(notchStack.id, notchStack.count, (short)notchStack.getData());
  152. }
  153. catch (Exception ex)
  154. {
  155. }
  156. }
  157. @Override
  158. public String toString()
  159. {
  160. if (notchStack == null)
  161. return "{" + slot.toString() + ", null}";
  162. else
  163. return "{" + slot.toString() + ", " + bukkitStack.toString() + "}";
  164. }
  165. }