]> ruin.nu Git - NDIRC.git/blob - ndawn.pl
Basic infrastructure for new irc command dispatcher
[NDIRC.git] / ndawn.pl
1 #**************************************************************************
2 #   Copyright (C) 2008 by Michael Andreen <harvATruinDOTnu>               *
3 #                                                                         *
4 #   This program is free software; you can redistribute it and/or modify  *
5 #   it under the terms of the GNU General Public License as published by  *
6 #   the Free Software Foundation; either version 2 of the License, or     *
7 #   (at your option) any later version.                                   *
8 #                                                                         *
9 #   This program is distributed in the hope that it will be useful,       *
10 #   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12 #   GNU General Public License for more details.                          *
13 #                                                                         *
14 #   You should have received a copy of the GNU General Public License     *
15 #   along with this program; if not, write to the                         *
16 #   Free Software Foundation, Inc.,                                       *
17 #   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
18 #**************************************************************************/
19
20 use strict;
21 use warnings;
22 use vars qw($VERSION %IRSSI);
23
24 use Irssi;
25 use Irssi::Irc;
26
27 $VERSION = "0.1";
28 %IRSSI = (
29     authors => "harv",
30     contact => "harv\@ruin.nu",
31     name    => "NewDawn testbot script",
32     description => "Testbot used for implementing commands for nd bots",
33     license => "GPL-2 or (at your option) any later version",
34     url     => "",
35     changed => "",
36 );
37
38 $ND::refresh = 0;
39
40 $SIG{USR1} = sub{
41         print "USR1";
42         $ND::refresh = 1;
43 };
44
45
46 use again 'ND::DB';
47 use again 'ND::Include';
48 use again 'NDIRC::Dispatcher';
49 use again 'NDIRC::Context';
50 use again 'NDIRC::Command';
51 use again 'NDIRC::Misc';
52
53 my $DBH = DB();
54 my $TICK = $DBH->selectrow_array('SELECT tick()');
55
56 my $disp = new NDIRC::Dispatcher;
57
58 $disp->load('Basic');
59
60 $disp->add_channel('#testarlite', ['pub','help']);
61 $disp->add_channel('#testarmer', ['pub','help']);
62
63 sub event_pubmsg {
64         my ($server, $msg, $nick, $address, $channel) = @_;
65
66         if (parseCommand($msg,$server,$nick,$address,$channel,$disp,DB())){
67                 #Command parsed and run successfully
68         }
69 }
70
71 sub event_privmsg {
72         my ($server, $msg, $nick, $address) = @_;
73
74         if (parseCommand($msg,$server,$nick,$address,'pm',$disp,DB())){
75                 #Command parsed and run successfully
76         }
77 }
78
79 sub refresh {
80         print "SiG" if $ND::refresh;
81         $ND::refresh = 0;
82 }
83
84 Irssi::timeout_add(60*1000, 'refresh', undef);
85 Irssi::timeout_add(1000, sub{refresh if $ND::refresh}, undef);
86 Irssi::signal_add('message public','event_pubmsg');
87 Irssi::signal_add('message private','event_privmsg');
88
89