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

游戏

开发平台:

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. /**
  20.  * Provides an interface to a writer class that writes a little-endian sequence
  21.  * of bytes.
  22.  * 
  23.  * @author Frz
  24.  * @version 1.0
  25.  * @since Revision 323
  26.  */
  27. public interface LittleEndianWriter {
  28. /**
  29.  * Write an array of bytes to the sequence.
  30.  * 
  31.  * @param b The bytes to write.
  32.  */
  33. public void write(byte b[]);
  34. /**
  35.  * Write a byte to the sequence.
  36.  * 
  37.  * @param b The byte to write.
  38.  */
  39. public void write(byte b);
  40. /**
  41.  * Write a byte in integer form to the sequence.
  42.  * 
  43.  * @param b The byte as an <code>Integer</code> to write.
  44.  */
  45. public void write(int b);
  46. /**
  47.  * Writes an integer to the sequence.
  48.  * 
  49.  * @param i The integer to write.
  50.  */
  51. public void writeInt(int i);
  52. /**
  53.  * Write a short integer to the sequence.
  54.  * 
  55.  * @param s The short integer to write.
  56.  */
  57. public void writeShort(int s);
  58. /**
  59.  * Write a long integer to the sequence.
  60.  * @param l The long integer to write.
  61.  */
  62. public void writeLong(long l);
  63. /**
  64.  * Writes an ASCII string the the sequence.
  65.  * 
  66.  * @param s The ASCII string to write.
  67.  */
  68. void writeAsciiString(String s);
  69. /**
  70.  * Writes a null-terminated ASCII string to the sequence.
  71.  * 
  72.  * @param s The ASCII string to write.
  73.  */
  74. void writeNullTerminatedAsciiString(String s);
  75. /**
  76.  * Writes a maple-convention ASCII string to the sequence.
  77.  * 
  78.  * @param s The ASCII string to use maple-convention to write.
  79.  */
  80. void writeMapleAsciiString(String s);
  81. }