mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-30 02:15:32 +00:00
[General] Improve PacketPreInit
This commit is contained in:
parent
f00c4dc107
commit
931a5896ec
2 changed files with 22 additions and 16 deletions
|
@ -15,25 +15,30 @@ void mwmp::PacketPreInit::Packet(RakNet::BitStream *bs, bool send)
|
|||
{
|
||||
BasePacket::Packet(bs, send);
|
||||
|
||||
unsigned int size = checksums->size();
|
||||
size_t size = checksums->size();
|
||||
RW(size, send);
|
||||
if(send)
|
||||
|
||||
for(size_t i = 0; i < size; i++)
|
||||
{
|
||||
BOOST_FOREACH(PluginContainer::value_type & checksum, *checksums)
|
||||
PluginPair ppair;
|
||||
if(send)
|
||||
ppair = (*checksums)[i];
|
||||
|
||||
RW(ppair.first, send);
|
||||
|
||||
size_t hashSize = ppair.second.size();
|
||||
RW(hashSize, send);
|
||||
for(size_t j = 0; j < hashSize; j++)
|
||||
{
|
||||
RW(checksum.first, true);
|
||||
RW(checksum.second, true);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
for(unsigned int i = 0; i < size; i++)
|
||||
{
|
||||
PluginPair checksum;
|
||||
RW(checksum.first, false);
|
||||
RW(checksum.second, false);
|
||||
checksums->push_back(checksum);
|
||||
unsigned hash;
|
||||
if(send)
|
||||
hash = ppair.second[j];
|
||||
RW(hash, send);
|
||||
if(!send)
|
||||
ppair.second.push_back(hash);
|
||||
}
|
||||
if(!send)
|
||||
checksums->push_back(ppair);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -14,7 +14,8 @@ namespace mwmp
|
|||
class PacketPreInit : public BasePacket
|
||||
{
|
||||
public:
|
||||
typedef std::pair<std::string, unsigned int> PluginPair;
|
||||
typedef std::vector<unsigned> HashList;
|
||||
typedef std::pair<std::string, HashList> PluginPair;
|
||||
typedef std::vector<PluginPair> PluginContainer;
|
||||
|
||||
PacketPreInit(RakNet::RakPeerInterface *peer);
|
||||
|
|
Loading…
Reference in a new issue