]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - rogue/ring.c
2 * Copyright (c) 1988 The Regents of the University of California.
5 * This code is derived from software contributed to Berkeley by
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by the University of
19 * California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 /*static char sccsid[] = "from: @(#)ring.c 5.3 (Berkeley) 6/1/90";*/
39 static char rcsid
[] = "$Id: ring.c,v 1.2 1993/08/01 18:52:17 mycroft Exp $";
45 * This source herein may be modified and/or distributed by anybody who
46 * so desires, with the following restrictions:
47 * 1.) No portion of this notice shall be removed.
48 * 2.) Credit shall not be taken for the creation of this source.
49 * 3.) This code is not to be traded, sold, or used for personal
56 char *left_or_right
= "left or right hand?";
57 char *no_ring
= "there's no ring on that hand";
66 boolean r_see_invisible
;
67 boolean sustain_strength
;
68 boolean maintain_armor
;
70 extern char *curse_message
;
71 extern boolean wizard
;
80 message("wearing two rings already", 0);
83 if ((ch
= pack_letter("put on what?", RING
)) == CANCEL
) {
86 if (!(ring
= get_letter_object(ch
))) {
87 message("no such item.", 0);
90 if (!(ring
->what_is
& RING
)) {
91 message("that's not a ring", 0);
94 if (ring
->in_use_flags
& (ON_LEFT_HAND
| ON_RIGHT_HAND
)) {
95 message("that ring is already being worn", 0);
99 ch
= (rogue
.left_ring
? 'r' : 'l');
101 message(left_or_right
, 0);
104 } while ((ch
!= CANCEL
) && (ch
!= 'l') && (ch
!= 'r') && (ch
!= '\n') &&
107 if ((ch
!= 'l') && (ch
!= 'r')) {
111 if (((ch
== 'l') && rogue
.left_ring
)||((ch
== 'r') && rogue
.right_ring
)) {
113 message("there's already a ring on that hand", 0);
123 get_desc(ring
, desc
);
129 * Do not call ring_stats() from within do_put_on(). It will cause
130 * serious problems when do_put_on() is called from read_pack() in restore().
133 do_put_on(ring
, on_left
)
138 ring
->in_use_flags
|= ON_LEFT_HAND
;
139 rogue
.left_ring
= ring
;
141 ring
->in_use_flags
|= ON_RIGHT_HAND
;
142 rogue
.right_ring
= ring
;
148 boolean left
= 0, right
= 0;
155 } else if (rogue
.left_ring
&& !rogue
.right_ring
) {
157 } else if (!rogue
.left_ring
&& rogue
.right_ring
) {
160 message(left_or_right
, 0);
163 } while ((ch
!= CANCEL
) && (ch
!= 'l') && (ch
!= 'r') &&
164 (ch
!= '\n') && (ch
!= '\r'));
171 if (rogue
.left_ring
) {
172 ring
= rogue
.left_ring
;
177 if (rogue
.right_ring
) {
178 ring
= rogue
.right_ring
;
183 if (ring
->is_cursed
) {
184 message(curse_message
, 0);
187 (void) strcpy(buf
, "removed ");
188 get_desc(ring
, buf
+ 8);
198 if (ring
&& (ring
->in_use_flags
& ON_LEFT_HAND
)) {
199 ring
->in_use_flags
&= (~ON_LEFT_HAND
);
201 } else if (ring
&& (ring
->in_use_flags
& ON_RIGHT_HAND
)) {
202 ring
->in_use_flags
&= (~ON_RIGHT_HAND
);
203 rogue
.right_ring
= 0;
208 gr_ring(ring
, assign_wk
)
212 ring
->what_is
= RING
;
214 ring
->which_kind
= get_rand(0, (RINGS
- 1));
218 switch(ring
->which_kind
) {
226 case R_SEE_INVISIBLE:
228 case SUSTAIN_STRENGTH:
230 case R_MAINTAIN_ARMOR:
240 while ((ring
->class = (get_rand(0, 4) - 2)) == 0) ;
241 ring
->is_cursed
= (ring
->class < 0);
244 ring
->is_cursed
= coin_toss();
254 message("not wearing any rings", 0);
256 if (rogue
.left_ring
) {
257 get_desc(rogue
.left_ring
, buf
);
260 if (rogue
.right_ring
) {
261 get_desc(rogue
.right_ring
, buf
);
266 sprintf(buf
, "ste %d, r_r %d, e_r %d, r_t %d, s_s %d, a_s %d, reg %d, r_e %d, s_i %d, m_a %d, aus %d",
267 stealthy
, r_rings
, e_rings
, r_teleport
, sustain_strength
,
268 add_strength
, regeneration
, ring_exp
, r_see_invisible
,
269 maintain_armor
, auto_search
);
284 sustain_strength
= 0;
292 for (i
= 0; i
< 2; i
++) {
293 if (!(ring
= ((i
== 0) ? rogue
.left_ring
: rogue
.right_ring
))) {
298 switch(ring
->which_kind
) {
312 add_strength
+= ring
->class;
314 case SUSTAIN_STRENGTH
:
315 sustain_strength
= 1;
318 ring_exp
+= ring
->class;
322 case R_SEE_INVISIBLE
:
334 print_stats(STAT_STRENGTH
);