circle-2.01/circle/
circle-2.01/circle/lib/boards/
circle-2.01/circle/lib/misc/
circle-2.01/circle/lib/plrobjs/
circle-2.01/circle/lib/text/
circle-2.01/circle/lib/world/shp/
/* ************************************************************************
*  file:  autowiz.c                                     Part of CircleMUD *
*  Usage: self-updating wizlists                                          *
*  Written by Jeremy Elson                                                *
*  All Rights Reserved                                                    *
*  Copyright (C) 1993 The Trustees of The Johns Hopkins University        *
************************************************************************* */


/* 
   WARNING:  THIS CODE IS A HACK.  WE CAN NOT AND WILL NOT BE RESPONSIBLE
   FOR ANY NASUEA, DIZZINESS, VOMITING, OR SHORTNESS OF BREATH RESULTING
   FROM READING THIS CODE.  PREGNANT WOMEN AND INDIVIDUALS WITH BACK
   INJURIES, HEART CONDITIONS, OR ARE UNDER THE CARE OF A PHYSICIAN SHOULD
   NOT READ THIS CODE.

      -- The Management
*/

#include <stdio.h>
#include <signal.h>
#include "../structs.h"
#include "../utils.h"
#include "../db.h"

#define IMM_LMARG "   "
#define IMM_NSIZE  16
#define LINE_LEN   64
#define MIN_LEVEL LEVEL_IMMORT

/* max level that should be in columns instead of centered */
#define COL_LEVEL LEVEL_IMMORT

struct name_rec {
   char	name[25];
   struct name_rec *next;
};

struct control_rec {
   byte level;
   char	*level_name;
};

struct level_rec {
   struct control_rec *params;
   struct level_rec *next;
   struct name_rec *names;
};

struct control_rec level_params[] = {
   { 31, "Immortals" },
   { 32, "Gods" },
   { 33, "Greater Gods" },
   { 34, "Implementors" },
   { 0, "" }
};


struct level_rec *levels = 0;

void	initialize(void)
{
   struct level_rec *tmp;
   byte i = 0;

   while (level_params[i].level > 0) {
      tmp = (struct level_rec *)malloc(sizeof(struct level_rec ));
      tmp->names = 0;
      tmp->params = &(level_params[i++]);
      tmp->next = levels;
      levels = tmp;
   }
}


void	read_file(void)
{
   void	add_name(byte level, char *name);

   struct char_file_u player;
   FILE * fl;

   if (!(fl = fopen(PLAYER_FILE, "rb"))) {
      perror("Error opening playerfile");
      exit(1);
   }

   while (!feof(fl)) {
      fread(&player, sizeof(struct char_file_u ), 1, fl);
      if (!feof(fl) && player.level >= MIN_LEVEL && 
          !(IS_SET(player.specials2.act, PLR_FROZEN)) && 
          !(IS_SET(player.specials2.act, PLR_NOWIZLIST)) && 
          !(IS_SET(player.specials2.act, PLR_DELETED)))
	 add_name(player.level, player.name);
   }

   fclose(fl);
}


void	add_name(byte level, char *name)
{
   struct name_rec *tmp, *curr;
   struct level_rec *curr_level;
   char	*ptr;

   if (!*name)
      return;

   for (ptr = name; *ptr; ptr++)
      if (!isalpha(*ptr))
	 return;

   tmp = (struct name_rec *)malloc(sizeof(struct name_rec ));
   strcpy(tmp->name, name);
   tmp->next = 0;

   curr_level = levels;
   while (curr_level->params->level > level)
      curr_level = curr_level->next;

   tmp->next = curr_level->names;
   curr_level->names = tmp;
}


void	sort_names(void)
{
   struct level_rec *curr_level;
   struct name_rec *a, *b;
   char	temp[100];

   for (curr_level = levels; curr_level; curr_level = curr_level->next) {
      for (a = curr_level->names; a && a->next; a = a->next) {
	 for (b = a->next; b; b = b->next) {
	    if (strcmp(a->name, b->name) > 0) {
	       strcpy(temp, a->name);
	       strcpy(a->name, b->name);
	       strcpy(b->name, temp);
	    }
	 }
      }
   }
}


void	write_wizlist(FILE *out, int minlev, int maxlev)
{
   char	buf[100];
   struct level_rec *curr_level;
   struct name_rec *curr_name;
   int	i, j;

   fprintf(out,
       "****************************************************************************\n"
       "* The following people have reached immortality on CircleMud.  They are to *\n"
       "* treated with respect and awe.  Occasional prayers to them are advisable. *\n"
       "* Annoying them is not recommended.  Stealing from them is punishable by   *\n"
       "* immediate death.                                                         *\n"
       "****************************************************************************\n\n");

   for (curr_level = levels; curr_level; curr_level = curr_level->next) {
      if (curr_level->params->level < minlev || 
          curr_level->params->level > maxlev)
	 continue;
      i = 39 - (strlen(curr_level->params->level_name) >> 1);
      for (j = 1; j <= i; j++) 
	 fputc(' ', out);
      fprintf(out, "%s\n", curr_level->params->level_name);
      for (j = 1; j <= i; j++) 
	 fputc(' ', out);
      for (j = 1; j <= strlen(curr_level->params->level_name); j++)
	 fputc('~', out);
      fprintf(out, "\n");

      strcpy(buf, "");
      curr_name = curr_level->names;
      while (curr_name) {
	 strcat(buf, curr_name->name);
	 if (strlen(buf) > LINE_LEN) {
	    if (curr_level->params->level <= COL_LEVEL)
	       fprintf(out, IMM_LMARG);
	    else {
	       i = 40 - (strlen(buf) >> 1);
	       for (j = 1; j <= i; j++) 
		  fputc(' ', out);
	    }
	    fprintf(out, "%s\n", buf);
	    strcpy(buf, "");
	 } else {
	    if (curr_level->params->level <= COL_LEVEL) {
	       for (j = 1; j <= (IMM_NSIZE - strlen(curr_name->name)); j++)
		  strcat(buf, " ");
	    }
	    if (curr_level->params->level > COL_LEVEL)
	       strcat(buf, "   ");
	 }
	 curr_name = curr_name->next;
      }

      if (*buf) {
	 if (curr_level->params->level <= COL_LEVEL)
	    fprintf(out, "%s%s\n", IMM_LMARG, buf);
	 else {
	    i = 40 - (strlen(buf) >> 1);
	    for (j = 1; j <= i; j++) 
	       fputc(' ', out);
	    fprintf(out, "%s\n", buf);
	 }
      }

      fprintf(out, "\n");
   }
}




int	main(int argc, char **argv)
{
   struct level_rec *a;
   struct name_rec *b;
   int	i = 0, wizlevel, immlevel, pid = 0;
   FILE * fl;

   if (argc != 5 && argc != 6) {
      printf("Format: autowiz wizlev wizlistfile immlev immlistfile [pid to signal]\n\r");
      exit();
   }

   wizlevel = atoi(argv[1]);
   immlevel = atoi(argv[3]);
   if (argc == 6) 
      pid = atoi(argv[5]);
   initialize();
   read_file();
   sort_names();
   fl = fopen(argv[2], "w");
   write_wizlist(fl, wizlevel, LEVEL_IMPL);
   fclose(fl);
   fl = fopen(argv[4], "w");
   write_wizlist(fl, immlevel, wizlevel - 1);
   if (pid)
      kill(pid, SIGUSR1);
}