Improve error handling and messaging to user
This commit is contained in:
parent
3f212aeb35
commit
df237bbe3a
@ -814,7 +814,7 @@ class AreaData : public QObject {
|
|||||||
/**
|
/**
|
||||||
* @brief Adds a song to the Jukeboxs queue.
|
* @brief Adds a song to the Jukeboxs queue.
|
||||||
*/
|
*/
|
||||||
bool addJukeboxSong(QString f_song);
|
QString addJukeboxSong(QString f_song);
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
|
|
||||||
|
@ -533,20 +533,24 @@ void AreaData::toggleJukebox()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool AreaData::addJukeboxSong(QString f_song)
|
QString AreaData::addJukeboxSong(QString f_song)
|
||||||
{
|
{
|
||||||
if(!m_jukebox_queue.contains(f_song)) {
|
if(!m_jukebox_queue.contains(f_song)) {
|
||||||
if (m_jukebox_queue.size() == 0) {
|
if (m_jukebox_queue.size() == 0) {
|
||||||
emit playJukeboxSong(AOPacket("MC",{f_song,QString::number(-1)}), index());
|
int l_song_duration = ConfigManager::songInformation(f_song);
|
||||||
m_jukebox_timer->start(ConfigManager::songInformation(f_song) * 1000);
|
if (l_song_duration >= 0) {
|
||||||
setCurrentMusic(f_song);
|
emit playJukeboxSong(AOPacket("MC",{f_song,QString::number(-1)}), index());
|
||||||
setMusicPlayedBy("Jukebox");
|
m_jukebox_timer->start(l_song_duration * 1000);
|
||||||
|
setCurrentMusic(f_song);
|
||||||
|
setMusicPlayedBy("Jukebox");
|
||||||
|
m_jukebox_queue.append(f_song);
|
||||||
|
return "Song added to Jukebox.";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
m_jukebox_queue.append(f_song);
|
return "Unable to add song. Duration shorther than 1.";
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
return false;
|
return "Unable to add song. Song already in Jukebox.";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -322,13 +322,12 @@ void AOClient::pktChangeMusic(AreaData* area, int argc, QStringList argv, AOPack
|
|||||||
|
|
||||||
//Jukebox intercepts the direct playing of messages.
|
//Jukebox intercepts the direct playing of messages.
|
||||||
if (area->isjukeboxEnabled()) {
|
if (area->isjukeboxEnabled()) {
|
||||||
if (area->addJukeboxSong(l_final_song))
|
QString l_jukebox_reply = area->addJukeboxSong(l_final_song);
|
||||||
sendServerMessage("Song added to jukebox.");
|
sendServerMessage(l_jukebox_reply);
|
||||||
else
|
|
||||||
sendServerMessage("Unable to add. Song already in jukebox.");
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
AOPacket l_music_change("MC", {l_final_song, argv[1], m_showname, "1", "0", l_effects});
|
AOPacket l_music_change("MC", {l_final_song, argv[1], m_showname, "1", "0", l_effects});
|
||||||
area->setCurrentMusic(l_final_song);
|
area->setCurrentMusic(l_final_song);
|
||||||
area->setMusicPlayedBy(m_showname);
|
area->setMusicPlayedBy(m_showname);
|
||||||
|
Loading…
Reference in New Issue
Block a user