summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-08-19 20:28:01 +0300
committerAndrei Karas <akaras@inbox.ru>2016-08-19 20:28:01 +0300
commitdabdb65631b7915ba79ea91c3f79d72381b0691e (patch)
tree17c7eb578bc5d33ee46b2be064598460bde87446
parentbd5ebdedb78b145120affe161d91389ac27e71ef (diff)
downloadplus-dabdb65631b7915ba79ea91c3f79d72381b0691e.tar.gz
plus-dabdb65631b7915ba79ea91c3f79d72381b0691e.tar.bz2
plus-dabdb65631b7915ba79ea91c3f79d72381b0691e.tar.xz
plus-dabdb65631b7915ba79ea91c3f79d72381b0691e.zip
Add chat command guildnotice for set guild notice message.
-rw-r--r--src/actions/chat.cpp15
-rw-r--r--src/actions/chat.h1
-rw-r--r--src/dyetool/actions/chat.cpp1
-rw-r--r--src/enums/input/inputaction.h1
-rw-r--r--src/input/inputactionmap.h6
5 files changed, 24 insertions, 0 deletions
diff --git a/src/actions/chat.cpp b/src/actions/chat.cpp
index a3fcef632..a8a7ac827 100644
--- a/src/actions/chat.cpp
+++ b/src/actions/chat.cpp
@@ -646,4 +646,19 @@ impHandler(chatClipboard)
return false;
}
+impHandler(guildNotice)
+{
+ if (!localPlayer)
+ return false;
+ const std::string args = event.args;
+ const std::string str1 = args.substr(0, 60);
+ std::string str2("");
+ if (args.size() > 60)
+ str2 = args.substr(60);
+ const Guild *const guild = localPlayer->getGuild();
+ if (guild)
+ guildHandler->changeNotice(guild->getId(), str1, str2);
+ return true;
+}
+
} // namespace Actions
diff --git a/src/actions/chat.h b/src/actions/chat.h
index 158de5580..b90b97173 100644
--- a/src/actions/chat.h
+++ b/src/actions/chat.h
@@ -60,6 +60,7 @@ namespace Actions
decHandler(chatGuildTab);
decHandler(hat);
decHandler(chatClipboard);
+ decHandler(guildNotice);
} // namespace Actions
#undef decHandler
diff --git a/src/dyetool/actions/chat.cpp b/src/dyetool/actions/chat.cpp
index 9d54e2771..1e14e75d7 100644
--- a/src/dyetool/actions/chat.cpp
+++ b/src/dyetool/actions/chat.cpp
@@ -60,5 +60,6 @@ impHandlerVoid(chatPartyTab)
impHandlerVoid(chatGuildTab)
impHandlerVoid(hat)
impHandlerVoid(chatClipboard)
+impHandlerVoid(guildNotice)
} // namespace Actions
diff --git a/src/enums/input/inputaction.h b/src/enums/input/inputaction.h
index 27b0974f9..4bf981256 100644
--- a/src/enums/input/inputaction.h
+++ b/src/enums/input/inputaction.h
@@ -680,6 +680,7 @@ enumStart(InputAction)
SET_SKILL_OFFSET_X,
SET_SKILL_OFFSET_Y,
LEAVE_GUILD,
+ GUILD_NOTICE,
TOTAL
}
enumEnd(InputAction);
diff --git a/src/input/inputactionmap.h b/src/input/inputactionmap.h
index bff086cd3..31c2240eb 100644
--- a/src/input/inputactionmap.h
+++ b/src/input/inputactionmap.h
@@ -5570,6 +5570,12 @@ static const InputActionData inputActionData
"leaveguild|guildleave",
UseArgs_false,
Protected_true},
+ {"keyGuildNotice",
+ defaultAction(&Actions::guildNotice),
+ InputCondition::INGAME,
+ "notice|guildnotice",
+ UseArgs_true,
+ Protected_true},
};
#undef defaultAction