legend/
legend/area/
legend/player/
/***************************************************************************
 *  Original Diku Mud copyright (C) 1990, 1991 by Sebastian Hammer,        *
 *  Michael Seifert, Hans Henrik St{rfeldt, Tom Madsen, and Katja Nyboe.   *
 *                                                                         *
 *  Merc Diku Mud improvments copyright (C) 1992, 1993 by Michael          *
 *  Chastain, Michael Quan, and Mitchell Tse.                              *
 *                                                                         *
 *  In order to use any part of this Merc Diku Mud, you must comply with   *
 *  both the original Diku license in 'license.doc' as well the Merc       *
 *  license in 'license.txt'.  In particular, you may not remove either of *
 *  these copyright notices.                                               *
 *                                                                         *
 *  Much time and thought has gone into this software and you are          *
 *  benefitting.  We hope that you share your changes too.  What goes      *
 *  around, comes around.                                                  *
 ***************************************************************************/
/***************************************************************************
 *  God Wars Mud copyright (C) 1994, 1995, 1996 by Richard Woolcock        *
 *  									   *
 *  Legend of Chrystancia copyright (C) 1999, 2000, 2001 by Matthew Little *
 *  This mud is NOT to be copied in whole or in part, or to be run without *
 *  the permission of Matthew Little. Nobody else has permission to        *
 *  authorise the use of this code.                                        *
 ***************************************************************************/
#if defined(macintosh)
#include <types.h>
#else
#include <sys/types.h>
#endif
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include "merc.h"

/*
 
 Note Board system, (c) 1995-96 Erwin S. Andreasen, erwin@pip.dknet.dk
 =====================================================================
 
 Basically, the notes are split up into several boards. The boards do not
 exist physically, they can be read anywhere and in any position.
 
 Each of the note boards has its own file. Each of the boards can have its own
 "rights": who can read/write.
 
 Each character has an extra field added, namele the timestamp of the last note
 read by him/her on a certain board.
 
 The note entering system is changed too, making it more interactive. When
 entering a note, a character is put AFK and into a special CON_ state.
 Everything typed goes into the note.
 
 For the immortals it is possible to purge notes based on age. An Archive
 options is available which moves the notes older than X days into a special
 board. The file of this board should then be moved into some other directory
 during e.g. the startup script and perhaps renamed depending on date.
 
 Note that write_level MUST be >= read_level or else there will be strange
 output in certain functions.
 
 Board DEFAULT_BOARD must be at least readable by *everyone*.
 
*/

#define L_SUP (MAX_LEVEL - 1)	/* if not already defined */

NCLANS_DATA *nclans_table;
BOARD_DATA boards[MAX_BOARD] = {


   {"General", "General Discussions", 0, 2, "all", DEF_INCLUDE, 21, NULL,
    FALSE}
   ,
   {"Ideas", "How can we make this place better?", 0, 2, "all", DEF_NORMAL,
    30, NULL, FALSE}
   ,

   {"Announce", "Announcements from Immortals", 0, 8, "all", DEF_NORMAL,
    60, NULL, FALSE}
   ,
   {"Clan", "Clan Bulletins", 1, 1, "all", DEF_NORMAL, 60, NULL, FALSE}
   ,
   {"Bugs", "6-legged creatures", 2, 2, "imm", DEF_INCLUDE, 60, NULL, FALSE}
   ,

   {"Personal", "Addressed to individuals", 0, 2, "all", DEF_EXCLUDE, 14,
    NULL, FALSE}
   ,

   {"Penalty", "Penalties to players from Imms", 0, 8, "all", DEF_NORMAL,
    60, NULL, FALSE}
   ,

   {"Immortal", "Messages to Imms from Imms", 8, 8, "imm", DEF_INCLUDE, 60,
    NULL, FALSE}
   ,
   {"Coding", "What needs coding?", 8, 8, "imm", DEF_INCLUDE, 60, NULL, FALSE}
   ,
   {"Crashes", "Crash Reports", 12, 100, "imm", DEF_NORMAL, 3, NULL, FALSE}
   ,
};

/* The prompt that the character is given after finishing a note with ~ or END */
const char *szFinishPrompt =
   "(#wC#n)ontinue, (#wV#n)iew, (#wS#n)pellcheck, (#wP#n)ost or (#wF#n)orget it?";

long last_note_stamp = 0;	/* To generate unique timestamps on notes */

#define BOARD_NOACCESS -1
#define BOARD_NOTFOUND -1

static bool next_board (CHAR_DATA * ch);
char *ncurrent_time ();

/* recycle a note */
void free_note (NOTE_DATA * note)
{
   if (note->sender)
      free_string (note->sender);
   if (note->to_list)
      free_string (note->to_list);
   if (note->subject)
      free_string (note->subject);
   if (note->date)		/* was note->datestamp for some reason */
      free_string (note->date);
   if (note->text)
      free_string (note->text);

   note->next = note_free;
   note_free = note;
}

/* allocate memory for a new note or recycle */
NOTE_DATA *new_note ()
{
   NOTE_DATA *note;

   if (note_free)
   {
      note = note_free;
      note_free = note_free->next;
   }
   else
      note = alloc_mem (sizeof (NOTE_DATA));

   /* Zero all the field - Envy does not gurantee zeroed memory */
   note->next = NULL;
   note->sender = NULL;
   note->expire = 0;
   note->to_list = NULL;
   note->subject = NULL;
   note->date = NULL;
   note->date_stamp = 0;
   note->text = NULL;

   return note;
}

#define emptystring Codr
/* append this note to the given file */
static void append_note (FILE * fp, NOTE_DATA * note)
{
   fprintf (fp, "Sender  %s~\n", note->sender);
   fprintf (fp, "Date    %s~\n", note->date);
   fprintf (fp, "Stamp   %ld\n", (long)note->date_stamp);
   fprintf (fp, "Expire  %ld\n", (long)note->expire);
   fprintf (fp, "To      %s~\n", note->to_list);
   fprintf (fp, "Subject %s~\n", note->subject);
   fprintf (fp, "Text\n%s~\n\n", note->text);
}

