NetBSD/games/hack/hack.rip.c

78 lines
1.7 KiB
C
Raw Normal View History

1997-10-19 20:56:41 +04:00
/* $NetBSD: hack.rip.c,v 1.5 1997/10/19 16:58:53 christos Exp $ */
/*
* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
*/
1997-10-19 20:56:41 +04:00
#include <sys/cdefs.h>
#ifndef lint
1997-10-19 20:56:41 +04:00
__RCSID("$NetBSD: hack.rip.c,v 1.5 1997/10/19 16:58:53 christos Exp $");
#endif /* not lint */
1993-03-21 12:45:37 +03:00
#include "hack.h"
1997-10-19 20:56:41 +04:00
#include "extern.h"
1993-03-21 12:45:37 +03:00
1997-10-19 20:56:41 +04:00
static char *riptop = "\
1993-04-21 01:27:31 +04:00
----------\n\
/ \\\n\
/ REST \\\n\
/ IN \\\n\
/ PEACE \\\n\
/ \\";
1997-10-19 20:56:41 +04:00
static char *ripmid = " | %*s%*s |\n";
1993-04-21 01:27:31 +04:00
1997-10-19 20:56:41 +04:00
static char *ripbot = "\
1993-04-21 01:27:31 +04:00
*| * * * | *\n\
_________)/\\\\_//(\\/(/\\)/\\//\\/|_)_______";
1993-03-21 12:45:37 +03:00
1997-10-19 20:56:41 +04:00
void
outrip()
{
char buf[BUFSZ];
1993-03-21 12:45:37 +03:00
cls();
1993-04-21 01:27:31 +04:00
curs(1, 8);
puts(riptop);
1993-03-21 12:45:37 +03:00
(void) strcpy(buf, plname);
buf[16] = 0;
center(6, buf);
(void) sprintf(buf, "%ld AU", u.ugold);
center(7, buf);
(void) sprintf(buf, "killed by%s",
1997-10-19 20:56:41 +04:00
!strncmp(killer, "the ", 4) ? "" :
!strcmp(killer, "starvation") ? "" :
strchr(vowels, *killer) ? " an" : " a");
1993-03-21 12:45:37 +03:00
center(8, buf);
(void) strcpy(buf, killer);
1997-10-19 20:56:41 +04:00
{
int i1;
if ((i1 = strlen(buf)) > 16) {
int i, i0;
1993-04-21 01:27:31 +04:00
i0 = i1 = 0;
1997-10-19 20:56:41 +04:00
for (i = 0; i <= 16; i++)
if (buf[i] == ' ')
i0 = i, i1 = i + 1;
if (!i0)
i0 = i1 = 16;
1993-04-21 01:27:31 +04:00
buf[i1 + 16] = 0;
buf[i0] = 0;
}
center(9, buf);
1997-10-19 20:56:41 +04:00
center(10, buf + i1);
1993-03-21 12:45:37 +03:00
}
(void) sprintf(buf, "%4d", getyear());
center(11, buf);
1993-04-21 01:27:31 +04:00
puts(ripbot);
1993-03-21 12:45:37 +03:00
getret();
}
1997-10-19 20:56:41 +04:00
void
center(line, text)
int line;
char *text;
{
int n = strlen(text) / 2;
printf(ripmid, 8 + n, text, 8 - n, "");
1993-03-21 12:45:37 +03:00
}