1/*	$NetBSD: ttext2.c,v 1.9 2010/03/22 05:10:19 mrg 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. Neither the name of the University nor the names of its contributors
16 *    may be used to endorse or promote products derived from this software
17 *    without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 */
31
32#include <sys/cdefs.h>
33#ifndef lint
34#if 0
35static char sccsid[] = "@(#)ttext2.c	8.1 (Berkeley) 5/31/93";
36#else
37__RCSID("$NetBSD: ttext2.c,v 1.9 2010/03/22 05:10:19 mrg Exp $");
38#endif
39#endif				/* not lint */
40
41#include "back.h"
42#include "tutor.h"
43
44const char   *const doubl[] = {
45	"\nDoubling:",
46	"\n   If a player thinks he is in a good position, he may double the",
47	"value of the game.  However, his opponent may not accept the pro-",
48	"posal and forfeit the game before the price gets too high.  A",
49	"player must double before he rolls, and once his double has been",
50	"accepted, he cannot double again, until his opponent has doubled.",
51	"Thus, unless the game swings back and forth in advantage between",
52	"the two players a great deal, the value of the game should be",
53	"low.  At any rate, the value of the game will never go above 64,",
54	"or six doubles.  However, if a player wins a backgammon at 64",
55	"points, he wins 192 points!",
56	"",
570};
58
59const char   *const stragy[] = {
60	"\nStrategy:",
61	"\n   Some general hints when playing:  Try not to leave men open",
62	"unless absolutely necessary.  Also, it is good to make as many",
63	"points as possible.  Often, two men from different positions can",
64	"be brought together to form a new point.  Although walls (six",
65	"points in a row) are difficult to form, many points nestled close-",
66	"ly together produce a formidable barrier.  Also, while it is good",
67	"to move back men forward, doing so lessens the opportunity for you",
68	"to hit men.  Finally, remember that once the two player's have",
69	"passed each other on the board, there is no chance of either team",
70	"being hit, so the game reduces to a race off the board.  Addi-",
71	"tional hints on strategy are presented in the practice game.",
72	"",
730};
74
75const char   *const prog[] = {
76	"\nThe Program and How It Works:",
77	"\n   A general rule of thumb is when you don't know what to do,",
78	"type a question mark, and you should get some help.  When it is",
79	"your turn, only your color will be printed out, with nothing",
80	"after it.  You may double by typing a 'd', but if you type a",
81	"space or newline, you will get your roll.  (Remember, you must",
82	"double before you roll.)  Also, typing a 'r' will reprint the",
83	"board, and a 'q' will quit the game.  The program will type",
84	"'Move:' when it wants your move, and you may indicate each die's",
85	"move with <s>-<f>, where <s> is the starting position and <f> is",
86	"the finishing position, or <s>/<r> where <r> is the roll made.",
87	"<s>-<f1>-<f2> is short for <s>-<f1>,<f1>-<f2> and <s>/<r1><r2> is",
88	"short for <s>/<r1>,<s>/<r2>.  Moves may be separated by a comma",
89	"or a space.",
90	"",
91	"\n   While typing, any input which does not make sense will not be",
92	"echoed, and a bell will sound instead.  Also, backspacing and",
93	"killing lines will echo differently than normal.  You may examine",
94	"the board by typing a 'r' if you have made a partial move, or be-",
95	"fore you type a newline, to see what the board looks like.  You",
96	"must end your move with a newline.  If you cannot double, your",
97	"roll will always be printed, and you will not be given the oppor-",
98	"tunity to double.  Home and bar are represented by the appropri-",
99	"ate number, 0 or 25 as the case may be, or by the letters 'h' or",
100	"'b' as appropriate.  You may also type 'r' or 'q' when the program",
101	"types 'Move:', which has the same effect as above.  Finally, you",
102	"will get to decide if you want to play red or white (or both if you",
103	"want to play a friend) at the beginning of the session, and you",
104	"will not get to change your mind later, since the computer keeps",
105	"score.",
106	"",
1070};
108
109const char   *const lastch[] = {
110	"\nTutorial (Practice Game):",
111	"\n   This tutorial, for simplicity's sake, will let you play one",
112	"predetermined game.  All the rolls have been pre-arranged, and",
113	"only one response will let you advance to the next move.",
114	"Although a given roll will may have several legal moves, the tu-",
115	"torial will only accept one (not including the same moves in a",
116	"different order), claiming that that move is 'best.'  Obviously,",
117	"a subjective statement.  At any rate, be patient with it and have",
118	"fun learning about backgammon.  Also, to speed things up a lit-",
119	"tle, doubling will not take place in the tutorial, so you will",
120	"never get that opportunity, and quitting only leaves the tutori-",
121	"al, not the game.  You will still be able to play backgammon",
122	"after quitting.",
123	"\n   This is your last chance to look over the rules before the tu-",
124	"torial starts.",
125	"",
1260};
127
128
129int
130wrtext(const char *const *txt)
131{
132	const char   *a;
133	char    b;
134	const char   *c;
135	int     i;
136
137	fixtty(&noech);
138	while (*txt) {
139		a = *(txt++);
140		if (*a != '\0') {
141			c = a;
142			for (i = 0; *(c++) != '\0'; i--);
143			writel(a);
144			writec('\n');
145		} else {
146			fixtty(&raw);
147			writel(prompt);
148			for (;;) {
149				if ((b = readc()) == '?') {
150					if (tflag) {
151						if (begscr) {
152							curmove(18, 0);
153							clend();
154						} else
155							clear();
156					} else
157						writec('\n');
158					wrtext(list);
159					writel(prompt);
160					continue;
161				}
162				i = 0;
163				if (b == '\n')
164					break;
165				while (i < 11) {
166					if (b == opts[i])
167						break;
168					i++;
169				}
170				if (i == 11)
171					writec('\007');
172				else
173					break;
174			}
175			if (tflag) {
176				if (begscr) {
177					curmove(18, 0);
178					clend();
179				} else
180					clear();
181			} else
182				writec('\n');
183			if (i)
184				return (i);
185			fixtty(&noech);
186			if (tflag)
187				curmove(curr, 0);
188		}
189	}
190	fixtty(&raw);
191	return (0);
192}
193