monop.h revision 1.13 1 1.13 dholland /* $NetBSD: monop.h,v 1.13 2008/02/19 09:25:21 dholland Exp $ */
2 1.3 cgd
3 1.1 cgd /*
4 1.3 cgd * Copyright (c) 1980, 1993
5 1.3 cgd * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * Redistribution and use in source and binary forms, with or without
8 1.1 cgd * modification, are permitted provided that the following conditions
9 1.1 cgd * are met:
10 1.1 cgd * 1. Redistributions of source code must retain the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer.
12 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer in the
14 1.1 cgd * documentation and/or other materials provided with the distribution.
15 1.11 agc * 3. Neither the name of the University nor the names of its contributors
16 1.1 cgd * may be used to endorse or promote products derived from this software
17 1.1 cgd * without specific prior written permission.
18 1.1 cgd *
19 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 1.1 cgd * SUCH DAMAGE.
30 1.1 cgd *
31 1.3 cgd * @(#)monop.h 8.1 (Berkeley) 5/31/93
32 1.1 cgd */
33 1.1 cgd
34 1.9 jsm #include <err.h>
35 1.7 simonb #include <stdio.h>
36 1.7 simonb #include <stdlib.h>
37 1.7 simonb #include <string.h>
38 1.7 simonb
39 1.7 simonb #define bool char
40 1.7 simonb
41 1.7 simonb #define TRUE (1)
42 1.7 simonb #define FALSE (0)
43 1.7 simonb
44 1.7 simonb #define N_MON 8 /* number of monopolies */
45 1.7 simonb #define N_PROP 22 /* number of normal property squares */
46 1.7 simonb #define N_RR 4 /* number of railroads */
47 1.7 simonb #define N_UTIL 2 /* number of utilities */
48 1.7 simonb #define N_SQRS 40 /* number of squares on board */
49 1.7 simonb #define MAX_PL 9 /* maximum number of players */
50 1.7 simonb #define MAX_PRP (N_PROP+N_RR+N_UTIL) /* max # ownable property */
51 1.1 cgd
52 1.1 cgd /* square type numbers */
53 1.7 simonb #define PRPTY 0 /* normal property */
54 1.7 simonb #define RR 1 /* railroad */
55 1.7 simonb #define UTIL 2 /* water works - electric co */
56 1.7 simonb #define SAFE 3 /* safe spot */
57 1.7 simonb #define CC 4 /* community chest */
58 1.7 simonb #define CHANCE 5 /* chance (surprise!!!) */
59 1.7 simonb #define INC_TAX 6 /* Income tax */
60 1.7 simonb #define GOTO_J 7 /* Go To Jail! */
61 1.7 simonb #define LUX_TAX 8 /* Luxury tax */
62 1.7 simonb #define IN_JAIL 9 /* In jail */
63 1.7 simonb
64 1.7 simonb #define JAIL 40 /* JAIL square number */
65 1.7 simonb
66 1.7 simonb #define lucky(str) printf("%s%s\n",str,lucky_mes[roll(1,num_luck)-1])
67 1.7 simonb #define printline() printf("------------------------------\n")
68 1.7 simonb #define sqnum(sqp) (sqp - board)
69 1.7 simonb #define swap(A1,A2) if ((A1) != (A2)) { \
70 1.1 cgd (A1) ^= (A2); \
71 1.1 cgd (A2) ^= (A1); \
72 1.1 cgd (A1) ^= (A2); \
73 1.1 cgd }
74 1.1 cgd
75 1.1 cgd struct sqr_st { /* structure for square */
76 1.8 jsm const char *name; /* place name */
77 1.6 christos short owner; /* owner number */
78 1.6 christos short type; /* place type */
79 1.1 cgd struct prp_st *desc; /* description struct */
80 1.1 cgd int cost; /* cost */
81 1.1 cgd };
82 1.1 cgd
83 1.1 cgd typedef struct sqr_st SQUARE;
84 1.1 cgd
85 1.1 cgd struct mon_st { /* monopoly description structure */
86 1.8 jsm const char *name; /* monop. name (color) */
87 1.6 christos short owner; /* owner of monopoly */
88 1.6 christos short num_in; /* # in monopoly */
89 1.6 christos short num_own; /* # owned (-1: not poss. monop)*/
90 1.6 christos short h_cost; /* price of houses */
91 1.8 jsm const char *not_m; /* name if not monopoly */
92 1.8 jsm const char *mon_n; /* name if a monopoly */
93 1.6 christos unsigned char sqnums[3]; /* Square numbers (used to init)*/
94 1.1 cgd SQUARE *sq[3]; /* list of squares in monop */
95 1.1 cgd };
96 1.1 cgd
97 1.1 cgd typedef struct mon_st MON;
98 1.1 cgd
99 1.1 cgd /*
100 1.1 cgd * This struct describes a property. For railroads and utilities, only
101 1.1 cgd * the "morg" member is used.
102 1.1 cgd */
103 1.1 cgd struct prp_st { /* property description structure */
104 1.1 cgd bool morg; /* set if mortgaged */
105 1.1 cgd bool monop; /* set if monopoly */
106 1.6 christos short square; /* square description */
107 1.6 christos short houses; /* number of houses */
108 1.1 cgd MON *mon_desc; /* name of color */
109 1.1 cgd int rent[6]; /* rents */
110 1.1 cgd };
111 1.1 cgd
112 1.1 cgd struct own_st { /* element in list owned things */
113 1.1 cgd SQUARE *sqr; /* pointer to square */
114 1.1 cgd struct own_st *next; /* next in list */
115 1.1 cgd };
116 1.1 cgd
117 1.1 cgd typedef struct own_st OWN;
118 1.1 cgd
119 1.1 cgd struct plr_st { /* player description structure */
120 1.1 cgd char *name; /* owner name */
121 1.6 christos short num_gojf; /* # of get-out-of-jail-free's */
122 1.6 christos short num_rr; /* # of railroads owned */
123 1.6 christos short num_util; /* # of water works/elec. co. */
124 1.6 christos short loc; /* location on board */
125 1.6 christos short in_jail; /* count of turns in jail */
126 1.1 cgd int money; /* amount of money */
127 1.13 dholland OWN *own_list; /* start of property list */
128 1.1 cgd };
129 1.1 cgd
130 1.1 cgd typedef struct plr_st PLAY;
131 1.1 cgd typedef struct prp_st PROP;
132 1.1 cgd typedef struct prp_st RR_S;
133 1.1 cgd typedef struct prp_st UTIL_S;
134 1.1 cgd
135 1.6 christos
136 1.6 christos /* cards.c */
137 1.12 jsm void init_decks(void);
138 1.12 jsm void get_card(DECK *);
139 1.6 christos
140 1.6 christos /* execute.c */
141 1.12 jsm void execute(int);
142 1.12 jsm void do_move(void);
143 1.12 jsm void move(int);
144 1.12 jsm void save(void);
145 1.12 jsm void restore(void);
146 1.12 jsm int rest_f(const char *);
147 1.6 christos
148 1.6 christos /* getinp.c */
149 1.12 jsm int getinp(const char *, const char *const []);
150 1.6 christos
151 1.6 christos /* houses.c */
152 1.12 jsm void buy_houses(void);
153 1.12 jsm void sell_houses(void);
154 1.6 christos
155 1.6 christos /* jail.c */
156 1.12 jsm void card(void);
157 1.12 jsm void ret_card(PLAY *);
158 1.12 jsm void pay(void);
159 1.12 jsm int move_jail(int, int );
160 1.12 jsm void printturn(void);
161 1.6 christos
162 1.6 christos /* misc.c */
163 1.12 jsm int getyn(const char *);
164 1.12 jsm void notify(void);
165 1.12 jsm void next_play(void);
166 1.12 jsm int get_int(const char *);
167 1.12 jsm void set_ownlist(int);
168 1.12 jsm void is_monop(MON *, int);
169 1.12 jsm void is_not_monop(MON *);
170 1.12 jsm void list(void);
171 1.12 jsm void list_all(void);
172 1.12 jsm void quit(void);
173 1.6 christos
174 1.6 christos /* morg.c */
175 1.12 jsm void mortgage(void);
176 1.12 jsm void unmortgage(void);
177 1.12 jsm void force_morg(void);
178 1.6 christos
179 1.6 christos /* print.c */
180 1.12 jsm void printboard(void);
181 1.12 jsm void where(void);
182 1.12 jsm void printsq(int, bool);
183 1.12 jsm void printhold(int);
184 1.6 christos
185 1.6 christos /* prop.c */
186 1.12 jsm void buy(int, SQUARE *);
187 1.12 jsm void add_list(int, OWN **, int);
188 1.12 jsm void del_list(int, OWN **, short);
189 1.12 jsm void bid(void);
190 1.12 jsm int prop_worth(PLAY *);
191 1.6 christos
192 1.6 christos /* rent.c */
193 1.12 jsm void rent(SQUARE *);
194 1.6 christos
195 1.6 christos /* roll.c */
196 1.12 jsm int roll(int, int);
197 1.6 christos
198 1.6 christos /* spec.c */
199 1.12 jsm void inc_tax(void);
200 1.12 jsm void goto_jail(void);
201 1.12 jsm void lux_tax(void);
202 1.12 jsm void cc(void);
203 1.12 jsm void chance(void);
204 1.6 christos
205 1.6 christos /* trade.c */
206 1.12 jsm void trade(void);
207 1.12 jsm void resign(void);
208