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

游戏

开发平台:

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.input;
  19. /**
  20.  * Provides an abstract interface for a little-endian stream of bytes.
  21.  * 
  22.  * @author Frz
  23.  * @version 1.0
  24.  * @since Revision 323
  25.  */
  26. public interface LittleEndianAccessor {
  27. /**
  28.  * Reads a byte.
  29.  * 
  30.  * @return The byte read.
  31.  */
  32. byte readByte();
  33. /**
  34.  * Reads a character.
  35.  * 
  36.  * @return The character read.
  37.  */
  38. char readChar();
  39. /**
  40.  * Reads a short integer.
  41.  * 
  42.  * @return The short integer read.
  43.  */
  44. short readShort();
  45. /**
  46.  * Reads a integer.
  47.  * 
  48.  * @return The integer read.
  49.  */
  50. int readInt();
  51. /**
  52.  * Reads a long integer.
  53.  * 
  54.  * @return The long integer read.
  55.  */
  56. long readLong();
  57. /**
  58.  * Skips ahead <code>num</code> bytes.
  59.  * 
  60.  * @param num Number of bytes to skip ahead.
  61.  */
  62. void skip (int num);
  63. /**
  64.  * Reads a number of bytes.
  65.  * 
  66.  * @param num The number of bytes to read.
  67.  * @return The bytes read.
  68.  */
  69. byte []read(int num);
  70. /**
  71.  * Reads a floating point integer.
  72.  * 
  73.  * @return The floating point integer read.
  74.  */
  75. float readFloat();
  76. /**
  77.  * Reads a double-precision integer.
  78.  * 
  79.  * @return The double-precision integer read.
  80.  */
  81. double readDouble();
  82. /**
  83.  * Reads an ASCII string.
  84.  * 
  85.  * @return The string read.
  86.  */
  87. String readAsciiString(int n);
  88. /**
  89.  * Reads a null-terminated ASCII string.
  90.  * 
  91.  * @return The string read.
  92.  */
  93. String readNullTerminatedAsciiString();
  94. /**
  95.  * Reads a MapleStory convention lengthed ASCII string.
  96.  * 
  97.  * @return The string read.
  98.  */
  99. String readMapleAsciiString();
  100. /**
  101.  * Gets the number of bytes read so far.
  102.  * 
  103.  * @return The number of bytes read as an long integer.
  104.  */
  105. long getBytesRead();
  106. /**
  107.  * Gets the number of bytes left for reading.
  108.  * 
  109.  * @return The number of bytes left for reading as an long integer.
  110.  */
  111. long available();
  112. }