/* This file is part of the OdinMS Maple Story Server Copyright (C) 2008 Patrick Huy Matthias Butz Jan Christian Meyer This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation version 3 as published by the Free Software Foundation. You may not use, modify or distribute this program under any other version of the GNU Affero General Public License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . */ package server; import client.MapleClient; import client.inventory.Item; import client.inventory.ItemFactory; import client.inventory.MapleInventoryType; import constants.game.GameConstants; import net.server.audit.locks.MonitoredLockType; import net.server.audit.locks.factory.MonitoredReentrantLockFactory; import provider.MapleData; import provider.MapleDataProvider; import provider.MapleDataProviderFactory; import provider.MapleDataTool; import provider.wz.WZFiles; import tools.DatabaseConnection; import tools.FilePrinter; import tools.MaplePacketCreator; import tools.Pair; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.util.*; import java.util.concurrent.locks.Lock; /** * * @author Matze */ public class MapleStorage { private static Map trunkGetCache = new HashMap<>(); private static Map trunkPutCache = new HashMap<>(); private int id; private int currentNpcid; private int meso; private byte slots; private Map> typeItems = new HashMap<>(); private List items = new LinkedList<>(); private Lock lock = MonitoredReentrantLockFactory.createLock(MonitoredLockType.STORAGE, true); private MapleStorage(int id, byte slots, int meso) { this.id = id; this.slots = slots; this.meso = meso; } private static MapleStorage create(int id, int world) throws SQLException { try (Connection con = DatabaseConnection.getConnection(); PreparedStatement ps = con.prepareStatement("INSERT INTO storages (accountid, world, slots, meso) VALUES (?, ?, 4, 0)")) { ps.setInt(1, id); ps.setInt(2, world); ps.executeUpdate(); } return loadOrCreateFromDB(id, world); } public static MapleStorage loadOrCreateFromDB(int id, int world) { MapleStorage ret; try (Connection con = DatabaseConnection.getConnection(); PreparedStatement ps = con.prepareStatement("SELECT storageid, slots, meso FROM storages WHERE accountid = ? AND world = ?")) { ps.setInt(1, id); ps.setInt(2, world); try (ResultSet rs = ps.executeQuery()) { if (rs.next()) { ret = new MapleStorage(rs.getInt("storageid"), (byte) rs.getInt("slots"), rs.getInt("meso")); for (Pair item : ItemFactory.STORAGE.loadItems(ret.id, false)) { ret.items.add(item.getLeft()); } } else { ret = create(id, world); } } return ret; } catch (SQLException ex) { // exceptions leading to deploy null storages found thanks to Jefe FilePrinter.printError(FilePrinter.STORAGE, ex, "SQL error occurred when trying to load storage for accountid " + id + ", world " + GameConstants.WORLD_NAMES[world]); throw new RuntimeException(ex); } } public byte getSlots() { return slots; } public boolean canGainSlots(int slots) { slots += this.slots; return slots <= 48; } public boolean gainSlots(int slots) { lock.lock(); try { if (canGainSlots(slots)) { slots += this.slots; this.slots = (byte) slots; return true; } return false; } finally { lock.unlock(); } } public void saveToDB(Connection con) { try { try (PreparedStatement ps = con.prepareStatement("UPDATE storages SET slots = ?, meso = ? WHERE storageid = ?")) { ps.setInt(1, slots); ps.setInt(2, meso); ps.setInt(3, id); ps.executeUpdate(); } List> itemsWithType = new ArrayList<>(); List list = getItems(); for (Item item : list) { itemsWithType.add(new Pair<>(item, item.getInventoryType())); } ItemFactory.STORAGE.saveItems(itemsWithType, id, con); } catch (SQLException ex) { ex.printStackTrace(); } } public Item getItem(byte slot) { lock.lock(); try { return items.get(slot); } finally { lock.unlock(); } } public boolean takeOut(Item item) { lock.lock(); try { boolean ret = items.remove(item); MapleInventoryType type = item.getInventoryType(); typeItems.put(type, new ArrayList<>(filterItems(type))); return ret; } finally { lock.unlock(); } } public boolean store(Item item) { lock.lock(); try { if (isFull()) { // thanks Optimist for noticing unrestricted amount of insertions here return false; } items.add(item); MapleInventoryType type = item.getInventoryType(); typeItems.put(type, new ArrayList<>(filterItems(type))); return true; } finally { lock.unlock(); } } public List getItems() { lock.lock(); try { return Collections.unmodifiableList(items); } finally { lock.unlock(); } } private List filterItems(MapleInventoryType type) { List storageItems = getItems(); List ret = new LinkedList<>(); for (Item item : storageItems) { if (item.getInventoryType() == type) { ret.add(item); } } return ret; } public byte getSlot(MapleInventoryType type, byte slot) { lock.lock(); try { byte ret = 0; List storageItems = getItems(); for (Item item : storageItems) { if (item == typeItems.get(type).get(slot)) { return ret; } ret++; } return -1; } finally { lock.unlock(); } } public void sendStorage(MapleClient c, int npcId) { if (c.getPlayer().getLevel() < 15){ c.getPlayer().dropMessage(1, "You may only use the storage once you have reached level 15."); c.announce(MaplePacketCreator.enableActions()); return; } lock.lock(); try { items.sort((o1, o2) -> { if (o1.getInventoryType().getType() < o2.getInventoryType().getType()) { return -1; } else if (o1.getInventoryType() == o2.getInventoryType()) { return 0; } return 1; }); List storageItems = getItems(); for (MapleInventoryType type : MapleInventoryType.values()) { typeItems.put(type, new ArrayList<>(storageItems)); } currentNpcid = npcId; c.announce(MaplePacketCreator.getStorage(npcId, slots, storageItems, meso)); } finally { lock.unlock(); } } public void sendStored(MapleClient c, MapleInventoryType type) { lock.lock(); try { c.announce(MaplePacketCreator.storeStorage(slots, type, typeItems.get(type))); } finally { lock.unlock(); } } public void sendTakenOut(MapleClient c, MapleInventoryType type) { lock.lock(); try { c.announce(MaplePacketCreator.takeOutStorage(slots, type, typeItems.get(type))); } finally { lock.unlock(); } } public void arrangeItems(MapleClient c) { lock.lock(); try { MapleStorageInventory msi = new MapleStorageInventory(c, items); msi.mergeItems(); items = msi.sortItems(); for (MapleInventoryType type : MapleInventoryType.values()) { typeItems.put(type, new ArrayList<>(items)); } c.announce(MaplePacketCreator.arrangeStorage(slots, items)); } finally { lock.unlock(); } } public int getMeso() { return meso; } public void setMeso(int meso) { if (meso < 0) { throw new RuntimeException(); } this.meso = meso; } public void sendMeso(MapleClient c) { c.announce(MaplePacketCreator.mesoStorage(slots, meso)); } public int getStoreFee() { // thanks to GabrielSin int npcId = currentNpcid; Integer fee = trunkPutCache.get(npcId); if(fee == null) { fee = 100; MapleDataProvider npc = MapleDataProviderFactory.getDataProvider(WZFiles.NPC); MapleData npcData = npc.getData(npcId + ".img"); if(npcData != null) { fee = MapleDataTool.getIntConvert("info/trunkPut", npcData, 100); } trunkPutCache.put(npcId, fee); } return fee; } public int getTakeOutFee() { int npcId = currentNpcid; Integer fee = trunkGetCache.get(npcId); if(fee == null) { fee = 0; MapleDataProvider npc = MapleDataProviderFactory.getDataProvider(WZFiles.NPC); MapleData npcData = npc.getData(npcId + ".img"); if(npcData != null) { fee = MapleDataTool.getIntConvert("info/trunkGet", npcData, 0); } trunkGetCache.put(npcId, fee); } return fee; } public boolean isFull() { lock.lock(); try { return items.size() >= slots; } finally { lock.unlock(); } } public void close() { lock.lock(); try { typeItems.clear(); } finally { lock.unlock(); } } }