]> jfr.im git - irc/freenode/solanum.git/blame - extensions/m_roleplay.c
m_challenge: various fixes
[irc/freenode/solanum.git] / extensions / m_roleplay.c
CommitLineData
8ffa8275 1/*
a6f63a82 2 * roleplay commands for solanum.
8ffa8275
BG
3 *
4 * adds NPC, NPCA, and SCENE which allow users to send messages from 'fake'
5 * nicknames. in the case of NPC and NPCA, the nickname will be underlined
6 * to clearly show that it is fake. SCENE is a special case and not underlined.
7 * these commands only work on channels set +N
8 *
55abcbb2 9 * also adds oper commands FSAY and FACTION, which are like NPC and NPCA
8ffa8275 10 * except without the underline.
55abcbb2 11 *
8ffa8275
BG
12 * all of these messages have the hostmask npc.fakeuser.invalid, and their ident
13 * is the nickname of the user running the commands.
14 */
15
16
17#include "stdinc.h"
18#include "ircd.h"
19#include "client.h"
20#include "modules.h"
21#include "send.h"
22#include "numeric.h"
23#include "hash.h"
24#include "s_serv.h"
25#include "inline/stringops.h"
26#include "chmode.h"
27#include "tgchange.h"
28#include "channel.h"
23485ebe 29#include "packet.h"
bd0d352f 30#include "messages.h"
8ffa8275 31
02369fa7
EM
32static const char roleplay_desc[] =
33 "Adds a roleplaying system that allows faked nicknames to talk in a channel set +N";
34
3c7d6fcc
EM
35static void m_scene(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[]);
36static void m_fsay(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[]);
37static void m_faction(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[]);
38static void m_npc(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[]);
39static void m_npca(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[]);
40static void m_displaymsg(struct MsgBuf *msgbuf_p, struct Client *source_p, const char *channel, int underline, int action, const char *nick, const char *text);
41static void me_roleplay(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[]);
8ffa8275
BG
42static unsigned int mymode;
43
44static int
45_modinit(void)
46{
47 /* initalize the +N cmode */
48 mymode = cflag_add('N', chm_simple);
49 if (mymode == 0)
50 return -1;
51
52 return 0;
53}
54
55static void
56_moddeinit(void)
57{
58 /* orphan the +N cmode on modunload */
59 cflag_orphan('N');
60}
61
62
63struct Message scene_msgtab = {
7baa37a9 64 "SCENE", 0, 0, 0, 0,
8ffa8275
BG
65 {mg_unreg, {m_scene, 3}, mg_ignore, mg_ignore, mg_ignore, {m_scene, 3}}
66};
67
68/* this serves as an alias for people who are used to inspircd/unreal m_roleplay */
69struct Message ambiance_msgtab = {
7baa37a9 70 "AMBIANCE", 0, 0, 0, 0,
8ffa8275 71 {mg_unreg, {m_scene, 3}, mg_ignore, mg_ignore, mg_ignore, {m_scene, 3}}
55abcbb2 72};
8ffa8275
BG
73
74struct Message fsay_msgtab = {
7baa37a9 75 "FSAY", 0, 0, 0, 0,
8ffa8275 76 {mg_unreg, {m_npc, 4}, mg_ignore, mg_ignore, mg_ignore, {m_fsay, 4}}
55abcbb2 77};
8ffa8275
BG
78
79struct Message faction_msgtab = {
7baa37a9 80 "FACTION", 0, 0, 0, 0,
8ffa8275 81 {mg_unreg, {m_npca, 4}, mg_ignore, mg_ignore, mg_ignore, {m_faction, 4}}
55abcbb2 82};
8ffa8275
BG
83
84struct Message npc_msgtab = {
7baa37a9 85 "NPC", 0, 0, 0, 0,
8ffa8275 86 {mg_unreg, {m_npc, 4}, mg_ignore, mg_ignore, mg_ignore, {m_npc, 4}}
55abcbb2 87};
8ffa8275
BG
88
89struct Message npca_msgtab = {
7baa37a9 90 "NPCA", 0, 0, 0, 0,
8ffa8275 91 {mg_unreg, {m_npca, 4}, mg_ignore, mg_ignore, mg_ignore, {m_npca, 4}}
55abcbb2 92};
8ffa8275
BG
93
94struct Message roleplay_msgtab = {
7baa37a9 95 "ROLEPLAY", 0, 0, 0, 0,
6816e338 96 {mg_ignore, mg_ignore, mg_ignore, mg_ignore, {me_roleplay, 4}, mg_ignore}
55abcbb2 97};
8ffa8275
BG
98
99mapi_clist_av1 roleplay_clist[] = { &scene_msgtab, &ambiance_msgtab, &fsay_msgtab, &faction_msgtab, &npc_msgtab, &npca_msgtab, &roleplay_msgtab, NULL };
100
02369fa7 101DECLARE_MODULE_AV2(roleplay, _modinit, _moddeinit, roleplay_clist, NULL, NULL, NULL, NULL, roleplay_desc);
8ffa8275 102
3c7d6fcc 103static void
760bafda 104m_scene(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
8ffa8275 105{
760bafda 106 m_displaymsg(msgbuf_p, source_p, parv[1], 0, 0, "=Scene=", parv[2]);
8ffa8275
BG
107}
108
3c7d6fcc 109static void
760bafda 110m_fsay(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
8ffa8275 111{
760bafda 112 m_displaymsg(msgbuf_p, source_p, parv[1], 0, 0, parv[2], parv[3]);
8ffa8275
BG
113}
114
3c7d6fcc 115static void
760bafda 116m_faction(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
8ffa8275 117{
760bafda 118 m_displaymsg(msgbuf_p, source_p, parv[1], 0, 1, parv[2], parv[3]);
8ffa8275
BG
119}
120
3c7d6fcc 121static void
760bafda 122m_npc(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
8ffa8275 123{
760bafda 124 m_displaymsg(msgbuf_p, source_p, parv[1], 1, 0, parv[2], parv[3]);
8ffa8275
BG
125}
126
3c7d6fcc 127static void
760bafda 128m_npca(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
8ffa8275 129{
760bafda 130 m_displaymsg(msgbuf_p, source_p, parv[1], 1, 1, parv[2], parv[3]);
8ffa8275
BG
131}
132
3c7d6fcc 133static void
760bafda 134m_displaymsg(struct MsgBuf *msgbuf_p, struct Client *source_p, const char *channel, int underline, int action, const char *nick, const char *text)
8ffa8275
BG
135{
136 struct Channel *chptr;
137 struct membership *msptr;
138 char nick2[NICKLEN+1];
a6b29d3e 139 char nick3[NICKLEN+1];
e03fc000 140 char text3[BUFSIZE];
8ffa8275
BG
141 char text2[BUFSIZE];
142
a6b29d3e
JT
143 rb_strlcpy(nick3, nick, sizeof nick3);
144
23485ebe
JT
145 if(!IsFloodDone(source_p))
146 flood_endgrace(source_p);
147
8ffa8275
BG
148 if((chptr = find_channel(channel)) == NULL)
149 {
b97e1bf6
JT
150 sendto_one_numeric(source_p, ERR_NOSUCHCHANNEL,
151 form_str(ERR_NOSUCHCHANNEL), channel);
3c7d6fcc 152 return;
8ffa8275
BG
153 }
154
155 if(!(msptr = find_channel_membership(chptr, source_p)))
156 {
157 sendto_one_numeric(source_p, ERR_NOTONCHANNEL,
158 form_str(ERR_NOTONCHANNEL), chptr->chname);
3c7d6fcc 159 return;
8ffa8275
BG
160 }
161
162 if(!(chptr->mode.mode & chmode_flags['N']))
163 {
164 sendto_one_numeric(source_p, 573, "%s :Roleplay commands are not enabled on this channel.", chptr->chname);
3c7d6fcc 165 return;
8ffa8275
BG
166 }
167
168 if(!can_send(chptr, source_p, msptr))
169 {
170 sendto_one_numeric(source_p, 573, "%s :Cannot send to channel.", chptr->chname);
3c7d6fcc 171 return;
8ffa8275
BG
172 }
173
174 /* enforce flood stuff on roleplay commands */
175 if(flood_attack_channel(0, source_p, chptr, chptr->chname))
3c7d6fcc 176 return;
8ffa8275
BG
177
178 /* enforce target change on roleplay commands */
179 if(!is_chanop_voiced(msptr) && !IsOper(source_p) && !add_channel_target(source_p, chptr))
180 {
181 sendto_one(source_p, form_str(ERR_TARGCHANGE),
182 me.name, source_p->name, chptr->chname);
3c7d6fcc 183 return;
8ffa8275
BG
184 }
185
186 if(underline)
5203cba5 187 snprintf(nick2, sizeof(nick2), "\x1F%s\x1F", strip_unprintable(nick3));
8ffa8275 188 else
5203cba5 189 snprintf(nick2, sizeof(nick2), "%s", strip_unprintable(nick3));
8ffa8275
BG
190
191 /* don't allow nicks to be empty after stripping
192 * this prevents nastiness like fake factions, etc. */
193 if(EmptyString(nick3))
194 {
195 sendto_one_numeric(source_p, 573, "%s :No visible non-stripped characters in nick.", chptr->chname);
3c7d6fcc 196 return;
8ffa8275
BG
197 }
198
5203cba5 199 snprintf(text3, sizeof(text3), "%s (%s)", text, source_p->name);
e03fc000 200
8ffa8275 201 if(action)
e52893db 202 snprintf(text2, sizeof(text2), "\1ACTION %.500s\1", text3);
8ffa8275 203 else
5203cba5 204 snprintf(text2, sizeof(text2), "%s", text3);
8ffa8275 205
4b1cce65 206 sendto_channel_local(source_p, ALL_MEMBERS, chptr, ":%s!%s@npc.fakeuser.invalid PRIVMSG %s :%s", nick2, source_p->name, channel, text2);
6816e338
BG
207 sendto_match_servs(source_p, "*", CAP_ENCAP, NOCAPS, "ENCAP * ROLEPLAY %s %s :%s",
208 channel, nick2, text2);
8ffa8275
BG
209}
210
3c7d6fcc 211static void
760bafda 212me_roleplay(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
8ffa8275
BG
213{
214 struct Channel *chptr;
215
216 /* Don't segfault if we get ROLEPLAY with an invalid channel.
6816e338
BG
217 * This shouldn't happen but it's best to be on the safe side. */
218 if((chptr = find_channel(parv[1])) == NULL)
3c7d6fcc 219 return;
8ffa8275 220
4b1cce65 221 sendto_channel_local(source_p, ALL_MEMBERS, chptr, ":%s!%s@npc.fakeuser.invalid PRIVMSG %s :%s", parv[2], source_p->name, parv[1], parv[3]);
8ffa8275 222}