/* Save a note in a given board */
void finish_note (BOARD_DATA * board, NOTE_DATA * note)
{
   FILE *fp;
   NOTE_DATA *p;
   char filename[200];

   /* The following is done in order to generate unique date_stamps */

   if (last_note_stamp >= current_time)
      note->date_stamp = ++last_note_stamp;
   else
   {
      note->date_stamp = current_time;
      last_note_stamp = current_time;
   }

   if (board->note_first)	/* are there any notes in there now? */
   {
      for (p = board->note_first; p->next; p = p->next)
	 ;			/* empty */

      p->next = note;
   }
   else				/* nope. empty list. */
      board->note_first = note;

   /* append note to note file */

   sprintf (filename, "%s%s", NOTE_DIR, board->short_name);

   fp = fopen (filename, "a");
   if (!fp)
   {
      bug ("Could not open one of the note files in append mode", 0);
      board->changed = TRUE;	/* set it to TRUE hope it will be OK later? */
      return;
   }

   append_note (fp, note);
   fclose (fp);
}

/* Find the number of a board */
int board_number (const BOARD_DATA * board)
{
   int i;

   for (i = 0; i < MAX_BOARD; i++)
      if (board == &boards[i])
	 return i;

   return -1;
}

/* Find a board number based on  a string */
int board_lookup (const char *name)
{
   int i;

   for (i = 0; i < MAX_BOARD; i++)
      if (!str_cmp (boards[i].short_name, name))
	 return i;

   return -1;
}

/* Remove list from the list. Do not free note */
static void unlink_note (BOARD_DATA * board, NOTE_DATA * note)
{
   NOTE_DATA *p;

   if (board->note_first == note)
      board->note_first = note->next;
   else
   {
      for (p = board->note_first; p && p->next != note; p = p->next);
      if (!p)
	 bug ("unlink_note: could not find note.", 0);
      else
	 p->next = note->next;
   }
}

/* Find the nth note on a board. Return NULL if ch has no access to that note */
static NOTE_DATA *find_note (CHAR_DATA * ch, BOARD_DATA * board, int num)
{
   int count = 0;
   NOTE_DATA *p;

   for (p = board->note_first; p; p = p->next)
      if (++count == num)
	 break;

   if ((count == num) && is_note_to (ch, p))
      return p;
   else
      return NULL;

}

/* save a single board */
static void save_board (BOARD_DATA * board)
{
   FILE *fp;
   char filename[200];
   char buf[200];
   NOTE_DATA *note;

   sprintf (filename, "%s%s", NOTE_DIR, board->short_name);

   fp = fopen (filename, "w");
   if (!fp)
   {
      sprintf (buf, "Error writing to: %s", filename);
      bug (buf, 0);
   }
   else
   {
      for (note = board->note_first; note; note = note->next)
	 append_note (fp, note);

      fclose (fp);
   }
}

/* Show one not to a character */
static void show_note_to_char (CHAR_DATA * ch, NOTE_DATA * note, int num)
{
   char buf[4 * MAX_STRING_LENGTH];

   /* Ugly colors ? */
   sprintf (buf,
	    "[#w%4d#n] #y%s#n: #g%s#n\n\r#yDate#n:  %s\n\r"
	    "#yTo#n:    %s\n\r#yBoard#n: %s\n\r"
	    "#e---------------------------------------------------------------------------#n"
	    "\n\r", num, note->sender, note->subject, datestring(note->date),
	    note->to_list, ch->pcdata->board->short_name);
   send_to_char2 (buf, ch);


   if (str_cmp (note->text, "(null)"))
   {
      sprintf (buf, "#w%s\n\r", note->text);
      send_to_char2 (buf, ch);
   }
   send_to_char2
      ("#e---------------------------------------------------------------------------#n\n\r",
       ch);

}

/* Save changed boards */
void save_notes ()
{
   int i;

   for (i = 0; i < MAX_BOARD; i++)
      if (boards[i].changed)	/* only save changed boards */
	 save_board (&boards[i]);
}

/* Load a single board */
static void load_board (BOARD_DATA * board)
{
   FILE *fp, *fp_archive;
   NOTE_DATA *last_note;
   char filename[200];

   sprintf (filename, "%s%s", NOTE_DIR, board->short_name);

   fp = fopen (filename, "r");

   /* Silently return */
   if (!fp)
      return;

   /* Start note fetching. copy of db.c:load_notes() */

   last_note = NULL;

   for (;;)
   {
      NOTE_DATA *pnote;
      char letter;

      do
      {
	 letter = getc (fp);
	 if (feof (fp))
	 {
	    fclose (fp);
	    return;
	 }
      }
      while (isspace (letter));
      ungetc (letter, fp);

      pnote = alloc_perm (sizeof (*pnote));

      if (str_cmp (fread_word (fp), "sender"))
	 break;
      pnote->sender = fread_string (fp);

      if (str_cmp (fread_word (fp), "date"))
	 break;
      pnote->date = fread_string (fp);

      if (str_cmp (fread_word (fp), "stamp"))
	 break;
      pnote->date_stamp = fread_number (fp);

      if (str_cmp (fread_word (fp), "expire"))
	 break;
      pnote->expire = fread_number (fp);

      if (str_cmp (fread_word (fp), "to"))
	 break;
      pnote->to_list = fread_string (fp);

      if (str_cmp (fread_word (fp), "subject"))
	 break;
      pnote->subject = fread_string (fp);

      if (str_cmp (fread_word (fp), "text"))
	 break;
      pnote->text = fread_string (fp);

      pnote->next = NULL;	/* jic */

      /* Should this note be archived right now ? */

      if (pnote->expire < current_time)
      {
	 char archive_name[200];

	 sprintf (archive_name, "%s%s.old", NOTE_DIR, board->short_name);
	 fp_archive = fopen (archive_name, "a");
	 if (!fp_archive)
	    bug ("Could not open archive boards for writing", 0);
	 else
	 {
	    append_note (fp_archive, pnote);
	    fclose (fp_archive);	/* it might be more efficient to close this later */
	 }

	 free_note (pnote);
	 board->changed = TRUE;
	 continue;

      }


      if (board->note_first == NULL)
	 board->note_first = pnote;
      else
	 last_note->next = pnote;

      last_note = pnote;
   }

   bug ("Load_notes: bad key word.", 0);
   return;			/* just return */
}

