phantasmal_dgd_v1/
phantasmal_dgd_v1/bin/
phantasmal_dgd_v1/doc/
phantasmal_dgd_v1/mud/doc/
phantasmal_dgd_v1/mud/doc/api/
phantasmal_dgd_v1/mud/doc/kernel/
phantasmal_dgd_v1/mud/doc/kernel/hook/
phantasmal_dgd_v1/mud/doc/kernel/lfun/
phantasmal_dgd_v1/mud/include/
phantasmal_dgd_v1/mud/include/kernel/
phantasmal_dgd_v1/mud/kernel/lib/
phantasmal_dgd_v1/mud/kernel/lib/api/
phantasmal_dgd_v1/mud/kernel/obj/
phantasmal_dgd_v1/mud/kernel/sys/
phantasmal_dgd_v1/mud/tmp/
phantasmal_dgd_v1/mud/usr/System/
phantasmal_dgd_v1/mud/usr/System/keys/
phantasmal_dgd_v1/mud/usr/System/obj/
phantasmal_dgd_v1/mud/usr/System/open/lib/
phantasmal_dgd_v1/mud/usr/common/data/
phantasmal_dgd_v1/mud/usr/common/lib/parsed/
phantasmal_dgd_v1/mud/usr/common/obj/telopt/
phantasmal_dgd_v1/mud/usr/common/obj/ustate/
phantasmal_dgd_v1/mud/usr/game/
phantasmal_dgd_v1/mud/usr/game/include/
phantasmal_dgd_v1/mud/usr/game/obj/
phantasmal_dgd_v1/mud/usr/game/object/
phantasmal_dgd_v1/mud/usr/game/object/stuff/
phantasmal_dgd_v1/mud/usr/game/sys/
phantasmal_dgd_v1/mud/usr/game/text/
phantasmal_dgd_v1/mud/usr/game/users/
phantasmal_dgd_v1/src/host/
phantasmal_dgd_v1/src/host/beos/
phantasmal_dgd_v1/src/host/mac/
phantasmal_dgd_v1/src/host/unix/
phantasmal_dgd_v1/src/host/win32/res/
phantasmal_dgd_v1/src/kfun/
phantasmal_dgd_v1/src/lpc/
phantasmal_dgd_v1/src/parser/
/* Released into the public domain Jan 2002 by Noah Gibbs.
   Everything in this file is in the public domain, and is
   released without warranty, guarantee, or even the implication
   of marketability or fitness for a particular purpose.
   If you start a war in Asia with this, don't come crying to
   me. */

#include <phantasmal/lpc_names.h>
#include <type.h>
#include <status.h>

inherit ISSUE_LWO;

int*  children;
int   marked;

static void create(varargs int clone) {
  ::create(clone);
}

/* This must be passed the owner string, the path to the object (not
   object itself, you can't for a lib), the index returned by status(),
   an array called inherited of issue LWOs and names (for objects
   with no current issue), and the previous issue, if any, of this
   object. */
void set_vals(string owner, string path, int index, mixed* inherited,
	      string* depends_on, int prev) {
  mixed* inherit_from;
  int ctr, tmp_index;
  object issue;

  inherit_from = inherited[..];
  children = ({ });
  marked = 0;

  ::set_vals(index, owner, path, inherit_from,
	     depends_on, prev);
}

void add_child(int child) {
  children += ({ child });
}

void remove_child(int child) {
  int ctr;

  for(ctr = 0; ctr < sizeof(children); ctr++) {
    if(child == children[ctr]) {
      children = children[..ctr-1] + children[ctr+1..];
      return;
    }
  }

  error("Couldn't remove child #" + child + " from " + ob_name
	+ " issue " + index);
}

int* get_children(void) {
  return children;
}

void clear_children(void) {
  children = ({ });
}