MaplePartyCharacter.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. package net.sf.odinms.net.world;
  19. import java.awt.Point;
  20. import java.io.Serializable;
  21. import net.sf.odinms.client.MapleCharacter;
  22. public class MaplePartyCharacter implements Serializable {
  23.     private static final long serialVersionUID = 6215463252132450750L;
  24.     private String name;
  25.     private int id;
  26.     private int level;
  27.     private int channel;
  28.     private int jobid;
  29.     private int mapid;
  30. private int gender;
  31. private boolean married;
  32.     private int doorTown = 999999999;
  33.     private int doorTarget = 999999999;
  34.     private Point doorPosition = new Point(0, 0);
  35.     private boolean online;
  36.     public MaplePartyCharacter(MapleCharacter maplechar) {
  37.         this.name = maplechar.getName();
  38.         this.level = maplechar.getLevel();
  39.         this.channel = maplechar.getClient().getChannel();
  40.         this.id = maplechar.getId();
  41.         this.jobid = maplechar.getJob().getId();
  42.         this.mapid = maplechar.getMapId();
  43.         this.online = true;
  44.         if (maplechar.getDoors().size() > 0) {
  45.             this.doorTown = maplechar.getDoors().get(0).getTown().getId();
  46.             this.doorTarget = maplechar.getDoors().get(0).getTarget().getId();
  47.             this.doorPosition = maplechar.getDoors().get(0).getTargetPosition();
  48.         }
  49. this.gender = maplechar.getGender();
  50. this.married = maplechar.isMarried();
  51.     }
  52.     public MaplePartyCharacter() {
  53.         this.name = "";
  54.     //default values for everything o.o
  55.     }
  56.     public int getLevel() {
  57.         return level;
  58.     }
  59.     public int getChannel() {
  60.         return channel;
  61.     }
  62.     public boolean isOnline() {
  63.         return online;
  64.     }
  65.     public void setOnline(boolean online) {
  66.         this.online = online;
  67.     }
  68. public boolean isMarried() {
  69. return married;
  70. }
  71. public int getGender() {
  72. return gender;
  73. }
  74.     public int getMapid() {
  75.         return mapid;
  76.     }
  77.     public String getName() {
  78.         return name;
  79.     }
  80.     public int getId() {
  81.         return id;
  82.     }
  83.     public int getJobId() {
  84.         return jobid;
  85.     }
  86.     public int getDoorTown() {
  87.         return doorTown;
  88.     }
  89.     public int getDoorTarget() {
  90.         return doorTarget;
  91.     }
  92.     public Point getDoorPosition() {
  93.         return doorPosition;
  94.     }
  95.     @Override
  96.     public int hashCode() {
  97.         final int prime = 31;
  98.         int result = 1;
  99.         result = prime * result + ((name == null) ? 0 : name.hashCode());
  100.         return result;
  101.     }
  102.     @Override
  103.     public boolean equals(Object obj) {
  104.         if (this == obj) {
  105.             return true;
  106.         }
  107.         if (obj == null) {
  108.             return false;
  109.         }
  110.         if (getClass() != obj.getClass()) {
  111.             return false;
  112.         }
  113.         final MaplePartyCharacter other = (MaplePartyCharacter) obj;
  114.         if (name == null) {
  115.             if (other.name != null) {
  116.                 return false;
  117.             }
  118.         } else if (!name.equals(other.name)) {
  119.             return false;
  120.         }
  121.         return true;
  122.     }
  123. }