#include "tile.h"
#include "item.h"
#include "tibiadat.h"

Tile::Tile()
{
    m_ground = NULL;
}

void Tile::addThing(Thing *thing)
{
    if(!thing)
        return;

    if(thing->getType() == Thing::TYPE_ITEM) {
        Item *item = thing->getItem();
        if(item) {
            ItemAttributes *itemAttributes = g_tibiaDat.getItemAttributes(item->getId());

            if(itemAttributes->group == ITEM_GROUP_GROUND)
                m_ground = item;
            else {
                if(itemAttributes->alwaysOnTop)
                    m_itemsTop.push_back(thing);
                else
                    m_itemsBot.push_back(thing);
            }
        }
    }
    else if(thing->getType() == Thing::TYPE_CREATURE) {

    }
}

void Tile::draw(int x, int y, int z)
{
    if(m_ground)
        m_ground->draw(x, y, z);

    for(auto it = m_itemsTop.begin(), end = m_itemsTop.end(); it != end; ++it)
        (*it)->draw(x, y, z);

    for(auto it = m_creatures.begin(), end = m_creatures.end(); it != end; ++it)
        (*it)->draw(x, y, z);

    for(auto it = m_itemsBot.begin(), end = m_itemsBot.end(); it != end; ++it)
        (*it)->draw(x, y, z);

}

bool Tile::hasGround()
{
    return m_ground != 0;
}

int Tile::getStackSize()
{
    int ret = 0;
    if(m_ground)
        ret++;

    ret += m_itemsBot.size();
    ret += m_creatures.size();
    ret += m_itemsTop.size();

    return ret;
}