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

游戏

开发平台:

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.provider.wz;
  19. import java.io.IOException;
  20. import net.sf.odinms.tools.data.input.LittleEndianAccessor;
  21. import net.sf.odinms.tools.data.input.SeekableLittleEndianAccessor;
  22. import net.sf.odinms.tools.data.output.LittleEndianWriter;
  23. import org.slf4j.Logger;
  24. import org.slf4j.LoggerFactory;
  25. /*
  26.  * Ported Code, see WZFile.java for more info
  27.  */
  28. public class WZTool {
  29. @SuppressWarnings("unused")
  30. private static Logger log = LoggerFactory.getLogger(WZTool.class);
  31. /* public final static char[] MODERN_UNI_KEY = new char[] { (char) 26027, (char) 1353, (char) 52583, (char) 2647,
  32. (char) 31640, (char) 2695, (char) 26092, (char) 35591, (char) 29845, (char) 27702, (char) 22963, (char) 24105,
  33. (char) 22946, (char) 32259, (char) 32191, (char) 29899, (char) 21392, (char) 37926, (char) 28440, (char) 34657,
  34. (char) 54992, (char) 7801, (char) 21164, (char) 21225, (char) 31362, (char) 59422 };
  35. /**
  36.  * Actually this is just modernUniKey but expanded to single byte chars
  37.  */
  38.         /*
  39. public final static char[] MODERN_KEY = new char[MODERN_UNI_KEY.length * 2];
  40. static {
  41. for (int i = 0; i < MODERN_UNI_KEY.length; i++) {
  42. MODERN_KEY[i * 2 + 1] = (char) (MODERN_UNI_KEY[i] >> 8);
  43. MODERN_KEY[i * 2]= (char) ((MODERN_UNI_KEY[i]) & 0xFF);
  44. }
  45.          * */
  46. private WZTool() {
  47. }
  48. public static char[] xorCharArray(char[] cypher, char[] key) {
  49. char[] ret = new char[cypher.length];
  50. for (int i = 0; i < cypher.length; i++) {
  51. ret[i] = (char) (cypher[i] ^ key[i]);
  52. }
  53. return ret;
  54. }
  55. public static String dumpCharArray(char[] arr) {
  56. String ret = " new char[] {";
  57. for (char c : arr) {
  58. ret += "(char) " + ((int) c) + ", ";
  59. }
  60. ret = ret.substring(0, ret.length() - 2);
  61. ret += "};";
  62. return ret;
  63. }
  64. public static void writeEncodedString(LittleEndianWriter leo, String s) throws IOException {
  65. writeEncodedString(leo, s, true);
  66. }
  67. public static void writeEncodedString(LittleEndianWriter leo, String s, boolean unicode) throws IOException {
  68. if (s.equals("")) {
  69. leo.write(0);
  70. return;
  71. }
  72. if (unicode) {
  73. // do unicode
  74. short umask = (short) 0xAAAA;
  75. if (s.length() < 0x7F)
  76. leo.write(s.length());
  77. else {
  78. leo.write(0x7F);
  79. leo.writeInt(s.length());
  80. }
  81. for (int i = 0; i < s.length(); i++) {
  82. char chr = s.charAt(i);
  83. chr ^= umask;
  84. umask++;
  85. leo.writeShort((short)chr);
  86. }
  87. } else {
  88. // non-unicode
  89. byte mask = (byte) 0xAA;
  90. if (s.length() <= 127)
  91. leo.write(-s.length());
  92. else
  93. leo.writeInt(s.length());
  94. char str[] = new char[s.length()];
  95. for (int i = 0; i < s.length(); i++) {
  96. byte b2 = (byte) s.charAt(i);
  97. b2 ^= mask;
  98. mask++;
  99. str[i] = (char) b2;
  100. }
  101. }
  102. }
  103. public static String readDecodedString(LittleEndianAccessor llea) {
  104. return "";
  105. }
  106.         public static String transStr(byte[] input) {
  107. return "";
  108.         }
  109.         public static String transStr16KMST(byte[] input) {
  110. return "";
  111.         }
  112.         public static int getBytes(byte[] input, int pos, int len) {
  113. return 9001;
  114.         }
  115.         public static byte[] decrypt(byte[] input) {
  116. return new byte[0];
  117.         }
  118. public static String readDecodedStringAtOffset(SeekableLittleEndianAccessor slea, int offset, boolean pft) {
  119. slea.seek(offset);
  120. return readDecodedString(slea);
  121. }
  122. public static String readDecodedStringAtOffsetAndReset(SeekableLittleEndianAccessor slea, int offset) {
  123. long pos = 0;
  124. pos = slea.getPosition();
  125. slea.seek(offset);
  126. String ret = readDecodedString(slea);
  127. slea.seek(pos);
  128. return ret;
  129. }
  130. public static int readValue(LittleEndianAccessor lea) {
  131. byte b = lea.readByte();
  132. if (b == -128) {
  133. return lea.readInt();
  134. } else {
  135. return ((int) b);
  136. }
  137. }
  138. public static void writeValue(LittleEndianWriter lew, int val) throws IOException {
  139. if (val <= 127)
  140. lew.write(val);
  141. else {
  142. lew.write(-128);
  143. lew.writeInt(val);
  144. }
  145. }
  146. public static float readFloatValue(LittleEndianAccessor lea) {
  147. byte b = lea.readByte();
  148. if (b == -128) {
  149. return lea.readFloat();
  150. } else {
  151. return 0;
  152. }
  153. }
  154. public static void writeFloatValue(LittleEndianWriter leo, float val) throws IOException {
  155. if (val == 0) {
  156. leo.write(-128);
  157. } else {
  158. leo.write(0);
  159. leo.writeInt(Float.floatToIntBits(val));
  160. }
  161. }
  162. }