xref: /netbsd/games/backgammon/teachgammon/tutor.h (revision bf9ec67e)
1 /*	$NetBSD: tutor.h,v 1.6 1999/02/10 12:29:48 hubertf Exp $	*/
2 
3 /*
4  * Copyright (c) 1980, 1993
5  *	The Regents of the University of California.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. All advertising materials mentioning features or use of this software
16  *    must display the following acknowledgement:
17  *	This product includes software developed by the University of
18  *	California, Berkeley and its contributors.
19  * 4. Neither the name of the University nor the names of its contributors
20  *    may be used to endorse or promote products derived from this software
21  *    without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  *
35  *	@(#)tutor.h	8.1 (Berkeley) 5/31/93
36  */
37 
38 struct situatn {
39 	int	brd[26];
40 	int	roll1;
41 	int	roll2;
42 	int	mp[4];
43 	int	mg[4];
44 	int	new1;
45 	int	new2;
46 	const char	*const (*com[8]);
47 };
48 
49 
50 extern	const char	*const doubl[];
51 extern	const char	*const endgame[];
52 extern	const char	*const finis[];
53 extern	const char	*const hello[];
54 extern	const char	*const hits[];
55 extern	const char	*const intro1[];
56 extern	const char	*const intro2[];
57 extern	const char	*const lastch[];
58 extern	const char	*const list[];
59 extern	int	 maxmoves;
60 extern	const char	*const moves[];
61 extern	const char	*const opts;
62 extern	const char	*const prog[];
63 extern	const char	*const prompt;
64 extern	const char	*const removepiece[];
65 extern	const char	*const stragy[];
66 extern	const struct situatn	test[];
67 
68 
69 int	brdeq __P((const int *, const int *));
70 void	clrest __P((void));
71 void	leave __P((void)) __attribute__((__noreturn__));
72 void	tutor __P((void)) __attribute__((__noreturn__));
73