Home | History | Annotate | Line # | Download | only in sail
misc.c revision 1.15.16.1
      1  1.15.16.1      matt /*	misc.c,v 1.15 2004/11/05 21:30:32 dsl Exp	*/
      2        1.3       cgd 
      3        1.1       cgd /*
      4        1.3       cgd  * Copyright (c) 1983, 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.13       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.1       cgd 
     32        1.5  christos #include <sys/cdefs.h>
     33        1.1       cgd #ifndef lint
     34        1.3       cgd #if 0
     35        1.4       tls static char sccsid[] = "@(#)misc.c	8.2 (Berkeley) 4/28/95";
     36        1.3       cgd #else
     37  1.15.16.1      matt __RCSID("misc.c,v 1.15 2004/11/05 21:30:32 dsl Exp");
     38        1.3       cgd #endif
     39        1.1       cgd #endif /* not lint */
     40        1.1       cgd 
     41       1.10     jwise #include <ctype.h>
     42        1.9     jwise #include <stdio.h>
     43        1.5  christos #include <unistd.h>
     44       1.14       jsm #include <stdlib.h>
     45       1.11    itojun #include <string.h>
     46        1.4       tls #include "extern.h"
     47        1.1       cgd #include "pathnames.h"
     48        1.1       cgd 
     49        1.1       cgd #define distance(x,y) (abs(x) >= abs(y) ? abs(x) + abs(y)/2 : abs(y) + abs(x)/2)
     50        1.1       cgd 
     51        1.8     jwise static int	angle(int, int);
     52        1.8     jwise 
     53        1.1       cgd /* XXX */
     54        1.5  christos int
     55        1.7     jwise range(struct ship *from, struct ship *to)
     56        1.1       cgd {
     57        1.5  christos 	int bow1r, bow1c, bow2r, bow2c;
     58        1.1       cgd 	int stern1r, stern1c, stern2c, stern2r;
     59        1.5  christos 	int bb, bs, sb, ss, result;
     60        1.1       cgd 
     61        1.1       cgd 	if (!to->file->dir)
     62        1.1       cgd 		return -1;
     63        1.1       cgd 	stern1r = bow1r = from->file->row;
     64        1.1       cgd 	stern1c = bow1c = from->file->col;
     65        1.1       cgd 	stern2r = bow2r = to->file->row;
     66        1.1       cgd 	stern2c = bow2c = to->file->col;
     67        1.1       cgd 	result = bb = distance(bow2r - bow1r, bow2c - bow1c);
     68        1.1       cgd 	if (bb < 5) {
     69        1.1       cgd 		stern2r += dr[to->file->dir];
     70        1.1       cgd 		stern2c += dc[to->file->dir];
     71        1.1       cgd 		stern1r += dr[from->file->dir];
     72        1.1       cgd 		stern1c += dc[from->file->dir];
     73        1.1       cgd 		bs = distance((bow2r - stern1r), (bow2c - stern1c));
     74        1.1       cgd 		sb = distance((bow1r - stern2r), (bow1c - stern2c));
     75        1.1       cgd 		ss = distance((stern2r - stern1r) ,(stern2c - stern1c));
     76        1.1       cgd 		result = min(bb, min(bs, min(sb, ss)));
     77        1.1       cgd 	}
     78        1.1       cgd 	return result;
     79        1.1       cgd }
     80        1.1       cgd 
     81        1.1       cgd struct ship *
     82        1.7     jwise closestenemy(struct ship *from, int side, int anyship)
     83        1.1       cgd {
     84        1.5  christos 	struct ship *sp;
     85        1.5  christos 	char a;
     86        1.1       cgd 	int olddist = 30000, dist;
     87        1.1       cgd 	struct ship *closest = 0;
     88        1.1       cgd 
     89        1.1       cgd 	a = capship(from)->nationality;
     90        1.1       cgd 	foreachship(sp) {
     91        1.1       cgd 		if (sp == from)
     92        1.1       cgd 			continue;
     93        1.1       cgd 		if (sp->file->dir == 0)
     94        1.1       cgd 			continue;
     95        1.1       cgd 		if (a == capship(sp)->nationality && !anyship)
     96        1.1       cgd 			continue;
     97        1.1       cgd 		if (side && gunsbear(from, sp) != side)
     98        1.1       cgd 			continue;
     99        1.1       cgd 		dist = range(from, sp);
    100        1.1       cgd 		if (dist < olddist) {
    101        1.1       cgd 			closest = sp;
    102        1.1       cgd 			olddist = dist;
    103        1.1       cgd 		}
    104        1.1       cgd 	}
    105        1.1       cgd 	return closest;
    106        1.1       cgd }
    107        1.1       cgd 
    108        1.8     jwise static int
    109  1.15.16.1      matt angle(int Dr, int Dc)
    110        1.1       cgd {
    111        1.5  christos 	int i;
    112        1.1       cgd 
    113  1.15.16.1      matt 	if (Dc >= 0 && Dr > 0)
    114        1.1       cgd 		i = 0;
    115  1.15.16.1      matt 	else if (Dr <= 0 && Dc > 0)
    116        1.1       cgd 		i = 2;
    117  1.15.16.1      matt 	else if (Dc <= 0 && Dr < 0)
    118        1.1       cgd 		i = 4;
    119        1.1       cgd 	else
    120        1.1       cgd 		i = 6;
    121  1.15.16.1      matt 	Dr = abs(Dr);
    122  1.15.16.1      matt 	Dc = abs(Dc);
    123  1.15.16.1      matt 	if ((i == 0 || i == 4) && Dc * 2.4 > Dr) {
    124        1.1       cgd 		i++;
    125  1.15.16.1      matt 		if (Dc > Dr * 2.4)
    126        1.1       cgd 			i++;
    127  1.15.16.1      matt 	} else if ((i == 2 || i == 6) && Dr * 2.4 > Dc) {
    128        1.1       cgd 		i++;
    129  1.15.16.1      matt 		if (Dr > Dc * 2.4)
    130        1.1       cgd 			i++;
    131        1.1       cgd 	}
    132        1.1       cgd 	return i % 8 + 1;
    133        1.1       cgd }
    134        1.1       cgd 
    135        1.7     jwise /* checks for target bow or stern */
    136        1.5  christos int
    137        1.7     jwise gunsbear(struct ship *from, struct ship *to)
    138        1.1       cgd {
    139        1.1       cgd 	int Dr, Dc, i;
    140        1.5  christos 	int ang;
    141        1.1       cgd 
    142        1.1       cgd 	Dr = from->file->row - to->file->row;
    143        1.1       cgd 	Dc = to->file->col - from->file->col;
    144        1.1       cgd 	for (i = 2; i; i--) {
    145        1.1       cgd 		if ((ang = angle(Dr, Dc) - from->file->dir + 1) < 1)
    146        1.1       cgd 			ang += 8;
    147        1.1       cgd 		if (ang >= 2 && ang <= 4)
    148        1.1       cgd 			return 'r';
    149        1.1       cgd 		if (ang >= 6 && ang <= 7)
    150        1.1       cgd 			return 'l';
    151        1.1       cgd 		Dr += dr[to->file->dir];
    152        1.1       cgd 		Dc += dc[to->file->dir];
    153        1.1       cgd 	}
    154        1.1       cgd 	return 0;
    155        1.1       cgd }
    156        1.1       cgd 
    157        1.7     jwise /* returns true if fromship is shooting at onship's starboard side */
    158        1.5  christos int
    159        1.7     jwise portside(struct ship *from, struct ship *on, int quick)
    160        1.7     jwise {
    161        1.5  christos 	int ang;
    162        1.5  christos 	int Dr, Dc;
    163        1.1       cgd 
    164        1.1       cgd 	Dr = from->file->row - on->file->row;
    165        1.1       cgd 	Dc = on->file->col - from->file->col;
    166        1.1       cgd 	if (quick == -1) {
    167        1.1       cgd 		Dr += dr[on->file->dir];
    168        1.1       cgd 		Dc += dc[on->file->dir];
    169        1.1       cgd 	}
    170        1.1       cgd 	ang = angle(Dr, Dc);
    171        1.1       cgd 	if (quick != 0)
    172        1.1       cgd 		return ang;
    173        1.1       cgd 	ang = (ang + 4 - on->file->dir - 1) % 8 + 1;
    174        1.1       cgd 	return ang < 5;
    175        1.1       cgd }
    176        1.1       cgd 
    177        1.5  christos int
    178        1.7     jwise colours(struct ship *sp)
    179        1.1       cgd {
    180        1.5  christos 	char flag = '\0';
    181        1.1       cgd 
    182        1.1       cgd 	if (sp->file->struck)
    183        1.1       cgd 		flag = '!';
    184        1.1       cgd 	if (sp->file->explode)
    185        1.1       cgd 		flag = '#';
    186        1.1       cgd 	if (sp->file->sink)
    187        1.1       cgd 		flag = '~';
    188        1.1       cgd 	if (sp->file->struck)
    189        1.1       cgd 		return flag;
    190        1.1       cgd 	flag = *countryname[capship(sp)->nationality];
    191       1.15       dsl 	return sp->file->FS ? flag : tolower((unsigned char)flag);
    192        1.1       cgd }
    193        1.1       cgd 
    194        1.5  christos void
    195        1.7     jwise logger(struct ship *s)
    196        1.1       cgd {
    197        1.1       cgd 	FILE *fp;
    198        1.1       cgd 	int persons;
    199        1.1       cgd 	int n;
    200        1.1       cgd 	struct logs log[NLOG];
    201        1.1       cgd 	float net;
    202        1.5  christos 	struct logs *lp;
    203        1.1       cgd 
    204        1.6       jsm 	setegid(egid);
    205        1.6       jsm 	if ((fp = fopen(_PATH_LOGFILE, "r+")) == NULL) {
    206        1.6       jsm 		setegid(gid);
    207        1.1       cgd 		return;
    208        1.6       jsm 	}
    209        1.6       jsm 	setegid(gid);
    210        1.1       cgd #ifdef LOCK_EX
    211        1.1       cgd 	if (flock(fileno(fp), LOCK_EX) < 0)
    212        1.1       cgd 		return;
    213        1.1       cgd #endif
    214        1.1       cgd 	net = (float)s->file->points / s->specs->pts;
    215        1.1       cgd 	persons = getw(fp);
    216        1.1       cgd 	n = fread((char *)log, sizeof(struct logs), NLOG, fp);
    217        1.1       cgd 	for (lp = &log[n]; lp < &log[NLOG]; lp++)
    218        1.1       cgd 		lp->l_name[0] = lp->l_uid = lp->l_shipnum
    219        1.1       cgd 			= lp->l_gamenum = lp->l_netpoints = 0;
    220        1.1       cgd 	rewind(fp);
    221        1.1       cgd 	if (persons < 0)
    222        1.7     jwise 		putw(1, fp);
    223        1.1       cgd 	else
    224        1.7     jwise 		putw(persons + 1, fp);
    225        1.1       cgd 	for (lp = log; lp < &log[NLOG]; lp++)
    226        1.1       cgd 		if (net > (float)lp->l_netpoints
    227        1.1       cgd 		    / scene[lp->l_gamenum].ship[lp->l_shipnum].specs->pts) {
    228        1.7     jwise 			fwrite((char *)log, sizeof (struct logs), lp - log, fp);
    229        1.7     jwise 			strcpy(log[NLOG-1].l_name, s->file->captain);
    230        1.1       cgd 			log[NLOG-1].l_uid = getuid();
    231        1.1       cgd 			log[NLOG-1].l_shipnum = s->file->index;
    232        1.1       cgd 			log[NLOG-1].l_gamenum = game;
    233        1.1       cgd 			log[NLOG-1].l_netpoints = s->file->points;
    234        1.7     jwise 			fwrite((char *)&log[NLOG-1], sizeof (struct logs), 1, fp);
    235        1.7     jwise 			fwrite((char *)lp, sizeof (struct logs), &log[NLOG-1] - lp, fp);
    236        1.1       cgd 			break;
    237        1.1       cgd 		}
    238        1.1       cgd #ifdef LOCK_EX
    239        1.7     jwise 	flock(fileno(fp), LOCK_UN);
    240        1.1       cgd #endif
    241        1.7     jwise 	fclose(fp);
    242        1.1       cgd }
    243