mirror of
https://github.com/moparisthebest/minetest
synced 2024-11-05 08:55:01 -05:00
Revert "m_active_object_messages is used like a queue. Use std::queue instead of std::list. Also rename to m_active_object_messages_queue"
This reverts commit 972d17baea
.
The commit being reverted was unauthorized. There had been no discussion,
review, or sign-off prior to submittal to upstream.
This commit is contained in:
parent
972d17baea
commit
e0eec201a1
@ -1238,7 +1238,7 @@ void ServerEnvironment::step(float dtime)
|
||||
// Read messages from object
|
||||
while(!obj->m_messages_out.empty())
|
||||
{
|
||||
m_active_object_messages_queue.push(
|
||||
m_active_object_messages.push_back(
|
||||
obj->m_messages_out.front());
|
||||
obj->m_messages_out.pop();
|
||||
}
|
||||
@ -1458,11 +1458,11 @@ void ServerEnvironment::getRemovedActiveObjects(v3s16 pos, s16 radius,
|
||||
|
||||
ActiveObjectMessage ServerEnvironment::getActiveObjectMessage()
|
||||
{
|
||||
if(m_active_object_messages_queue.empty())
|
||||
if(m_active_object_messages.empty())
|
||||
return ActiveObjectMessage(0);
|
||||
|
||||
ActiveObjectMessage message = m_active_object_messages_queue.front();
|
||||
m_active_object_messages_queue.pop();
|
||||
ActiveObjectMessage message = m_active_object_messages.front();
|
||||
m_active_object_messages.pop_front();
|
||||
return message;
|
||||
}
|
||||
|
||||
|
@ -33,7 +33,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
#include <set>
|
||||
#include <list>
|
||||
#include <map>
|
||||
#include <queue>
|
||||
#include "irr_v3d.h"
|
||||
#include "activeobject.h"
|
||||
#include "util/numeric.h"
|
||||
@ -379,7 +378,7 @@ private:
|
||||
// Active object list
|
||||
std::map<u16, ServerActiveObject*> m_active_objects;
|
||||
// Outgoing network message buffer for active objects
|
||||
std::queue<ActiveObjectMessage> m_active_object_messages_queue;
|
||||
std::list<ActiveObjectMessage> m_active_object_messages;
|
||||
// Some timers
|
||||
float m_send_recommended_timer;
|
||||
IntervalLimiter m_object_management_interval;
|
||||
|
Loading…
Reference in New Issue
Block a user