BitTools.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;
  19. /**
  20.  * Provides static methods for working with raw byte sequences.
  21.  * 
  22.  * @author Frz
  23.  * @since Revision 206
  24.  * @version 1.0
  25.  */
  26. public class BitTools {
  27. /**
  28.  * Static class dummy constructor.
  29.  */
  30. private BitTools() {
  31. }
  32. /**
  33.  * Reads a short from <code>array</code> at <code>index</code>
  34.  * 
  35.  * @param array The byte array to read the short integer from.
  36.  * @param index Where reading begins.
  37.  * @return The short integer value.
  38.  */
  39. public static int getShort(byte array[], int index) {
  40. int ret = array[index];
  41. ret &= 0xFF;
  42. ret |= ((int) (array[index + 1]) << 8) & 0xFF00;
  43. return ret;
  44. }
  45. /**
  46.  * Reads a string from <code>array</code> at
  47.  * <code>index</code> <code>length</code> in length.
  48.  * 
  49.  * @param array The array to read the string from.
  50.  * @param index Where reading begins.
  51.  * @param length The number of bytes to read.
  52.  * @return The string read.
  53.  */
  54. public static String getString(byte array[], int index, int length) {
  55. char[] cret = new char[length];
  56. for (int x = 0; x < length; x++) {
  57. cret[x] = (char) array[x + index];
  58. }
  59. return String.valueOf(cret);
  60. }
  61. /**
  62.  * Reads a maplestory-convention string from <code>array</code> at
  63.  * <code>index</code>
  64.  * 
  65.  * @param array The byte array to read from.
  66.  * @param index Where reading begins.
  67.  * @return The string read.
  68.  */
  69. public static String getMapleString(byte array[], int index) {
  70. int length = ((int) (array[index]) & 0xFF) | ((int) (array[index + 1] << 8) & 0xFF00);
  71. return BitTools.getString(array, index + 2, length);
  72. }
  73. /**
  74.  * Rotates the bits of <code>in</code> <code>count</code> places to the
  75.  * left.
  76.  * 
  77.  * @param in The byte to rotate the bits
  78.  * @param count Number of times to rotate.
  79.  * @return The rotated byte.
  80.  */
  81. public static byte rollLeft(byte in, int count) {
  82. /*
  83.  * in: 11001101 count: 3 out: 0110 1110
  84.  */
  85. int tmp = (int) in & 0xFF;
  86. ;
  87. tmp = tmp << (count % 8);
  88. return (byte) ((tmp & 0xFF) | (tmp >> 8));
  89. }
  90. /**
  91.  * Rotates the bits of <code>in</code> <code>count</code> places to the
  92.  * right.
  93.  * 
  94.  * @param in The byte to rotate the bits
  95.  * @param count Number of times to rotate.
  96.  * @return The rotated byte.
  97.  */
  98. public static byte rollRight(byte in, int count) {
  99. /*
  100.  * in: 11001101 count: 3 out: 1011 10011
  101.  * 
  102.  * 0000 1011 1011 0000 0101 1000
  103.  * 
  104.  */
  105. int tmp = (int) in & 0xFF;
  106. tmp = (tmp << 8) >>> (count % 8);
  107. return (byte) ((tmp & 0xFF) | (tmp >>> 8));
  108. }
  109. /**
  110.  * Repeats <code>count</code> bytes of <code>in</code> <code>mul</code> times.
  111.  * 
  112.  * @param in The array of bytes containing the bytes to multiply.
  113.  * @param count The number of bytes to repeat.
  114.  * @param mul The number of times to repeat.
  115.  * @return The repeated bytes.
  116.  */
  117. public static byte[] multiplyBytes(byte[] in, int count, int mul) {
  118. byte[] ret = new byte[count * mul];
  119. for (int x = 0; x < count * mul; x++) {
  120. ret[x] = in[x % count];
  121. }
  122. return ret;
  123. }
  124. /**
  125.  * Turns a double-precision floating point integer into an integer.
  126.  * 
  127.  * @param d The double to transform.
  128.  * @return The converted integer.
  129.  */
  130. public static int doubleToShortBits(double d) {
  131. long l = Double.doubleToLongBits(d);
  132. return (int) (l >> 48);
  133. }
  134. }