[project @ 2005-07-04 01:48:38 by unknown_lamer]
[clinton/bobotpp.git] / source / Bot.H
index 7234817..f38e253 100644 (file)
@@ -1,6 +1,6 @@
 // Bot.H  -*- C++ -*-
 // Copyright (c) 1997, 1998 Etienne BERNARD
-// Copyright (c) 2002 Clinton Ebadi
+// Copyright (c) 2002,2003 Clinton Ebadi
 
 // This program is free software; you can redistribute it and/or modify
 // it under the terms of the GNU General Public License as published by
@@ -14,7 +14,7 @@
 
 // You should have received a copy of the GNU General Public License
 // along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307, USA.
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
 #ifndef BOT_H
 #define BOT_H
 #include <guile/gh.h>
 #endif
 
-#define VERSION_STRING PACKAGE" version "VERSION" by unknown_lamer@OPN <clinton@unknownlamer.org>\n1.97 and below by eb@IRCNet <eb@via.ecp.fr>"
-#define COPYRIGHT_STRING PACKAGE" version "VERSION", Copyright (C) 1997-2000 Etienne BERNARD\nCopyright (C) 2002 Clinton Ebadi"
+#define VERSION_STRING PACKAGE" version "VERSION" by unknown_lamer@FreeNode <clinton@unknownlamer.org>\n1.97 and below by eb@IRCNet <eb@via.ecp.fr>"
+#define COPYRIGHT_STRING PACKAGE" version "VERSION", Copyright (C) 1997-2000 Etienne BERNARD\nCopyright (C) 2002,2003,2004,2005 Clinton Ebadi"
 
 class Channel;
 class DCCConnection;
 class Parser;
 class DCCParser;
+class DCCManager;
 class ServerConnection;
 class Commands;
 class UserCommands;
-class Utils;
 
 class Bot {
 public:
@@ -99,13 +99,14 @@ public:
   std::time_t startTime, currentTime, lastNickNameChange, lastChannelJoin;
 
   ServerConnection * serverConnection;
-  std::list<DCCConnection *> dccConnections;
+  DCCManager* dccConnections;
 
   std::map<unsigned long, String, std::less<unsigned long> > userhostMap;
   unsigned long sentUserhostID;
   unsigned long receivedUserhostID;
 
-  static const unsigned int MAX_MESSAGES = 2;
+  static unsigned int MAX_MESSAGES;
+  static unsigned int MAX_NICKLENGTH;
   static const std::time_t NICK_CHANGE  = 60;
   static const std::time_t CHANNEL_JOIN = 60;
   static const std::time_t IGNORE_DELAY = 180;
@@ -144,7 +145,6 @@ public:
   friend class DCCParser;
   friend class Person;
   friend class Channel;
-  friend class Utils;
   friend class ServerConnection;
   friend class UserCommands;
   friend class Commands;
@@ -154,7 +154,8 @@ private:
   void nextServer();
   void connect(int);
 
-  void addDCC(Person *, unsigned long, int);
+  enum DCC_TYPE { CHAT };
+  void addDCC(Person *, unsigned long, int, int);
 
   void rehash();
   String getUserhost(String, String);