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

游戏

开发平台:

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.channel.handler;
  19. import java.sql.Connection;
  20. import java.sql.PreparedStatement;
  21. import java.sql.ResultSet;
  22. import java.sql.SQLException;
  23. import net.sf.odinms.client.MapleClient;
  24. import net.sf.odinms.database.DatabaseConnection;
  25. import net.sf.odinms.net.AbstractMaplePacketHandler;
  26. import net.sf.odinms.server.MapleInventoryManipulator;
  27. import net.sf.odinms.tools.MaplePacketCreator;
  28. import net.sf.odinms.tools.data.input.SeekableLittleEndianAccessor;
  29. /**
  30.  *
  31.  * @author Penguins (Acrylic)
  32.  */
  33. public class CouponCodeHandler extends AbstractMaplePacketHandler {
  34.     @Override
  35.     public void handlePacket(SeekableLittleEndianAccessor slea, MapleClient c) {
  36.         slea.skip(2);
  37.         String code = slea.readMapleAsciiString();
  38.         boolean validcode = getNXCodeValid(code.toUpperCase());
  39.         if (validcode) {
  40.             int type = getNXCodeType(code);
  41.             int item = getNXCodeItem(code);
  42.             if (type != 5) {
  43.                 setNXCodeUsed(code, c.getPlayer().getName());
  44.             }
  45.             /*
  46.              * Explanation of type!
  47.              * Basically, this makes coupon codes do
  48.              * different things!
  49.              *
  50.              * Type 0: NX, Type 1: Maple Points,
  51.              * Type 2: Gift Tokens, Type 3: NX + Gift Tokens
  52.              * Type 4: Item
  53.              * Type 5: NX Coupon that can be used over and over
  54.              *
  55.              * When using Types 0-3, the item is the amount
  56.              * of NX or Maple Points you get. When using Type 4
  57.              * the item is the ID of the item you get. Enjoy!
  58.              */
  59.             switch (type) {
  60.                 case 0:
  61.                 case 1:
  62.                 case 2:
  63.                     c.getPlayer().modifyCSPoints(type, item);
  64.                     break;
  65.                 case 3:
  66.                     c.getPlayer().modifyCSPoints(1, item);
  67.                     c.getPlayer().modifyCSPoints(2, item / 5000);
  68.                     break;
  69.                 case 4:
  70.                     MapleInventoryManipulator.addById(c, item, (short) 1);
  71.                     c.getSession().write(MaplePacketCreator.showCouponRedeemedItem(item));
  72.                     break;
  73.                 case 5:
  74.                     c.getPlayer().modifyCSPoints(1, item);
  75.                     break;
  76.             }
  77.             c.getSession().write(MaplePacketCreator.showNXMapleTokens(c.getPlayer()));
  78.         } else {
  79.             c.getSession().write(MaplePacketCreator.wrongCouponCode());
  80.         }
  81.         c.getSession().write(MaplePacketCreator.enableCSUse0());
  82.         c.getSession().write(MaplePacketCreator.enableCSUse1());
  83.         c.getSession().write(MaplePacketCreator.enableCSUse2());
  84.     }
  85.     private boolean getNXCodeValid(String code) {
  86.         boolean valid = false;
  87.         Connection con = DatabaseConnection.getConnection();
  88.         try {
  89.             PreparedStatement ps = con.prepareStatement("SELECT `valid` FROM nxcode WHERE code = ?");
  90.             ps.setString(1, code);
  91.             ResultSet rs = ps.executeQuery();
  92.             if (rs.next()) {
  93.                 valid = rs.getInt("valid") != 0;
  94.             }
  95.             rs.close();
  96.             ps.close();
  97.         } catch (SQLException e) {
  98.         }
  99.         return valid;
  100.     }
  101.     private int getNXCodeType(String code) {
  102.         int type = -1;
  103.         Connection con = DatabaseConnection.getConnection();
  104.         try {
  105.             PreparedStatement ps = con.prepareStatement("SELECT `type` FROM nxcode WHERE code = ?");
  106.             ps.setString(1, code);
  107.             ResultSet rs = ps.executeQuery();
  108.             if (rs.next()) {
  109.                 type = rs.getInt("type");
  110.             }
  111.             rs.close();
  112.             ps.close();
  113.         } catch (SQLException e) {
  114.         }
  115.         return type;
  116.     }
  117.     private int getNXCodeItem(String code) {
  118.         int item = -1;
  119.         Connection con = DatabaseConnection.getConnection();
  120.         try {
  121.             PreparedStatement ps = con.prepareStatement("SELECT `item` FROM nxcode WHERE code = ?");
  122.             ps.setString(1, code);
  123.             ResultSet rs = ps.executeQuery();
  124.             if (rs.next()) {
  125.                 item = rs.getInt("item");
  126.             }
  127.             rs.close();
  128.             ps.close();
  129.         } catch (SQLException e) {
  130.         }
  131.         return item;
  132.     }
  133.     public void setNXCodeUsed(String code, String name) {
  134.         Connection con = DatabaseConnection.getConnection();
  135.         try {
  136.             PreparedStatement ps = con.prepareStatement("UPDATE nxcode SET `valid` = 0 WHERE code = ?");
  137.             ps.setString(1, code);
  138.             ps.executeUpdate();
  139.             ps = con.prepareStatement("UPDATE nxcode SET `user` = ? WHERE code = ?");
  140.             ps.setString(1, name);
  141.             ps.setString(2, code);
  142.             ps.executeUpdate();
  143.             ps.close();
  144.         } catch (SQLException e) {
  145.         }
  146.     }
  147. }