Item.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.client;
  19. import java.util.List;
  20. import java.util.Collections;
  21. import java.util.LinkedList;
  22. public class Item implements IItem {
  23.     private int id;
  24.     private byte position;
  25.     private short quantity;
  26.     private int petid;
  27.     private String owner = "";
  28.         protected List<String> log;
  29.     private long expiration = -1;
  30.     public Item(int id, byte position, short quantity) {
  31.         super();
  32.         this.id = id;
  33.         this.position = position;
  34.         this.quantity = quantity;
  35.         this.petid = -1;
  36.                 this.log = new LinkedList<String>();
  37.     }
  38.     public Item(int id, byte position, short quantity, int petid) {
  39.         super();
  40.         this.id = id;
  41.         this.position = position;
  42.         this.quantity = quantity;
  43.         this.petid = petid;
  44.         this.log = new LinkedList<String>();
  45.     }
  46.     public void setExpiration(long expire) {
  47.         this.expiration = expire;
  48.     }
  49.     public IItem copy() {
  50.         Item ret = new Item(id, position, quantity, petid);
  51.         ret.owner = owner;
  52.         return ret;
  53.     }
  54.     public void setPosition(byte position) {
  55.         this.position = position;
  56.     }
  57.     public void setQuantity(short quantity) {
  58.         this.quantity = quantity;
  59.     }
  60.     @Override
  61.     public int getItemId() {
  62.         return id;
  63.     }
  64.     @Override
  65.     public byte getPosition() {
  66.         return position;
  67.     }
  68.     @Override
  69.     public short getQuantity() {
  70.         return quantity;
  71.     }
  72.     @Override
  73.     public byte getType() {
  74.         return IItem.ITEM;
  75.     }
  76.     @Override
  77.     public String getOwner() {
  78.         return owner;
  79.     }
  80.     public void setOwner(String owner) {
  81.         this.owner = owner;
  82.     }
  83.     @Override
  84.     public int getPetId() {
  85.         return petid;
  86.     }
  87.     @Override
  88.     public int compareTo(IItem other) {
  89.         if (Math.abs(position) < Math.abs(other.getPosition())) {
  90.             return -1;
  91.         } else if (Math.abs(position) == Math.abs(other.getPosition())) {
  92.             return 0;
  93.         } else {
  94.             return 1;
  95.         }
  96.     }
  97.     @Override
  98.     public String toString() {
  99.         return "物品: " + id + " 数量: " + quantity;
  100.     }
  101.     public void log(String msg, boolean fromDB) {
  102.         throw new UnsupportedOperationException("Not supported yet.");
  103.     }
  104.     public long getExpiration() {
  105.         throw new UnsupportedOperationException("Not supported yet.");
  106.     }
  107.     public List<String> getLog() {
  108.         throw new UnsupportedOperationException("Not supported yet.");
  109.     }
  110. }
  111.