#define is_note_to_2(char) !str_cmp((char)->name,emptystring)

/* Initialize structures. Load all boards. */
void load_boards ()
{
   int i;

   for (i = 0; i < MAX_BOARD; i++)
      load_board (&boards[i]);
}

/* Returns TRUE if the specified note is address to ch */
bool is_note_to (CHAR_DATA * ch, NOTE_DATA * note)
{
   if (IS_NPC (ch))
      return FALSE;
   if (ch->level == 14)
      return TRUE;


   if (!str_cmp (ch->name, note->sender))
      return TRUE;

   if (is_full_name ("all", note->to_list))
      return TRUE;
   if (IS_IMMORTAL (ch) && (is_full_name ("imm", note->to_list) ||
			    is_full_name ("imms", note->to_list) ||
			    is_full_name ("immortal", note->to_list) ||
			    is_full_name ("god", note->to_list) ||
			    is_full_name ("gods", note->to_list) ||
			    is_full_name ("immortals", note->to_list)))
      return TRUE;

   if ((get_trust (ch) >= MAX_LEVEL)
       && (is_full_name ("imp", note->to_list)
	   || is_full_name ("imps", note->to_list)
	   || is_full_name ("implementor", note->to_list)
	   || is_full_name ("implementors", note->to_list)))
      return TRUE;

   if (is_full_name (ch->name, note->to_list))
      return TRUE;

   if (!str_cmp (ch->clan, note->to_list))
      return TRUE;
   if (ch->pcdata == NULL)
      return FALSE;
   if( ch->clannum != 0 )
   {     
           // if( IS_IMMORTAL(ch)) return TRUE;
            if(is_full_name(nclans_table[ch->clannum].name, note->to_list) ) return TRUE;
   }
/*
   m = get_kingdom_char (ch->name);
   if (m != NULL && is_full_name (m->kingdom->name, note->to_list))
      return TRUE;
*/

/* Allow a note to e.g. 40 to send to characters level 40 and above */

   if (is_number (note->to_list) && get_trust (ch) >= atoi (note->to_list))
      return TRUE;
   return FALSE;
}

/* Return the number of unread notes 'ch' has in 'board' */
/* Returns BOARD_NOACCESS if ch has no access to board */
int unread_notes (CHAR_DATA * ch, BOARD_DATA * board)
{
   NOTE_DATA *note;
   time_t last_read;
   int count = 0;

   if (board->read_level > get_trust (ch))
      return BOARD_NOACCESS;

   last_read = ch->pcdata->last_note[board_number (board)];

   for (note = board->note_first; note; note = note->next)
      if (is_note_to (ch, note)
	  && ((long) last_read < (long) note->date_stamp))
	 count++;

   return count;
}

int total_notes (CHAR_DATA * ch, BOARD_DATA * board)
{
   NOTE_DATA *note;
   int count = 0;

   for (note = board->note_first; note; note = note->next)
      if (is_note_to (ch, note))
	 count++;

   return count;
}


/*
 * COMMANDS*/
void delete_last_line_in_note (CHAR_DATA * ch)
{
   char buf[4 * MAX_STRING_LENGTH];
   char *ptr;
   bool found = FALSE;
   int nCount = 0;

   buf[0] = '\0';

   if (IS_NPC (ch))
      return;
   if (ch->pcdata->in_progress->text == NULL)
   {
      send_to_char2 ("No note to delete lines in.\n\r", ch);
      return;
   }
   if (strlen (ch->pcdata->in_progress->text) < 1)
   {
      send_to_char2 ("Empty note, nothing to delete.\n\r", ch);
      return;
   }
   strcpy (buf, ch->pcdata->in_progress->text);
   ptr = buf;
   while (*ptr != '\0')
   {
      if (*ptr == '\n')
	 nCount++;
      ptr++;
   }
   if (nCount == 1)
   {
      free_string (ch->pcdata->in_progress->text);
      ch->pcdata->in_progress->text = NULL;
      send_to_char2 ("Entire note deleted.\n\r", ch);
      return;
   }
   else
   {
      while (*ptr != '\n' || !found)
      {
	 if (*ptr == '\n')
	    found = TRUE;
	 ptr--;
      }
   }
   ptr++;
   *ptr = '\0';
   free_string (ch->pcdata->in_progress->text);
   ch->pcdata->in_progress->text = str_dup (buf);
   send_to_char2 ("Line deleted.\n\r", ch);
}

