⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 capture.c

📁 <B>Digital的Unix操作系统VAX 4.2源码</B>
💻 C
字号:
#ifndef lintstatic char sccsid[] = "@(#)capture.c	4.3	(Berkeley)	5/27/83";#endif not lint# include	"trek.h"/***  Ask a Klingon To Surrender****	(Fat chance)****	The Subspace Radio is needed to ask a Klingon if he will kindly**	surrender.  A random Klingon from the ones in the quadrant is**	chosen.****	The Klingon is requested to surrender.  The probability of this**	is a function of that Klingon's remaining power, our power,**	etc.*/capture(){	register int		i;	register struct kling	*k;	double			x;	extern struct kling	*selectklingon();	/* check for not cloaked */	if (Ship.cloaked)	{		printf("Ship-ship communications out when cloaked\n");		return;	}	if (damaged(SSRADIO))		return (out(SSRADIO));	/* find out if there are any at all */	if (Etc.nkling <= 0)	{		printf("Uhura: Getting no response, sir\n");		return;	}	/* if there is more than one Klingon, find out which one */	k = selectklingon();	Move.free = 0;	Move.time = 0.05;	/* check out that Klingon */	k->srndreq++;	x = Param.klingpwr;	x *= Ship.energy;	x /= k->power * Etc.nkling;	x *= Param.srndrprob;	i = x;#	ifdef xTRACE	if (Trace)		printf("Prob = %d (%.4f)\n", i, x);#	endif	if (i > ranf(100))	{		/* guess what, he surrendered!!! */		printf("Klingon at %d,%d surrenders\n", k->x, k->y);		i = ranf(Param.klingcrew);		if ( i > 0 )			printf("%d klingons commit suicide rather than be taken captive\n", Param.klingcrew - i);		if (i > Ship.brigfree)			i = Ship.brigfree;		Ship.brigfree -= i;		printf("%d captives taken\n", i);		killk(k->x, k->y);		return;	}	/* big surprise, he refuses to surrender */	printf("Fat chance, captain\n");	return;}/***  SELECT A KLINGON****	Cruddy, just takes one at random.  Should ask the captain.*/struct kling	*selectklingon(){	register int		i;	if (Etc.nkling < 2)		i = 0;	else		i = ranf(Etc.nkling);	return (&Etc.klingon[i]);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -