-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathds_calc.cpp
180 lines (162 loc) · 5.75 KB
/
ds_calc.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
/* ----------------------------------------------------------------------------
* Name : ds_calc.cpp
* Author : Naram Qashat (CyberBotX)
* ----------------------------------------------------------------------------
* Description:
*
* The CALC and EXCALC commands of DiceServ. See diceserv.cpp for more
* information about DiceServ, including version and license.
* ----------------------------------------------------------------------------
*/
#include "diceserv.h"
static ServiceReference<DiceServDataHandlerService> DiceServDataHandler("DiceServDataHandlerService", "DiceServ");
/** CALC command
*
* Handles regular dice rolls, sans rounding, resulting in more of a calculation.
*/
class DSCalcCommand : public Command
{
public:
DSCalcCommand(Module *creator) : Command(creator, "diceserv/calc", 1, 3)
{
this->AllowUnregistered(true);
this->RequireUser(true);
this->SetDesc(_("ROLL without rounding, for calculations"));
this->SetSyntax(_("\037dice\037 [[\037channel\037] \037comment\037]"));
}
void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) anope_override
{
DiceServData data;
data.roundResults = false;
data.rollPrefix = "Calc";
if (!DiceServDataHandler->PreParse(data, source, params, 1))
return;
if (!DiceServDataHandler->CheckMessageLengthPreProcess(data, source))
return;
DiceServDataHandler->Roll(data);
if (data.errCode != DICE_ERROR_NONE)
{
DiceServDataHandler->HandleError(data, source);
return;
}
Anope::string output = DiceServDataHandler->GenerateNoExOutput(data);
if (!DiceServDataHandler->CheckMessageLengthPostProcess(data, source, output))
{
DiceServDataHandler->HandleError(data, source);
return;
}
DiceServDataHandler->SendReply(data, source, output);
}
bool OnHelp(CommandSource &source, const Anope::string &) anope_override
{
this->SendSyntax(source);
source.Reply(" ");
source.Reply(_("This command is identical to ROLL (see \002%s%s\002\n"
"\002HELP ROLL\002 for more information on how to use this and\n"
"ROLL), except the results are not rounded off and are\n"
"displayed as is."), Config->StrictPrivmsg.c_str(), source.service->nick.c_str());
const Anope::string &fantasycharacters = Config->GetModule("fantasy")->Get<const Anope::string>("fantasycharacter", "!");
if (!fantasycharacters.empty())
source.Reply(_(" \n"
"Additionally, if fantasy is enabled, this command can be triggered by using:\n"
" \n"
"!calc \037dice\037 [\037comment\037]\n"
" \n"
"where ! is one of the following characters: %s"), fantasycharacters.c_str());
return true;
}
};
/** EXCALC command
*
* Handles dice rolls with extended output, sans rounding, resulting in more of a calculation.
*/
class DSExcalcCommand : public Command
{
public:
DSExcalcCommand(Module *creator) : Command(creator, "diceserv/excalc", 1, 3)
{
this->AllowUnregistered(true);
this->RequireUser(true);
this->SetDesc(_("EXROLL without rounding, for calculations"));
this->SetSyntax(_("\037dice\037 [[\037channel\037] \037comment\037]"));
}
void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) anope_override
{
DiceServData data;
data.roundResults = false;
data.isExtended = true;
data.rollPrefix = "Excalc";
if (!DiceServDataHandler->PreParse(data, source, params, 1))
return;
if (!DiceServDataHandler->CheckMessageLengthPreProcess(data, source))
return;
DiceServDataHandler->Roll(data);
if (data.errCode != DICE_ERROR_NONE)
{
DiceServDataHandler->HandleError(data, source);
return;
}
Anope::string output;
if (DiceServDataHandler->HasExtended(data))
{
output = DiceServDataHandler->GenerateLongExOutput(data);
if (!DiceServDataHandler->CheckMessageLengthPostProcess(data, source, output))
{
output = DiceServDataHandler->GenerateShortExOutput(data);
if (!DiceServDataHandler->CheckMessageLengthPostProcess(data, source, output))
{
data.rollPrefix = "Calc";
output = DiceServDataHandler->GenerateNoExOutput(data);
if (!DiceServDataHandler->CheckMessageLengthPostProcess(data, source, output))
{
DiceServDataHandler->HandleError(data, source);
return;
}
}
}
}
else
{
data.rollPrefix = "Calc";
output = DiceServDataHandler->GenerateNoExOutput(data);
if (!DiceServDataHandler->CheckMessageLengthPostProcess(data, source, output))
{
DiceServDataHandler->HandleError(data, source);
return;
}
}
DiceServDataHandler->SendReply(data, source, output);
}
bool OnHelp(CommandSource &source, const Anope::string &) anope_override
{
this->SendSyntax(source);
source.Reply(" ");
source.Reply(_("This command is identical to EXROLL (see \002/%s%s\002\n"
"\002HELP EXROLL\002 for more information on how to use this and\n"
"EXROLL), except the results are not rounded off and are\n"
"displayed as is."), Config->StrictPrivmsg.c_str(), source.service->nick.c_str());
const Anope::string &fantasycharacters = Config->GetModule("fantasy")->Get<const Anope::string>("fantasycharacter", "!");
if (!fantasycharacters.empty())
source.Reply(_(" \n"
"Additionally, if fantasy is enabled, this command can be triggered by using:\n"
" \n"
"!excalc \037dice\037 [\037comment\037]\n"
" \n"
"where ! is one of the following characters: %s"), fantasycharacters.c_str());
return true;
}
};
class DSCalc : public Module
{
DSCalcCommand calc_cmd;
DSExcalcCommand excalc_cmd;
public:
DSCalc(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, THIRD), calc_cmd(this), excalc_cmd(this)
{
this->SetAuthor(DiceServService::Author());
this->SetVersion(DiceServService::Version());
if (!DiceServDataHandler)
throw ModuleException("No interface for DiceServ's data handler");
}
};
MODULE_INIT(DSCalc)