/* Start writing a note */
static void do_nwrite (CHAR_DATA * ch, char *argument)
{
   char *strtime;
   char buf[200];

   if (IS_NPC (ch))		/* NPC cannot post notes */
      return;

   if (!IS_IMMORTAL (ch) && (get_hours(ch) < 2))
   {
      stc ("You need to be atleast 2 hours old before you can write notes.\n\r", ch);
      return;
   }

   if (get_trust (ch) < ch->pcdata->board->write_level)
   {
      send_to_char2 ("You cannot post notes on this board.\n\r", ch);
      return;
   }
   if (ch->position == POS_FIGHTING)
   {
      send_to_char2 ("You are unable to write notes while fighting.\n\r", ch);
      return;
   }
   if (IS_SET (ch->act, PLR_SILENCE))
   {
      send_to_char2
         ("You are silenced. Why should you have the priviledge of posting notes?\n\r",
	  ch);
      return;
   }
   if (ch->fight_timer > 0)
   {
      send_to_char ("Not until your fight timer expires.\n\r", ch);
      return;
   }

   if (IS_SET (ch->in_room->area->aflags, AFLAG_ARENA))
   {
      stc ("You are currently unable to write a note!\n\r", ch);
      return;
   }

   if (IS_SET(ch->more, MORE_JAIL) )
   {
      stc ("Bubba distracts you from your note in his own special way.\n\rYou shed a tear.\n\r", ch);
      return;
   }

//To make players immune from attacks when their positing a note
   SET_BIT (ch->newbits, NEW_NOTEWRITE);

   /* continue previous note, if any text was written */
   if (ch->pcdata->in_progress && (!ch->pcdata->in_progress->text))
   {
      send_to_char2
	 ("Note in progress cancelled because you did not manage to write any text\n\r"
	  "before losing link.\n\r\n\r", ch);
      free_note (ch->pcdata->in_progress);
      ch->pcdata->in_progress = NULL;
   }


   if (!ch->pcdata->in_progress)
   {
      ch->pcdata->in_progress = new_note ();
      ch->pcdata->in_progress->sender = str_dup (ch->name);
/* convert to ascii. ctime returns a string which last character is \n, so remove that */
                strtime = asctime (gmtime(&current_time));
                strtime[strlen(strtime)-1] = '\0';
                

      ch->pcdata->in_progress->date = str_dup (strtime);
   }

   act ("#g$n starts writing a note.#n", ch, NULL, NULL, TO_ROOM);

   /* Begin writing the note ! */
   sprintf (buf,
	    "You are now %s a new note on the #w%s#n board.\n\r"
	    "If you are using tintin, type ##verbose to turn off alias expansion!\n\r\n\r",
	    ch->pcdata->in_progress->text ? "continuing" : "posting",
	    ch->pcdata->board->short_name);
   send_to_char2 (buf, ch);

   sprintf (buf, "#yFrom#n:    %s\n\r\n\r", ch->name);
   send_to_char2 (buf, ch);

   if (!ch->pcdata->in_progress->text)	/* Are we continuing an old note or not? */
   {
      switch (ch->pcdata->board->force_type)
      {
      case DEF_NORMAL:
	 sprintf (buf,
		  "If you press Return, default recipient #w%s#n will be chosen.\n\r",
		  ch->pcdata->board->names);
	 break;
      case DEF_INCLUDE:
	 sprintf (buf,
		  "The recipient list MUST include #w%s#n. If not, it will be added automatically.\n\r",
		  ch->pcdata->board->names);
	 break;

      case DEF_EXCLUDE:
	 sprintf (buf,
		  "The recipient of this note must NOT include: #w%s#n.",
		  ch->pcdata->board->names);

	 break;
      }

      send_to_char2 (buf, ch);
      send_to_char2 ("\n\r#yTo#n:      ", ch);

      ch->desc->connected = CON_NOTE_TO;
      /* nanny takes over from here */

   }
   else				/* we are continuing, print out all the fields and the note so far */
   {
      sprintf (buf, "#yTo#n:      %s\n\r"
	       "#yExpires#n: %s\n\r"
	       "#ySubject#n: %s\n\r",
	       ch->pcdata->in_progress->to_list,
	       ctime (&ch->pcdata->in_progress->expire),
	       ch->pcdata->in_progress->subject);
      send_to_char2 (buf, ch);
      send_to_char2 ("#gYour note so far:#n\n\r", ch);
      if (ch->pcdata->in_progress != NULL)
	 send_to_char2 (ch->pcdata->in_progress->text, ch);

      send_to_char2 ("\n\rEnter text. Type #w@#n or #eEND#n"
		     " on an empty line to end note.\n\r"
		     "Type #w/h#n on an empty line for futher help.\n\r"
		     "#e---------------------------------------------------------------------------#n",
		     ch);


      ch->desc->connected = CON_NOTE_TEXT;

   }

}


/* Read next note in current group. If no more notes, go to next board */
static void do_nread (CHAR_DATA * ch, char *argument)
{
   NOTE_DATA *p;
   int count = 0, number;
   time_t *last_note =
      &ch->pcdata->last_note[board_number (ch->pcdata->board)];

   if (!str_cmp (argument, "again"))
   {				/* read last note again */

   }
   else if (is_number (argument))
   {
      number = atoi (argument);

      for (p = ch->pcdata->board->note_first; p; p = p->next)
	 if (++count == number)
	    break;

      if (!p || !is_note_to (ch, p))
	 send_to_char2 ("No such note.\n\r", ch);
      else
      {
	 show_note_to_char (ch, p, count);
	 *last_note = UMAX (*last_note, p->date_stamp);
      }
   }
   else				/* just next one */
   {
      char buf[MSL];
      count = 1;
      for (p = ch->pcdata->board->note_first; p; p = p->next, count++)
	 if ((p->date_stamp > *last_note) && is_note_to (ch, p))
	 {
	    show_note_to_char (ch, p, count);
	    *last_note = UMAX (*last_note, p->date_stamp);
	    /* Advance if new note is newer than the currently newest for that char */
	    return;
	 }

      send_to_char2 ("No new notes in this board.\n\r", ch);
      if (next_board (ch))
	 sprintf (buf,
		  "#wChanged to next board, #r%s, #wwhere there are #r%d #wnew notes.\n\r",
		  ch->pcdata->board->short_name,
		  unread_notes (ch,
				&boards[board_number (ch->pcdata->board)]));


      else
      {
	 ch->pcdata->board = &boards[DEFAULT_BOARD];
	 sprintf (buf,
		  "#wChanged to next board, #r%s, #wwhere there are #r%d #wnew notes.\n\r",
		  ch->pcdata->board->short_name,
		  unread_notes (ch,
				&boards[board_number (ch->pcdata->board)]));
	 send_to_char2 (buf, ch);
	 sprintf (buf, "There are no more new notes.\n\r");
      }
      send_to_char2 (buf, ch);

   }
}

