From 7e8ea8b35cedeb0bfa9320bd798a13616fac9fbb Mon Sep 17 00:00:00 2001 From: Salanto <62221668+Salanto@users.noreply.github.com> Date: Fri, 14 Jan 2022 04:45:38 +0100 Subject: [PATCH] Keep record of joined userIds in area. Adds the server-assigned clientid to the area, allowing the server to exclusively broadcast to this area without checking each clients area, instead pulling a list of them from the area itself and sending exclusively to them. Tests have been adjusted to account that area leaving and joining can now be identified by userid. --- core/include/area_data.h | 20 ++++++++++++++++++-- core/src/aoclient.cpp | 6 +++--- core/src/area_data.cpp | 11 +++++++++-- core/src/packets.cpp | 2 +- core/src/server.cpp | 6 +++--- tests/unittest_area/tst_unittest_area.cpp | 14 +++++++------- 6 files changed, 41 insertions(+), 18 deletions(-) diff --git a/core/include/area_data.h b/core/include/area_data.h index 78a692e..e869650 100644 --- a/core/include/area_data.h +++ b/core/include/area_data.h @@ -215,8 +215,11 @@ class AreaData : public QObject { * * @param f_charId The character ID of the client who left. The default value is `-1`. If it is left at that, * the area will not try to remove any character from the list of characters taken. + * + * @param f_userId The user ID of the client who left. The default value is '-1', This ID is technically + * impossible. */ - void clientLeftArea(int f_charId = -1); + void clientLeftArea(int f_charId = -1, int f_userId = -1); /** * @brief A client in the area joined recently. @@ -225,8 +228,11 @@ class AreaData : public QObject { * * @param f_charId The character ID of the client who joined. The default value is `-1`. If it is left at that, * the area will not add any character to the list of characters taken. + * + * @param f_userId The user ID of the client who left. The default value is '-1', This ID is technically + * impossible. */ - void clientJoinedArea(int f_charId = -1); + void clientJoinedArea(int f_charId = -1, int f_userId = -1); /** * @brief Returns a copy of the list of owners of this area. @@ -844,6 +850,11 @@ class AreaData : public QObject { */ QString addJukeboxSong(QString f_song); + /** + * @brief Returns a constant that includes all currently joined userids. + */ + QVector joinedIDs() const; + public slots: /** @@ -1060,6 +1071,11 @@ private: */ bool m_send_area_message; + /** + * @brief Collection of joined IDs to this area. + */ + QVector m_joined_ids; + // Jukebox specific members /** * @brief Stores the songs added to the jukebox to be played. diff --git a/core/src/aoclient.cpp b/core/src/aoclient.cpp index 42449c1..39cbaa1 100644 --- a/core/src/aoclient.cpp +++ b/core/src/aoclient.cpp @@ -55,7 +55,7 @@ void AOClient::clientDisconnected() if (m_joined) { server->m_player_count--; emit server->updatePlayerCount(server->m_player_count); - server->m_areas[m_current_area]->clientLeftArea(server->getCharID(m_current_char)); + server->m_areas[m_current_area]->clientLeftArea(server->getCharID(m_current_char), m_id); arup(ARUPType::PLAYER_COUNT, true); } @@ -124,14 +124,14 @@ void AOClient::changeArea(int new_area) server->m_areas[m_current_area]->changeCharacter(server->getCharID(m_current_char), -1); server->updateCharsTaken(server->m_areas[m_current_area]); } - server->m_areas[m_current_area]->clientLeftArea(m_char_id); + server->m_areas[m_current_area]->clientLeftArea(m_char_id, m_id); bool l_character_taken = false; if (server->m_areas[new_area]->charactersTaken().contains(server->getCharID(m_current_char))) { m_current_char = ""; m_char_id = -1; l_character_taken = true; } - server->m_areas[new_area]->clientJoinedArea(m_char_id); + server->m_areas[new_area]->clientJoinedArea(m_char_id, m_id); m_current_area = new_area; arup(ARUPType::PLAYER_COUNT, true); sendEvidenceList(server->m_areas[new_area]); diff --git a/core/src/area_data.cpp b/core/src/area_data.cpp index a15135f..380c8fa 100644 --- a/core/src/area_data.cpp +++ b/core/src/area_data.cpp @@ -75,22 +75,24 @@ const QMap AreaData::map_statuses = { {"gaming", AreaData::Status::GAMING }, }; -void AreaData::clientLeftArea(int f_charId) +void AreaData::clientLeftArea(int f_charId, int f_userId) { --m_playerCount; if (f_charId != -1) { m_charactersTaken.removeAll(f_charId); } + m_joined_ids.removeAll(f_userId); } -void AreaData::clientJoinedArea(int f_charId) +void AreaData::clientJoinedArea(int f_charId, int f_userId) { ++m_playerCount; if (f_charId != -1) { m_charactersTaken.append(f_charId); } + m_joined_ids.append(f_userId); } QList AreaData::owners() const @@ -579,6 +581,11 @@ QString AreaData::addJukeboxSong(QString f_song) return "Unable to add song. Song already in Jukebox."; } +QVector AreaData::joinedIDs() const +{ + return m_joined_ids; +} + void AreaData::switchJukeboxSong() { QString l_song_name; diff --git a/core/src/packets.cpp b/core/src/packets.cpp index 0f78f18..785b3c0 100644 --- a/core/src/packets.cpp +++ b/core/src/packets.cpp @@ -134,7 +134,7 @@ void AOClient::pktLoadingDone(AreaData* area, int argc, QStringList argv, AOPack server->m_player_count++; emit server->updatePlayerCount(server->m_player_count); - area->clientJoinedArea(); + area->clientJoinedArea(-1, m_id); m_joined = true; server->updateCharsTaken(area); diff --git a/core/src/server.cpp b/core/src/server.cpp index 11ed1d2..67d7962 100644 --- a/core/src/server.cpp +++ b/core/src/server.cpp @@ -253,9 +253,9 @@ void Server::reloadSettings() void Server::broadcast(AOPacket packet, int area_index) { - for (AOClient* client : qAsConst(m_clients)) { - if (client->m_current_area == area_index) - client->sendPacket(packet); + QVector l_client_ids = m_areas.value(area_index)->joinedIDs(); + for (const int l_client_id : qAsConst(l_client_ids)) { + getClientByID(l_client_id)->sendPacket(packet); } } diff --git a/tests/unittest_area/tst_unittest_area.cpp b/tests/unittest_area/tst_unittest_area.cpp index 7b0fbe4..8a07ed8 100644 --- a/tests/unittest_area/tst_unittest_area.cpp +++ b/tests/unittest_area/tst_unittest_area.cpp @@ -77,17 +77,17 @@ void Area::cleanup() void Area::clientJoinLeave() { { - // There must be exactly one client in the area, and it must have a charid of 5. - m_area->clientJoinedArea(5); + // There must be exactly one client in the area, and it must have a charid of 5 and userid 0. + m_area->clientJoinedArea(5,0); - QCOMPARE(m_area->charactersTaken().size(), 1); + QCOMPARE(m_area->joinedIDs().size(), 1); QCOMPARE(m_area->charactersTaken().at(0), 5); } { // No clients must be left in the area. - m_area->clientLeftArea(5); + m_area->clientLeftArea(5,0); - QCOMPARE(m_area->charactersTaken().size(), 0); + QCOMPARE(m_area->joinedIDs().size(), 0); } } @@ -151,8 +151,8 @@ void Area::changeHP() void Area::changeCharacter() { { - // A client with a charid of 6 joins. There's only them in there. - m_area->clientJoinedArea(6); + // A client with a charid of 6 and userid 0 joins. There's only them in there. + m_area->clientJoinedArea(6,0); QCOMPARE(m_area->charactersTaken().size(), 1); QCOMPARE(m_area->charactersTaken().at(0), 6);