Allow areas to set whether or not /play requires CM (#347)
* Allow areas to set whether or not /play requires cm * make error message clearer (thank you 8)
This commit is contained in:
parent
74820dadee
commit
3e5776c410
@ -329,6 +329,15 @@ class AreaData : public QObject
|
|||||||
*/
|
*/
|
||||||
int getJukeboxQueueSize() const;
|
int getJukeboxQueueSize() const;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Returns whether /play is allowed without CM in this area
|
||||||
|
*
|
||||||
|
* @return See short description.
|
||||||
|
*
|
||||||
|
* @see #m_playcmd
|
||||||
|
*/
|
||||||
|
bool isPlayEnabled() const;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Locks the area, setting it to LOCKED.
|
* @brief Locks the area, setting it to LOCKED.
|
||||||
*/
|
*/
|
||||||
@ -1183,6 +1192,11 @@ class AreaData : public QObject
|
|||||||
*/
|
*/
|
||||||
bool m_jukebox;
|
bool m_jukebox;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Whether or not /play can be used without CM.
|
||||||
|
*/
|
||||||
|
bool m_playcmd;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Timer until the next IC message can be sent.
|
* @brief Timer until the next IC message can be sent.
|
||||||
*/
|
*/
|
||||||
|
@ -59,7 +59,7 @@ const QMap<QString, AOClient::CommandInfo> AOClient::COMMANDS{
|
|||||||
{"area_unlock", {{ACLRole::CM}, 0, &AOClient::cmdUnLock}},
|
{"area_unlock", {{ACLRole::CM}, 0, &AOClient::cmdUnLock}},
|
||||||
{"timer", {{ACLRole::CM}, 0, &AOClient::cmdTimer}},
|
{"timer", {{ACLRole::CM}, 0, &AOClient::cmdTimer}},
|
||||||
{"area", {{ACLRole::NONE}, 1, &AOClient::cmdArea}},
|
{"area", {{ACLRole::NONE}, 1, &AOClient::cmdArea}},
|
||||||
{"play", {{ACLRole::CM}, 1, &AOClient::cmdPlay}},
|
{"play", {{ACLRole::NONE}, 1, &AOClient::cmdPlay}},
|
||||||
{"area_kick", {{ACLRole::CM}, 1, &AOClient::cmdAreaKick}},
|
{"area_kick", {{ACLRole::CM}, 1, &AOClient::cmdAreaKick}},
|
||||||
{"randomchar", {{ACLRole::NONE}, 0, &AOClient::cmdRandomChar}},
|
{"randomchar", {{ACLRole::NONE}, 0, &AOClient::cmdRandomChar}},
|
||||||
{"switch", {{ACLRole::NONE}, 1, &AOClient::cmdSwitch}},
|
{"switch", {{ACLRole::NONE}, 1, &AOClient::cmdSwitch}},
|
||||||
|
@ -60,6 +60,7 @@ AreaData::AreaData(QString p_name, int p_index, MusicManager *p_music_manager =
|
|||||||
m_shownameAllowed = areas_ini->value("shownames_allowed", "true").toBool();
|
m_shownameAllowed = areas_ini->value("shownames_allowed", "true").toBool();
|
||||||
m_ignoreBgList = areas_ini->value("ignore_bglist", "false").toBool();
|
m_ignoreBgList = areas_ini->value("ignore_bglist", "false").toBool();
|
||||||
m_jukebox = areas_ini->value("jukebox_enabled", "false").toBool();
|
m_jukebox = areas_ini->value("jukebox_enabled", "false").toBool();
|
||||||
|
m_playcmd = areas_ini->value("playcmd_enabled", "false").toBool();
|
||||||
m_can_send_wtce = areas_ini->value("wtce_enabled", "true").toBool();
|
m_can_send_wtce = areas_ini->value("wtce_enabled", "true").toBool();
|
||||||
m_can_use_shouts = areas_ini->value("shouts_enabled", "true").toBool();
|
m_can_use_shouts = areas_ini->value("shouts_enabled", "true").toBool();
|
||||||
areas_ini->endGroup();
|
areas_ini->endGroup();
|
||||||
@ -166,6 +167,11 @@ int AreaData::getJukeboxQueueSize() const
|
|||||||
return m_jukebox_queue.size();
|
return m_jukebox_queue.size();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool AreaData::isPlayEnabled() const
|
||||||
|
{
|
||||||
|
return m_playcmd;
|
||||||
|
}
|
||||||
|
|
||||||
void AreaData::lock()
|
void AreaData::lock()
|
||||||
{
|
{
|
||||||
m_locked = LockStatus::LOCKED;
|
m_locked = LockStatus::LOCKED;
|
||||||
|
@ -34,6 +34,10 @@ void AOClient::cmdPlay(int argc, QStringList argv)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
AreaData *l_area = server->getAreaById(m_current_area);
|
AreaData *l_area = server->getAreaById(m_current_area);
|
||||||
|
if (!l_area->owners().contains(m_id) && !l_area->isPlayEnabled()) { // Make sure we have permission to play music
|
||||||
|
sendServerMessage("Free music play is disabled in this area.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
QString l_song = argv.join(" ");
|
QString l_song = argv.join(" ");
|
||||||
if (m_showname.isEmpty()) {
|
if (m_showname.isEmpty()) {
|
||||||
l_area->changeMusic(m_current_char, l_song);
|
l_area->changeMusic(m_current_char, l_song);
|
||||||
|
Loading…
Reference in New Issue
Block a user