summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/channels.h4
-rw-r--r--include/users.h4
-rw-r--r--src/channels.cpp8
-rw-r--r--src/modules/m_blockcaps.cpp4
-rw-r--r--src/modules/m_blockcolor.cpp4
-rw-r--r--src/modules/m_botmode.cpp25
-rw-r--r--src/users.cpp7
7 files changed, 44 insertions, 12 deletions
diff --git a/include/channels.h b/include/channels.h
index 76b604668..ade284709 100644
--- a/include/channels.h
+++ b/include/channels.h
@@ -166,14 +166,14 @@ class chanrec : public Extensible
* @param mode The mode character to set or unset
* @param mode_on True if you want to set the mode or false if you want to remove it
*/
- void SetCustomMode(char mode,bool mode_on);
+ void SetMode(char mode,bool mode_on);
/** Sets or unsets the parameters for a custom mode in a channels info
* @param mode The mode character to set or unset
* @param parameter The parameter string to associate with this mode character
* @param mode_on True if you want to set the mode or false if you want to remove it
*/
- void SetCustomModeParam(char mode,char* parameter,bool mode_on);
+ void SetModeParam(char mode,char* parameter,bool mode_on);
/** Returns true if a mode is set on a channel
* @param mode The mode character you wish to query
diff --git a/include/users.h b/include/users.h
index 2b3f74742..a7d1c9250 100644
--- a/include/users.h
+++ b/include/users.h
@@ -269,7 +269,9 @@ class userrec : public connection
*/
const char* FormatModes();
- bool HasMode(unsigned char m);
+ bool IsModeSet(unsigned char m);
+
+ void SetMode(unsigned char m, bool value);
/** Returns true if a user is invited to a channel.
*/
diff --git a/src/channels.cpp b/src/channels.cpp
index c4948c2e2..a25b2927c 100644
--- a/src/channels.cpp
+++ b/src/channels.cpp
@@ -57,17 +57,17 @@ chanrec::chanrec()
memset(&modes,0,64);
}
-void chanrec::SetCustomMode(char mode,bool mode_on)
+void chanrec::SetMode(char mode,bool mode_on)
{
modes[mode-65] = mode_on;
if (!mode_on)
- this->SetCustomModeParam(mode,"",false);
+ this->SetModeParam(mode,"",false);
}
-void chanrec::SetCustomModeParam(char mode,char* parameter,bool mode_on)
+void chanrec::SetModeParam(char mode,char* parameter,bool mode_on)
{
- log(DEBUG,"SetCustomModeParam called");
+ log(DEBUG,"SetModeParam called");
CustomModeList::iterator n = custom_mode_params.find(mode);
diff --git a/src/modules/m_blockcaps.cpp b/src/modules/m_blockcaps.cpp
index 4cad8ebc2..017217073 100644
--- a/src/modules/m_blockcaps.cpp
+++ b/src/modules/m_blockcaps.cpp
@@ -33,7 +33,7 @@ class BlockCaps : public ModeHandler
{
if (!channel->IsModeSet('P'))
{
- channel->SetCustomMode('P',true);
+ channel->SetMode('P',true);
return MODEACTION_ALLOW;
}
}
@@ -41,7 +41,7 @@ class BlockCaps : public ModeHandler
{
if (channel->IsModeSet('P'))
{
- channel->SetCustomMode('P',false);
+ channel->SetMode('P',false);
return MODEACTION_ALLOW;
}
}
diff --git a/src/modules/m_blockcolor.cpp b/src/modules/m_blockcolor.cpp
index 04c621ac0..f517ba215 100644
--- a/src/modules/m_blockcolor.cpp
+++ b/src/modules/m_blockcolor.cpp
@@ -36,7 +36,7 @@ class BlockColor : public ModeHandler
{
if (!channel->IsModeSet('c'))
{
- channel->SetCustomMode('c',true);
+ channel->SetMode('c',true);
return MODEACTION_ALLOW;
}
}
@@ -44,7 +44,7 @@ class BlockColor : public ModeHandler
{
if (channel->IsModeSet('c'))
{
- channel->SetCustomMode('c',false);
+ channel->SetMode('c',false);
return MODEACTION_ALLOW;
}
}
diff --git a/src/modules/m_botmode.cpp b/src/modules/m_botmode.cpp
index 612eb3b9c..d5757c002 100644
--- a/src/modules/m_botmode.cpp
+++ b/src/modules/m_botmode.cpp
@@ -24,6 +24,31 @@ using namespace std;
/* $ModDesc: Provides support for unreal-style umode +B */
+class BotMode : public ModeHandler
+{
+ BotMode() : ModeHandler('B', 0, 0, false, MODETYPE_USER, false) { }
+
+ ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding)
+ {
+ if (adding)
+ {
+ if (!dest->IsModeSet('B'))
+ {
+ user->SetMode('B',true);
+ return MODEACTION_ALLOW;
+ }
+ }
+ else
+ {
+ if (dest->IsModeSet('B'))
+ {
+ user->SetMode('B',false);
+ return MODEACTION_ALLOW;
+ }
+ }
+ }
+};
+
class ModuleBotMode : public Module
{
Server *Srv;
diff --git a/src/users.cpp b/src/users.cpp
index 40594c8a9..f51656a55 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -110,11 +110,16 @@ bool DoneClassesAndTypes(const char* tag)
return true;
}
-bool userrec::HasMode(unsigned char m)
+bool userrec::IsModeSet(unsigned char m)
{
return (modes[m-65]);
}
+void userrec::SetMode(unsigned char m, bool value)
+{
+ modes[m-65] = value;
+}
+
const char* userrec::FormatModes()
{
static char data[MAXBUF];