xref: /netbsd/games/larn/bill.c (revision bf9ec67e)
1 /*	$NetBSD: bill.c,v 1.6 2001/02/05 00:57:32 christos Exp $	 */
2 
3 /*-
4  * Copyright (c) 1991 The Regents of the University of California.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. All advertising materials mentioning features or use of this software
16  *    must display the following acknowledgement:
17  *	This product includes software developed by the University of
18  *	California, Berkeley and its contributors.
19  * 4. Neither the name of the University nor the names of its contributors
20  *    may be used to endorse or promote products derived from this software
21  *    without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  */
35 
36 #include <sys/cdefs.h>
37 #ifndef lint
38 #if 0
39 static char sccsid[] = "@(#)bill.c	5.2 (Berkeley) 5/28/91";
40 #else
41 __RCSID("$NetBSD: bill.c,v 1.6 2001/02/05 00:57:32 christos Exp $");
42 #endif
43 #endif /* not lint */
44 
45 #include <sys/file.h>
46 #include <sys/wait.h>
47 #include <stdio.h>
48 #include <string.h>
49 #include <stdlib.h>
50 #include <unistd.h>
51 #include "header.h"
52 #include "extern.h"
53 
54 /* bill.c		 Larn is copyrighted 1986 by Noah Morgan. */
55 
56 char *mail[] = {
57 	"From: the LRS (Larn Revenue Service)\n",
58 	"~s undeclared income\n",
59 	"\n   We have heard you survived the caverns of Larn.  Let me be the",
60 	"\nfirst to congratulate you on your success.  It was quite a feat.",
61 	"\nIt was also very profitable for you...",
62 	"\n\n   The Dungeon Master has informed us that you brought",
63 	"1",
64 	"\ncounty of Larn is in dire need of funds, we have spared no time",
65 	"2",
66 	"\nof this notice, and is due within 5 days.  Failure to pay will",
67 	"\nmean penalties.  Once again, congratulations, We look forward",
68 	"\nto your future successful expeditions.\n",
69 	NULL,
70 	"From: His Majesty King Wilfred of Larndom\n",
71 	"~s a noble deed\n",
72 	"\n   I have heard of your magnificent feat, and I, King Wilfred,",
73 	"\nforthwith declare today to be a national holiday.  Furthermore,",
74 	"\nhence three days, ye be invited to the castle to receive the",
75 	"\nhonour of Knight of the realm.  Upon thy name shall it be written...",
76 	"\n\nBravery and courage be yours.",
77 	"\n\nMay you live in happiness forevermore...\n",
78 	NULL,
79 	"From: Count Endelford\n",
80 	"~s You Bastard!\n",
81 	"\n   I have heard (from sources) of your journey.  Congratulations!",
82 	"\nYou Bastard!  With several attempts I have yet to endure the",
83 	" caves,\nand you, a nobody, makes the journey!  From this time",
84 	" onward, bewarned\nupon our meeting you shall pay the price!\n",
85 	NULL,
86 	"From: Mainair, Duke of Larnty\n",
87 	"~s High Praise\n",
88 	"\n   With certainty, a hero I declare to be amongst us!  A nod of",
89 	"\nfavour I send to thee.  Me thinks Count Endelford this day of",
90 	"\nright breath'eth fire as of dragon of whom ye are slayer.  I",
91 	"\nyearn to behold his anger and jealously.  Should ye choose to",
92 	"\nunleash some of thy wealth upon those who be unfortunate, I,",
93 	"\nDuke Mainair, shall equal thy gift also.\n",
94 	NULL,
95 	"From: St. Mary's Children's Home\n",
96 	"~s these poor children\n",
97 	"\n   News of your great conquests has spread to all of Larndom.",
98 	"\nMight I have a moment of a great adventurers's time?  We here at",
99 	"\nSt. Mary's Children's Home are very poor, and many children are",
100 	"\nstarving.  Disease is widespread and very often fatal without",
101 	"\ngood food.  Could you possibly find it in your heart to help us",
102 	"\nin our plight?  Whatever you could give will help much.",
103 	"\n(your gift is tax deductible)\n",
104 	NULL,
105 	"From: The National Cancer Society of Larn\n",
106 	"~s hope\n",
107 	"\nCongratulations on your successful expedition.  We are sure much",
108 	"\ncourage and determination were needed on your quest.  There are",
109 	"\nmany though, that could never hope to undertake such a journey",
110 	"\ndue to an enfeebling disease -- cancer.  We at the National",
111 	"\nCancer Society of Larn wish to appeal to your philanthropy in",
112 	"\norder to save many good people -- possibly even yourself a few",
113 	"\nyears from now.  Much work needs to be done in researching this",
114 	"\ndreaded disease, and you can help today.  Could you please see it",
115 	"\nin your heart to give generously?  Your continued good health",
116 	"\ncan be your everlasting reward.\n",
117 	NULL
118 };
119 
120 /*
121  * function to mail the letters to the player if a winner
122  */
123 
124 void
125 mailbill()
126 {
127 	int    i;
128 	char   fname[32];
129 	char   buf[128];
130 	char **cp;
131 	int    fd;
132 
133 	wait(0);
134 	if (fork() == 0) {
135 		resetscroll();
136 		cp = mail;
137 		snprintf(fname, sizeof(fname), "/tmp/#%dlarnmail", getpid());
138 		for (i = 0; i < 6; i++) {
139 			if ((fd = open(fname, O_WRONLY | O_TRUNC | O_CREAT,
140 				       0666)) == -1)
141 				exit(0);
142 			while (*cp != NULL) {
143 				if (*cp[0] == '1') {
144 					snprintf(buf, sizeof(buf),
145 		"\n%ld gold pieces back with you from your journey.  As the",
146 						(long) c[GOLD]);
147 					write(fd, buf, strlen(buf));
148 				} else if (*cp[0] == '2') {
149 					snprintf(buf, sizeof(buf),
150 		"\nin preparing your tax bill.  You owe %ld gold pieces as",
151 					    (long) c[GOLD] * TAXRATE);
152 					write(fd, buf, strlen(buf));
153 				} else
154 					write(fd, *cp, strlen(*cp));
155 				cp++;
156 			}
157 			cp++;
158 
159 			close(fd);
160 			snprintf(buf, sizeof(buf),
161 			    "mail -I %s < %s > /dev/null", loginname, fname);
162 			system(buf);
163 			unlink(fname);
164 		}
165 	}
166 	exit(0);
167 }
168