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

游戏

开发平台:

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.client;
  19. import java.awt.Point;
  20. import java.sql.Connection;
  21. import java.sql.PreparedStatement;
  22. import java.sql.ResultSet;
  23. import java.sql.SQLException;
  24. import java.util.List;
  25. import java.util.logging.Level;
  26. import java.util.logging.Logger;
  27. import net.sf.odinms.database.DatabaseConnection;
  28. import net.sf.odinms.server.MapleItemInformationProvider;
  29. import net.sf.odinms.server.movement.AbsoluteLifeMovement;
  30. import net.sf.odinms.server.movement.LifeMovement;
  31. import net.sf.odinms.server.movement.LifeMovementFragment;
  32. /**
  33.  *
  34.  * @author Matze
  35.  */
  36. public class MaplePet extends Item {
  37.     private String name;
  38.     private int uniqueid;
  39.     private int closeness = 0;
  40.     private int level = 1;
  41.     private int fullness = 100;
  42.     private int Fh;
  43.     private Point pos;
  44.     private int stance;
  45.     private MaplePet(int id, byte position, int uniqueid) {
  46.         super(id, position, (short) 1);
  47.         this.uniqueid = uniqueid;
  48.     }
  49.     public static MaplePet loadFromDb(int itemid, byte position, int petid) {
  50.         try {
  51.             MaplePet ret = new MaplePet(itemid, position, petid);
  52.             Connection con = DatabaseConnection.getConnection(); // Get a connection to the database
  53.             PreparedStatement ps = con.prepareStatement("SELECT * FROM pets WHERE petid = ?"); // Get pet details..
  54.             ps.setInt(1, petid);
  55.             ResultSet rs = ps.executeQuery();
  56.             rs.next();
  57.             ret.setName(rs.getString("name"));
  58.             ret.setCloseness(rs.getInt("closeness"));
  59.             ret.setLevel(rs.getInt("level"));
  60.             ret.setFullness(rs.getInt("fullness"));
  61.             rs.close();
  62.             ps.close();
  63.             return ret;
  64.         } catch (SQLException ex) {
  65.             Logger.getLogger(MaplePet.class.getName()).log(Level.SEVERE, null, ex);
  66.             return null;
  67.         }
  68.     }
  69.     public void saveToDb() {
  70.         try {
  71.             Connection con = DatabaseConnection.getConnection(); // Get a connection to the database
  72.             PreparedStatement ps = con.prepareStatement("UPDATE pets SET name = ?, level = ?, closeness = ?, fullness = ? WHERE petid = ?");
  73.             ps.setString(1, getName()); // Set name
  74.             if (this.level > 30) {
  75.                 this.level = 30;
  76.             }
  77.             ps.setInt(2, getLevel()); // Set Level
  78.             ps.setInt(3, getCloseness()); // Set Closeness
  79.             ps.setInt(4, getFullness()); // Set Fullness
  80.             ps.setInt(5, getUniqueId()); // Set ID
  81.             ps.executeUpdate(); // Execute statement
  82.             ps.close();
  83.         } catch (SQLException ex) {
  84.             Logger.getLogger(MaplePet.class.getName()).log(Level.SEVERE, null, ex);
  85.         }
  86.     }
  87.     public static void deletePet(int itemid, MapleClient c) {
  88.         try {
  89.             String sql = "DELETE FROM pets WHERE `petid` = ?";
  90.             IItem player = c.getPlayer().getInventory(MapleInventoryType.CASH).findById(itemid);
  91.             Connection con = DatabaseConnection.getConnection();
  92.             PreparedStatement ps = con.prepareStatement(sql);
  93.             ps.setInt(1, player.getPetId());
  94.             ps.executeUpdate();
  95.             ps.close();
  96.         } catch (SQLException ex) {
  97.             Logger.getLogger(MaplePet.class.getName()).log(Level.SEVERE, null, ex);
  98.         }
  99.     }
  100.     public static int createPet(int itemid) {
  101.         try {
  102.             MapleItemInformationProvider mii = MapleItemInformationProvider.getInstance();
  103.             Connection con = DatabaseConnection.getConnection();
  104.             PreparedStatement ps = con.prepareStatement("INSERT INTO pets (name, level, closeness, fullness) VALUES (?, ?, ?, ?)");
  105.             ps.setString(1, mii.getName(itemid));
  106.             ps.setInt(2, 1);
  107.             ps.setInt(3, 0);
  108.             ps.setInt(4, 100);
  109.             ps.executeUpdate();
  110.             ResultSet rs = ps.getGeneratedKeys();
  111.             rs.next();
  112.             int ret = rs.getInt(1);
  113.             rs.close();
  114.             ps.close();
  115.             return ret;
  116.         } catch (SQLException ex) {
  117.             Logger.getLogger(MaplePet.class.getName()).log(Level.SEVERE, null, ex);
  118.             return -1;
  119.         }
  120.     }
  121.     public String getName() {
  122.         return name;
  123.     }
  124.     public void setName(String name) {
  125.         this.name = name.length()>12?name.substring(0,12):name;
  126.     }
  127.     public int getUniqueId() {
  128.         return uniqueid;
  129.     }
  130.     public void setUniqueId(int id) {
  131.         this.uniqueid = id;
  132.     }
  133.     public int getCloseness() {
  134.         return closeness;
  135.     }
  136.     public void setCloseness(int closeness) {
  137.         this.closeness = closeness;
  138.     }
  139.     public int getLevel() {
  140.         return level;
  141.     }
  142.     public void setLevel(int level) {
  143.         this.level = level;
  144.     }
  145.     public int getFullness() {
  146.         return fullness;
  147.     }
  148.     public void setFullness(int fullness) {
  149.         this.fullness = fullness;
  150.     }
  151.     public int getFh() {
  152.         return Fh;
  153.     }
  154.     public void setFh(int Fh) {
  155.         this.Fh = Fh;
  156.     }
  157.     public Point getPos() {
  158.         return pos;
  159.     }
  160.     public void setPos(Point pos) {
  161.         this.pos = pos;
  162.     }
  163.     public int getStance() {
  164.         return stance;
  165.     }
  166.     public void setStance(int stance) {
  167.         this.stance = stance;
  168.     }
  169.     public boolean canConsume(int itemId) {
  170.         MapleItemInformationProvider mii = MapleItemInformationProvider.getInstance();
  171.         for (int petId : mii.petsCanConsume(itemId)) {
  172.             if (petId == this.getItemId()) {
  173.                 return true;
  174.             }
  175.         }
  176.         return false;
  177.     }
  178.     public void updatePosition(List<LifeMovementFragment> movement) {
  179.         for (LifeMovementFragment move : movement) {
  180.             if (move instanceof LifeMovement) {
  181.                 if (move instanceof AbsoluteLifeMovement) {
  182.                     Point position = ((LifeMovement) move).getPosition();
  183.                     this.setPos(position);
  184.                 }
  185.                 this.setStance(((LifeMovement) move).getNewstate());
  186.             }
  187.         }
  188.     }
  189. }