/* Remove a note */
static void do_nremove (CHAR_DATA * ch, char *argument)
{
   NOTE_DATA *p;

   if (!is_number (argument))
   {
      send_to_char2 ("Remove which note?\n\r", ch);
      return;
   }

   p = find_note (ch, ch->pcdata->board, atoi (argument));
   if (!p)
   {
      send_to_char2 ("No such note.\n\r", ch);
      return;
   }

   if (str_cmp (ch->name, p->sender) && (get_trust (ch) < MAX_LEVEL))
   {
      send_to_char2 ("You are not authorized to remove this note.\n\r", ch);
      return;
   }

   unlink_note (ch->pcdata->board, p);
   free_note (p);
   send_to_char2 ("Note removed!\n\r", ch);

   save_board (ch->pcdata->board);	/* save the board */
}


/* List all notes or if argument given, list N of the last notes */
/* Shows REAL note numbers! */
static void do_nlist (CHAR_DATA * ch, char *argument)
{
   int count = 0, show = 0, num = 0, has_shown = 0;
   time_t last_note;
   NOTE_DATA *p;
   char buf[MAX_STRING_LENGTH];
   if (ch->pcdata->board == NULL)
   {
      send_to_char2 ("You are not on a board.\n\r", ch);
      return;
   }

   if (is_number (argument))	/* first, count the number of notes */
   {
      show = atoi (argument);

      for (p = ch->pcdata->board->note_first; p; p = p->next)
	 if (is_note_to (ch, p))
	    count++;
   }
   sprintf (buf, "#wCurrent notes on the #r%s #wboard:#n\n\r",
	    ch->pcdata->board->short_name);
   send_to_char2 (buf, ch);
   send_to_char2
      ("#r-------------------------------------------------------------#n\n\r",
       ch);
   send_to_char2 ("#wNum#r>   #wAuthor        Subject#n\n\r", ch);
   send_to_char2
      ("#r-------------------------------------------------------------#n\n\r",
       ch);
   last_note = ch->pcdata->last_note[board_number (ch->pcdata->board)];

   for (p = ch->pcdata->board->note_first; p; p = p->next)
   {
      num++;
      if (is_note_to (ch, p))
      {
	 has_shown++;		/* note that we want to see X VISIBLE note, not just last X */
	 if (!show || ((count - show) < has_shown))
	 {
	    sprintf (buf, "#w%3d#r> #y%c#n #w%-13s #e%s\n\r", num,
		     last_note < p->date_stamp ? '*' : ' ', p->sender,
		     p->subject);
	    send_to_char2 (buf, ch);
	 }

      }
   }
   if (has_shown == 0)
      stc ("#wNo notes on this board!#n\n\r", ch);
   send_to_char2
      ("#r-------------------------------------------------------------#n\n\r",
       ch);

}

/* catch up with some notes */
static void do_ncatchup (CHAR_DATA * ch, char *argument)
{
   NOTE_DATA *p;

   /* Find last note */
   for (p = ch->pcdata->board->note_first; p && p->next; p = p->next);

   if (!p)
      send_to_char2 ("Alas, there are no notes in that board.\n\r", ch);
   else
   {
      ch->pcdata->last_note[board_number (ch->pcdata->board)] = p->date_stamp;
      send_to_char2 ("All mesages skipped.\n\r", ch);
   }
}

/* Dispatch function for backwards compatibility */
void do_note (CHAR_DATA * ch, char *argument)
{
   char arg[MAX_INPUT_LENGTH];

   if (IS_NPC (ch))
      return;

   argument = one_argument (argument, arg);

   if ((!arg[0]) || (!str_prefix (arg, "read")))	/* 'note' or 'note read X' */
      do_nread (ch, argument);

   else if (!str_prefix (arg, "list"))
      do_nlist (ch, argument);

   else if (!str_prefix (arg, "write"))
      do_nwrite (ch, argument);

   else if (!str_cmp (arg, "remove"))
      do_nremove (ch, argument);

   else if (!str_prefix (arg, "catchup"))
      do_ncatchup (ch, argument);
   else
      do_help (ch, "note");
}

/* Show all accessible boards with their numbers of unread messages OR
   change board. New board name can be given as a number or as a name (e.g.
    board personal or board 4 */

