Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Move TOCLIENT_ACTIVE_OBJECT_REMOVE_ADD and TOCLIENT_ACTIVE_OBJECT_MES…
…SAGES to private functions
  • Loading branch information
nerzhul committed Mar 16, 2015
1 parent b560294 commit e7736ff
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 17 deletions.
38 changes: 21 additions & 17 deletions src/server.cpp
Expand Up @@ -758,16 +758,11 @@ void Server::AsyncRunStep(bool initial_step)
obj->m_known_by_count++;
}

NetworkPacket pkt(TOCLIENT_ACTIVE_OBJECT_REMOVE_ADD, 0, client->peer_id);
pkt.putRawString(data_buffer.c_str(), data_buffer.size());


u32 pktSize = SendActiveObjectRemoveAdd(client->peer_id, data_buffer);
verbosestream << "Server: Sent object remove/add: "
<< removed_objects.size() << " removed, "
<< added_objects.size() << " added, "
<< "packet size is " << pkt.getSize() << std::endl;

Send(&pkt);
<< "packet size is " << pktSize << std::endl;
}
m_clients.Unlock();
}
Expand Down Expand Up @@ -846,19 +841,11 @@ void Server::AsyncRunStep(bool initial_step)
Send them.
*/
if(reliable_data.size() > 0) {
NetworkPacket pkt(TOCLIENT_ACTIVE_OBJECT_MESSAGES,
0, client->peer_id);

pkt.putRawString(reliable_data.c_str(), reliable_data.size());
Send(&pkt);
SendActiveObjectMessages(client->peer_id, reliable_data);
}

if(unreliable_data.size() > 0) {
NetworkPacket pkt(TOCLIENT_ACTIVE_OBJECT_MESSAGES,
0, client->peer_id);

pkt.putRawString(unreliable_data.c_str(), unreliable_data.size());
Send(&pkt);
SendActiveObjectMessages(client->peer_id, unreliable_data);
}
}
m_clients.Unlock();
Expand Down Expand Up @@ -1898,6 +1885,23 @@ void Server::SendPlayerInventoryFormspec(u16 peer_id)
Send(&pkt);
}

u32 Server::SendActiveObjectRemoveAdd(u16 peer_id, const std::string &datas)
{
NetworkPacket pkt(TOCLIENT_ACTIVE_OBJECT_REMOVE_ADD, 0, peer_id);
pkt.putRawString(datas.c_str(), datas.size());
Send(&pkt);
return pkt.getSize();
}

void Server::SendActiveObjectMessages(u16 peer_id, const std::string &datas)
{
NetworkPacket pkt(TOCLIENT_ACTIVE_OBJECT_MESSAGES,
0, peer_id);

pkt.putRawString(datas.c_str(), datas.size());
Send(&pkt);
}

s32 Server::playSound(const SimpleSoundSpec &spec,
const ServerSoundParams &params)
{
Expand Down
2 changes: 2 additions & 0 deletions src/server.h
Expand Up @@ -463,6 +463,8 @@ class Server : public con::PeerHandler, public MapEventReceiver,
float expirationtime, float size,
bool collisiondetection, bool vertical, std::string texture);

u32 SendActiveObjectRemoveAdd(u16 peer_id, const std::string &datas);
void SendActiveObjectMessages(u16 peer_id, const std::string &datas);
/*
Something random
*/
Expand Down

0 comments on commit e7736ff

Please sign in to comment.