1*11c3b524SAaron LI /* $NetBSD: jail.c,v 1.10 2012/06/19 05:35:32 dholland Exp $ */
2*11c3b524SAaron LI
3*11c3b524SAaron LI /*
4*11c3b524SAaron LI * Copyright (c) 1980, 1993
5*11c3b524SAaron LI * The Regents of the University of California. All rights reserved.
6*11c3b524SAaron LI *
7*11c3b524SAaron LI * Redistribution and use in source and binary forms, with or without
8*11c3b524SAaron LI * modification, are permitted provided that the following conditions
9*11c3b524SAaron LI * are met:
10*11c3b524SAaron LI * 1. Redistributions of source code must retain the above copyright
11*11c3b524SAaron LI * notice, this list of conditions and the following disclaimer.
12*11c3b524SAaron LI * 2. Redistributions in binary form must reproduce the above copyright
13*11c3b524SAaron LI * notice, this list of conditions and the following disclaimer in the
14*11c3b524SAaron LI * documentation and/or other materials provided with the distribution.
15*11c3b524SAaron LI * 3. Neither the name of the University nor the names of its contributors
16*11c3b524SAaron LI * may be used to endorse or promote products derived from this software
17*11c3b524SAaron LI * without specific prior written permission.
18*11c3b524SAaron LI *
19*11c3b524SAaron LI * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20*11c3b524SAaron LI * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21*11c3b524SAaron LI * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22*11c3b524SAaron LI * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23*11c3b524SAaron LI * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24*11c3b524SAaron LI * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25*11c3b524SAaron LI * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26*11c3b524SAaron LI * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27*11c3b524SAaron LI * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28*11c3b524SAaron LI * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29*11c3b524SAaron LI * SUCH DAMAGE.
30*11c3b524SAaron LI *
31*11c3b524SAaron LI * @(#)jail.c 8.1 (Berkeley) 5/31/93
32*11c3b524SAaron LI */
33*11c3b524SAaron LI
34*11c3b524SAaron LI #include "monop.h"
35*11c3b524SAaron LI
36*11c3b524SAaron LI /*
37*11c3b524SAaron LI * This routine uses a get-out-of-jail-free card to get the
38*11c3b524SAaron LI * player out of jail.
39*11c3b524SAaron LI */
40*11c3b524SAaron LI void
card(void)41*11c3b524SAaron LI card(void)
42*11c3b524SAaron LI {
43*11c3b524SAaron LI if (cur_p->loc != JAIL) {
44*11c3b524SAaron LI printf("But you're not IN Jail\n");
45*11c3b524SAaron LI return;
46*11c3b524SAaron LI }
47*11c3b524SAaron LI if (cur_p->num_gojf == 0) {
48*11c3b524SAaron LI printf("But you don't HAVE a get out of jail free card\n");
49*11c3b524SAaron LI return;
50*11c3b524SAaron LI }
51*11c3b524SAaron LI ret_card(cur_p);
52*11c3b524SAaron LI cur_p->loc = 10; /* just visiting */
53*11c3b524SAaron LI cur_p->in_jail = 0;
54*11c3b524SAaron LI }
55*11c3b524SAaron LI
56*11c3b524SAaron LI /*
57*11c3b524SAaron LI * This routine deals with paying your way out of jail.
58*11c3b524SAaron LI */
59*11c3b524SAaron LI void
pay(void)60*11c3b524SAaron LI pay(void)
61*11c3b524SAaron LI {
62*11c3b524SAaron LI if (cur_p->loc != JAIL) {
63*11c3b524SAaron LI printf("But you're not IN Jail\n");
64*11c3b524SAaron LI return;
65*11c3b524SAaron LI }
66*11c3b524SAaron LI cur_p->loc = 10;
67*11c3b524SAaron LI cur_p->money -= 50;
68*11c3b524SAaron LI cur_p->in_jail = 0;
69*11c3b524SAaron LI printf("That cost you $50\n");
70*11c3b524SAaron LI }
71*11c3b524SAaron LI
72*11c3b524SAaron LI /*
73*11c3b524SAaron LI * This routine deals with a move in jail
74*11c3b524SAaron LI */
75*11c3b524SAaron LI int
move_jail(int r1,int r2)76*11c3b524SAaron LI move_jail(int r1, int r2)
77*11c3b524SAaron LI {
78*11c3b524SAaron LI if (r1 != r2) {
79*11c3b524SAaron LI printf("Sorry, that doesn't get you out\n");
80*11c3b524SAaron LI if (++(cur_p->in_jail) == 3) {
81*11c3b524SAaron LI printf("It's your third turn and you didn't roll "
82*11c3b524SAaron LI "doubles. You have to pay $50\n");
83*11c3b524SAaron LI cur_p->money -= 50;
84*11c3b524SAaron LI moveit:
85*11c3b524SAaron LI cur_p->loc = 10;
86*11c3b524SAaron LI cur_p->in_jail = 0;
87*11c3b524SAaron LI move(r1+r2);
88*11c3b524SAaron LI r1 = r2 - 1; /* kludge: stop new roll w/doub */
89*11c3b524SAaron LI return TRUE;
90*11c3b524SAaron LI }
91*11c3b524SAaron LI return FALSE;
92*11c3b524SAaron LI } else {
93*11c3b524SAaron LI printf("Double roll gets you out.\n");
94*11c3b524SAaron LI goto moveit;
95*11c3b524SAaron LI }
96*11c3b524SAaron LI }
97*11c3b524SAaron LI
98*11c3b524SAaron LI void
printturn(void)99*11c3b524SAaron LI printturn(void)
100*11c3b524SAaron LI {
101*11c3b524SAaron LI if (cur_p->loc != JAIL)
102*11c3b524SAaron LI return;
103*11c3b524SAaron LI printf("(This is your ");
104*11c3b524SAaron LI switch (cur_p->in_jail) {
105*11c3b524SAaron LI case 0:
106*11c3b524SAaron LI printf("1st");
107*11c3b524SAaron LI break;
108*11c3b524SAaron LI case 1:
109*11c3b524SAaron LI printf("2nd");
110*11c3b524SAaron LI break;
111*11c3b524SAaron LI case 2:
112*11c3b524SAaron LI printf("3rd (and final)");
113*11c3b524SAaron LI break;
114*11c3b524SAaron LI }
115*11c3b524SAaron LI printf(" turn in JAIL)\n");
116*11c3b524SAaron LI }
117