void do_board (CHAR_DATA * ch, char *argument)
{
   int i;
   int count;
   char buf[MAX_INPUT_LENGTH];

   if (IS_NPC (ch))
      return;

   if (argument[0] == '\0')
   {
      int unread;

      count = 1;

      stc ("                            #G         #o/   \\\n\r", ch);
      stc ("#e _                        #G   )      #o((   ))#G     (\n\r",
	   ch);
      stc ("#e(@)                       #G  /|\\      #o))#G_#o((#G     /|\\                           #e_\n\r", ch);
      stc ("#e|-|`\\                    #G  / | \\   (/#rz#G\\|/#rz#G\\)  / | \\                         #e(@)\n\r", ch);
      stc ("#e| | ----------------------#G/#e--#G|#e-#wvoV#e---#G\\#r`#G|#r'#G/#e--#wVov#e-#G|#e--#G\\#e------------------------| |\n\r", ch);
      stc ("#e| |                            #w'^`   #G(#po o#G)  #w'^`                             #e| |\n\r", ch);
      stc ("#e| |                                  #G`\\Y/'                                 #e | |\n\r", ch);
      stc ("#e| |                                                                         #e| |\n\r", ch);
      stc ("#e| |  #wNUM     NAME        NEW/ALL   DESCRIPTION                              #e| |\n\r", ch);


      for (i = 0; i < MAX_BOARD; i++)
      {
	 unread = unread_notes (ch, &boards[i]);

	 if (unread == -1)
	    continue;

	 sprintf (buf,
		  "#e| ! #w%s%2d    #w%s%-12s #r[#y%3d/#g%3d#r]#w - #e%-38s#n #e| |\n\r",
		  (!strcmp
		   (ch->pcdata->board->short_name,
		    boards[i].short_name)) ? "#w^1#w" : "#w", count,
		  (!strcmp
		   (ch->pcdata->board->short_name,
		    boards[i].short_name)) ? "#r->^1#w" : "  #w",
		  boards[i].short_name, unread, total_notes (ch, &boards[i]),
		  boards[i].long_name);
	 send_to_char (buf, ch);

	 count++;

      }
      stc ("#e! !                                                                         ! !\n\r", ch);
      stc ("#e|_|_________________________________________________________________________| |\n\r", ch);
      stc ("#e(@)               #G    l   /\\ /    #G     ( (#G       \\ /\\   l                 #e`\\|-|\n\r", ch);
      stc ("                    #G  l /   V        #G   \\ \\#G       V   \\ l                   #e(@)\n\r", ch);
      stc ("                    #G  l/             #o   _#G) )#o_#G          \\I`\n\r", ch);
      stc ("                    #G                  #o  `\\ /'#G\n\r", ch);
      stc ("                    #G                      #o`\n\r", ch);

      return;
   }

   i = atoi (argument) - 1;

   if (is_number (argument))
   {
      if (i < 0 || i >= MAX_BOARD)
      {
	 send_to_char ("No such board.\n\r", ch);
	 return;
      }
   }
   else
   {
      if ((i = board_lookup (argument)) == -1)
      {
	 send_to_char ("No such board.\n\r", ch);
	 return;
      }
   }

   if (unread_notes (ch, &boards[i]) == -1)
   {
      send_to_char ("No such board.\n\r", ch);
      return;
   }

   ch->pcdata->board = &boards[i];

   sprintf (buf, "#wCurrent board changed to '#r%s#w'.\n\r#w%s.\n\r",
	    boards[i].short_name,
	    (get_trust (ch) < boards[i].write_level)
	    ? "You can only read here" : "You can both read and write here");
   send_to_char (buf, ch);
   return;
}

/* Send a note to someone on the personal board */
void personal_message (const char *sender, const char *to,
		       const char *subject, const int expire_days,
		       const char *text)
{
   make_note ("Personal", sender, to, subject, expire_days, text);
}

void make_note (const char *board_name, const char *sender, const char *to,
		const char *subject, const int expire_days, const char *text)
{
   int board_index = board_lookup (board_name);
   BOARD_DATA *board;
   NOTE_DATA *note;
   char *strtime;

   if (board_index == BOARD_NOTFOUND)
   {
      bug ("make_note: board not found", 0);
      return;
   }

   if (strlen2 (text) > MAX_NOTE_TEXT)
   {
      bug ("make_note: text too long (%d bytes)", strlen2 (text));
      return;
   }


   board = &boards[board_index];

   note = new_note ();		/* allocate new note */

   note->sender = str_dup (sender);
   note->to_list = str_dup (to);
   note->subject = str_dup (subject);
   note->expire = current_time + expire_days * 60 * 60 * 24;
   note->text = str_dup (text);

   /* convert to ascii. ctime returns a string which last character is \n, so remove that */
   strtime = ctime (&current_time);
   strtime[strlen (strtime) - 1] = '\0';

   note->date = str_dup (strtime);


   finish_note (board, note);

}


/* tries to change to the next accessible board */
static bool next_board (CHAR_DATA * ch)
{
   int i = board_number (ch->pcdata->board) + 1;

   while ((i < MAX_BOARD)
	  && (unread_notes (ch, &boards[i]) == BOARD_NOACCESS))
      i++;

   if (i == MAX_BOARD)
      return FALSE;
   else
   {
      ch->pcdata->board = &boards[i];
      return TRUE;
   }
}

void handle_con_note_to (DESCRIPTOR_DATA * d, char *argument)
{
   char buf[MAX_INPUT_LENGTH];
   CHAR_DATA *ch = d->character;

   if (!ch->pcdata->in_progress)
   {
      d->connected = CON_PLAYING;
      bug ("nanny: In CON_NOTE_TO, but no note in progress", 0);
      return;
   }


   strcpy (buf, argument);
   smash_tilde (buf);		/* change ~ to - as we save this field as a string later */
   //if (!IS_IMMORTAL(ch))
   //mal_smashaddy((buf));

   switch (ch->pcdata->board->force_type)
   {
   case DEF_NORMAL:		/* default field */
      if (!buf[0])		/* empty string? */
      {
	 ch->pcdata->in_progress->to_list =
	    str_dup (ch->pcdata->board->names);
	 sprintf (buf, "Assumed default recipient: #w%s#n\n\r",
		  ch->pcdata->board->names);
	 write_to_buffer (d, buf, 0);
      }
      else
	 ch->pcdata->in_progress->to_list = str_dup (buf);

      break;

   case DEF_INCLUDE:		/* forced default */
      if (!is_full_name (ch->pcdata->board->names, buf))
      {
	 strcat (buf, " ");
	 strcat (buf, ch->pcdata->board->names);
	 ch->pcdata->in_progress->to_list = str_dup (buf);

	 sprintf (buf,
		  "\n\rYou did not specify %s as recipient, so it was automatically added.\n\r"
		  "#yNew To#n:  %s\n\r",
		  ch->pcdata->board->names, ch->pcdata->in_progress->to_list);
	 write_to_buffer (d, buf, 0);
      }
      else
	 ch->pcdata->in_progress->to_list = str_dup (buf);
      break;

   case DEF_EXCLUDE:		/* forced exclude */
      if (is_full_name (ch->pcdata->board->names, buf))
      {
	 sprintf (buf,
		  "You are not allowed to send notes to %s on this board. Try again.\n\r"
		  "#yTo#n:      ", ch->pcdata->board->names);
	 write_to_buffer (d, buf, 0);
	 return;		/* return from nanny, not changing to the next state! */
      }
      else
	 ch->pcdata->in_progress->to_list = str_dup (buf);
      break;

   }

   write_to_buffer (d, "\n\r#ySubject#w: ", 0);
   d->connected = CON_NOTE_SUBJECT;
}

