/*
 * This file is part of the AzerothCore Project. See AUTHORS file for Copyright information
 *
 * 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; either version 3 of the License, or (at your
 * option) any later version.
 *
 * 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 General Public License along
 * with this program. If not, see .
 */
#include "PlayerCommand.h"
#include "Language.h"
#include "Player.h"
#include "SpellInfo.h"
#include "SpellMgr.h"
bool Acore::PlayerCommand::HandleLearnSpellCommand(ChatHandler* handler, Player* targetPlayer, SpellInfo const* spell, Optional allRanks)
{
    if (!SpellMgr::IsSpellValid(spell))
    {
        handler->SendErrorMessage(LANG_COMMAND_SPELL_BROKEN, spell->Id);
        return false;
    }
    if (!allRanks && targetPlayer->HasSpell(spell->Id))
    {
        if (targetPlayer == handler->GetPlayer())
        {
            handler->SendErrorMessage(LANG_YOU_KNOWN_SPELL);
        }
        else
        {
            handler->SendErrorMessage(LANG_TARGET_KNOWN_SPELL, handler->GetNameLink(targetPlayer).c_str());
        }
        return false;
    }
    targetPlayer->learnSpell(spell->Id, false);
    if (allRanks)
    {
        uint32 spellId = spell->Id;
        while ((spellId = sSpellMgr->GetNextSpellInChain(spellId)))
        {
            targetPlayer->learnSpell(spellId, false);
        }
    }
    if (GetTalentSpellCost(spell->GetFirstRankSpell()->Id))
    {
        targetPlayer->SendTalentsInfoData(false);
    }
    return true;
}
bool Acore::PlayerCommand::HandleUnlearnSpellCommand(ChatHandler* handler, Player* target, SpellInfo const* spell, Optional allRanks)
{
    uint32 spellId = spell->Id;
    if (allRanks)
    {
        spellId = sSpellMgr->GetFirstSpellInChain(spellId);
    }
    if (target->HasSpell(spellId))
    {
        target->removeSpell(spellId, SPEC_MASK_ALL, false);
    }
    else
    {
        handler->SendSysMessage(LANG_FORGET_SPELL);
    }
    if (GetTalentSpellCost(spellId))
    {
        target->SendTalentsInfoData(false);
    }
    return true;
}