2 * Copyright (c) 1983, 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
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
29 * @(#)pl_6.c 8.1 (Berkeley) 5/31/93
30 * $FreeBSD: src/games/sail/pl_6.c,v 1.5 1999/11/30 03:49:37 billf Exp $
31 * $DragonFly: src/games/sail/pl_6.c,v 1.3 2006/09/03 17:33:13 pavalos Exp $
36 static bool turned(void);
43 struct shipspecs
*ptr
= mc
;
46 #define FIX(x, m) (m - ptr->x > count \
47 ? (ptr->x += count, count = 0) : (count -= m - ptr->x, ptr->x = m))
49 if (repaired
|| loaded
|| fired
|| changed
|| turned()) {
50 Signal("No hands free to repair", NULL
);
53 c
= sgetch("Repair (hull, guns, rigging)? ", NULL
, 1);
65 Signal("Avast heaving!", NULL
);
68 if (++*repairs
>= 3) {
72 int max
= ptr
->guns
/4;
73 if (ptr
->hull
< max
) {
75 Write(W_HULL
, ms
, ptr
->hull
, 0, 0, 0);
80 if (ptr
->gunL
< ptr
->gunR
) {
81 int max
= ptr
->guns
/5 - ptr
->carL
;
82 if (ptr
->gunL
< max
) {
84 Write(W_GUNL
, ms
, ptr
->gunL
,
88 int max
= ptr
->guns
/5 - ptr
->carR
;
89 if (ptr
->gunR
< max
) {
91 Write(W_GUNR
, ms
, ptr
->gunR
,
98 if (ptr
->rig4
>= 0 && ptr
->rig4
< X
) {
100 Write(W_RIG4
, ms
, ptr
->rig4
, 0, 0, 0);
102 if (count
&& ptr
->rig3
< X
) {
104 Write(W_RIG3
, ms
, ptr
->rig3
, 0, 0, 0);
106 if (count
&& ptr
->rig2
< X
) {
108 Write(W_RIG2
, ms
, ptr
->rig2
, 0, 0, 0);
110 if (count
&& ptr
->rig1
< X
) {
112 Write(W_RIG1
, ms
, ptr
->rig1
, 0, 0, 0);
117 Signal("Repairs completed.", NULL
);
137 for (p
= movebuf
; *p
; p
++)
138 if (*p
== 'r' || *p
== 'l')
147 int loadL
, loadR
, ready
, load
;
150 Signal("Out of crew", NULL
);
155 if (!loadL
&& !loadR
) {
156 c
= sgetch("Load which broadside (left or right)? ",
163 if ((!loadL
&& loadR
) || (loadL
&& !loadR
)) {
164 c
= sgetch("Reload with (round, double, chain, grape)? ",
184 Signal("Broadside not loaded.",
190 mf
->readyR
= ready
|R_LOADING
;
193 mf
->readyL
= ready
|R_LOADING
;