void handle_con_note_subject (DESCRIPTOR_DATA * d, char *argument)
{
   char buf[MAX_INPUT_LENGTH];
   CHAR_DATA *ch = d->character;

   if (!ch->pcdata->in_progress)
   {
      d->connected = CON_PLAYING;
      bug ("nanny: In CON_NOTE_SUBJECT, but no note in progress", 0);
      return;
   }

   strcpy (buf, argument);
   smash_tilde (buf);		/* change ~ to - as we save this field as a string later */

   /* Do not allow empty subjects */

   if (!buf[0])
   {
      write_to_buffer (d, "Please find a meaningful subject!\n\r", 0);
      write_to_buffer (d, "#ySubject#n: ", 0);
   }
   else if (strlen (buf) > 60)
   {
      write_to_buffer (d,
		       "No, no. This is just the Subject. You're note writing the note yet. Twit.\n\r",
		       0);
   }
   else
      /* advance to next stage */
   {
      ch->pcdata->in_progress->subject = str_dup (buf);
      if (IS_IMMORTAL (ch))	/* immortals get to choose number of expire days */
      {
	 sprintf (buf,
		  "\n\rHow many days do you want this note to expire in?\n\r"
		  "Press Enter for default value for this board, #w%d#n"
		  " days.\n\r#yExpire#n:  ", ch->pcdata->board->purge_days);
	 write_to_buffer (d, buf, 0);
	 d->connected = CON_NOTE_EXPIRE;
      }
      else
      {
	 ch->pcdata->in_progress->expire =
	    current_time + ch->pcdata->board->purge_days * 24L * 3600L;
	 sprintf (buf, "This note will expire %s\r",
		  ctime (&ch->pcdata->in_progress->expire));
	 write_to_buffer (d, buf, 0);
	 write_to_buffer (d,
			  "\n\rEnter text. Type #w@#n or #wEND#n on an empty line to end note.\n\r"
			  "Type #w/h#n on an empty line for futher help.\n\r"
			  "#e-------------------------------------------------------\n\r",
			  0);
	 d->connected = CON_NOTE_TEXT;
      }
   }
}

void handle_con_note_expire (DESCRIPTOR_DATA * d, char *argument)
{
   CHAR_DATA *ch = d->character;
   char buf[MAX_STRING_LENGTH];
   time_t expire;
   int days;

   if (!ch->pcdata->in_progress)
   {
      d->connected = CON_PLAYING;
      bug ("nanny: In CON_NOTE_EXPIRE, but no note in progress", 0);
      return;
   }

   /* Numeric argument. no tilde smashing */
   strcpy (buf, argument);
   if (!buf[0])			/* assume default expire */
      days = ch->pcdata->board->purge_days;
   else /* use this expire */ if (!is_number (buf))
   {
      write_to_buffer (d, "Write the number of days!\n\r", 0);
      write_to_buffer (d, "#yExpire#n:  ", 0);
      return;
   }
   else
   {
      days = atoi (buf);
      if (days <= 0)
      {
	 write_to_buffer (d,
			  "This is a positive MUD. Use positive numbers only! :)\n\r",
			  0);
	 write_to_buffer (d, "#yExpire#n:  ", 0);
	 return;
      }
   }

   expire = current_time + (days * 24L * 3600L);	/* 24 hours, 3600 seconds */

   ch->pcdata->in_progress->expire = expire;

   /* note that ctime returns XXX\n so we only need to add an \r */

   write_to_buffer (d,
		    "\n\rEnter text. Type #w@#n or #wEND#n"
		    " on an empty line to end note.\n\r"
		    "Type #w/h#n on an empty line for futher help.\n\r"
		    "#e-------------------------------------------------------\n\r",
		    0);
   d->connected = CON_NOTE_TEXT;
}



