/*
* The Mana World
* Copyright 2004 The Mana World Development Team
*
* This file is part of The Mana World.
*
* The Mana World 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 2 of the License, or
* any later version.
*
* The Mana World 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 The Mana World; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* $Id$
*/
#include "inventorywindow.h"
#include <string>
#include <guichan/mouseinput.hpp>
#include <guichan/widgets/label.hpp>
#include "button.h"
#include "gui.h"
#include "item_amount.h"
#include "itemcontainer.h"
#include "scrollarea.h"
#include "../item.h"
#include "../localplayer.h"
#include "../resources/iteminfo.h"
#include "../utils/tostring.h"
InventoryWindow::InventoryWindow():
Window("Inventory")
{
setWindowName("Inventory");
setResizable(true);
setMinWidth(240);
setMinHeight(172);
setDefaultSize(115, 25, 322, 172);
mUseButton = new Button("Use", "use", this);
mDropButton = new Button("Drop", "drop", this);
mItems = new ItemContainer(player_node->mInventory.get());
mInvenScroll = new ScrollArea(mItems);
mInvenScroll->setPosition(8, 8);
mInvenScroll->setHorizontalScrollPolicy(gcn::ScrollArea::SHOW_NEVER);
mItemNameLabel = new gcn::Label("Name:");
mItemDescriptionLabel = new gcn::Label("Description:");
mItemEffectLabel = new gcn::Label("Effect:");
mWeightLabel = new gcn::Label("Total Weight: - Maximum Weight: ");
mWeightLabel->setPosition(8, 8);
mInvenScroll->setPosition(8,
mWeightLabel->getY() + mWeightLabel->getHeight() + 5);
add(mUseButton);
add(mDropButton);
add(mInvenScroll);
add(mItemNameLabel);
add(mItemDescriptionLabel);
add(mItemEffectLabel);
add(mWeightLabel);
mUseButton->setSize(48, mUseButton->getHeight());
loadWindowState();
}
void InventoryWindow::logic()
{
Window::logic();
// It would be nicer if this update could be event based, needs some
// redesign of InventoryWindow and ItemContainer probably.
updateButtons();
// Update weight information
mWeightLabel->setCaption(
"Total Weight: " + toString(player_node->mTotalWeight) + " - "
"Maximum Weight: " + toString(player_node->mMaxWeight));
mWeightLabel->adjustSize();
}
void InventoryWindow::action(const std::string &eventId)
{
Item *item = mItems->getItem();
if (!item) {
return;
}
if (eventId == "use") {
if (item->isEquipment()) {
if (item->isEquipped()) {
player_node->unequipItem(item);
}
else {
player_node->equipItem(item);
}
}
else {
player_node->useItem(item);
}
}
else if (eventId == "drop")
{
// Choose amount of items to drop
new ItemAmountWindow(AMOUNT_ITEM_DROP, this, item);
}
}
void InventoryWindow::mouseClick(int x, int y, int button, int count)
{
Window::mouseClick(x, y, button, count);
Item *item = mItems->getItem();
if (!item) {
return;
}
// Show Name and Description
std::string SomeText;
SomeText = "Name: " + item->getInfo()->getName();
mItemNameLabel->setCaption(SomeText);
mItemNameLabel->adjustSize();
SomeText = "Effect: " + item->getInfo()->getEffect();
mItemEffectLabel->setCaption(SomeText);
mItemEffectLabel->adjustSize();
SomeText = "Description: " + item->getInfo()->getDescription();
mItemDescriptionLabel->setCaption(SomeText);
mItemDescriptionLabel->adjustSize();
if (button == gcn::MouseInput::RIGHT)
{
/*
* convert relative to the window coordinates to
* absolute screen coordinates
*/
int mx = x + getX();
int my = y + getY();
gui->showPopup(mx, my, item);
}
}
void InventoryWindow::mouseMotion(int mx, int my)
{
int tmpWidth = getWidth(), tmpHeight = getHeight();
Window::mouseMotion(mx, my);
if (getWidth() != tmpWidth || getHeight() != tmpHeight) {
updateWidgets();
}
}
void InventoryWindow::updateWidgets()
{
int width = getContent()->getWidth();
int height = getContent()->getHeight();
int columns = width / 24;
if (columns < 1)
{
columns = 1;
}
// Resize widgets
mUseButton->setPosition(8, height - 24);
mDropButton->setPosition(48 + 16, height - 24);
mInvenScroll->setSize(width - 16, height - 110);
mItemNameLabel->setPosition(8,
mInvenScroll->getY() + mInvenScroll->getHeight() + 4);
mItemEffectLabel->setPosition(8,
mItemNameLabel->getY() + mItemNameLabel->getHeight() + 4);
mItemDescriptionLabel->setPosition(8,
mItemEffectLabel->getY() + mItemEffectLabel->getHeight() + 4);
}
void InventoryWindow::updateButtons()
{
Item *item;
if ((item = mItems->getItem()) && item->isEquipment())
{
if (item->isEquipped()) {
mUseButton->setCaption("Unequip");
}
else {
mUseButton->setCaption("Equip");
}
}
else {
mUseButton ->setCaption("Use");
}
mUseButton->setEnabled(!!item);
mDropButton->setEnabled(!!item);
}
Item* InventoryWindow::getItem()
{
return mItems->getItem();
}
void InventoryWindow::loadWindowState()
{
Window::loadWindowState();
updateWidgets();
}
void InventoryWindow::setDefaultSize(int defaultX, int defaultY, int defaultWidth, int defaultHeight)
{
Window::setDefaultSize(defaultX, defaultY, defaultWidth, defaultHeight);
}
void InventoryWindow::resetToDefaultSize()
{
Window::resetToDefaultSize();
updateWidgets();
}