Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Send Breath packet on event, don't check it at each AsyncRunStep
  • Loading branch information
nerzhul committed Mar 3, 2015
1 parent 64ff966 commit 7e56637
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
1 change: 0 additions & 1 deletion src/content_sao.cpp
Expand Up @@ -718,7 +718,6 @@ PlayerSAO::PlayerSAO(ServerEnvironment *env_, Player *player_, u16 peer_id_,
// public
m_moved(false),
m_inventory_not_sent(false),
m_breath_not_sent(false),
m_wielded_item_not_sent(false),
m_physics_override_speed(1),
m_physics_override_jump(1),
Expand Down
1 change: 0 additions & 1 deletion src/content_sao.h
Expand Up @@ -318,7 +318,6 @@ class PlayerSAO : public ServerActiveObject
// Some flags used by Server
bool m_moved;
bool m_inventory_not_sent;
bool m_breath_not_sent;
bool m_wielded_item_not_sent;

float m_physics_override_speed;
Expand Down
2 changes: 1 addition & 1 deletion src/network/packethandlers/server.cpp
Expand Up @@ -922,7 +922,7 @@ void Server::handleCommand_Breath(NetworkPacket* pkt)
}

playersao->setBreath(breath);
m_script->player_event(playersao,"breath_changed");
SendPlayerBreath(pkt->getPeerId());
}

void Server::handleCommand_Password(NetworkPacket* pkt)
Expand Down
6 changes: 5 additions & 1 deletion src/script/lua_api/l_object.cpp
Expand Up @@ -812,7 +812,11 @@ int ObjectRef::l_set_breath(lua_State *L)
u16 breath = luaL_checknumber(L, 2);
// Do it
co->setBreath(breath);
co->m_breath_not_sent = true;

// If the object is a player sent the breath to client
if (co->getType() == ACTIVEOBJECT_TYPE_PLAYER)
getServer(L)->SendPlayerBreath(((PlayerSAO*)co)->getPeerID());

return 0;
}

Expand Down
18 changes: 7 additions & 11 deletions src/server.cpp
Expand Up @@ -604,20 +604,15 @@ void Server::AsyncRunStep(bool initial_step)
if(playersao == NULL)
continue;

/*
Send player breath if changed
*/
if(playersao->m_breath_not_sent) {
SendPlayerBreath(*i);
}

/*
Send player inventories if necessary
*/
if(playersao->m_moved) {
SendMovePlayer(*i);
playersao->m_moved = false;
}

/*
Send player inventories if necessary
*/
if(playersao->m_inventory_not_sent) {
UpdateCrafting(*i);
SendInventory(*i);
Expand Down Expand Up @@ -1892,8 +1887,8 @@ void Server::SendPlayerBreath(u16 peer_id)
DSTACK(__FUNCTION_NAME);
PlayerSAO *playersao = getPlayerSAO(peer_id);
assert(playersao);
playersao->m_breath_not_sent = false;
m_script->player_event(playersao,"breath_changed");

m_script->player_event(playersao, "breath_changed");
SendBreath(peer_id, playersao->getBreath());
}

Expand Down Expand Up @@ -2604,6 +2599,7 @@ void Server::RespawnPlayer(u16 peer_id)
playersao->setBreath(PLAYER_MAX_BREATH);

SendPlayerHP(peer_id);
SendPlayerBreath(peer_id);

bool repositioned = m_script->on_respawnplayer(playersao);
if(!repositioned){
Expand Down
4 changes: 3 additions & 1 deletion src/server.h
Expand Up @@ -373,6 +373,8 @@ class Server : public con::PeerHandler, public MapEventReceiver,
std::string* vers_string);

void SendPlayerHPOrDie(u16 peer_id, bool die) { die ? DiePlayer(peer_id) : SendPlayerHP(peer_id); }
void SendPlayerBreath(u16 peer_id);

// Bind address
Address m_bind_addr;

Expand All @@ -397,7 +399,7 @@ class Server : public con::PeerHandler, public MapEventReceiver,
void SendChatMessage(u16 peer_id, const std::wstring &message);
void SendTimeOfDay(u16 peer_id, u16 time, f32 time_speed);
void SendPlayerHP(u16 peer_id);
void SendPlayerBreath(u16 peer_id);

void SendMovePlayer(u16 peer_id);
void SendLocalPlayerAnimations(u16 peer_id, v2s32 animation_frames[4], f32 animation_speed);
void SendEyeOffset(u16 peer_id, v3f first, v3f third);
Expand Down

0 comments on commit 7e56637

Please sign in to comment.