PNGMapleCanvas.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.awt.Point;
  20. import java.awt.image.BufferedImage;
  21. import java.awt.image.DataBuffer;
  22. import java.awt.image.DataBufferByte;
  23. import java.awt.image.PixelInterleavedSampleModel;
  24. import java.awt.image.Raster;
  25. import java.awt.image.SampleModel;
  26. import java.awt.image.WritableRaster;
  27. import java.util.zip.DataFormatException;
  28. import java.util.zip.Inflater;
  29. import net.sf.odinms.provider.MapleCanvas;
  30. public class PNGMapleCanvas implements MapleCanvas {
  31. private static final int[] ZAHLEN = new int[] { 2, 1, 0, 3 };
  32. private int height;
  33. private int width;
  34. private int dataLength;
  35. private int format;
  36. private byte[] data;
  37. public PNGMapleCanvas(int width, int height, int dataLength, int format, byte[] data) {
  38. super();
  39. this.height = height;
  40. this.width = width;
  41. this.dataLength = dataLength;
  42. this.format = format;
  43. this.data = data;
  44. }
  45. public int getHeight() {
  46. return height;
  47. }
  48. public int getWidth() {
  49. return width;
  50. }
  51. public int getFormat() {
  52. return format;
  53. }
  54. public byte[] getData() {
  55. return data;
  56. }
  57. @Override
  58. public BufferedImage getImage() {
  59. int sizeUncompressed = 0;
  60. int size8888 = 0;
  61. int maxWriteBuf = 2;
  62. int maxHeight = 3;
  63. byte[] writeBuf = new byte[maxWriteBuf];
  64. @SuppressWarnings(value = "unused")
  65. byte[] rowPointers = new byte[maxHeight];
  66. switch (getFormat()) {
  67. case 1:
  68. case 513:
  69. sizeUncompressed = getHeight() * getWidth() * 4;
  70. break;
  71. case 2:
  72. sizeUncompressed = getHeight() * getWidth() * 8;
  73. break;
  74. case 517:
  75. sizeUncompressed = getHeight() * getWidth() / 128;
  76. break;
  77. }
  78. size8888 = getHeight() * getWidth() * 8;
  79. if (size8888 > maxWriteBuf) {
  80. maxWriteBuf = size8888;
  81. writeBuf = new byte[maxWriteBuf];
  82. }
  83. if (getHeight() > maxHeight) {
  84. maxHeight = getHeight();
  85. rowPointers = new byte[maxHeight];
  86. }
  87. Inflater dec = new Inflater();
  88. dec.setInput(getData(), 0, dataLength);
  89. int declen = 0;
  90. byte[] uc = new byte[sizeUncompressed];
  91. try {
  92. declen = dec.inflate(uc);
  93. } catch ( DataFormatException ex) {
  94. throw new RuntimeException("zlib fucks", ex);
  95. }
  96. dec.end();
  97. // fuck the format
  98. if (getFormat() == 1) {
  99. for ( int i = 0; i < sizeUncompressed; i++) {
  100. byte low = (byte) (uc[i] & 0x0F);
  101. byte high = (byte) (uc[i] & 0xF0);
  102. writeBuf[(i << 1)] = (byte) (((low << 4) | low) & 0xFF);
  103. writeBuf[(i << 1) + 1] = (byte) (high | ((high >>> 4) & 0xF));
  104. }
  105. } else if (getFormat() == 2) {
  106. writeBuf = uc;
  107. } else if (getFormat() == 513) {
  108. for ( int i = 0; i < declen; i += 2) {
  109. byte bBits = (byte) ((uc[i] & 0x1F) << 3);
  110. byte gBits = (byte) (((uc[i + 1] & 0x07) << 5) | ((uc[i] & 0xE0) >> 3));
  111. byte rBits = (byte) (uc[i + 1] & 0xF8);
  112. writeBuf[(i << 1)] = (byte) (bBits | (bBits >> 5));
  113. writeBuf[(i << 1) + 1] = (byte) (gBits | (gBits >> 6));
  114. writeBuf[(i << 1) + 2] = (byte) (rBits | (rBits >> 5));
  115. writeBuf[(i << 1) + 3] = (byte) 0xFF;
  116. }
  117. } else if (getFormat() == 517) {
  118. byte b = 0x00;
  119. int pixelIndex = 0;
  120. for (int i = 0; i < declen; i++) {
  121. for (int j = 0; j < 8; j++) {
  122. b = (byte) (((uc[i] & (0x01 << (7 - j))) >> (7 - j)) * 255);
  123. for (int k = 0; k < 16; k++) {
  124. pixelIndex = (i << 9) + (j << 6) + k * 2;
  125. writeBuf[pixelIndex] = b;
  126. writeBuf[pixelIndex + 1] = b;
  127. writeBuf[pixelIndex + 2] = b;
  128. writeBuf[pixelIndex + 3] = (byte) 0xFF;
  129. }
  130. }
  131. }
  132. }
  133. DataBufferByte imgData = new DataBufferByte(writeBuf, sizeUncompressed);
  134. //SampleModel sm = new PixelInterleavedSampleModel(DataBuffer.TYPE_BYTE, c.getWidth(), c.getHeight(), 4, c.getWidth() * 4, new int[] {2, 1, 0, 3});
  135. SampleModel sm = new PixelInterleavedSampleModel(DataBuffer.TYPE_BYTE, getWidth(), getHeight(), 4, getWidth() * 4, ZAHLEN);
  136. WritableRaster imgRaster = Raster.createWritableRaster(sm, imgData, new Point(0, 0));
  137. BufferedImage aa = new BufferedImage(getWidth(), getHeight(), BufferedImage.TYPE_INT_ARGB);
  138. aa.setData(imgRaster);
  139. return aa;
  140. }
  141. }