/*
* The ManaPlus Client
* Copyright (C) 2013-2014 The ManaPlus Developers
*
* This file is part of The ManaPlus Client.
*
* This program 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.
*
* 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 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 <http://www.gnu.org/licenses/>.
*/
#include "net/eathena/pethandler.h"
#include "actormanager.h"
#include "inventory.h"
#include "notifymanager.h"
#include "being/petinfo.h"
#include "being/playerinfo.h"
#include "gui/chatconsts.h"
#include "gui/windows/eggselectiondialog.h"
#include "net/chathandler.h"
#include "net/net.h"
#include "net/ea/eaprotocol.h"
#include "net/eathena/menu.h"
#include "net/eathena/messageout.h"
#include "net/eathena/protocol.h"
#include "resources/notifytypes.h"
#include "debug.h"
extern Net::PetHandler *petHandler;
namespace EAthena
{
PetHandler::PetHandler() :
MessageHandler(),
mRandCounter(1000)
{
static const uint16_t _messages[] =
{
SMSG_PET_MESSAGE,
SMSG_PET_ROULETTE,
SMSG_PET_EGGS_LIST,
SMSG_PET_DATA,
SMSG_PET_STATUS,
0
};
handledMessages = _messages;
petHandler = this;
}
void PetHandler::handleMessage(Net::MessageIn &msg)
{
BLOCK_START("PetHandler::handleMessage")
switch (msg.getId())
{
case SMSG_PET_MESSAGE:
processPetMessage(msg);
break;
case SMSG_PET_ROULETTE:
processPetRoulette(msg);
break;
case SMSG_PET_EGGS_LIST:
processEggsList(msg);
break;
case SMSG_PET_DATA:
processPetData(msg);
break;
case SMSG_PET_STATUS:
processPetStatus(msg);
break;
default:
break;
}
BLOCK_END("PetHandler::handleMessage")
}
void PetHandler::move(const Being *const being A_UNUSED,
const int petId A_UNUSED,
const int x1 A_UNUSED, const int y1 A_UNUSED,
const int x2 A_UNUSED, const int y2 A_UNUSED) const
{
}
void PetHandler::spawn(const Being *const being A_UNUSED,
const int petId A_UNUSED,
const int x A_UNUSED, const int y A_UNUSED) const
{
}
void PetHandler::emote(const uint8_t emoteId, const int petId A_UNUSED)
{
mRandCounter ++;
if (mRandCounter > 10000)
mRandCounter = 1000;
chatHandler->talk(strprintf("\302\202\302e%dz%d",
static_cast<int>(emoteId), mRandCounter), GENERAL_CHANNEL);
}
void PetHandler::catchPet(const Being *const being) const
{
if (!being)
return;
createOutPacket(CMSG_PET_CATCH);
outMsg.writeInt32(being->getId(), "monster id");
}
void PetHandler::requestPetState(const int data) const
{
createOutPacket(CMSG_PET_REQUEST_STATE);
outMsg.writeInt32(data, "param");
}
void PetHandler::setName(const std::string &name) const
{
createOutPacket(CMSG_PET_SET_NAME);
outMsg.writeString(name, 24, "name");
}
void PetHandler::processPetMessage(Net::MessageIn &msg)
{
msg.readInt32("pet id");
msg.readInt32("param");
}
void PetHandler::processPetRoulette(Net::MessageIn &msg)
{
const uint8_t data = msg.readUInt8("data");
switch (data)
{
case 0:
NotifyManager::notify(NotifyTypes::PET_CATCH_FAILED);
break;
case 1:
NotifyManager::notify(NotifyTypes::PET_CATCH_SUCCESS);
break;
default:
NotifyManager::notify(NotifyTypes::PET_CATCH_UNKNOWN, data);
break;
}
}
void PetHandler::processEggsList(Net::MessageIn &msg)
{
const int count = (msg.readInt16("len") - 4) / 2;
menu = MenuType::Eggs;
SellDialog *const dialog = new EggSelectionDialog;
dialog->postInit();
Inventory *const inv = PlayerInfo::getInventory();
for (int f = 0; f < count; f ++)
{
const int index = msg.readInt16("index") - INVENTORY_OFFSET;
const Item *const item = inv->getItem(index);
if (item)
dialog->addItem(item, 0);
}
}
void PetHandler::processPetData(Net::MessageIn &msg)
{
const int cmd = msg.readUInt8("type");
const int id = msg.readInt32("pet id");
Being *const dstBeing = actorManager->findBeing(id);
const int data = msg.readInt32("data");
if (!cmd) // pre init
{
PetInfo *const info = new PetInfo;
info->id = id;
PlayerInfo::setPet(info);
PlayerInfo::setPetBeing(dstBeing);
return;
}
PetInfo *const info = PlayerInfo::getPet();
if (!info)
return;
switch (cmd)
{
case 1: // intimacy
info->intimacy = data;
break;
case 2: // hunger
info->hungry = data;
break;
case 3: // accesory
info->equip = data;
break;
case 4: // performance
info->performance = data;
break;
case 5: // hair style
info->hairStyle = data;
break;
default:
break;
}
}
void PetHandler::processPetStatus(Net::MessageIn &msg)
{
const std::string name = msg.readString(24, "pet name");
msg.readUInt8("rename flag");
const int level = msg.readInt16("level");
const int hungry = msg.readInt16("hungry");
const int intimacy = msg.readInt16("intimacy");
const int equip = msg.readInt16("equip");
const int race = msg.readInt16("class");
// Being *const being = PlayerInfo::getPetBeing();
// if (being)
// being->setLevel(level);
PetInfo *const info = PlayerInfo::getPet();
if (!info)
return;
info->level = level;
info->hungry = hungry;
info->intimacy = intimacy;
info->equip = equip;
info->race = race;
}
} // namespace EAthena