]> jfr.im git - irc/rqf/shadowircd.git/blobdiff - src/chmode.c
autogen.sh is not necessary at this time, and did not work anyway.
[irc/rqf/shadowircd.git] / src / chmode.c
index 9a48f5818cbb89e26665389473a37ccf572b6bf9..df59c336b136ac4beacfda14676f89dcc8064105 100644 (file)
@@ -65,56 +65,89 @@ static int mode_limit;
 static int mode_limit_simple;
 static int mask_pos;
 
-static int orphaned_cflags = 0;
+char cflagsbuf[256];
+char cflagsmyinfo[256];
 
 int chmode_flags[256];
+
+/* OPTIMIZE ME! -- dwr */
 void
-find_orphaned_cflags(void)
+construct_noparam_modes(void)
 {
        int i;
-       static int prev_chmode_flags[256];
+        char *ptr = cflagsbuf;
+       char *ptr2 = cflagsmyinfo;
+        static int prev_chmode_flags[256];
+        
+        *ptr = '\0';
+       *ptr2 = '\0';
 
-       for (i = 0; i < 256; i++)
+       for(i = 0; i < 256; i++)
        {
+               if( !(chmode_table[i].set_func == chm_ban) && 
+                       !(chmode_table[i].set_func == chm_forward) &&
+                       !(chmode_table[i].set_func == chm_throttle) &&
+                        !(chmode_table[i].set_func == chm_key) &&
+                        !(chmode_table[i].set_func == chm_limit) &&
+                        !(chmode_table[i].set_func == chm_op) &&
+                        !(chmode_table[i].set_func == chm_voice))
+               {
+                       chmode_flags[i] = chmode_table[i].mode_type;
+               }
+               else
+               {
+                       chmode_flags[i] = 0;
+               }
+                
                if (prev_chmode_flags[i] != 0 && prev_chmode_flags[i] != chmode_flags[i])
                {
                        if (chmode_flags[i] == 0)
                        {
-                               orphaned_cflags |= prev_chmode_flags[i];
+                                chmode_table[i].set_func = chm_orphaned;
                                sendto_realops_snomask(SNO_DEBUG, L_ALL, "Cmode +%c is now orphaned", i);
                        }
                        else
                        {
-                               orphaned_cflags &= ~prev_chmode_flags[i];
                                sendto_realops_snomask(SNO_DEBUG, L_ALL, "Orphaned cmode +%c is picked up by module", i);
                        }
                        chmode_flags[i] = prev_chmode_flags[i];
                }
                else
                        prev_chmode_flags[i] = chmode_flags[i];
-       }
-}
-
-void
-construct_noparam_modes(void)
-{
-       int i;
-
-       for(i = 0; i < 256; i++)
-       {
-               if( (chmode_table[i].set_func == chm_simple) ||
-                       (chmode_table[i].set_func == chm_staff) ||
-                       (chmode_table[i].set_func == chm_regonly))
+                
+               switch (chmode_flags[i])
                {
-                       chmode_flags[i] = chmode_table[i].mode_type;
+                   case MODE_EXLIMIT:
+                   case MODE_DISFORWARD:
+                       if(ConfigChannel.use_forward)
+                       {
+                           *ptr++ = (char) i;
+                       }
+                       
+                       break;
+                   case MODE_REGONLY:
+                       if(rb_dlink_list_length(&service_list))
+                       {
+                           *ptr++ = (char) i;
+                       }
+
+                       break;
+                   default:
+                       if(chmode_flags[i] != 0)
+                       {
+                           *ptr++ = (char) i;
+                       }
                }
-               else
+               
+               /* Should we leave orphaned check here? -- dwr */
+               if(!(chmode_table[i].set_func == chm_nosuch) && !(chmode_table[i].set_func == chm_orphaned))
                {
-                       chmode_flags[i] = 0;
+                   *ptr2++ = (char) i;
                }
        }
         
-        find_orphaned_cflags();
+        *ptr++ = '\0';
+       *ptr2++ = '\0';
 }
 
 /*
@@ -468,7 +501,6 @@ chm_simple(struct Client *source_p, struct Channel *chptr,
                return;
        }
 
-       /* flags (possibly upto 32) + 4 with param */
        if(MyClient(source_p) && (++mode_limit_simple > MAXMODES_SIMPLE))
                return;
 
@@ -504,6 +536,40 @@ chm_simple(struct Client *source_p, struct Channel *chptr,
        }
 }
 
+void
+chm_orphaned(struct Client *source_p, struct Channel *chptr,
+          int alevel, int parc, int *parn,
+          const char **parv, int *errors, int dir, char c, long mode_type)
+{
+       if(MyClient(source_p))
+               return;
+        
+       if((dir == MODE_ADD) && !(chptr->mode.mode & mode_type))
+       {
+               chptr->mode.mode |= mode_type;
+
+               mode_changes[mode_count].letter = c;
+               mode_changes[mode_count].dir = MODE_ADD;
+               mode_changes[mode_count].caps = 0;
+               mode_changes[mode_count].nocaps = 0;
+               mode_changes[mode_count].id = NULL;
+               mode_changes[mode_count].mems = ALL_MEMBERS;
+               mode_changes[mode_count++].arg = NULL;
+       }
+       else if((dir == MODE_DEL) && (chptr->mode.mode & mode_type))
+       {
+               chptr->mode.mode &= ~mode_type;
+
+               mode_changes[mode_count].letter = c;
+               mode_changes[mode_count].dir = MODE_DEL;
+               mode_changes[mode_count].caps = 0;
+               mode_changes[mode_count].nocaps = 0;
+               mode_changes[mode_count].mems = ALL_MEMBERS;
+               mode_changes[mode_count].id = NULL;
+               mode_changes[mode_count++].arg = NULL;
+       }
+}
+
 void
 chm_staff(struct Client *source_p, struct Channel *chptr,
          int alevel, int parc, int *parn,