void handle_con_note_text (DESCRIPTOR_DATA * d, char *argument)
{
   CHAR_DATA *ch = d->character;
   char buf[MAX_STRING_LENGTH];
   char letter[4 * MAX_STRING_LENGTH];

   if (!ch->pcdata->in_progress)
   {
      d->connected = CON_PLAYING;
      bug ("nanny: In CON_NOTE_TEXT, but no note in progress", 0);
      return;
   }

   /* First, check for EndOfNote marker */

   strcpy (buf, argument);
   if ((!str_cmp (buf, "@")) || (!str_cmp (buf, "END"))
       || (!str_cmp (buf, "DONE")))
   {
      write_to_buffer (d, "\n\r\n\r", 0);
      write_to_buffer (d, szFinishPrompt, 0);
      write_to_buffer (d, "\n\r", 0);
      d->connected = CON_NOTE_FINISH;
      return;
   }
   if (!str_cmp (buf, "/d"))
   {
      delete_last_line_in_note (ch);
      return;
   }
   if (!str_cmp (buf, "/f"))
   {
      if (ch->pcdata->in_progress->text)
      {
	 ch->pcdata->in_progress->text =
	    format_string (ch->pcdata->in_progress->text);
	 send_to_char2 ("Text formatted.\n\r", ch);
	 return;
      }
      else
      {
	 send_to_char2 ("No text to format.\n\r", ch);
	 return;
      }
   }

   if (!str_cmp (buf, "/c"))
   {
      if (ch->pcdata->in_progress->text)
      {
	 send_to_char2 ("Text cleared.\n\r", ch);
	 ch->pcdata->in_progress->text = '\0';
	 return;
      }
      else
      {
	 send_to_char2 ("No text to clear.\n\r", ch);
	 return;
      }
   }

   if (!str_cmp (buf, "/s"))
   {
      if (ch->pcdata->in_progress->text)
      {
	 send_to_char2 ("Text so far:\n\r", ch);
	 send_to_char2 (ch->pcdata->in_progress->text, ch);
	 return;
      }
      else
      {
	 send_to_char2 ("Text so far:\n\r", ch);
	 send_to_char2 ("", ch);
	 return;
      }
   }
   if (!str_cmp (buf, "/h"))
   {
      send_to_char2 ("Note editor help (commands on blank line):   \n\r", ch);
      send_to_char2 ("/h               - get help (this info)\n\r", ch);
      send_to_char2 ("/s               - show current text  \n\r", ch);
      send_to_char2 ("/f               - format string  \n\r", ch);
      send_to_char2 ("/c               - clear current text \n\r", ch);
      send_to_char2 ("/d		- delete last line in note\n\r", ch);
      return;
   }
   smash_tilde (buf);		/* smash it now */

   /* Check for too long lines. Do not allow lines longer than 80 chars */


   if (strlen (buf) > MAX_LINE_LENGTH)
   {
      write_to_buffer (d,
		       "Too long line rejected. Do NOT go over 256 characters!\n\r",
		       0);
      return;
   }

   /* Not end of note. Copy current text into temp buffer, add new line, and copy back */

   /* How would the system react to strcpy( , NULL) ? */
   if (ch->pcdata->in_progress->text)
   {
      strcpy (letter, ch->pcdata->in_progress->text);
      free_string (ch->pcdata->in_progress->text);
      ch->pcdata->in_progress->text = NULL;	/* be sure we don't free it twice */
   }
   else
      strcpy (letter, "");

   /* Check for overflow */

   if ((strlen2 (letter) + strlen2 (buf)) > MAX_NOTE_TEXT)
   {				/* Note too long, take appropriate steps */
      write_to_buffer (d, "Note too long!\n\r", 0);
      free_note (ch->pcdata->in_progress);
      ch->pcdata->in_progress = NULL;	/* important */
      d->connected = CON_PLAYING;
      return;
   }

   /* Add new line to the buffer */

   strcat (letter, buf);
   strcat (letter, "\r\n");	/* new line. \r first to make note files better readable */

   /* allocate dynamically */
   ch->pcdata->in_progress->text = str_dup (letter);
}

void handle_con_note_finish (DESCRIPTOR_DATA * d, char *argument)
{
   FILE *out;
   char *pf;
   char buf[MAX_STRING_LENGTH];
   char buf2[MAX_STRING_LENGTH];
   CHAR_DATA *ch = d->character;

   if (!ch->pcdata->in_progress)
   {
      d->connected = CON_PLAYING;
      bug ("nanny: In CON_NOTE_FINISH, but no note in progress", 0);
      return;
   }

   switch (tolower (argument[0]))
   {
   case 'c':			/* keep writing */
      write_to_buffer (d, "Continuing note...\n\r", 0);
      d->connected = CON_NOTE_TEXT;
      break;

   case 'v':			/* view note so far */
      if (ch->pcdata->in_progress->text)
      {
	 write_to_buffer (d, "#gText of your note so far#n:\n\r", 0);
	 write_to_buffer (d, ch->pcdata->in_progress->text, 0);
      }
      else
	 write_to_buffer (d, "You haven't written a thing!\n\r\n\r", 0);
      write_to_buffer (d, szFinishPrompt, 0);
      write_to_buffer (d, "\n\r", 0);
      break;

   case 'p':			/* post note */
      finish_note (ch->pcdata->board, ch->pcdata->in_progress);
      write_to_buffer (d, "Note posted.\n\r", 0);
      d->connected = CON_PLAYING;
      /* remove AFK status */
      REMOVE_BIT (ch->newbits, NEW_NOTEWRITE);

      /* we don't want a message if its personal or imm */
      {
	 CHAR_DATA *vch;
	 sprintf (buf2,
		  "#yNote Info #w-> #y%s #whas posted a note on the '#y%s#w' board, entitled '#y%s#w'.\n\r",
		  ch->name, ch->pcdata->board->short_name,
		  ch->pcdata->in_progress->subject);

	 for (vch = char_list; vch; vch = vch->next)
	 {
	    if (IS_NPC (ch) || !ch->desc)
	       continue;
	    if (!is_note_to (vch, ch->pcdata->in_progress))
	       continue;
	    stc (buf2, vch);
	 }
      }

      ch->pcdata->in_progress = NULL;
      act ("#g$n finishes $s note.#n", ch, NULL, NULL, TO_ROOM);
      break;

   case 's':
#if defined(unix)
      out = fopen (".tempnote", "w");
      fprintf (out, "%s\n", ch->pcdata->in_progress->text);
      fflush (out);
      fclose (out);

      out = popen ("ispell -l < .tempnote", "r");
      write_to_buffer (d, "The following words are mispelled:\n\r", 0);
      while (fgets (buf, MAX_STRING_LENGTH - 1, out) != NULL)
      {
	 pf = format_string (str_dup (buf));
	 write_to_buffer (d, pf, 0);
	 free_string (pf);
      }

      pclose (out);
#else
      write_to_buffer (d, "Unix systems only.\n\r", 0);
#endif
      write_to_buffer (d, "\n\r", 0);
      write_to_buffer (d, szFinishPrompt, 0);
      write_to_buffer (d, "\n\r", 0);
      break;
   case 'f':
      write_to_buffer (d, "Note cancelled!\n\r", 0);
      free_note (ch->pcdata->in_progress);
      ch->pcdata->in_progress = NULL;
      d->connected = CON_PLAYING;
      REMOVE_BIT (ch->newbits, NEW_NOTEWRITE);
      /* remove afk status */
      break;

   default:			/* invalid response */
      write_to_buffer (d, "Huh? Valid answers are:\n\r\n\r", 0);
      write_to_buffer (d, szFinishPrompt, 0);
      write_to_buffer (d, "\n\r", 0);

   }
}