1 /* $NetBSD: init.c,v 1.16 2008/01/14 00:23:51 dholland Exp $ */
4 * Copyright (c) 1988, 1993
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 #include <sys/cdefs.h>
38 static char sccsid
[] = "@(#)init.c 8.1 (Berkeley) 5/31/93";
40 __RCSID("$NetBSD: init.c,v 1.16 2008/01/14 00:23:51 dholland Exp $");
47 * This source herein may be modified and/or distributed by anybody who
48 * so desires, with the following restrictions:
49 * 1.) No portion of this notice shall be removed.
50 * 2.) Credit shall not be taken for the creation of this source.
51 * 3.) This code is not to be traded, sold, or used for personal
61 char login_name
[MAX_OPT_LEN
];
62 char *nick_name
= (char *)0;
67 boolean init_curses
= 0;
68 boolean save_is_interactive
= 1;
72 const char *error_file
= "rogue.esave";
73 const char *byebye_string
= "Okay, bye bye!";
88 /* Check for dirty tricks with closed fds 0, 1, 2 */
89 fd
= open("/dev/null", O_RDONLY
);
96 if ((!pn
) || (strlen(pn
) >= MAX_OPT_LEN
)) {
97 clean_up("Hey! Who are you?");
99 /* LOGIN_NAME_SIZE == MAX_OPT_LEN now, but just in case... */
100 (void)strlcpy(login_name
, pn
, sizeof(login_name
));
105 if (!score_only
&& !rest_file
) {
106 printf("Hello %s, just a moment while I dig the dungeon...",
112 if ((LINES
< DROWS
) || (COLS
< DCOLS
)) {
113 clean_up("must be played on 24 x 80 screen");
121 put_scores((object
*)0, 0);
124 (void)srrandom(seed
);
130 get_wand_and_ring_materials();
131 make_scroll_titles();
133 level_objects
.next_object
= (object
*)0;
134 level_monsters
.next_monster
= (object
*)0;
145 rogue
.pack
.next_object
= (object
*)0;
147 obj
= alloc_object();
149 (void)add_to_pack(obj
, &rogue
.pack
, 1);
151 obj
= alloc_object(); /* initial armor */
152 obj
->what_is
= ARMOR
;
153 obj
->which_kind
= RINGMAIL
;
154 obj
->class = RINGMAIL
+2;
155 obj
->is_protected
= 0;
157 (void)add_to_pack(obj
, &rogue
.pack
, 1);
160 obj
= alloc_object(); /* initial weapons */
161 obj
->what_is
= WEAPON
;
162 obj
->which_kind
= MACE
;
164 obj
->hit_enchant
= obj
->d_enchant
= 1;
166 (void)add_to_pack(obj
, &rogue
.pack
, 1);
169 obj
= alloc_object();
170 obj
->what_is
= WEAPON
;
171 obj
->which_kind
= BOW
;
173 obj
->hit_enchant
= 1;
176 (void)add_to_pack(obj
, &rogue
.pack
, 1);
178 obj
= alloc_object();
179 obj
->what_is
= WEAPON
;
180 obj
->which_kind
= ARROW
;
181 obj
->quantity
= get_rand(25, 35);
183 obj
->hit_enchant
= 0;
186 (void)add_to_pack(obj
, &rogue
.pack
, 1);
193 if (save_is_interactive
) {
199 printf("\n%s\n", estr
);
228 clean_up(byebye_string
);
242 messagef(1, "interrupt");
251 save_is_interactive
= 0;
252 save_into_file(error_file
);
263 for (i
= 1; i
< argc
; i
++) {
264 if (argv
[i
][0] == '-') {
265 for (j
= 1; argv
[i
][j
]; j
++) {
283 if ((eptr
= md_getenv("ROGUEOPTS")) != NULL
) {
285 while ((*eptr
) == ' ') {
291 if (!strncmp(eptr
, "fruit=", 6)) {
293 env_get_value(&fruit
, eptr
, 1);
294 } else if (!strncmp(eptr
, "file=", 5)) {
296 env_get_value(&save_file
, eptr
, 0);
297 } else if (!strncmp(eptr
, "jump", 4)) {
299 } else if (!strncmp(eptr
, "name=", 5)) {
301 env_get_value(&nick_name
, eptr
, 0);
302 } else if (!strncmp(eptr
, "noaskquit", 9)) {
304 } else if (!strncmp(eptr
, "noskull", 5) ||
305 !strncmp(eptr
,"notomb", 6)) {
307 } else if (!strncmp(eptr
, "passgo", 5)) {
310 while ((*eptr
) && (*eptr
!= ',')) {
318 /* If some strings have not been set through ROGUEOPTS, assign defaults
319 * to them so that the options editor has data to work with.
321 init_str(&nick_name
, login_name
);
322 init_str(&save_file
, "rogue.save");
323 init_str(&fruit
, "slime-mold");
327 env_get_value(s
, e
, add_blank
)
336 while ((*e
) && (*e
!= ',')) {
338 *e
= ';'; /* ':' reserved for score file purposes */
341 if (++i
>= MAX_OPT_LEN
) {
345 /* note: edit_opts() in room.c depends on this being the right size */
346 *s
= md_malloc(MAX_OPT_LEN
+ 2);
348 clean_up("out of memory");
349 (void)strncpy(*s
, t
, i
);
362 /* note: edit_opts() in room.c depends on this size */
363 *str
= md_malloc(MAX_OPT_LEN
+ 2);
365 clean_up("out of memory");
366 (void)strlcpy(*str
, dflt
, MAX_OPT_LEN
+ 2);