Merge pull request #229 from Salanto/option/tsu-playerids

Switch queue with stack
This commit is contained in:
Rosemary Witchaven 2022-02-07 17:12:25 -06:00 committed by GitHub
commit ef85d6d5ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -201,10 +201,10 @@ class Server : public QObject {
QHash<int,AOClient*> m_clients_ids;
/**
* @brief Queue of all available IDs for clients. When this is empty the server
* @brief Stack of all available IDs for clients. When this is empty the server
* rejects any new connection attempt.
*/
QQueue<int> m_available_ids;
QStack<int> m_available_ids;
/**
* @brief The overall player count in the server.

View File

@ -119,8 +119,8 @@ void Server::start()
connect(&next_message_timer, &QTimer::timeout, this, &Server::allowMessage);
//Prepare player IDs and reference hash.
for (int i = 0; i <= ConfigManager::maxPlayers() - 1; i++){
m_available_ids.enqueue(i);
for (int i = ConfigManager::maxPlayers() -1; i >= 0; i--){
m_available_ids.push(i);
m_clients_ids.insert(i, nullptr);
}
}
@ -140,7 +140,7 @@ void Server::clientConnected()
return;
}
int user_id = m_available_ids.dequeue();
int user_id = m_available_ids.pop();
AOClient* client = new AOClient(this, socket, this, user_id, music_manager);
m_clients_ids.insert(user_id, client);
@ -382,7 +382,7 @@ void Server::handleDiscordIntegration()
void Server::markIDFree(const int &f_user_id)
{
m_available_ids.enqueue(f_user_id);
m_available_ids.push(f_user_id);
m_clients_ids.insert(f_user_id, nullptr);
}