2017-04-11 08:37:38 +00:00
|
|
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
2019-08-19 18:39:33 +00:00
|
|
|
#include <components/openmw-mp/TimedLog.hpp>
|
2017-04-11 08:37:38 +00:00
|
|
|
#include "PacketActorCellChange.hpp"
|
|
|
|
|
|
|
|
using namespace mwmp;
|
|
|
|
|
|
|
|
PacketActorCellChange::PacketActorCellChange(RakNet::RakPeerInterface *peer) : ActorPacket(peer)
|
|
|
|
{
|
|
|
|
packetID = ID_ACTOR_CELL_CHANGE;
|
|
|
|
}
|
|
|
|
|
2017-06-02 19:42:10 +00:00
|
|
|
void PacketActorCellChange::Actor(BaseActor &actor, bool send)
|
2017-04-11 08:37:38 +00:00
|
|
|
{
|
2018-07-02 18:50:21 +00:00
|
|
|
RW(actor.cell.mData, send, true);
|
|
|
|
RW(actor.cell.mName, send, true);
|
2017-04-11 08:37:38 +00:00
|
|
|
|
2018-07-02 18:50:21 +00:00
|
|
|
RW(actor.position, send, true);
|
|
|
|
RW(actor.direction, send, true);
|
2018-07-13 18:27:29 +00:00
|
|
|
|
|
|
|
RW(actor.isFollowerCellChange, send);
|
2017-04-11 08:37:38 +00:00
|
|
|
}
|