X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_botmode.cpp;h=4664dad75f4deb324820b3489f4d7d57c269270e;hb=8f915e5ddbab4e36bb08f9f9d726e953db1f601f;hp=1217fb886f5dd14bc5ec274736eaa477a22d9022;hpb=e21ee18e62aecee6d27a0f9ba497a52688cb8349;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_botmode.cpp b/src/modules/m_botmode.cpp index 1217fb886..4664dad75 100644 --- a/src/modules/m_botmode.cpp +++ b/src/modules/m_botmode.cpp @@ -2,8 +2,8 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd: (C) 2002-2008 InspIRCd Development Team - * See: http://www.inspircd.org/wiki/index.php/Credits + * InspIRCd: (C) 2002-2010 InspIRCd Development Team + * See: http://wiki.inspircd.org/Credits * * This program is free but copyrighted software; see * the file COPYING for details. @@ -17,60 +17,33 @@ /** Handles user mode +B */ -class BotMode : public ModeHandler +class BotMode : public SimpleUserModeHandler { public: - BotMode(InspIRCd* Instance) : ModeHandler(Instance, 'B', 0, 0, false, MODETYPE_USER, false) { } - - ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string ¶meter, bool adding, bool) - { - if (adding) - { - if (!dest->IsModeSet('B')) - { - dest->SetMode('B',true); - return MODEACTION_ALLOW; - } - } - else - { - if (dest->IsModeSet('B')) - { - dest->SetMode('B',false); - return MODEACTION_ALLOW; - } - } - - return MODEACTION_DENY; - } + BotMode(Module* Creator) : SimpleUserModeHandler(Creator, "bot", 'B') { } }; class ModuleBotMode : public Module { - - BotMode* bm; + BotMode bm; public: - ModuleBotMode(InspIRCd* Me) - : Module(Me) + ModuleBotMode() + : bm(this) { - - bm = new BotMode(ServerInstance); - if (!ServerInstance->Modes->AddMode(bm)) + if (!ServerInstance->Modes->AddMode(&bm)) throw ModuleException("Could not add new modes!"); Implementation eventlist[] = { I_OnWhois }; ServerInstance->Modules->Attach(eventlist, this, 1); } - + virtual ~ModuleBotMode() { - ServerInstance->Modes->DelMode(bm); - delete bm; } - + virtual Version GetVersion() { - return Version(1,1,0,0,VF_COMMON|VF_VENDOR,API_VERSION); + return Version("Provides support for unreal-style umode +B",VF_VENDOR); } virtual void OnWhois(User* src, User* dst)