[project @ 2005-06-28 03:16:45 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 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,2005 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
61 class Bot {
62 public:
63 String nickName;
64 String wantedNickName;
65 String userName;
66 String ircName;
67 String versionString;
68 String userHost;
69 String localIP;
70 char commandChar;
71
72 String userListFileName;
73 String shitListFileName;
74 String helpFileName;
75 String initFileName;
76
77 std::ofstream logFile;
78
79 bool connected;
80 bool debug;
81 bool stop;
82 bool sentPing;
83
84 ChannelList * channelList;
85 UserList * userList;
86 ShitList * shitList;
87 ServerList * serverList;
88 TodoList * todoList;
89 #ifdef USESCRIPTS
90 BotInterp * botInterp;
91 #endif
92 std::map<std::string, class userFunction*,
93 std::less<std::string> > userFunctions;
94 std::map<String, wantedChannel *, std::less<String> > wantedChannels;
95
96 std::map<String, unsigned int, std::less<String> > ignoredUserhosts;
97 std::map<String, Person *, std::less<String> > spyList;
98
99 std::time_t startTime, currentTime, lastNickNameChange, lastChannelJoin;
100
101 ServerConnection * serverConnection;
102 DCCManager* dccConnections;
103
104 std::map<unsigned long, String, std::less<unsigned long> > userhostMap;
105 unsigned long sentUserhostID;
106 unsigned long receivedUserhostID;
107
108 static unsigned int MAX_MESSAGES;
109 static unsigned int MAX_NICKLENGTH;
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 ServerConnection;
149 friend class UserCommands;
150 friend class Commands;
151
152 private:
153 bool canChangeServer();
154 void nextServer();
155 void connect(int);
156
157 enum DCC_TYPE { CHAT };
158 void addDCC(Person *, unsigned long, int, int);
159
160 void rehash();
161 String getUserhost(String, String);
162 bool iAmOp(String);
163
164 void init_user_functions ();
165 void destroy_user_functions ();
166 };
167
168 #endif
169