/*
* This file is part of aion-emu <aion-emu.com>.
*
* aion-emu is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* aion-emu 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with aion-emu. If not, see <http://www.gnu.org/licenses/>.
*/
package com.aionemu.gameserver.model.gameobjects.player;
import java.util.LinkedHashMap;
import com.aionemu.gameserver.model.trade.TradePSItem;
/**
* @author Xav Modified by Simple
*/
public class PrivateStore
{
private Player owner;
private LinkedHashMap<Integer, TradePSItem> items;
private String storeMessage;
/**
* This method binds a player to the store and creates a list of items
*
* @param owner
*/
public PrivateStore(Player owner)
{
this.owner = owner;
this.items = new LinkedHashMap<Integer, TradePSItem>();
}
/**
* This method will return the owner of the store
*
* @return Player
*/
public Player getOwner()
{
return owner;
}
/**
* This method will return the items being sold
*
* @return LinkedHashMap<Integer, TradePSItem>
*/
public LinkedHashMap<Integer, TradePSItem> getSoldItems()
{
return items;
}
/**
* This method will add an item to the list and price
*
* @param tradeList
* @param price
*/
public void addItemToSell(int itemObjId, TradePSItem tradeItem)
{
items.put(itemObjId, tradeItem);
}
/**
* This method will remove an item from the list
*
* @param item
*/
public void removeItem(int itemObjId)
{
if(items.containsKey(itemObjId))
{
LinkedHashMap<Integer, TradePSItem> newItems = new LinkedHashMap<Integer, TradePSItem>();
for(int itemObjIds : items.keySet())
{
if(itemObjId != itemObjIds)
newItems.put(itemObjIds, items.get(itemObjIds));
}
this.items = newItems;
}
}
/**
* @param itemId
* return tradeItem
*/
public TradePSItem getTradeItemById(int itemObjId)
{
if(items.containsKey(itemObjId))
return items.get(itemObjId);
return null;
}
/**
* @param storeMessage
* the storeMessage to set
*/
public void setStoreMessage(String storeMessage)
{
this.storeMessage = storeMessage;
}
/**
* @return the storeMessage
*/
public String getStoreMessage()
{
return storeMessage;
}
}