[project @ 2004-04-28 03:33:52 by unknown_lamer]
[clinton/bobotpp.git] / source / Bot.H
1 // Bot.H -*- C++ -*-
2 // Copyright (c) 1997, 1998 Etienne BERNARD
3 // Copyright (c) 2002,2003 Clinton Ebadi
4
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
14
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
18
19 #ifndef BOT_H
20 #define BOT_H
21
22 #ifdef HAVE_CONFIG_H
23 #include "config.h"
24 #endif
25
26 #include <ctime>
27 #include <set>
28 #include <fstream>
29 #include <string>
30 #include <map>
31
32 #include "String.H"
33 #include "Person.H"
34 #include "ServerList.H"
35 #include "ChannelList.H"
36 #include "UserList.H"
37 #include "ShitList.H"
38 #include "TodoList.H"
39 #include "Parser.H"
40
41 #ifdef USESCRIPTS
42 #include "BotInterp.H"
43 #include <libguile.h>
44 // FIXME: remove guile/gh once transition is complete
45 // This is the last reference to this header!
46 #include <guile/gh.h>
47 #endif
48
49 #define VERSION_STRING PACKAGE" version "VERSION" by unknown_lamer@FreeNode <clinton@unknownlamer.org>\n1.97 and below by eb@IRCNet <eb@via.ecp.fr>"
50 #define COPYRIGHT_STRING PACKAGE" version "VERSION", Copyright (C) 1997-2000 Etienne BERNARD\nCopyright (C) 2002,2003,2004 Clinton Ebadi"
51
52 class Channel;
53 class DCCConnection;
54 class Parser;
55 class DCCParser;
56 class DCCManager;
57 class ServerConnection;
58 class Commands;
59 class UserCommands;
60 class Utils;
61
62 class Bot {
63 public:
64 String nickName;
65 String wantedNickName;
66 String userName;
67 String ircName;
68 String versionString;
69 String userHost;
70 String localIP;
71 char commandChar;
72
73 String userListFileName;
74 String shitListFileName;
75 String helpFileName;
76 String initFileName;
77
78 std::ofstream logFile;
79
80 bool connected;
81 bool debug;
82 bool stop;
83 bool sentPing;
84
85 ChannelList * channelList;
86 UserList * userList;
87 ShitList * shitList;
88 ServerList * serverList;
89 TodoList * todoList;
90 #ifdef USESCRIPTS
91 BotInterp * botInterp;
92 #endif
93 std::map<std::string, class userFunction*,
94 std::less<std::string> > userFunctions;
95 std::map<String, wantedChannel *, std::less<String> > wantedChannels;
96
97 std::map<String, unsigned int, std::less<String> > ignoredUserhosts;
98 std::map<String, Person *, std::less<String> > spyList;
99
100 std::time_t startTime, currentTime, lastNickNameChange, lastChannelJoin;
101
102 ServerConnection * serverConnection;
103 DCCManager* dccConnections;
104
105 std::map<unsigned long, String, std::less<unsigned long> > userhostMap;
106 unsigned long sentUserhostID;
107 unsigned long receivedUserhostID;
108
109 static unsigned int MAX_MESSAGES;
110 static const std::time_t NICK_CHANGE = 60;
111 static const std::time_t CHANNEL_JOIN = 60;
112 static const std::time_t IGNORE_DELAY = 180;
113 static const std::time_t DCC_DELAY = 300;
114 static const std::time_t PING_TIME = 90;
115 static const std::time_t TIMEOUT = 120;
116
117 private:
118 String logFileName;
119 String logs_dir;
120 String configFileName;
121 #ifdef USESCRIPTS
122 String scriptLogFileName;
123 String autoexecFileName;
124 #endif
125
126 public:
127
128 Bot(String, bool=false);
129 ~Bot();
130
131 void run();
132
133 void waitForInput();
134
135 void logLine(String);
136 void readConfig();
137
138 void reconnect();
139
140 // getters and setters
141 void set_log_dir (String);
142 void set_log_file (String);
143
144 friend class Parser;
145 friend class DCCParser;
146 friend class Person;
147 friend class Channel;
148 friend class Utils;
149 friend class ServerConnection;
150 friend class UserCommands;
151 friend class Commands;
152
153 private:
154 bool canChangeServer();
155 void nextServer();
156 void connect(int);
157
158 enum DCC_TYPE { CHAT };
159 void addDCC(Person *, unsigned long, int, int);
160
161 void rehash();
162 String getUserhost(String, String);
163 bool iAmOp(String);
164
165 void init_user_functions ();
166 void destroy_user_functions ();
167 };
168
169 #endif
170