diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-06-24 19:34:08 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-06-24 21:41:20 +0300 |
commit | 3b537e109df901df3da4c706f827c8d3d39a7238 (patch) | |
tree | ae5a83f71954aaeb45ce3f8d609e6f4a8dc0678c /src/net/eathena/partyhandler.cpp | |
parent | 4ef35e9ef757da1db724c5d784048601144c934c (diff) | |
download | plus-3b537e109df901df3da4c706f827c8d3d39a7238.tar.gz plus-3b537e109df901df3da4c706f827c8d3d39a7238.tar.bz2 plus-3b537e109df901df3da4c706f827c8d3d39a7238.tar.xz plus-3b537e109df901df3da4c706f827c8d3d39a7238.zip |
Add basic support for eathena stable.
Can register, create char, connect to map server and get map info.
Diffstat (limited to 'src/net/eathena/partyhandler.cpp')
-rw-r--r-- | src/net/eathena/partyhandler.cpp | 210 |
1 files changed, 210 insertions, 0 deletions
diff --git a/src/net/eathena/partyhandler.cpp b/src/net/eathena/partyhandler.cpp new file mode 100644 index 000000000..2f525c9d5 --- /dev/null +++ b/src/net/eathena/partyhandler.cpp @@ -0,0 +1,210 @@ +/* + * The ManaPlus Client + * Copyright (C) 2008 Lloyd Bryant <lloyd_bryant@netzero.net> + * Copyright (C) 2011-2012 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/partyhandler.h" + +#include "actorspritemanager.h" +#include "localplayer.h" +#include "logger.h" + +#include "net/messagein.h" + +#include "net/eathena/protocol.h" + +#include "net/eathena/gui/partytab.h" + +#include "utils/gettext.h" + +#include "debug.h" + +extern Net::PartyHandler *partyHandler; + +namespace EAthena +{ + +PartyHandler::PartyHandler() : + Ea::PartyHandler() +{ + static const uint16_t _messages[] = + { + SMSG_PARTY_CREATE, + SMSG_PARTY_INFO, + SMSG_PARTY_INVITE_RESPONSE, + SMSG_PARTY_INVITED, + SMSG_PARTY_SETTINGS, + SMSG_PARTY_MOVE, + SMSG_PARTY_LEAVE, + SMSG_PARTY_UPDATE_HP, + SMSG_PARTY_UPDATE_COORDS, + SMSG_PARTY_MESSAGE, + 0 + }; + handledMessages = _messages; + partyHandler = this; +} + +PartyHandler::~PartyHandler() +{ +} + +void PartyHandler::handleMessage(Net::MessageIn &msg) +{ + switch (msg.getId()) + { + case SMSG_PARTY_CREATE: + processPartyCreate(msg); + break; + case SMSG_PARTY_INFO: + processPartyInfo(msg); + break; + case SMSG_PARTY_INVITE_RESPONSE: + processPartyInviteResponse(msg); + break; + case SMSG_PARTY_INVITED: + processPartyInvited(msg); + break; + case SMSG_PARTY_SETTINGS: + processPartySettings(msg); + break; + case SMSG_PARTY_MOVE: + processPartyMove(msg); + break; + case SMSG_PARTY_LEAVE: + processPartyLeave(msg); + break; + case SMSG_PARTY_UPDATE_HP: + processPartyUpdateHp(msg); + break; + case SMSG_PARTY_UPDATE_COORDS: + processPartyUpdateCoords(msg); + break; + case SMSG_PARTY_MESSAGE: + processPartyMessage(msg); + break; + + default: + break; + } +} + +void PartyHandler::create(const std::string &name) +{ + MessageOut outMsg(CMSG_PARTY_CREATE); + outMsg.writeString(name.substr(0, 23), 24); +} + +void PartyHandler::invite(Being *being) +{ + if (being) + { + MessageOut outMsg(CMSG_PARTY_INVITE); + outMsg.writeInt32(being->getId()); + } +} + +void PartyHandler::invite(const std::string &name) +{ + if (!actorSpriteManager) + return; + + Being* being = actorSpriteManager->findBeingByName(name, Being::PLAYER); + if (being) + { + MessageOut outMsg(CMSG_PARTY_INVITE); + outMsg.writeInt32(being->getId()); + } +} + +void PartyHandler::inviteResponse(const std::string &inviter A_UNUSED, + bool accept) +{ + if (player_node) + { + MessageOut outMsg(CMSG_PARTY_INVITED); + outMsg.writeInt32(player_node->getId()); + outMsg.writeInt32(accept ? 1 : 0); + } +} + +void PartyHandler::leave() +{ + MessageOut outMsg(CMSG_PARTY_LEAVE); +} + +void PartyHandler::kick(Being *being) +{ + if (being) + { + MessageOut outMsg(CMSG_PARTY_KICK); + outMsg.writeInt32(being->getId()); + outMsg.writeString("", 24); //Unused + } +} + +void PartyHandler::kick(const std::string &name) +{ + if (!Ea::taParty) + return; + + PartyMember *m = Ea::taParty->getMember(name); + if (!m) + { + if (Ea::partyTab) + { + Ea::partyTab->chatLog(strprintf(_("%s is not in your party!"), + name.c_str()), BY_SERVER); + } + return; + } + + MessageOut outMsg(CMSG_PARTY_KICK); + outMsg.writeInt32(m->getID()); + outMsg.writeString(name, 24); //Unused +} + +void PartyHandler::chat(const std::string &text) +{ + MessageOut outMsg(CMSG_PARTY_MESSAGE); + outMsg.writeInt16(static_cast<int16_t>(text.length() + 4)); + outMsg.writeString(text, static_cast<int>(text.length())); +} + +void PartyHandler::setShareExperience(PartyShare share) +{ + if (share == PARTY_SHARE_NOT_POSSIBLE) + return; + + MessageOut outMsg(CMSG_PARTY_SETTINGS); + outMsg.writeInt16(share); + outMsg.writeInt16(mShareItems); +} + +void PartyHandler::setShareItems(PartyShare share) +{ + if (share == PARTY_SHARE_NOT_POSSIBLE) + return; + + MessageOut outMsg(CMSG_PARTY_SETTINGS); + outMsg.writeInt16(mShareExp); + outMsg.writeInt16(share); +} + +} // namespace EAthena |