ctcp.cpp

Go to the documentation of this file.
00001 /*
00002 #########################################################################
00003 #
00004 #  This file is part of trustyRC.
00005 #
00006 #  trustyRC, fully modular IRC robot 
00007 #  Copyright (C) 2006-2008 Nicoleau Fabien 
00008 #
00009 #  trustyRC is free software: you can redistribute it and/or modify
00010 #  it under the terms of the GNU General Public License as published by
00011 #  the Free Software Foundation, either version 3 of the License, or
00012 #  (at your option) any later version.
00013 #
00014 #  trustyRC is distributed in the hope that it will be useful,
00015 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
00016 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00017 #  GNU General Public License for more details.
00018 #
00019 #  You should have received a copy of the GNU General Public License
00020 #  along with trustyRC.  If not, see <http://www.gnu.org/licenses/>.
00021 #
00022 #########################################################################
00023 */
00024 
00029 #include "ctcp.h"
00030 
00034 CTCP::CTCP(BotKernel*b)
00035 {
00036         this->author = "eponyme";
00037         this->description = "CTCP Answering";
00038         this->version = VERSION;
00039         this->name = "ctcp";
00040         this->bindFunction("PING",IN_FREE_COMMAND_HANDLER,"ctcp_ping",0,10);
00041         this->bindFunction("VERSION",IN_FREE_COMMAND_HANDLER,"ctcp_version",0,10);
00042 }
00043 
00044 extern "C"
00045 {
00046         Plugin *contruct_ctcp(BotKernel*b)
00047         {
00048                 return new CTCP(b);
00049         }
00050         void destroy_ctcp(Plugin*p)
00051         {
00052                 delete p;
00053         }
00054         bool ctcp_ping (Message*m,Plugin*p,BotKernel*b)
00055         {
00056       b->send(IRCProtocol::sendNotice(m->getNickSender(),"PING " + m->getPart(4)));
00057                 return true;
00058         }
00059         bool ctcp_version (Message*m,Plugin*p,BotKernel*b)
00060         {
00061       b->send(IRCProtocol::sendNotice(m->getNickSender(),""+b->getVersion()+""));
00062                 return true;
00063         }
00064 }

Generated on Sun Aug 16 15:28:27 2009 for trustyRC by  doxygen 1.5.8