tibia-client/src/otclient/net/protocolgamesend.cpp

737 lines
17 KiB
C++
Raw Normal View History

2011-08-28 15:17:58 +02:00
/*
2012-01-02 17:58:37 +01:00
* Copyright (c) 2010-2012 OTClient <https://github.com/edubart/otclient>
2011-08-28 15:17:58 +02:00
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
2011-08-15 16:11:24 +02:00
#include "protocolgame.h"
2011-08-16 02:30:31 +02:00
#include <framework/net/rsa.h>
2012-05-12 13:55:22 +02:00
/*
ClientEquipObject
ClientRefreshContainer
ClientMount
ClientRuleViolationReport
ClientGetItemInfo
ClientMarketLeave
ClientMarketBrowse
ClientMarketCreate
ClientMarketCancel
ClientMarketAccept
ClientExtendedOpcode = 254 // otclient only
*/
void ProtocolGame::sendLoginPacket(uint challangeTimestamp, uint8 challangeRandom)
2011-08-16 02:30:31 +02:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
2011-08-16 02:30:31 +02:00
2012-02-08 22:23:15 +01:00
msg.addU8(Proto::ClientEnterGame);
msg.addU16(Proto::ClientOs);
2012-02-08 22:23:15 +01:00
msg.addU16(Proto::ClientVersion);
int paddingBytes = 128;
2012-02-08 22:23:15 +01:00
msg.addU8(0); // first RSA byte must be 0
paddingBytes -= 1;
2011-08-16 02:30:31 +02:00
2011-08-16 05:27:46 +02:00
// xtea key
generateXteaKey();
2012-02-08 22:23:15 +01:00
msg.addU32(m_xteaKey[0]);
msg.addU32(m_xteaKey[1]);
msg.addU32(m_xteaKey[2]);
msg.addU32(m_xteaKey[3]);
msg.addU8(0); // is gm set?
paddingBytes -= 17;
2012-05-11 20:35:17 +02:00
#if PROTOCOL>=854
enableChecksum();
2012-02-08 22:23:15 +01:00
msg.addString(m_accountName);
paddingBytes -= 2 + m_accountName.length();
2012-02-08 22:23:15 +01:00
msg.addString(m_characterName);
paddingBytes -= 2 + m_characterName.length();
2012-02-08 22:23:15 +01:00
msg.addString(m_accountPassword);
paddingBytes -= 2 + m_accountPassword.length();
2011-08-16 02:30:31 +02:00
msg.addU32(challangeTimestamp);
msg.addU8(challangeRandom);
paddingBytes -= 5;
2012-05-11 20:35:17 +02:00
#else // PROTOCOL>=810
msg.addU32(Fw::fromstring<uint32>(m_accountName));
msg.addString(m_characterName);
msg.addString(m_accountPassword);
paddingBytes -= 8 + m_characterName.length() + m_accountPassword.length();
#endif
2011-08-16 02:30:31 +02:00
2011-08-16 06:24:20 +02:00
// complete the 128 bytes for rsa encryption with zeros
msg.addPaddingBytes(paddingBytes);
2011-08-16 02:30:31 +02:00
2011-08-16 05:27:46 +02:00
// encrypt with RSA
Rsa::encrypt((char*)msg.getWriteBuffer() - 128, 128, Proto::RSA);
2011-08-16 02:30:31 +02:00
2012-02-08 22:23:15 +01:00
send(msg);
2011-08-16 02:30:31 +02:00
2011-08-16 05:27:46 +02:00
enableXteaEncryption();
2011-08-16 02:30:31 +02:00
}
2011-08-15 16:11:24 +02:00
void ProtocolGame::sendLogout()
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientLeaveGame);
send(msg);
2011-08-15 16:11:24 +02:00
}
2012-05-12 13:55:22 +02:00
void ProtocolGame::sendPing()
{
OutputMessage msg;
msg.addU8(Proto::ClientPing);
send(msg);
}
void ProtocolGame::sendPingBack()
2011-08-15 16:11:24 +02:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
2012-05-12 13:55:22 +02:00
msg.addU8(Proto::ClientPingBack);
2012-02-08 22:23:15 +01:00
send(msg);
2011-08-15 16:11:24 +02:00
}
void ProtocolGame::sendAutoWalk(const std::vector<Otc::Direction>& path)
2012-02-08 22:23:15 +01:00
{
OutputMessage msg;
msg.addU8(Proto::ClientAutoWalk);
2012-02-08 22:23:15 +01:00
msg.addU8(path.size());
for(Otc::Direction dir : path) {
uint8 byte;
switch(dir) {
case Otc::East:
byte = 1;
break;
case Otc::NorthEast:
byte = 2;
break;
case Otc::North:
byte = 3;
break;
case Otc::NorthWest:
byte = 4;
break;
case Otc::West:
byte = 5;
break;
case Otc::SouthWest:
byte = 6;
break;
case Otc::South:
byte = 7;
break;
case Otc::SouthEast:
byte = 8;
break;
default:
byte = 0;
break;
}
msg.addU8(byte);
}
2012-02-08 22:23:15 +01:00
send(msg);
}
2012-01-02 23:23:54 +01:00
2011-08-15 16:11:24 +02:00
void ProtocolGame::sendWalkNorth()
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientWalkNorth);
send(msg);
2011-08-15 16:11:24 +02:00
}
void ProtocolGame::sendWalkEast()
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientWalkEast);
send(msg);
2011-08-15 16:11:24 +02:00
}
void ProtocolGame::sendWalkSouth()
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientWalkSouth);
send(msg);
2011-08-15 16:11:24 +02:00
}
void ProtocolGame::sendWalkWest()
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientWalkWest);
send(msg);
2011-08-15 16:11:24 +02:00
}
2012-02-08 22:23:15 +01:00
void ProtocolGame::sendStop()
2012-01-02 23:23:54 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientStop);
send(msg);
2012-01-02 23:23:54 +01:00
}
2011-08-29 07:54:28 +02:00
void ProtocolGame::sendWalkNorthEast()
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientWalkNorthEast);
send(msg);
2011-08-29 07:54:28 +02:00
}
void ProtocolGame::sendWalkSouthEast()
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientWalkSouthEast);
send(msg);
2011-08-29 07:54:28 +02:00
}
void ProtocolGame::sendWalkSouthWest()
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientWalkSouthWest);
send(msg);
2011-08-29 07:54:28 +02:00
}
void ProtocolGame::sendWalkNorthWest()
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientWalkNorthWest);
send(msg);
2011-08-29 07:54:28 +02:00
}
void ProtocolGame::sendTurnNorth()
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientTurnNorth);
send(msg);
}
void ProtocolGame::sendTurnEast()
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientTurnEast);
send(msg);
}
void ProtocolGame::sendTurnSouth()
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientTurnSouth);
send(msg);
}
void ProtocolGame::sendTurnWest()
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientTurnWest);
send(msg);
}
2011-09-03 00:52:40 +02:00
2012-05-12 13:55:22 +02:00
void ProtocolGame::sendEquipItem(int itemId, int countOrSubType)
{
OutputMessage msg;
msg.addU8(Proto::ClientEquipItem);
msg.addU16(itemId);
msg.addU8(countOrSubType);
send(msg);
}
2012-02-08 22:23:15 +01:00
void ProtocolGame::sendMove(const Position& fromPos, int thingId, int stackpos, const Position& toPos, int count)
2012-01-02 23:23:54 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientMove);
addPosition(msg, fromPos);
msg.addU16(thingId);
msg.addU8(stackpos);
addPosition(msg, toPos);
msg.addU8(count);
send(msg);
2012-01-02 23:23:54 +01:00
}
void ProtocolGame::sendInspectNpcTrade(int itemId, int count)
2012-01-02 23:23:54 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientInspectNpcTrade);
msg.addU16(itemId);
2012-02-08 22:23:15 +01:00
msg.addU8(count);
send(msg);
2012-01-02 23:23:54 +01:00
}
2012-04-28 02:44:55 +02:00
void ProtocolGame::sendBuyItem(int itemId, int subType, int amount, bool ignoreCapacity, bool buyWithBackpack)
2012-01-02 23:23:54 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientBuyItem);
msg.addU16(itemId);
2012-04-28 02:44:55 +02:00
msg.addU8(subType);
2012-02-08 22:23:15 +01:00
msg.addU8(amount);
msg.addU8(ignoreCapacity ? 0x01 : 0x00);
msg.addU8(buyWithBackpack ? 0x01 : 0x00);
send(msg);
2012-01-02 23:23:54 +01:00
}
2012-04-28 02:44:55 +02:00
void ProtocolGame::sendSellItem(int itemId, int subType, int amount, bool ignoreEquipped)
2012-01-02 23:23:54 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientSellItem);
msg.addU16(itemId);
2012-04-28 02:44:55 +02:00
msg.addU8(subType);
2012-02-08 22:23:15 +01:00
msg.addU8(amount);
msg.addU8(ignoreEquipped ? 0x01 : 0x00);
send(msg);
2012-01-02 23:23:54 +01:00
}
2012-02-08 22:23:15 +01:00
void ProtocolGame::sendCloseNpcTrade()
2012-01-02 23:23:54 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientCloseNpcTrade);
send(msg);
2012-01-02 23:23:54 +01:00
}
void ProtocolGame::sendRequestTrade(const Position& pos, int thingId, int stackpos, uint creatureId)
2012-01-02 23:23:54 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientRequestTrade);
addPosition(msg, pos);
msg.addU16(thingId);
msg.addU8(stackpos);
msg.addU32(creatureId);
2012-02-08 22:23:15 +01:00
send(msg);
2012-01-02 23:23:54 +01:00
}
2012-02-08 22:23:15 +01:00
void ProtocolGame::sendInspectTrade(bool counterOffer, int index)
2012-01-02 23:23:54 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientInspectTrade);
msg.addU8(counterOffer ? 0x01 : 0x00);
msg.addU8(index);
send(msg);
2012-01-02 23:23:54 +01:00
}
void ProtocolGame::sendAcceptTrade()
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientAcceptTrade);
send(msg);
2012-01-02 23:23:54 +01:00
}
void ProtocolGame::sendRejectTrade()
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientRejectTrade);
send(msg);
2012-01-02 23:23:54 +01:00
}
void ProtocolGame::sendUseItem(const Position& position, int itemId, int stackpos, int index)
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientUseItem);
addPosition(msg, position);
msg.addU16(itemId);
msg.addU8(stackpos);
msg.addU8(index);
send(msg);
}
2012-02-08 22:23:15 +01:00
void ProtocolGame::sendUseItemWith(const Position& fromPos, int itemId, int fromStackpos, const Position& toPos, int toThingId, int toStackpos)
2012-01-03 14:13:54 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientUseItemWith);
addPosition(msg, fromPos);
msg.addU16(itemId);
msg.addU8(fromStackpos);
addPosition(msg, toPos);
msg.addU16(toThingId);
msg.addU8(toStackpos);
send(msg);
2012-01-03 14:13:54 +01:00
}
2012-01-02 23:23:54 +01:00
2012-01-17 23:28:55 +01:00
void ProtocolGame::sendUseOnCreature(const Position& pos, int thingId, int stackpos, uint creatureId)
2012-01-03 14:13:54 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientUseOnCreature);
addPosition(msg, pos);
msg.addU16(thingId);
msg.addU8(stackpos);
msg.addU32(creatureId);
send(msg);
2012-01-03 14:13:54 +01:00
}
2012-01-02 23:23:54 +01:00
2012-01-03 14:13:54 +01:00
void ProtocolGame::sendRotateItem(const Position& pos, int thingId, int stackpos)
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientRotateItem);
addPosition(msg, pos);
msg.addU16(thingId);
msg.addU8(stackpos);
send(msg);
2012-01-03 14:13:54 +01:00
}
2012-01-02 23:23:54 +01:00
2012-01-03 14:13:54 +01:00
void ProtocolGame::sendCloseContainer(int containerId)
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientCloseContainer);
msg.addU8(containerId);
send(msg);
2012-01-03 14:13:54 +01:00
}
2012-01-02 23:23:54 +01:00
2012-01-03 14:13:54 +01:00
void ProtocolGame::sendUpContainer(int containerId)
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientUpContainer);
msg.addU8(containerId);
send(msg);
2012-01-03 14:13:54 +01:00
}
2012-01-02 23:23:54 +01:00
void ProtocolGame::sendEditText(uint id, const std::string& text)
2012-01-03 14:13:54 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientEditText);
msg.addU32(id);
2012-02-08 22:23:15 +01:00
msg.addString(text);
send(msg);
2012-01-03 14:13:54 +01:00
}
2012-01-02 23:23:54 +01:00
2012-05-01 02:53:02 +02:00
void ProtocolGame::sendEditList(uint id, int doorId, const std::string& text)
2012-01-03 14:13:54 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientEditList);
2012-05-01 02:53:02 +02:00
msg.addU8(doorId);
2012-02-08 22:23:15 +01:00
msg.addU32(id);
msg.addString(text);
send(msg);
2012-01-03 14:13:54 +01:00
}
2012-01-02 23:23:54 +01:00
2012-02-08 22:23:15 +01:00
void ProtocolGame::sendLook(const Position& position, int thingId, int stackpos)
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientLook);
addPosition(msg, position);
msg.addU16(thingId);
msg.addU8(stackpos);
send(msg);
}
2012-02-03 01:25:18 +01:00
void ProtocolGame::sendTalk(Otc::SpeakType speakType, int channelId, const std::string& receiver, const std::string& message)
2011-11-03 17:07:51 +01:00
{
2011-11-03 17:26:17 +01:00
if(message.length() > 255 || message.length() <= 0)
2011-11-03 17:07:51 +01:00
return;
2012-02-03 01:25:18 +01:00
int serverSpeakType = Proto::translateSpeakTypeToServer(speakType);
2012-01-14 02:37:15 +01:00
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientTalk);
msg.addU8(serverSpeakType);
2011-11-03 17:07:51 +01:00
2012-02-03 01:25:18 +01:00
switch(serverSpeakType) {
2012-05-12 03:44:13 +02:00
case Proto::ServerSpeakPrivateFrom:
case Proto::ServerSpeakPrivateRedFrom:
2012-02-08 22:23:15 +01:00
msg.addString(receiver);
2011-11-03 17:07:51 +01:00
break;
2012-02-03 01:25:18 +01:00
case Proto::ServerSpeakChannelYellow:
case Proto::ServerSpeakChannelRed:
2012-02-08 22:23:15 +01:00
msg.addU16(channelId);
2011-11-03 17:07:51 +01:00
break;
}
2012-02-08 22:23:15 +01:00
msg.addString(message);
send(msg);
2011-11-03 17:07:51 +01:00
}
2012-02-08 22:23:15 +01:00
void ProtocolGame::sendRequestChannels()
2012-01-03 14:13:54 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientRequestChannels);
send(msg);
2012-01-03 14:13:54 +01:00
}
2012-01-02 23:23:54 +01:00
2012-01-03 14:13:54 +01:00
void ProtocolGame::sendJoinChannel(int channelId)
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientJoinChannel);
msg.addU16(channelId);
send(msg);
2012-01-03 14:13:54 +01:00
}
2012-01-02 23:23:54 +01:00
2012-01-03 14:13:54 +01:00
void ProtocolGame::sendLeaveChannel(int channelId)
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientLeaveChannel);
msg.addU16(channelId);
send(msg);
2012-01-03 14:13:54 +01:00
}
2012-01-02 23:23:54 +01:00
2012-02-02 23:29:44 +01:00
void ProtocolGame::sendOpenPrivateChannel(const std::string& receiver)
2012-01-03 14:13:54 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientOpenPrivateChannel);
msg.addString(receiver);
send(msg);
2012-01-03 14:13:54 +01:00
}
2012-01-02 23:23:54 +01:00
2012-01-03 14:13:54 +01:00
void ProtocolGame::sendCloseNpcChannel()
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientCloseNpcChannel);
send(msg);
2012-01-03 14:13:54 +01:00
}
2012-01-02 23:23:54 +01:00
2012-02-08 22:23:15 +01:00
void ProtocolGame::sendChangeFightModes(Otc::FightModes fightMode, Otc::ChaseModes chaseMode, bool safeFight)
2012-01-03 14:13:54 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientChangeFightModes);
msg.addU8(fightMode);
msg.addU8(chaseMode);
msg.addU8(safeFight ? 0x01: 0x00);
send(msg);
2012-01-03 14:13:54 +01:00
}
2012-01-02 23:23:54 +01:00
2012-01-12 20:20:18 +01:00
void ProtocolGame::sendAttack(uint creatureId)
2012-01-03 14:13:54 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientAttack);
msg.addU32(creatureId);
msg.addU32(0);
msg.addU32(0);
send(msg);
2012-01-03 14:13:54 +01:00
}
2012-01-02 23:23:54 +01:00
2012-01-12 20:20:18 +01:00
void ProtocolGame::sendFollow(uint creatureId)
2012-01-03 14:13:54 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientFollow);
msg.addU32(creatureId);
send(msg);
2012-01-03 14:13:54 +01:00
}
2012-01-02 23:23:54 +01:00
2012-01-12 20:20:18 +01:00
void ProtocolGame::sendInviteToParty(uint creatureId)
2012-01-03 14:13:54 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientInviteToParty);
msg.addU32(creatureId);
send(msg);
2012-01-03 14:13:54 +01:00
}
2012-01-02 23:23:54 +01:00
2012-01-12 20:20:18 +01:00
void ProtocolGame::sendJoinParty(uint creatureId)
2012-01-03 14:13:54 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientJoinParty);
msg.addU32(creatureId);
send(msg);
2012-01-03 14:13:54 +01:00
}
2012-01-02 23:23:54 +01:00
2012-01-12 20:20:18 +01:00
void ProtocolGame::sendRevokeInvitation(uint creatureId)
2012-01-03 14:13:54 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientRevokeInvitation);
msg.addU32(creatureId);
send(msg);
2012-01-03 14:13:54 +01:00
}
2012-01-02 23:23:54 +01:00
2012-01-12 20:20:18 +01:00
void ProtocolGame::sendPassLeadership(uint creatureId)
2012-01-03 14:13:54 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientPassLeadership);
msg.addU32(creatureId);
send(msg);
2012-01-03 14:13:54 +01:00
}
2012-01-02 23:23:54 +01:00
2012-01-03 14:13:54 +01:00
void ProtocolGame::sendLeaveParty()
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientLeaveParty);
send(msg);
2012-01-03 14:13:54 +01:00
}
2012-01-02 23:23:54 +01:00
2012-01-03 14:13:54 +01:00
void ProtocolGame::sendShareExperience(bool active, int unknown)
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientShareExperience);
msg.addU8(active ? 0x01 : 0x00);
2012-05-12 03:44:13 +02:00
#if PROTOCOL<910
2012-02-08 22:23:15 +01:00
msg.addU8(unknown);
2012-05-12 03:44:13 +02:00
#endif
2012-02-08 22:23:15 +01:00
send(msg);
2012-01-03 14:13:54 +01:00
}
2012-01-02 23:23:54 +01:00
2012-02-08 22:23:15 +01:00
void ProtocolGame::sendOpenOwnChannel()
2012-01-03 14:13:54 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientOpenOwnChannel);
send(msg);
2012-01-03 14:13:54 +01:00
}
2012-01-02 23:23:54 +01:00
2012-02-08 22:23:15 +01:00
void ProtocolGame::sendInviteToOwnChannel(const std::string& name)
2012-01-03 14:13:54 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientInviteToOwnChannel);
msg.addString(name);
send(msg);
2012-01-03 14:13:54 +01:00
}
2012-01-02 23:23:54 +01:00
2012-02-08 22:23:15 +01:00
void ProtocolGame::sendExcludeFromOwnChannel(const std::string& name)
2012-01-03 14:13:54 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientExcludeFromOwnChannel);
msg.addString(name);
send(msg);
2012-01-03 14:13:54 +01:00
}
2012-01-02 23:23:54 +01:00
2012-02-08 22:23:15 +01:00
void ProtocolGame::sendCancelAttackAndFollow()
2012-01-03 14:13:54 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientCancelAttackAndFollow);
send(msg);
2012-01-03 14:13:54 +01:00
}
2012-01-02 23:23:54 +01:00
2012-02-08 22:23:15 +01:00
void ProtocolGame::sendRefreshContainer()
2012-01-03 14:13:54 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientRefreshContainer);
send(msg);
2012-01-03 14:13:54 +01:00
}
2012-01-02 23:23:54 +01:00
2012-02-08 22:23:15 +01:00
void ProtocolGame::sendRequestOutfit()
2011-11-14 23:32:55 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientRequestOutfit);
send(msg);
2011-11-14 23:32:55 +01:00
}
2012-02-08 22:23:15 +01:00
void ProtocolGame::sendChangeOutfit(const Outfit& outfit)
2011-11-14 23:47:36 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientChangeOutfit);
msg.addU16(outfit.getId());
msg.addU8(outfit.getHead());
msg.addU8(outfit.getBody());
msg.addU8(outfit.getLegs());
msg.addU8(outfit.getFeet());
msg.addU8(outfit.getAddons());
2012-05-12 13:55:22 +02:00
send(msg);
}
2011-11-14 23:47:36 +01:00
2012-05-12 13:55:22 +02:00
void ProtocolGame::sendMount(bool mount)
{
OutputMessage msg;
msg.addU8(Proto::ClientMount);
msg.addU8(mount);
2012-02-08 22:23:15 +01:00
send(msg);
2011-11-14 23:47:36 +01:00
}
2011-09-03 00:52:40 +02:00
void ProtocolGame::sendAddVip(const std::string& name)
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientAddVip);
msg.addString(name);
send(msg);
2011-09-03 00:52:40 +02:00
}
2012-01-12 20:20:18 +01:00
void ProtocolGame::sendRemoveVip(uint playerId)
2011-09-03 00:52:40 +02:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientRemoveVip);
msg.addU32(playerId);
send(msg);
2011-09-03 00:52:40 +02:00
}
void ProtocolGame::sendBugReport(const std::string& comment)
{
OutputMessage msg;
msg.addU8(Proto::ClientBugReport);
msg.addString(comment);
send(msg);
}
void ProtocolGame::sendRuleVilation(const std::string& target, int reason, int action, const std::string& comment, const std::string& statement, int statementId, bool ipBanishment)
{
OutputMessage msg;
msg.addU8(Proto::ClientRuleViolation);
msg.addString(target);
msg.addU8(reason);
msg.addU8(action);
msg.addString(comment);
msg.addString(statement);
msg.addU16(statementId);
msg.addU8(ipBanishment);
send(msg);
}
void ProtocolGame::sendDebugReport(const std::string& a, const std::string& b, const std::string& c, const std::string& d)
{
OutputMessage msg;
msg.addU8(Proto::ClientDebugReport);
msg.addString(a);
msg.addString(b);
msg.addString(c);
msg.addString(d);
send(msg);
}
2012-02-08 22:23:15 +01:00
void ProtocolGame::sendRequestQuestLog()
2012-01-03 14:13:54 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientRequestQuestLog);
send(msg);
2012-01-03 14:13:54 +01:00
}
2012-01-02 23:23:54 +01:00
void ProtocolGame::sendRequestQuestLine(int questId)
2012-01-03 14:13:54 +01:00
{
2012-02-08 22:23:15 +01:00
OutputMessage msg;
msg.addU8(Proto::ClientRequestQuestLine);
msg.addU16(questId);
2012-02-08 22:23:15 +01:00
send(msg);
2012-01-03 14:13:54 +01:00
}
2012-01-02 23:23:54 +01:00
2012-05-12 13:55:22 +02:00
void ProtocolGame::sendNewNewRuleViolation(int reason, int action, const std::string& characterName, const std::string& comment, const std::string& translation)
{
OutputMessage msg;
msg.addU8(Proto::ClientNewRuleViolation);
msg.addU8(reason);
msg.addU8(action);
msg.addString(characterName);
msg.addString(comment);
msg.addString(translation);
send(msg);
}
void ProtocolGame::sendRequestItemInfo(int itemId, int index)
{
OutputMessage msg;
msg.addU8(Proto::ClientRequestItemInfo);
msg.addU8(1); // count, 1 for just one item
msg.addU16(itemId);
msg.addU8(index);
send(msg);
}
void ProtocolGame::sendExtendedOpcode(uint8 opcode, const std::string& buffer)
{
OutputMessage msg;
msg.addU8(Proto::ClientExtendedOpcode);
msg.addU8(opcode);
msg.addString(buffer);
send(msg);
}
void ProtocolGame::addPosition(OutputMessage& msg, const Position& position)
{
msg.addU16(position.x);
msg.addU16(position.y);
msg.addU8(position.z);
}