Added "division" search class and ability to search for divisions
authorAri Johnson <ari@cobramush.org>
Tue, 3 Apr 2007 12:51:04 +0000 (12:51 +0000)
committerAri Johnson <ari@theari.com>
Thu, 24 Mar 2011 15:58:45 +0000 (15:58 +0000)
(cherry picked from commit 0d486e61b8b6165882b75407d98d7eb414ee50e7)

src/wiz.c

index e728538ac6e9e4e4ca5eca095cc1a69da6b4eca6..ce0bd410f3934cf88dbbbee83ac3c5ad5b8ca6b6 100644 (file)
--- a/src/wiz.c
+++ b/src/wiz.c
@@ -64,6 +64,7 @@ struct search_spec {
   int type;    /**< Limit to this type */
   dbref parent;        /**< Limit to children of this parent */
   dbref zone;  /**< Limit to those in this zone */
+  dbref division;      /**< Limit to those in this division */
   char flags[BUFFER_LEN];      /**< Limit to those with these flags */
   char lflags[BUFFER_LEN];     /**< Limit to those with these flags */
   char powers[BUFFER_LEN];     /**< Limit to those with these powers */
@@ -1783,7 +1784,7 @@ fill_search_spec(dbref player, const char *owner, int nargs, const char **args,
   int n;
   const char *class, *restriction;
 
-  spec->zone = spec->parent = spec->owner = ANY_OWNER;
+  spec->zone = spec->parent = spec->owner = spec->division = ANY_OWNER;
   spec->type = NOTYPE;
   strcpy(spec->flags, "");
   strcpy(spec->lflags, "");
@@ -1878,6 +1879,8 @@ fill_search_spec(dbref player, const char *owner, int nargs, const char **args,
        spec->type = TYPE_ROOM;
       } else if (string_prefix("players", restriction)) {
        spec->type = TYPE_PLAYER;
+      } else if (string_prefix("divisions", restriction)) {
+        spec->type = TYPE_DIVISION;
       } else {
        notify(player, T("Unknown type."));
        return -1;
@@ -1895,6 +1898,9 @@ fill_search_spec(dbref player, const char *owner, int nargs, const char **args,
     } else if (string_prefix("players", class)) {
       strcpy(spec->name, restriction);
       spec->type = TYPE_PLAYER;
+    } else if (string_prefix("divisions", class)) {
+      strcpy(spec->name, restriction);
+      spec->type = TYPE_DIVISION;
     } else if (string_prefix("name", class)) {
       strcpy(spec->name, restriction);
     } else if (string_prefix("start", class)) {
@@ -1937,6 +1943,20 @@ fill_search_spec(dbref player, const char *owner, int nargs, const char **args,
        notify(player, T("Unknown zone."));
        return -1;
       }
+    } else if (string_prefix("division", class)) {
+      if (!*restriction) {
+        spec->division = NOTHING;
+        continue;
+      }
+      if (!is_objid(restriction)) {
+        notify(player, T("Unknown division."));
+        return -1;
+      }
+      spec->division = parse_objid(restriction);
+      if (!GoodObject(spec->division) || !IsDivision(spec->division)) {
+        notify(player, T("Unknown division."));
+        return -1;
+      }
     } else if (string_prefix("eval", class)) {
       strcpy(spec->eval, restriction);
     } else if (string_prefix("ethings", class) ||
@@ -2030,6 +2050,8 @@ raw_search(dbref player, const char *owner, int nargs, const char **args,
       continue;
     if (spec.zone != ANY_OWNER && Zone(n) != spec.zone)
       continue;
+    if (spec.division != ANY_OWNER && Division(n) != spec.division)
+      continue;
     if (spec.parent != ANY_OWNER && Parent(n) != spec.parent)
       continue;
     if (*spec.name && !string_match(Name(n), spec.name))