tibia-client/src/client/protocolgamesend.cpp

849 lines
22 KiB
C++
Raw Normal View History

2011-08-28 15:17:58 +02:00
/*
* Copyright (c) 2010-2013 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"
#include "game.h"
#include "client.h"
#include <framework/core/application.h>
#include <framework/platform/platform.h>
#include <framework/util/crypt.h>
void ProtocolGame::send(const OutputMessagePtr& outputMessage)
{
// avoid usage of automated sends (bot modules)
if(!g_game.checkBotProtection())
return;
Protocol::send(outputMessage);
}
void ProtocolGame::sendExtendedOpcode(uint8 opcode, const std::string& buffer)
{
if(m_enableSendExtendedOpcode) {
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientExtendedOpcode);
msg->addU8(opcode);
msg->addString(buffer);
send(msg);
} else {
2012-06-01 22:39:23 +02:00
g_logger.error(stdext::format("Unable to send extended opcode %d, extended opcodes are not enabled", opcode));
}
}
2011-08-16 02:30:31 +02:00
void ProtocolGame::sendLoginPacket(uint challengeTimestamp, uint8 challengeRandom)
2011-08-16 02:30:31 +02:00
{
OutputMessagePtr msg(new OutputMessage);
2011-08-16 02:30:31 +02:00
if(g_game.getProtocolVersion() == 760)
{
msg->addU16(0x20A);
msg->addU8(g_game.getOs());
}
else
{
msg->addU8(Proto::ClientPendingGame);
msg->addU16(g_game.getOs());
}
msg->addU16(g_game.getProtocolVersion());
if(g_game.getProtocolVersion() >= 971) {
msg->addU32(g_game.getClientVersion());
msg->addU8(0); // clientType
}
2012-02-08 22:23:15 +01:00
int offset = msg->getMessageSize();
msg->addU8(0); // first RSA byte must be 0
2011-08-16 02:30:31 +02:00
if(g_game.getProtocolVersion() >= 800)
{
// xtea key
generateXteaKey();
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?
}
if(g_game.getFeature(Otc::GameAccountNames))
msg->addString(m_accountName);
else
msg->addU32(stdext::from_string<uint32>(m_accountName));
msg->addString(m_characterName);
msg->addString(m_accountPassword);
if(g_game.getFeature(Otc::GameChallengeOnLogin)) {
msg->addU32(challengeTimestamp);
msg->addU8(challengeRandom);
}
2011-08-16 02:30:31 +02:00
std::string extended = callLuaField<std::string>("getLoginExtendedData");
if(!extended.empty())
msg->addString(extended);
// complete the bytes for rsa encryption with zeros
int paddingBytes = g_crypt.rsaGetSize() - (msg->getMessageSize() - offset);
assert(paddingBytes >= 0);
msg->addPaddingBytes(paddingBytes);
2011-08-16 02:30:31 +02:00
2011-08-16 05:27:46 +02:00
// encrypt with RSA
if(g_game.getProtocolVersion() >= 800)
msg->encryptRsa();
if(g_game.getFeature(Otc::GameProtocolChecksum))
enableChecksum();
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
if(g_game.getProtocolVersion() >= 800)
enableXteaEncryption();
2011-08-16 02:30:31 +02:00
}
2011-08-15 16:11:24 +02:00
void ProtocolGame::sendEnterGame()
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientEnterGame);
send(msg);
}
2011-08-15 16:11:24 +02:00
void ProtocolGame::sendLogout()
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientLeaveGame);
2012-02-08 22:23:15 +01:00
send(msg);
2011-08-15 16:11:24 +02:00
}
2012-05-12 13:55:22 +02:00
void ProtocolGame::sendPing()
{
if(g_game.getFeature(Otc::GameExtendedClientPing))
sendExtendedOpcode(2, "");
else {
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientPing);
Protocol::send(msg);
}
2012-05-12 13:55:22 +02:00
}
void ProtocolGame::sendPingBack()
2011-08-15 16:11:24 +02:00
{
OutputMessagePtr msg(new OutputMessage);
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
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientAutoWalk);
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()
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientWalkNorth);
2012-02-08 22:23:15 +01:00
send(msg);
2011-08-15 16:11:24 +02:00
}
void ProtocolGame::sendWalkEast()
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientWalkEast);
2012-02-08 22:23:15 +01:00
send(msg);
2011-08-15 16:11:24 +02:00
}
void ProtocolGame::sendWalkSouth()
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientWalkSouth);
2012-02-08 22:23:15 +01:00
send(msg);
2011-08-15 16:11:24 +02:00
}
void ProtocolGame::sendWalkWest()
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientWalkWest);
2012-02-08 22:23:15 +01:00
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
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientStop);
2012-02-08 22:23:15 +01:00
send(msg);
2012-01-02 23:23:54 +01:00
}
2011-08-29 07:54:28 +02:00
void ProtocolGame::sendWalkNorthEast()
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientWalkNorthEast);
2012-02-08 22:23:15 +01:00
send(msg);
2011-08-29 07:54:28 +02:00
}
void ProtocolGame::sendWalkSouthEast()
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientWalkSouthEast);
2012-02-08 22:23:15 +01:00
send(msg);
2011-08-29 07:54:28 +02:00
}
void ProtocolGame::sendWalkSouthWest()
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientWalkSouthWest);
2012-02-08 22:23:15 +01:00
send(msg);
2011-08-29 07:54:28 +02:00
}
void ProtocolGame::sendWalkNorthWest()
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientWalkNorthWest);
2012-02-08 22:23:15 +01:00
send(msg);
2011-08-29 07:54:28 +02:00
}
void ProtocolGame::sendTurnNorth()
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientTurnNorth);
2012-02-08 22:23:15 +01:00
send(msg);
}
void ProtocolGame::sendTurnEast()
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientTurnEast);
2012-02-08 22:23:15 +01:00
send(msg);
}
void ProtocolGame::sendTurnSouth()
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientTurnSouth);
2012-02-08 22:23:15 +01:00
send(msg);
}
void ProtocolGame::sendTurnWest()
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientTurnWest);
2012-02-08 22:23:15 +01:00
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)
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientEquipItem);
msg->addU16(itemId);
msg->addU8(countOrSubType);
2012-05-12 13:55:22 +02:00
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
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientMove);
2012-02-08 22:23:15 +01:00
addPosition(msg, fromPos);
msg->addU16(thingId);
msg->addU8(stackpos);
2012-02-08 22:23:15 +01:00
addPosition(msg, toPos);
msg->addU8(count);
2012-02-08 22:23:15 +01:00
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
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientInspectNpcTrade);
msg->addU16(itemId);
msg->addU8(count);
2012-02-08 22:23:15 +01:00
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
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientBuyItem);
msg->addU16(itemId);
msg->addU8(subType);
msg->addU8(amount);
msg->addU8(ignoreCapacity ? 0x01 : 0x00);
msg->addU8(buyWithBackpack ? 0x01 : 0x00);
2012-02-08 22:23:15 +01:00
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
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientSellItem);
msg->addU16(itemId);
msg->addU8(subType);
2013-02-15 19:38:57 +01:00
if(g_game.getFeature(Otc::GameDoubleShopSellAmount))
msg->addU16(amount);
else
msg->addU8(amount);
msg->addU8(ignoreEquipped ? 0x01 : 0x00);
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::sendCloseNpcTrade()
2012-01-02 23:23:54 +01:00
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientCloseNpcTrade);
2012-02-08 22:23:15 +01:00
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
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientRequestTrade);
2012-02-08 22:23:15 +01:00
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
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientInspectTrade);
msg->addU8(counterOffer ? 0x01 : 0x00);
msg->addU8(index);
2012-02-08 22:23:15 +01:00
send(msg);
2012-01-02 23:23:54 +01:00
}
void ProtocolGame::sendAcceptTrade()
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientAcceptTrade);
2012-02-08 22:23:15 +01:00
send(msg);
2012-01-02 23:23:54 +01:00
}
void ProtocolGame::sendRejectTrade()
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientRejectTrade);
2012-02-08 22:23:15 +01:00
send(msg);
2012-01-02 23:23:54 +01:00
}
void ProtocolGame::sendUseItem(const Position& position, int itemId, int stackpos, int index)
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientUseItem);
2012-02-08 22:23:15 +01:00
addPosition(msg, position);
msg->addU16(itemId);
msg->addU8(stackpos);
msg->addU8(index);
2012-02-08 22:23:15 +01:00
send(msg);
}
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
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientUseItemWith);
2012-02-08 22:23:15 +01:00
addPosition(msg, fromPos);
msg->addU16(itemId);
msg->addU8(fromStackPos);
2012-02-08 22:23:15 +01:00
addPosition(msg, toPos);
msg->addU16(toThingId);
msg->addU8(toStackPos);
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-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
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientUseOnCreature);
2012-02-08 22:23:15 +01:00
addPosition(msg, pos);
msg->addU16(thingId);
msg->addU8(stackpos);
msg->addU32(creatureId);
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-01-03 14:13:54 +01:00
void ProtocolGame::sendRotateItem(const Position& pos, int thingId, int stackpos)
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientRotateItem);
2012-02-08 22:23:15 +01:00
addPosition(msg, pos);
msg->addU16(thingId);
msg->addU8(stackpos);
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-01-03 14:13:54 +01:00
void ProtocolGame::sendCloseContainer(int containerId)
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientCloseContainer);
msg->addU8(containerId);
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-01-03 14:13:54 +01:00
void ProtocolGame::sendUpContainer(int containerId)
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientUpContainer);
msg->addU8(containerId);
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
void ProtocolGame::sendEditText(uint id, const std::string& text)
2012-01-03 14:13:54 +01:00
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientEditText);
msg->addU32(id);
msg->addString(text);
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-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
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientEditList);
msg->addU8(doorId);
msg->addU32(id);
msg->addString(text);
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::sendLook(const Position& position, int thingId, int stackpos)
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientLook);
2012-02-08 22:23:15 +01:00
addPosition(msg, position);
msg->addU16(thingId);
msg->addU8(stackpos);
2012-02-08 22:23:15 +01:00
send(msg);
}
2012-08-29 17:09:05 +02:00
void ProtocolGame::sendLookCreature(uint32 creatureId)
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientLookCreature);
2012-08-29 17:09:05 +02:00
msg->addU32(creatureId);
send(msg);
}
void ProtocolGame::sendTalk(Otc::MessageMode mode, int channelId, const std::string& receiver, const std::string& message)
2011-11-03 17:07:51 +01:00
{
if(message.empty())
2011-11-03 17:07:51 +01:00
return;
if(message.length() > 255) {
g_logger.traceError("message too large");
return;
}
2012-01-14 02:37:15 +01:00
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientTalk);
msg->addU8(Proto::translateMessageModeToServer(mode));
2011-11-03 17:07:51 +01:00
switch(mode) {
case Otc::MessagePrivateTo:
case Otc::MessageGamemasterPrivateTo:
2013-01-27 10:44:15 +01:00
case Otc::MessageRVRAnswer:
msg->addString(receiver);
2011-11-03 17:07:51 +01:00
break;
case Otc::MessageChannel:
case Otc::MessageChannelHighlight:
case Otc::MessageChannelManagement:
case Otc::MessageGamemasterChannel:
msg->addU16(channelId);
2011-11-03 17:07:51 +01:00
break;
default:
break;
2011-11-03 17:07:51 +01:00
}
msg->addString(message);
2012-02-08 22:23:15 +01:00
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
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientRequestChannels);
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-01-03 14:13:54 +01:00
void ProtocolGame::sendJoinChannel(int channelId)
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientJoinChannel);
msg->addU16(channelId);
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-01-03 14:13:54 +01:00
void ProtocolGame::sendLeaveChannel(int channelId)
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientLeaveChannel);
msg->addU16(channelId);
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-02 23:29:44 +01:00
void ProtocolGame::sendOpenPrivateChannel(const std::string& receiver)
2012-01-03 14:13:54 +01:00
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientOpenPrivateChannel);
msg->addString(receiver);
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
2013-01-27 10:44:15 +01:00
void ProtocolGame::sendOpenRuleViolation(const std::string& reporter)
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientOpenRuleViolation);
msg->addString(reporter);
send(msg);
}
void ProtocolGame::sendCloseRuleViolation(const std::string& reporter)
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientCloseRuleViolation);
msg->addString(reporter);
send(msg);
}
void ProtocolGame::sendCancelRuleViolation()
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientCancelRuleViolation);
send(msg);
}
2012-01-03 14:13:54 +01:00
void ProtocolGame::sendCloseNpcChannel()
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientCloseNpcChannel);
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
2013-11-19 00:50:00 +01:00
void ProtocolGame::sendChangeFightModes(Otc::FightModes fightMode, Otc::ChaseModes chaseMode, bool safeFight, Otc::PVPModes pvpMode)
2012-01-03 14:13:54 +01:00
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientChangeFightModes);
msg->addU8(fightMode);
msg->addU8(chaseMode);
msg->addU8(safeFight ? 0x01: 0x00);
if(g_game.getFeature(Otc::GamePVPMode))
2013-11-19 00:50:00 +01:00
msg->addU8(pvpMode);
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-07-26 08:10:28 +02:00
void ProtocolGame::sendAttack(uint creatureId, uint seq)
2012-01-03 14:13:54 +01:00
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientAttack);
msg->addU32(creatureId);
2012-07-26 08:10:28 +02:00
msg->addU32(seq);
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-07-26 08:10:28 +02:00
void ProtocolGame::sendFollow(uint creatureId, uint seq)
2012-01-03 14:13:54 +01:00
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientFollow);
msg->addU32(creatureId);
2012-07-26 08:10:28 +02:00
msg->addU32(seq);
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-01-12 20:20:18 +01:00
void ProtocolGame::sendInviteToParty(uint creatureId)
2012-01-03 14:13:54 +01:00
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientInviteToParty);
msg->addU32(creatureId);
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-01-12 20:20:18 +01:00
void ProtocolGame::sendJoinParty(uint creatureId)
2012-01-03 14:13:54 +01:00
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientJoinParty);
msg->addU32(creatureId);
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-01-12 20:20:18 +01:00
void ProtocolGame::sendRevokeInvitation(uint creatureId)
2012-01-03 14:13:54 +01:00
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientRevokeInvitation);
msg->addU32(creatureId);
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-01-12 20:20:18 +01:00
void ProtocolGame::sendPassLeadership(uint creatureId)
2012-01-03 14:13:54 +01:00
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientPassLeadership);
msg->addU32(creatureId);
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-01-03 14:13:54 +01:00
void ProtocolGame::sendLeaveParty()
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientLeaveParty);
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-07-26 08:10:28 +02:00
void ProtocolGame::sendShareExperience(bool active)
2012-01-03 14:13:54 +01:00
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientShareExperience);
msg->addU8(active ? 0x01 : 0x00);
if(g_game.getProtocolVersion() < 910)
2012-07-26 08:10:28 +02:00
msg->addU8(0);
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
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientOpenOwnChannel);
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::sendInviteToOwnChannel(const std::string& name)
2012-01-03 14:13:54 +01:00
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientInviteToOwnChannel);
msg->addString(name);
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::sendExcludeFromOwnChannel(const std::string& name)
2012-01-03 14:13:54 +01:00
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientExcludeFromOwnChannel);
msg->addString(name);
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::sendCancelAttackAndFollow()
2012-01-03 14:13:54 +01:00
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientCancelAttackAndFollow);
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
void ProtocolGame::sendRefreshContainer(int containerId)
2012-01-03 14:13:54 +01:00
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientRefreshContainer);
msg->addU8(containerId);
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::sendRequestOutfit()
2011-11-14 23:32:55 +01:00
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientRequestOutfit);
2012-02-08 22:23:15 +01:00
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
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientChangeOutfit);
2013-11-19 01:09:31 +01:00
if(g_game.getFeature(Otc::GameLooktypeU16))
msg->addU16(outfit.getId());
else
msg->addU8(outfit.getId());
msg->addU8(outfit.getHead());
msg->addU8(outfit.getBody());
msg->addU8(outfit.getLegs());
msg->addU8(outfit.getFeet());
2013-11-19 01:09:31 +01:00
if(g_game.getFeature(Otc::GamePlayerAddons))
msg->addU8(outfit.getAddons());
if(g_game.getFeature(Otc::GamePlayerMounts))
msg->addU16(outfit.getMount());
2012-05-12 13:55:22 +02:00
send(msg);
}
2011-11-14 23:47:36 +01:00
void ProtocolGame::sendMountStatus(bool mount)
2012-05-12 13:55:22 +02:00
{
if(g_game.getFeature(Otc::GamePlayerMounts)) {
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientMount);
msg->addU8(mount);
send(msg);
} else {
g_logger.error("ProtocolGame::sendMountStatus does not support the current protocol.");
}
2011-11-14 23:47:36 +01:00
}
2011-09-03 00:52:40 +02:00
void ProtocolGame::sendAddVip(const std::string& name)
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientAddVip);
msg->addString(name);
2012-02-08 22:23:15 +01:00
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
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientRemoveVip);
msg->addU32(playerId);
2012-02-08 22:23:15 +01:00
send(msg);
2011-09-03 00:52:40 +02:00
}
void ProtocolGame::sendBugReport(const std::string& comment)
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientBugReport);
msg->addString(comment);
send(msg);
}
void ProtocolGame::sendRuleViolation(const std::string& target, int reason, int action, const std::string& comment, const std::string& statement, int statementId, bool ipBanishment)
{
OutputMessagePtr msg(new OutputMessage);
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)
{
OutputMessagePtr msg(new OutputMessage);
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
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientRequestQuestLog);
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
void ProtocolGame::sendRequestQuestLine(int questId)
2012-01-03 14:13:54 +01:00
{
OutputMessagePtr msg(new OutputMessage);
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)
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientNewRuleViolation);
msg->addU8(reason);
msg->addU8(action);
msg->addString(characterName);
msg->addString(comment);
msg->addString(translation);
2012-05-12 13:55:22 +02:00
send(msg);
}
void ProtocolGame::sendRequestItemInfo(int itemId, int subType, int index)
2012-05-12 13:55:22 +02:00
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientRequestItemInfo);
msg->addU8(subType);
msg->addU16(itemId);
msg->addU8(index);
send(msg);
}
void ProtocolGame::sendAnswerModalDialog(int dialog, int button, int choice)
{
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientAnswerModalDialog);
msg->addU32(dialog);
msg->addU8(button);
msg->addU8(choice);
send(msg);
}
void ProtocolGame::sendChangeMapAwareRange(int xrange, int yrange)
{
if(!g_game.getFeature(Otc::GameChangeMapAwareRange))
return;
OutputMessagePtr msg(new OutputMessage);
msg->addU8(Proto::ClientChangeMapAwareRange);
msg->addU8(xrange);
msg->addU8(yrange);
send(msg);
}
void ProtocolGame::addPosition(const OutputMessagePtr& msg, const Position& position)
{
msg->addU16(position.x);
msg->addU16(position.y);
msg->addU8(position.z);
}