MapleInventory.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. /*
  19.  * MapleInventory.java
  20.  * 
  21.  * Created on 26. November 2007, 15:12
  22.  */
  23. package net.sf.odinms.client;
  24. import java.util.ArrayList;
  25. import java.util.Collection;
  26. import java.util.Collections;
  27. import java.util.Iterator;
  28. import java.util.LinkedHashMap;
  29. import java.util.List;
  30. import java.util.Map;
  31. import net.sf.odinms.server.MapleItemInformationProvider;
  32. /**
  33.  * 
  34.  * @author Matze
  35.  */
  36. public class MapleInventory implements Iterable<IItem>, InventoryContainer {
  37.     private Map<Byte, IItem> inventory;
  38.     private byte slotLimit;
  39.     private MapleInventoryType type;
  40.     /** Creates a new instance of MapleInventory */
  41.     public MapleInventory(MapleInventoryType type, byte slotLimit) {
  42.         this.inventory = new LinkedHashMap<Byte, IItem>();
  43.         this.slotLimit = slotLimit;
  44.         this.type = type;
  45.     }
  46.     /** Returns the item with its slot id if it exists within the inventory, otherwise null is returned */
  47.     public IItem findById(int itemId) {
  48.         for (IItem item : inventory.values()) {
  49.             if (item.getItemId() == itemId) {
  50.                 return item;
  51.             }
  52.         }
  53.         return null;
  54.     }
  55.     public int countById(int itemId) {
  56.         int possesed = 0;
  57.         for (IItem item : inventory.values()) {
  58.             if (item.getItemId() == itemId) {
  59.                 possesed += item.getQuantity();
  60.             }
  61.         }
  62.         return possesed;
  63.     }
  64.     public List<IItem> listById(int itemId) {
  65.         List<IItem> ret = new ArrayList<IItem>();
  66.         for (IItem item : inventory.values()) {
  67.             if (item.getItemId() == itemId) {
  68.                 ret.add(item);
  69.             }
  70.         }
  71.         // the linkedhashmap does impose insert order as returned order but we can not guarantee that this is still the
  72.         // correct order - blargh, we could empty the map and reinsert in the correct order after each inventory
  73.         // addition, or we could use an array/list, it's only 255 entries anyway...
  74.         if (ret.size() > 1) {
  75.             Collections.sort(ret);
  76.         }
  77.         return ret;
  78.     }
  79.     public Collection<IItem> list() {
  80.         return inventory.values();
  81.     }
  82.     /** Adds the item to the inventory and returns the assigned slot id */
  83.     public byte addItem(IItem item) {
  84.         byte slotId = getNextFreeSlot();
  85.         if (slotId < 0) {
  86.             return -1;
  87.         }
  88.         inventory.put(slotId, item);
  89.         item.setPosition(slotId);
  90.         return slotId;
  91.     }
  92.     public void addFromDB(IItem item) {
  93.         if (item.getPosition() < 0 && !type.equals(MapleInventoryType.EQUIPPED)) {
  94.             throw new RuntimeException("Item with negative position in non-equipped IV wtf?");
  95.         }
  96.         inventory.put(item.getPosition(), item);
  97.     }
  98.     public void move(byte sSlot, byte dSlot, short slotMax) {
  99.         MapleItemInformationProvider ii = MapleItemInformationProvider.getInstance();
  100.         Item source = (Item) inventory.get(sSlot);
  101.         Item target = (Item) inventory.get(dSlot);
  102.         if (source == null) {
  103.             throw new InventoryException("Trying to move empty slot");
  104.         }
  105.         if (target == null) {
  106.             source.setPosition(dSlot);
  107.             inventory.put(dSlot, source);
  108.             inventory.remove(sSlot);
  109.         } else if (target.getItemId() == source.getItemId() && !ii.isThrowingStar(source.getItemId()) && !ii.isBullet(source.getItemId())) {
  110.             if (type.getType() == MapleInventoryType.EQUIP.getType()) {
  111.                 swap(target, source);
  112.             }
  113.             if (source.getQuantity() + target.getQuantity() > slotMax) {
  114.                 short rest = (short) ((source.getQuantity() + target.getQuantity()) - slotMax);
  115.                 source.setQuantity(rest);
  116.                 target.setQuantity(slotMax);
  117.             } else {
  118.                 target.setQuantity((short) (source.getQuantity() + target.getQuantity()));
  119.                 inventory.remove(sSlot);
  120.             }
  121.         } else {
  122.             swap(target, source);
  123.         }
  124.     }
  125.     private void swap(IItem source, IItem target) {
  126.         inventory.remove(source.getPosition());
  127.         inventory.remove(target.getPosition());
  128.         byte swapPos = source.getPosition();
  129.         source.setPosition(target.getPosition());
  130.         target.setPosition(swapPos);
  131.         inventory.put(source.getPosition(), source);
  132.         inventory.put(target.getPosition(), target);
  133.     }
  134.     public IItem getItem(byte slot) {
  135.         return inventory.get(slot);
  136.     }
  137.     public void removeItem(byte slot) {
  138.         removeItem(slot, (short) 1, false);
  139.     }
  140.     public void removeItem(byte slot, short quantity, boolean allowZero) {
  141.         IItem item = inventory.get(slot);
  142.         if (item == null) // TODO is it ok not to throw an exception here?
  143.         {
  144.             return;
  145.         }
  146.         item.setQuantity((short) (item.getQuantity() - quantity));
  147.         if (item.getQuantity() < 0) {
  148.             item.setQuantity((short) 0);
  149.         }
  150.         if (item.getQuantity() == 0 && !allowZero) {
  151.             removeSlot(slot);
  152.         }
  153.     }
  154.     public void removeSlot(byte slot) {
  155.         inventory.remove(slot);
  156.     }
  157.     public boolean isFull() {
  158.         return inventory.size() >= slotLimit;
  159.     }
  160.     public boolean isFull(int margin) {
  161.         return inventory.size() + margin >= slotLimit;
  162.     }
  163.     /** Returns the next empty slot id, -1 if the inventory is full */
  164.     public byte getNextFreeSlot() {
  165.         if (isFull()) {
  166.             return -1;
  167.         }
  168.         for (byte i = 1; i <= slotLimit; i++) {
  169.             if (!inventory.keySet().contains(i)) {
  170.                 return i;
  171.             }
  172.         }
  173.         return -1;
  174.     }
  175.     public MapleInventoryType getType() {
  176.         return type;
  177.     }
  178.     @Override
  179.     public Iterator<IItem> iterator() {
  180.         return Collections.unmodifiableCollection(inventory.values()).iterator();
  181.     }
  182.     @Override
  183.     public Collection<MapleInventory> allInventories() {
  184.         return Collections.singletonList(this);
  185.     }
  186. }