]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/ctables.h
Tons of comments
[user/henk/code/inspircd.git] / include / ctables.h
index 65b469948e32d1d2669d9e29ae02c61ed62f633f..0b523a77fbf84dafe0a13974570cc537d85fba65 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
+ *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
  *                       E-mail:
  *                <brain@chatspike.net>
  *               <Craig@chatspike.net>
 #ifndef __CTABLES_H__
 #define __CTABLES_H__
 
+
 #include "inspircd_config.h"
-#include <deque>
+#include "hash_map.h"
+#include "base.h"
 
 class userrec;
 
@@ -26,7 +28,7 @@ class userrec;
 
 /** A structure that defines a command
  */
-class command_t
+class command_t : public Extensible
 {
  public:
        /** Command name
@@ -47,19 +49,36 @@ class command_t
        /** used for resource tracking between modules
         */
        std::string source;
+       /** True if the command is disabled to non-opers
+        */
+       bool disabled;
+       /** Syntax string for the command, displayed if non-empty string.
+        * This takes place of the text in the 'not enough parameters' numeric.
+        */
+       std::string syntax;
 
-       command_t(std::string cmd, char flags, int minpara) : command(cmd), flags_needed(flags), min_params(minpara)
+       command_t(const std::string &cmd, char flags, int minpara) : command(cmd), flags_needed(flags), min_params(minpara), disabled(false)
        {
                use_count = total_bytes = 0;
                source = "<core>";
+               syntax = "";
+       }
+
+       virtual void Handle(const char** parameters, int pcnt, userrec* user) = 0;
+
+       void Disable(bool setting)
+       {
+               disabled = setting;
        }
 
-       virtual void Handle(char** parameters, int pcnt, userrec* user) = 0;
+       bool IsDisabled()
+       {
+               return disabled;
+       }
 
        virtual ~command_t() {}
 };
 
-typedef std::deque<command_t*> command_table;
+typedef nspace::hash_map<std::string,command_t*> command_table;
 
 #endif
-