Merge branch 'master' into mod-commands

This commit is contained in:
MangosArentLiterature 2021-04-07 00:45:56 -05:00
parent 735f886d15
commit ea0df75a88
6 changed files with 57 additions and 3 deletions

View File

@ -3,9 +3,11 @@ background=gs4
protected_area=true protected_area=true
iniswap_allowed=false iniswap_allowed=false
evidence_mod=cm evidence_mod=cm
blankposting_allowed=true
[1:Courtroom 1] [1:Courtroom 1]
background=gs4 background=gs4
protected_area=false protected_area=false
iniswap_allowed=true iniswap_allowed=true
evidence_mod=ffa evidence_mod=ffa
blankposting_allowed=true

View File

@ -1134,6 +1134,16 @@ class AOClient : public QObject {
*/ */
void cmdBans(int argc, QStringList argv); void cmdBans(int argc, QStringList argv);
/**
* @brief Toggle whether or not in-character messages purely consisting of spaces are allowed.
*
* @details Takes no arguments. Against all common sense this also allows you to disable blankposting.
*
* @iscommand
*/
void cmdAllow_Blankposting(int argc, QStringList argv);
///@} ///@}
/** /**
@ -1591,7 +1601,8 @@ class AOClient : public QObject {
{"notecard_clear", {ACLFlags.value("NONE"), 0, &AOClient::cmdNoteCardClear}}, {"notecard_clear", {ACLFlags.value("NONE"), 0, &AOClient::cmdNoteCardClear}},
{"8ball", {ACLFlags.value("NONE"), 1, &AOClient::cmd8Ball}}, {"8ball", {ACLFlags.value("NONE"), 1, &AOClient::cmd8Ball}},
{"lm", {ACLFlags.value("MODCHAT"), 1, &AOClient::cmdLM}}, {"lm", {ACLFlags.value("MODCHAT"), 1, &AOClient::cmdLM}},
{"judgelog", {ACLFlags.value("CM"), 0, &AOClient::cmdJudgeLog}} {"judgelog", {ACLFlags.value("CM"), 0, &AOClient::cmdJudgeLog}},
{"allow_blankposting", {ACLFlags.value("MODCHAT"), 0, &AOClient::cmdAllow_Blankposting}},
}; };
/** /**

View File

@ -187,6 +187,11 @@ class AreaData : public QObject {
*/ */
bool iniswap_allowed; bool iniswap_allowed;
/**
* @brief If true, clients are allowed to send empty IC messages
*/
bool blankposting_allowed;
/** /**
* @brief If true, the background of the area cannot be changed except by a moderator. * @brief If true, the background of the area cannot be changed except by a moderator.
*/ */
@ -279,6 +284,11 @@ class AreaData : public QObject {
* @details This list contains up to 10 recorded packets of the most recent judge actions (WT/CE or penalty updates) in an area. * @details This list contains up to 10 recorded packets of the most recent judge actions (WT/CE or penalty updates) in an area.
*/ */
QStringList judgelog; QStringList judgelog;
/**
* @brief The last IC packet sent in an area.
*/
QStringList last_ic_message;
}; };
#endif // AREA_DATA_H #endif // AREA_DATA_H

View File

@ -25,7 +25,8 @@ AreaData::AreaData(QString p_name, int p_index) :
document("No document."), document("No document."),
def_hp(10), def_hp(10),
pro_hp(10), pro_hp(10),
judgelog() judgelog(),
last_ic_message()
{ {
QStringList name_split = p_name.split(":"); QStringList name_split = p_name.split(":");
name_split.removeFirst(); name_split.removeFirst();
@ -37,6 +38,7 @@ AreaData::AreaData(QString p_name, int p_index) :
iniswap_allowed = areas_ini.value("iniswap_allowed", "true").toBool(); iniswap_allowed = areas_ini.value("iniswap_allowed", "true").toBool();
bg_locked = areas_ini.value("bg_locked", "false").toBool(); bg_locked = areas_ini.value("bg_locked", "false").toBool();
QString configured_evi_mod = areas_ini.value("evidence_mod", "FFA").toString().toLower(); QString configured_evi_mod = areas_ini.value("evidence_mod", "FFA").toString().toLower();
blankposting_allowed = areas_ini.value("blankposting_allowed","true").toBool();
areas_ini.endGroup(); areas_ini.endGroup();
QSettings config_ini("config/config.ini", QSettings::IniFormat); QSettings config_ini("config/config.ini", QSettings::IniFormat);
config_ini.beginGroup("Options"); config_ini.beginGroup("Options");

View File

@ -1298,6 +1298,19 @@ void AOClient::cmdJudgeLog(int argc, QStringList argv)
} }
} }
void AOClient::cmdAllow_Blankposting(int argc, QStringList argv)
{
QString sender_name = ooc_name;
AreaData* area = server->areas[current_area];
area->blankposting_allowed = !area->blankposting_allowed;
if (area->blankposting_allowed == false) {
sendServerMessageArea(sender_name + " has set blankposting in the area to forbidden.");
}
else {
sendServerMessageArea(sender_name + " has set blankposting in the area to allowed.");
}
}
QStringList AOClient::buildAreaList(int area_idx) QStringList AOClient::buildAreaList(int area_idx)
{ {
QStringList entries; QStringList entries;

View File

@ -168,6 +168,8 @@ void AOClient::pktIcChat(AreaData* area, int argc, QStringList argv, AOPacket pa
area->logger->logIC(this, &validated_packet); area->logger->logIC(this, &validated_packet);
server->broadcast(validated_packet, current_area); server->broadcast(validated_packet, current_area);
area->last_ic_message.clear();
area->last_ic_message.append(validated_packet.contents);
} }
void AOClient::pktOocChat(AreaData* area, int argc, QStringList argv, AOPacket packet) void AOClient::pktOocChat(AreaData* area, int argc, QStringList argv, AOPacket packet)
@ -435,6 +437,11 @@ AOPacket AOClient::validateIcPacket(AOPacket packet)
if (incoming_msg == last_message) if (incoming_msg == last_message)
return invalid; return invalid;
if (incoming_msg == "" && area->blankposting_allowed == false) {
sendServerMessage("Blankposting has been forbidden in this area.");
return invalid;
}
last_message = incoming_msg; last_message = incoming_msg;
args.append(incoming_msg); args.append(incoming_msg);
@ -603,6 +610,15 @@ AOPacket AOClient::validateIcPacket(AOPacket packet)
int additive = incoming_args[24].toInt(); int additive = incoming_args[24].toInt();
if (additive != 0 && additive != 1) if (additive != 0 && additive != 1)
return invalid; return invalid;
else if (area->last_ic_message.isEmpty()){
additive = 0;
}
else if (!(char_id == area->last_ic_message[8].toInt())) {
additive = 0;
}
else if (additive == 1) {
args[4].insert(0, " ");
}
args.append(QString::number(additive)); args.append(QString::number(additive));
// effect // effect