MaplePacketEncoder.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.net.mina;
  19. import net.sf.odinms.client.MapleClient;
  20. import net.sf.odinms.net.MaplePacket;
  21. import net.sf.odinms.tools.MapleCustomEncryption;
  22. import org.apache.mina.common.ByteBuffer;
  23. import org.apache.mina.common.IoSession;
  24. import org.apache.mina.filter.codec.ProtocolEncoder;
  25. import org.apache.mina.filter.codec.ProtocolEncoderOutput;
  26. public class MaplePacketEncoder implements ProtocolEncoder {
  27. //private static Logger log = LoggerFactory.getLogger(MaplePacketEncoder.class);
  28. @Override
  29. public void encode(IoSession session, Object message, ProtocolEncoderOutput out) throws Exception {
  30. MapleClient client = (MapleClient) session.getAttribute(MapleClient.CLIENT_KEY);
  31. if (client != null) {
  32. byte[] input = ((MaplePacket) message).getBytes();
  33. byte[] unencrypted = new byte[input.length];
  34. System.arraycopy(input, 0, unencrypted, 0, input.length);
  35. byte[] ret = new byte[unencrypted.length + 4];
  36. byte[] header = client.getSendCrypto().getPacketHeader(unencrypted.length);
  37.                         synchronized(client.getSendCrypto()){
  38.                             MapleCustomEncryption.encryptData(unencrypted);
  39.                             client.getSendCrypto().crypt(unencrypted);
  40.                         
  41.                             System.arraycopy(header, 0, ret, 0, 4);
  42.                             System.arraycopy(unencrypted, 0, ret, 4, unencrypted.length);
  43.                         
  44.                             ByteBuffer out_buffer = ByteBuffer.wrap(ret);
  45.                             out.write(out_buffer);
  46.                         }
  47. } else { // no client object created yet, send unencrypted (hello)
  48. out.write(ByteBuffer.wrap(((MaplePacket) message).getBytes()));
  49. }
  50. }
  51. @Override
  52. public void dispose(IoSession session) throws Exception {
  53. // nothing to do
  54. }
  55. }