Marriage.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. /*
  19.  * @Author Jvlaple
  20.  */
  21. package net.sf.odinms.scripting.npc;
  22. import java.sql.Connection;
  23. import java.sql.PreparedStatement;
  24. import java.sql.ResultSet;
  25. import java.sql.SQLException;
  26. import net.sf.odinms.client.MapleCharacter;
  27. import net.sf.odinms.database.DatabaseConnection;
  28. public class Marriage {
  29.     private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(Marriage.class);
  30.     public static void createMarriage(MapleCharacter player, MapleCharacter partner) {
  31.         try {
  32.             Connection con = DatabaseConnection.getConnection();
  33.             PreparedStatement ps = con.prepareStatement("INSERT INTO marriages (husbandid, wifeid) VALUES (?, ?)");
  34.             ps.setInt(1, player.getId());
  35.             ps.setInt(2, partner.getId());
  36.             ps.executeUpdate();
  37.             ps.close();
  38.         } catch (SQLException ex) {
  39.             log.warn("Problem marrying " + player.getName() + " and " + partner.getName(), ex);
  40.         }
  41.     }
  42.     public static void createEngagement(MapleCharacter player, MapleCharacter partner) {
  43.         try {
  44.             Connection con = DatabaseConnection.getConnection();
  45.             PreparedStatement ps = con.prepareStatement("INSERT INTO engagements (husbandid, wifeid) VALUES (?, ?)");
  46.             ps.setInt(1, player.getId());
  47.             ps.setInt(2, partner.getId());
  48.             ps.executeUpdate();
  49.         } catch (SQLException ex) {
  50.             log.warn("Problem announcing engagement with " + player.getName() + " and " + partner.getName(), ex);
  51.         }
  52.     }
  53.     public static void divorceEngagement(MapleCharacter player) {
  54.         try {
  55.             Connection con = DatabaseConnection.getConnection();
  56.             PreparedStatement ps = con.prepareStatement("DELETE FROM engagements WHERE husbandid = ?");
  57.             if (player.getGender() != 0) {
  58.                 ps = con.prepareStatement("DELETE FROM engagements WHERE wifeid = ?");
  59.             }
  60.             ps.executeUpdate();
  61.             PreparedStatement ps1 = con.prepareStatement("UPDATE characters SET marriagequest = 0 WHERE id = ?");
  62.             ps1.setInt(1, player.getPartnerId());
  63.             ps1.executeUpdate();
  64.         } catch (SQLException ex) {
  65.             log.warn("Problem divorcing" + player.getName() + " and his or her partner", ex);
  66.         }
  67.     }
  68.     public static void divorceMarriage(MapleCharacter player) {
  69.         try {
  70.             Connection con = DatabaseConnection.getConnection();
  71.             PreparedStatement ps = con.prepareStatement("DELETE FROM marriages WHERE husbandid = ?");
  72.             if (player.getGender() != 0) {
  73.                 ps = con.prepareStatement("DELETE FROM marriages WHERE wifeid = ?");
  74.             }
  75.             ps.setInt(1, player.getId());
  76.             ps.executeUpdate();
  77.             PreparedStatement ps1 = con.prepareStatement("UPDATE characters SET married = 0 WHERE id = ?");
  78.             ps1.setInt(2, player.getPartnerId());
  79.             ps1.executeUpdate();
  80.             PreparedStatement ps2 = con.prepareStatement("UPDATE characters SET partnerid = 0 WHERE id = ?");
  81.             ps2.setInt(2, player.getPartnerId());
  82.             ps2.executeUpdate();
  83.             ps.close();
  84.             ps1.close();
  85.             ps2.close();
  86.         } catch (SQLException ex) {
  87.             log.warn("Problem divorcing" + player.getName() + " and his or her partner", ex);
  88.         }
  89.     }
  90. }