]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - sail/sync.c
2 * Copyright (c) 1983 Regents of the University of California.
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. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 static char sccsid
[] = "@(#)sync.c 5.6 (Berkeley) 6/1/90";
40 #include <sys/errno.h>
44 static char sync_buf
[BUFSIZE
];
45 static char *sync_bp
= sync_buf
;
46 static char sync_lock
[25];
47 static char sync_file
[25];
48 static long sync_seek
;
50 #define SF "/tmp/#sailsink.%d"
51 #define LF "/tmp/#saillock.%d"
54 makesignal(from
, fmt
, ship
, a
, b
, c
)
57 register struct ship
*ship
;
62 (void) sprintf(message
, fmt
, a
, b
, c
);
64 (void) sprintf(message
, fmt
,
65 ship
->shipname
, colours(ship
),
66 sterncolour(ship
), a
, b
, c
);
67 Write(W_SIGNAL
, from
, 1, (int)message
, 0, 0, 0);
70 #include <sys/types.h>
74 char buf
[sizeof sync_file
];
78 (void) sprintf(buf
, SF
, game
);
80 if (stat(buf
, &s
) < 0)
82 if (s
.st_mtime
< t
- 60*60*2) { /* 2 hours */
84 (void) sprintf(buf
, LF
, game
);
94 (void) fclose(sync_fp
);
95 (void) sprintf(sync_lock
, LF
, game
);
96 (void) sprintf(sync_file
, SF
, game
);
97 if (access(sync_file
, 0) < 0) {
98 int omask
= umask(issetuid
? 077 : 011);
99 sync_fp
= fopen(sync_file
, "w+");
102 sync_fp
= fopen(sync_file
, "r+");
113 (void) fclose(sync_fp
);
115 (void) unlink(sync_file
);
118 Write(type
, ship
, isstr
, a
, b
, c
, d
)
125 (void) sprintf(sync_bp
, "%d %d %d %s\n",
126 type
, ship
->file
->index
, isstr
, a
);
128 (void) sprintf(sync_bp
, "%d %d %d %d %d %d %d\n",
129 type
, ship
->file
->index
, isstr
, a
, b
, c
, d
);
133 if (sync_bp
>= &sync_buf
[sizeof sync_buf
])
135 (void) sync_update(type
, ship
, a
, b
, c
, d
);
140 sig_t sighup
, sigint
;
142 int type
, shipnum
, isstr
, a
, b
, c
, d
;
147 sighup
= signal(SIGHUP
, SIG_IGN
);
148 sigint
= signal(SIGINT
, SIG_IGN
);
149 for (n
= TIMEOUT
; --n
>= 0;) {
151 if (flock(fileno(sync_fp
), LOCK_EX
|LOCK_NB
) >= 0)
153 if (errno
!= EWOULDBLOCK
)
156 if (link(sync_file
, sync_lock
) >= 0)
165 (void) fseek(sync_fp
, sync_seek
, 0);
167 switch (fscanf(sync_fp
, "%d%d%d", &type
, &shipnum
, &isstr
)) {
175 if (shipnum
< 0 || shipnum
>= cc
->vessels
)
177 if (isstr
!= 0 && isstr
!= 1)
182 switch (*p
++ = getc(sync_fp
)) {
188 if (p
>= buf
+ sizeof buf
)
195 for (p
= buf
; *p
== ' '; p
++)
200 if (fscanf(sync_fp
, "%d%d%d%d", &a
, &b
, &c
, &d
) != 4)
202 if (sync_update(type
, SHIP(shipnum
), a
, b
, c
, d
) < 0)
208 if (!erred
&& sync_bp
!= sync_buf
) {
209 (void) fseek(sync_fp
, 0L, 2);
210 (void) fwrite(sync_buf
, sizeof *sync_buf
, sync_bp
- sync_buf
,
212 (void) fflush(sync_fp
);
215 sync_seek
= ftell(sync_fp
);
217 (void) flock(fileno(sync_fp
), LOCK_UN
);
219 (void) unlink(sync_lock
);
221 (void) signal(SIGHUP
, sighup
);
222 (void) signal(SIGINT
, sigint
);
223 return erred
? -1 : 0;
226 sync_update(type
, ship
, a
, b
, c
, d
)
228 register struct ship
*ship
;
233 register struct BP
*p
= &ship
->file
->DBP
[a
];
240 register struct BP
*p
= &ship
->file
->OBP
[a
];
247 register struct snag
*p
= &ship
->file
->foul
[a
];
248 if (SHIP(a
)->file
->dir
== 0)
250 if (p
->sn_count
++ == 0)
256 register struct snag
*p
= &ship
->file
->grap
[a
];
257 if (SHIP(a
)->file
->dir
== 0)
259 if (p
->sn_count
++ == 0)
265 register struct snag
*p
= &ship
->file
->foul
[a
];
268 ship
->file
->nfoul
-= p
->sn_count
;
277 register struct snag
*p
= &ship
->file
->grap
[a
];
280 ship
->file
->ngrap
-= p
->sn_count
;
289 if (mode
== MODE_PLAYER
)
291 Signal("%s (%c%c): %s", ship
, a
);
293 Signal("\7%s (%c%c): %s", ship
, a
);
296 register struct shipspecs
*s
= ship
->specs
;
303 (void) strncpy(ship
->file
->captain
, (char *)a
,
304 sizeof ship
->file
->captain
- 1);
305 ship
->file
->captain
[sizeof ship
->file
->captain
- 1] = 0;
309 ship
->file
->captured
= 0;
311 ship
->file
->captured
= SHIP(a
);
314 ship
->specs
->class = a
;
317 ship
->file
->drift
= a
;
320 if ((ship
->file
->explode
= a
) == 2)
327 register struct shipspecs
*s
= ship
->specs
;
333 register struct shipspecs
*s
= ship
->specs
;
339 ship
->specs
->hull
= a
;
342 (void) strncpy(ship
->file
->movebuf
, (char *)a
,
343 sizeof ship
->file
->movebuf
- 1);
344 ship
->file
->movebuf
[sizeof ship
->file
->movebuf
- 1] = 0;
347 ship
->file
->pcrew
= a
;
350 ship
->file
->points
= a
;
353 ship
->specs
->qual
= a
;
356 register struct shipspecs
*s
= ship
->specs
;
364 ship
->specs
->rig1
= a
;
367 ship
->specs
->rig2
= a
;
370 ship
->specs
->rig3
= a
;
373 ship
->specs
->rig4
= a
;
385 if ((ship
->file
->sink
= a
) == 2)
389 ship
->file
->struck
= a
;
405 (void) strcpy(ship
->file
->captain
, "begin");
409 *ship
->file
->captain
= 0;
410 ship
->file
->points
= 0;
417 fprintf(stderr
, "sync_update: unknown type %d\r\n", type
);