Fix typo in MLINK name.
[dragonfly.git] / games / mille / print.c
blob2e8d8d70ff833c4e1429c6830b0a79bc41f844ef
1 /*-
2 * Copyright (c) 1982, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
29 * @(#)print.c 8.1 (Berkeley) 5/31/93
30 * $FreeBSD: src/games/mille/print.c,v 1.5 1999/12/12 06:17:24 billf Exp $
33 #include "mille.h"
36 * @(#)print.c 1.1 (Berkeley) 4/1/82
39 #define COMP_STRT 20
40 #define CARD_STRT 2
42 static void show_card(int, int, CARD, CARD *);
43 static void show_score(int, int, int, int *);
45 void
46 prboard(void)
48 PLAY *pp;
49 int i, j, k, temp;
51 for (k = 0; k < 2; k++) {
52 pp = &Player[k];
53 temp = k * COMP_STRT + CARD_STRT;
54 for (i = 0; i < NUM_SAFE; i++)
55 if (pp->safety[i] == S_PLAYED && !pp->sh_safety[i]) {
56 mvaddstr(i, temp, C_name[i + S_CONV]);
57 if (pp->coups[i])
58 mvaddch(i, temp - CARD_STRT, '*');
59 pp->sh_safety[i] = TRUE;
61 show_card(14, temp, pp->battle, &pp->sh_battle);
62 show_card(16, temp, pp->speed, &pp->sh_speed);
63 for (i = C_25; i <= C_200; i++) {
64 const char *name;
65 int end;
67 if (pp->nummiles[i] == pp->sh_nummiles[i])
68 continue;
70 name = C_name[i];
71 temp = k * 40;
72 end = pp->nummiles[i];
73 for (j = pp->sh_nummiles[i]; j < end; j++)
74 mvwaddstr(Miles, i + 1, (j << 2) + temp, name);
75 pp->sh_nummiles[i] = end;
78 prscore(TRUE);
79 temp = CARD_STRT;
80 pp = &Player[PLAYER];
81 for (i = 0; i < HAND_SZ; i++)
82 show_card(i + 6, temp, pp->hand[i], &pp->sh_hand[i]);
83 mvprintw(6, COMP_STRT + CARD_STRT, "%2d", Topcard - Deck);
84 show_card(8, COMP_STRT + CARD_STRT, Discard, &Sh_discard);
85 if (End == 1000) {
86 move(EXT_Y, EXT_X);
87 standout();
88 addstr("Extension");
89 standend();
91 wrefresh(Board);
92 wrefresh(Miles);
93 wrefresh(Score);
97 * show_card:
98 * Show the given card if it is different from the last one shown
100 static void
101 show_card(int y, int x, CARD c, CARD *lc)
103 if (c == *lc)
104 return;
106 mvprintw(y, x, C_fmt, C_name[c]);
107 *lc = c;
110 static char Score_fmt[] = "%4d";
112 void
113 prscore(bool for_real)
115 PLAY *pp;
116 int x = for_real; /* uses for_real #ifndef EXTRAP */
118 stdscr = Score;
119 for (pp = Player; pp < &Player[2]; pp++) {
120 x = (pp - Player) * 6 + 21;
121 show_score(1, x, pp->mileage, &pp->sh_mileage);
122 if (pp->safescore != pp->sh_safescore) {
123 mvprintw(2, x, Score_fmt, pp->safescore);
124 if (pp->safescore == 400)
125 mvaddstr(3, x + 1, "300");
126 else
127 mvaddstr(3, x + 1, " 0");
128 mvprintw(4, x, Score_fmt, pp->coupscore);
129 pp->sh_safescore = pp->safescore;
131 if (Window == W_FULL || Finished) {
132 #ifdef EXTRAP
133 if (for_real)
134 finalscore(pp);
135 else
136 extrapolate(pp);
137 #else
138 finalscore(pp);
139 #endif
140 show_score(11, x, pp->hand_tot, &pp->sh_hand_tot);
141 show_score(13, x, pp->total, &pp->sh_total);
142 show_score(14, x, pp->games, &pp->sh_games);
144 else {
145 show_score(6, x, pp->hand_tot, &pp->sh_hand_tot);
146 show_score(8, x, pp->total, &pp->sh_total);
147 show_score(9, x, pp->games, &pp->sh_games);
150 stdscr = Board;
154 * show_score:
155 * Show a score value if it is different from the last time we
156 * showed it.
158 static void
159 show_score(int y, int x, int s, int *ls)
161 if (s == *ls)
162 return;
164 mvprintw(y, x, Score_fmt, s);
165 *ls = s;