MapleMessengerCharacter.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.world;
  19. import java.io.Serializable;
  20. import net.sf.odinms.client.MapleCharacter;
  21. public class MapleMessengerCharacter implements Serializable {
  22. private static final long serialVersionUID = 6215463252132450750L;
  23. private String name;
  24. private int id;
  25. private int channel;
  26. private boolean online;
  27. private int position;
  28. public MapleMessengerCharacter(MapleCharacter maplechar) {
  29. this.name = maplechar.getName();
  30. this.channel = maplechar.getClient().getChannel();
  31. this.id = maplechar.getId();
  32. this.online = true;
  33.                 this.position = 0;
  34. }
  35.         
  36.         public MapleMessengerCharacter(MapleCharacter maplechar, int position) {
  37. this.name = maplechar.getName();
  38. this.channel = maplechar.getClient().getChannel();
  39. this.id = maplechar.getId();
  40. this.online = true;
  41.                 this.position = position;
  42. }
  43. public MapleMessengerCharacter() {
  44. this.name = "";
  45. //default values for everything o.o
  46. }
  47. public int getChannel() {
  48. return channel;
  49. }
  50. public boolean isOnline() {
  51. return online;
  52. }
  53. public void setOnline(boolean online) {
  54. this.online = online;
  55. }
  56. public String getName() {
  57. return name;
  58. }
  59. public int getId() {
  60. return id;
  61. }
  62. public int getPosition() {
  63. return position;
  64. }
  65.         
  66.         public void setPosition(int position) {
  67.                 this.position = position;
  68.         }
  69. @Override
  70. public int hashCode() {
  71. final int prime = 31;
  72. int result = 1;
  73. result = prime * result + ((name == null) ? 0 : name.hashCode());
  74. return result;
  75. }
  76. @Override
  77. public boolean equals(Object obj) {
  78. if (this == obj)
  79. return true;
  80. if (obj == null)
  81. return false;
  82. if (getClass() != obj.getClass())
  83. return false;
  84. final MapleMessengerCharacter other = (MapleMessengerCharacter) obj;
  85. if (name == null) {
  86. if (other.name != null)
  87. return false;
  88. } else if (!name.equals(other.name))
  89. return false;
  90. return true;
  91. }
  92. }