X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_helpop.cpp;h=3a5934a6781c6bf8773381ee3124399af774a64f;hb=94afde43b086f092bf8128d76d418cb63840e8eb;hp=2f82f961bc87d5ec47a35c16a359fc78752e4f07;hpb=5b3c052062f0976242b36c82cfeae2ed3b23c6b2;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_helpop.cpp b/src/modules/m_helpop.cpp index 2f82f961b..3a5934a67 100644 --- a/src/modules/m_helpop.cpp +++ b/src/modules/m_helpop.cpp @@ -2,7 +2,7 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd: (C) 2002-2007 InspIRCd Development Team + * InspIRCd: (C) 2002-2008 InspIRCd Development Team * See: http://www.inspircd.org/wiki/index.php/Credits * * This program is free but copyrighted software; see @@ -12,9 +12,6 @@ */ #include "inspircd.h" -#include "users.h" -#include "channels.h" -#include "modules.h" /* $ModDesc: /helpop Command, Works like Unreal helpop */ static std::map helpop_map; @@ -27,7 +24,7 @@ class Helpop : public ModeHandler public: Helpop(InspIRCd* Instance) : ModeHandler(Instance, 'h', 0, 0, false, MODETYPE_USER, true) { } - ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding) + ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string ¶meter, bool adding) { if (adding) { @@ -52,22 +49,22 @@ class Helpop : public ModeHandler /** Handles /HELPOP */ -class cmd_helpop : public command_t +class CommandHelpop : public Command { public: - cmd_helpop (InspIRCd* Instance) : command_t(Instance, "HELPOP", 0, 0) + CommandHelpop (InspIRCd* Instance) : Command(Instance, "HELPOP", 0, 0) { this->source = "m_helpop.so"; syntax = ""; } - CmdResult Handle (const char** parameters, int pcnt, userrec *user) + CmdResult Handle (const char** parameters, int pcnt, User *user) { - irc::string parameter; + irc::string parameter("start"); if (pcnt > 0) parameter = parameters[0]; - if (pcnt == 0 || parameter == "index") + if (parameter == "index") { /* iterate over all helpop items */ user->WriteServ("NOTICE %s :HELPOP topic index", user->nick); @@ -79,7 +76,7 @@ class cmd_helpop : public command_t } else { - user->WriteServ("NOTICE %s :*** HELPOP for %s", user->nick, parameters[0]); + user->WriteServ("NOTICE %s :*** HELPOP for %s", user->nick, parameter.c_str()); std::map::iterator iter = helpop_map.find(parameter); @@ -92,10 +89,8 @@ class cmd_helpop : public command_t irc::sepstream stream(value, '\n'); std::string token = "*"; - while ((token = stream.GetToken()) != "") - { + while (stream.GetToken(token)) user->WriteServ("NOTICE %s :%s", user->nick, token.c_str()); - } user->WriteServ("NOTICE %s :*** End of HELPOP", user->nick); } @@ -111,7 +106,7 @@ class ModuleHelpop : public Module { private: std::string h_file; - cmd_helpop* mycommand; + CommandHelpop* mycommand; Helpop* ho; public: @@ -120,10 +115,12 @@ class ModuleHelpop : public Module { ReadConfig(); ho = new Helpop(ServerInstance); - if (!ServerInstance->AddMode(ho, 'h')) + if (!ServerInstance->AddMode(ho)) throw ModuleException("Could not add new modes!"); - mycommand = new cmd_helpop(ServerInstance); + mycommand = new CommandHelpop(ServerInstance); ServerInstance->AddCommand(mycommand); + Implementation eventlist[] = { I_OnRehash, I_OnWhois }; + ServerInstance->Modules->Attach(eventlist, this, 2); } virtual void ReadConfig() @@ -158,17 +155,13 @@ class ModuleHelpop : public Module } - void Implements(char* List) - { - List[I_OnRehash] = List[I_OnWhois] = 1; - } - virtual void OnRehash(userrec* user, const std::string ¶meter) + virtual void OnRehash(User* user, const std::string ¶meter) { ReadConfig(); } - virtual void OnWhois(userrec* src, userrec* dst) + virtual void OnWhois(User* src, User* dst) { if (dst->IsModeSet('h')) { @@ -179,7 +172,7 @@ class ModuleHelpop : public Module virtual ~ModuleHelpop() { ServerInstance->Modes->DelMode(ho); - DELETE(ho); + delete ho; } virtual Version GetVersion() @@ -188,4 +181,4 @@ class ModuleHelpop : public Module } }; -MODULE_INIT(ModuleHelpop); +MODULE_INIT(ModuleHelpop)