lose.c

来自「<B>Digital的Unix操作系统VAX 4.2源码</B>」· C语言 代码 · 共 50 行

C
50
字号
#ifndef lintstatic char sccsid[] = "@(#)lose.c	4.2	(Berkeley)	5/27/83";#endif not lint# include	"trek.h"/***  PRINT OUT LOSER MESSAGES****	The messages are printed out, the score is computed and**	printed, and the game is restarted.  Oh yeh, any special**	actions which need be taken are taken.*/char	*Losemsg[] ={	"You ran out of time",	"You ran out of energy",	"You have been destroyed",	"You ran into the negative energy barrier",	"You destroyed yourself by nova'ing that star",	"You have been caught in a supernova",	"You just suffocated in outer space",	"You could not be rematerialized",	"\n\032\014 *** Ship's hull has imploded ***",	"You have burned up in a star",	"Well, you destroyed yourself, but it didn't do any good",	"You have been captured by Klingons and mercilessly tortured",	"Your last crew member died",};lose(why)int	why;{	Game.killed = 1;	sleep(1);	printf("\n%s\n", Losemsg[why - 1]);	switch (why)	{	  case L_NOTIME:		Game.killed = 0;		break;	}	Move.endgame = -1;	score();	skiptonl(0);	longjmp(setexit_place, 1);}

⌨️ 快捷键说明

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