From 3193e8e7f442cf081c5429361d0ecea31e801203 Mon Sep 17 00:00:00 2001 From: Salanto <62221668+Salanto@users.noreply.github.com> Date: Mon, 7 Feb 2022 22:29:50 +0100 Subject: [PATCH] Switch queue with stack Adds a bias towards lower user ids. This change is purely aesthetic to bring Akashi closer to a tsu-like userid assignment. --- core/include/server.h | 4 ++-- core/src/server.cpp | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/core/include/server.h b/core/include/server.h index cb6d535..36c2f7e 100644 --- a/core/include/server.h +++ b/core/include/server.h @@ -201,10 +201,10 @@ class Server : public QObject { QHash 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 m_available_ids; + QStack m_available_ids; /** * @brief The overall player count in the server. diff --git a/core/src/server.cpp b/core/src/server.cpp index 590c0cd..aacaec1 100644 --- a/core/src/server.cpp +++ b/core/src/server.cpp @@ -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); }