GenericLittleEndianWriter.java
上传用户:gwt600
上传日期:2021-06-03
资源大小:704k
文件大小:4k
源码类别:

游戏

开发平台:

Java

  1. /*
  2. This file is part of the OdinMS Maple Story Server
  3.     Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc> 
  4.                        Matthias Butz <matze@odinms.de>
  5.                        Jan Christian Meyer <vimes@odinms.de>
  6.     This program is free software: you can redistribute it and/or modify
  7.     it under the terms of the GNU Affero General Public License version 3
  8.     as published by the Free Software Foundation. You may not use, modify
  9.     or distribute this program under any other version of the
  10.     GNU Affero General Public License.
  11.     This program is distributed in the hope that it will be useful,
  12.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.     GNU Affero General Public License for more details.
  15.     You should have received a copy of the GNU Affero General Public License
  16.     along with this program.  If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. package net.sf.odinms.tools.data.output;
  19. import java.nio.charset.Charset;
  20. /**
  21.  * Provides a generic writer of a little-endian sequence of bytes.
  22.  * 
  23.  * @author Frz
  24.  * @version 1.0
  25.  * @since Revision 323
  26.  */
  27. public class GenericLittleEndianWriter implements LittleEndianWriter {
  28. private static Charset ASCII = Charset.forName("GBK");
  29. private ByteOutputStream bos;
  30. /**
  31.  * Class constructor - Protected to prevent instantiation with no arguments.
  32.  */
  33. protected GenericLittleEndianWriter() {
  34. // Blah!
  35. }
  36. /**
  37.  * Sets the byte-output stream for this instance of the object.
  38.  * 
  39.  * @param bos The new output stream to set.
  40.  */
  41. protected void setByteOutputStream(ByteOutputStream bos) {
  42. this.bos = bos;
  43. }
  44. /**
  45.  * Class constructor - only this one can be used.
  46.  * 
  47.  * @param bos The stream to wrap this objecr around.
  48.  */
  49. public GenericLittleEndianWriter(ByteOutputStream bos) {
  50. this.bos = bos;
  51. }
  52. /**
  53.  * Write an array of bytes to the stream.
  54.  * 
  55.  * @param b The bytes to write.
  56.  */
  57. @Override
  58. public void write(byte[] b) {
  59. for (int x = 0; x < b.length; x++) {
  60. bos.writeByte(b[x]);
  61. }
  62. }
  63. /**
  64.  * Write a byte to the stream.
  65.  * 
  66.  * @param b The byte to write.
  67.  */
  68. @Override
  69. public void write(byte b) {
  70. bos.writeByte(b);
  71. }
  72. /**
  73.  * Write a byte in integer form to the stream.
  74.  * 
  75.  * @param b The byte as an <code>Integer</code> to write.
  76.  */
  77. @Override
  78. public void write(int b) {
  79. bos.writeByte((byte) b);
  80. }
  81. /**
  82.  * Write a short integer to the stream.
  83.  * 
  84.  * @param i The short integer to write.
  85.  */
  86. @Override
  87. public void writeShort(int i) {
  88. bos.writeByte((byte) (i & 0xFF));
  89. bos.writeByte((byte) ((i >>> 8) & 0xFF));
  90. }
  91. /**
  92.  * Writes an integer to the stream.
  93.  * 
  94.  * @param i The integer to write.
  95.  */
  96. @Override
  97. public void writeInt(int i) {
  98. bos.writeByte((byte) (i & 0xFF));
  99. bos.writeByte((byte) ((i >>> 8) & 0xFF));
  100. bos.writeByte((byte) ((i >>> 16) & 0xFF));
  101. bos.writeByte((byte) ((i >>> 24) & 0xFF));
  102. }
  103. /**
  104.  * Writes an ASCII string the the stream.
  105.  * 
  106.  * @param s The ASCII string to write.
  107.  */
  108. @Override
  109. public void writeAsciiString(String s) {
  110. write(s.getBytes(ASCII));
  111. }
  112. /**
  113.  * Writes a maple-convention ASCII string to the stream.
  114.  * 
  115.  * @param s The ASCII string to use maple-convention to write.
  116.  */
  117. @Override
  118. public void writeMapleAsciiString(String s) {
  119. writeShort((short) s.getBytes().length);
  120. writeAsciiString(s);
  121. }
  122. /**
  123.  * Writes a null-terminated ASCII string to the stream.
  124.  * 
  125.  * @param s The ASCII string to write.
  126.  */
  127. @Override
  128. public void writeNullTerminatedAsciiString(String s) {
  129. writeAsciiString(s);
  130. write(0);
  131. }
  132. /**
  133.  * Write a long integer to the stream.
  134.  * @param l The long integer to write.
  135.  */
  136. @Override
  137. public void writeLong(long l) {
  138. bos.writeByte((byte) (l & 0xFF));
  139. bos.writeByte((byte) ((l >>> 8) & 0xFF));
  140. bos.writeByte((byte) ((l >>> 16) & 0xFF));
  141. bos.writeByte((byte) ((l >>> 24) & 0xFF));
  142. bos.writeByte((byte) ((l >>> 32) & 0xFF));
  143. bos.writeByte((byte) ((l >>> 40) & 0xFF));
  144. bos.writeByte((byte) ((l >>> 48) & 0xFF));
  145. bos.writeByte((byte) ((l >>> 56) & 0xFF));
  146. }
  147. }