Send currentply playing song to client joining the area

This commit is contained in:
Salanto 2022-03-12 17:26:12 +01:00
parent 1e51131649
commit 52a48f263e
3 changed files with 22 additions and 0 deletions

View File

@ -870,6 +870,25 @@ public slots:
*/
void sendAreaPacket(AOPacket f_packet, int f_area_index);
/**
* @brief sendAreaPacketClient Sends a packet to the specified client.
*
* @param f_packet The packe to be send.
*
* @param f_user_id The user ID of the client.
*/
void sendAreaPacketClient(AOPacket f_packet, int f_user_id);
/**
* @brief userJoinedArea Signals that a new client has joined an area.
*
* @details This is mostly a signal for more compelex features where multiple managers need to know of the change.
*
* @param f_area_index Area Index that the client joined in.
*
*
* @param f_user_id The user ID of the client.
*/
void userJoinedArea(int f_area_index, int f_user_id);
private:

View File

@ -95,6 +95,7 @@ void AreaData::clientJoinedArea(int f_charId, int f_userId)
}
m_joined_ids.append(f_userId);
emit userJoinedArea(m_index, f_userId);
emit sendAreaPacketClient(AOPacket("MC",{m_currentMusic, QString::number(-1)}), f_userId);
}
QList<int> AreaData::owners() const

View File

@ -104,6 +104,8 @@ void Server::start()
m_areas.insert(i, l_area);
connect(l_area, &AreaData::sendAreaPacket,
this, QOverload<AOPacket,int>::of(&Server::broadcast));
connect(l_area, &AreaData::sendAreaPacketClient,
this, &Server::unicast);
connect(l_area, &AreaData::userJoinedArea,
music_manager, &MusicManager::userJoinedArea);
music_manager->registerArea(i);