]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - backgammon/common_source/fancy.c
f9f99258803f5094f850974072d7b2f9ac66b35a
1 /* $NetBSD: fancy.c,v 1.11 2003/08/07 09:36:57 agc Exp $ */
4 * Copyright (c) 1980, 1993
5 * The Regents of the University of California. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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.
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
32 #include <sys/cdefs.h>
35 static char sccsid
[] = "@(#)fancy.c 8.1 (Berkeley) 5/31/93";
37 __RCSID("$NetBSD: fancy.c,v 1.11 2003/08/07 09:36:57 agc Exp $");
43 char PC
; /* padding character */
44 char *BC
; /* backspace sequence */
45 char *CD
; /* clear to end of screen sequence */
46 char *CE
; /* clear to end of line sequence */
47 char *CL
; /* clear screen sequence */
48 char *CM
; /* cursor movement instructions */
49 char *HO
; /* home cursor sequence */
50 char *MC
; /* column cursor movement map */
51 char *ML
; /* row cursor movement map */
52 char *ND
; /* forward cursor sequence */
53 char *UP
; /* up cursor sequence */
55 int lHO
; /* length of HO */
56 int lBC
; /* length of BC */
57 int lND
; /* length of ND */
58 int lUP
; /* length of UP */
59 int CO
; /* number of columns */
60 int LI
; /* number of lines */
61 int *linect
; /* array of lengths of lines on screen (the
62 * actual screen is not stored) */
64 /* two letter codes */
65 char tcap
[] = "bccdceclcmhomcmlndup";
66 /* corresponding strings */
67 char **tstr
[] = {&BC
, &CD
, &CE
, &CL
, &CM
, &HO
, &MC
, &ML
, &ND
, &UP
};
69 int buffnum
; /* pointer to output buffer */
71 char tbuf
[1024]; /* buffer for decoded termcap entries */
73 int oldb
[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
77 /* "real" cursor positions, so it knows when to reposition. These are -1 if
78 * curr and curc are accurate */
87 curmove(0, 0); /* do top line */
88 for (i
= 0; i
< 53; i
++)
91 curmove(15, 0); /* do botttom line */
92 for (i
= 0; i
< 53; i
++)
95 l
= 1; /* do vertical lines */
96 for (i
= 52; i
> -1; i
-= 28) {
97 curmove((l
== 1 ? 1 : 15), i
);
99 for (j
= 0; j
< 14; j
++) {
100 curmove(curr
+ l
, curc
- 1);
105 l
= -l
; /* alternate directions */
108 curmove(2, 1); /* label positions 13-18 */
109 for (i
= 13; i
< 18; i
++) {
111 fancyc((i
% 10) + '0');
112 curmove(curr
, curc
+ 2);
117 curmove(2, 29); /* label positions 19-24 */
120 for (i
= 20; i
< 25; i
++) {
121 curmove(curr
, curc
+ 2);
123 fancyc((i
% 10) + '0');
126 curmove(14, 1); /* label positions 12-7 */
129 for (i
= 11; i
> 6; i
--) {
130 curmove(curr
, curc
+ 2);
131 fancyc(i
> 9 ? '1' : ' ');
132 fancyc((i
% 10) + '0');
135 curmove(14, 30); /* label positions 6-1 */
137 for (i
= 5; i
> 0; i
--) {
138 curmove(curr
, curc
+ 3);
142 for (i
= 12; i
> 6; i
--)/* print positions 12-7 */
144 bsect(board
[i
], 13, 1 + 4 * (12 - i
), -1);
146 if (board
[0]) /* print red men on bar */
147 bsect(board
[0], 13, 25, -1);
149 for (i
= 6; i
> 0; i
--) /* print positions 6-1 */
151 bsect(board
[i
], 13, 29 + 4 * (6 - i
), -1);
153 l
= (off
[1] < 0 ? off
[1] + 15 : off
[1]); /* print white's home */
156 curmove(8, 25); /* print the word BAR */
161 for (i
= 13; i
< 19; i
++) /* print positions 13-18 */
163 bsect(board
[i
], 3, 1 + 4 * (i
- 13), 1);
165 if (board
[25]) /* print white's men on bar */
166 bsect(board
[25], 3, 25, 1);
168 for (i
= 19; i
< 25; i
++) /* print positions 19-24 */
170 bsect(board
[i
], 3, 29 + 4 * (i
- 19), 1);
172 l
= (off
[0] < 0 ? off
[0] + 15 : off
[0]); /* print red's home */
173 bsect(-l
, 13, 54, -1);
175 for (i
= 0; i
< 26; i
++)/* save board position for refresh later */
177 oldr
= (off
[1] < 0 ? off
[1] + 15 : off
[1]);
178 oldw
= -(off
[0] < 0 ? off
[0] + 15 : off
[0]);
181 * bsect (b,rpos,cpos,cnext)
182 * Print the contents of a board position. "b" has the value of the
183 * position, "rpos" is the row to start printing, "cpos" is the column to
184 * start printing, and "cnext" is positive if the position starts at the top
185 * and negative if it starts at the bottom. The value of "cpos" is checked
186 * to see if the position is a player's home, since those are printed
190 bsect(b
, rpos
, cpos
, cnext
)
191 int b
; /* contents of position */
192 int rpos
; /* row of position */
193 int cpos
; /* column of position */
194 int cnext
; /* direction of position */
197 int n
; /* number of men on position */
198 int bct
; /* counter */
200 char pc
; /* color of men on position */
203 n
= abs(b
); /* initialize n and pc */
204 pc
= (b
> 0 ? 'r' : 'w');
206 if (n
< 6 && cpos
< 54) /* position cursor at start */
207 curmove(rpos
, cpos
+ 1);
211 for (j
= 0; j
< 5; j
++) { /* print position row by row */
213 for (k
= 0; k
< 15; k
+= 5) /* print men */
217 if (j
< 4) { /* figure how far to back up for next row */
218 if (n
< 6) { /* stop if none left */
221 bct
= 1; /* single column */
223 if (n
< 11) { /* two columns */
224 if (cpos
== 54) { /* home pos */
230 if (cpos
< 54) { /* not home */
236 } else { /* three columns */
243 curmove(curr
+ cnext
, curc
- bct
); /* reposition cursor */
253 r
= curr
; /* save current position */
256 for (i
= 12; i
> 6; i
--)/* fix positions 12-7 */
257 if (board
[i
] != oldb
[i
]) {
258 fixpos(oldb
[i
], board
[i
], 13, 1 + (12 - i
) * 4, -1);
261 if (board
[0] != oldb
[0]) { /* fix red men on bar */
262 fixpos(oldb
[0], board
[0], 13, 25, -1);
265 for (i
= 6; i
> 0; i
--) /* fix positions 6-1 */
266 if (board
[i
] != oldb
[i
]) {
267 fixpos(oldb
[i
], board
[i
], 13, 29 + (6 - i
) * 4, -1);
270 i
= -(off
[0] < 0 ? off
[0] + 15 : off
[0]); /* fix white's home */
272 fixpos(oldw
, i
, 13, 54, -1);
275 for (i
= 13; i
< 19; i
++) /* fix positions 13-18 */
276 if (board
[i
] != oldb
[i
]) {
277 fixpos(oldb
[i
], board
[i
], 3, 1 + (i
- 13) * 4, 1);
280 if (board
[25] != oldb
[25]) { /* fix white men on bar */
281 fixpos(oldb
[25], board
[25], 3, 25, 1);
282 oldb
[25] = board
[25];
284 for (i
= 19; i
< 25; i
++) /* fix positions 19-24 */
285 if (board
[i
] != oldb
[i
]) {
286 fixpos(oldb
[i
], board
[i
], 3, 29 + (i
- 19) * 4, 1);
289 i
= (off
[1] < 0 ? off
[1] + 15 : off
[1]); /* fix red's home */
291 fixpos(oldr
, i
, 3, 54, 1);
294 curmove(r
, c
); /* return to saved position */
300 fixpos(old
, new, r
, c
, inc
)
301 int old
, new, r
, c
, inc
;
308 if (old
* new >= 0) {
311 col
= (old
+ new > 0 ? 'r' : 'w');
318 nc
= c
< 54 ? c
: c
+ 1;
320 nc
= c
< 54 ? c
+ 1 : c
;
322 fixcol(r
+ inc
* (nv
- n
* 5), nc
, abs(ov
- nv
), ' ', inc
);
324 fixcol(r
+ inc
* (ov
- o
* 5), nc
, abs(ov
- nv
), col
, inc
);
330 fixcol(r
, c
, abs(nv
- 5), col
, inc
);
332 fixcol(r
+ inc
* ov
, c
+ 1,
333 abs(ov
- 5), col
, inc
);
335 fixcol(r
, c
, abs(ov
- 5), ' ', inc
);
337 fixcol(r
+ inc
* nv
, c
+ 1,
338 abs(nv
- 5), ' ', inc
);
344 fixcol(r
+ inc
* (ov
- 5), c
,
345 abs(ov
- 10), col
, inc
);
346 fixcol(r
, c
+ 2, abs(nv
- 10), col
, inc
);
349 fixcol(r
+ inc
* (nv
- 5), c
,
350 abs(nv
- 10), ' ', inc
);
351 fixcol(r
, c
+ 2, abs(ov
- 10), ' ', inc
);
356 fixcol(r
+ inc
* (ov
% 5), c
+ o
, abs(5 * n
- ov
), col
, inc
);
358 fixcol(r
, c
+ n
, abs(5 * n
- nv
), col
, inc
);
360 fixcol(r
+ inc
* (nv
% 5), c
+ n
, abs(5 * n
- nv
), ' ', inc
);
362 fixcol(r
, c
+ o
, abs(5 * o
- ov
), ' ', inc
);
368 fixcol(r
, c
+ 1, nv
, new > 0 ? 'r' : 'w', inc
);
369 if (abs(old
) <= abs(new))
371 fixcol(r
+ inc
* new, c
+ 1, abs(old
+ new), ' ', inc
);
375 fixcol(r
, c
, l
, ch
, inc
)
376 int l
, ch
, r
, c
, inc
;
382 for (i
= 1; i
< l
; i
++) {
383 curmove(curr
+ inc
, curc
- 1);
392 if (curr
== r
&& curc
== c
)
405 int r
; /* destination row */
406 int c
; /* destination column */
407 int mode
= -1; /* mode of movement */
409 int count
= 1000; /* character count */
411 int n
; /* temporary variable */
412 char *m
; /* string containing CM movement */
416 if (realr
== -1) /* see if already there */
419 r
= curr
; /* set current and dest. positions */
424 /* double check position */
425 if (curr
== r
&& curc
== c
) {
429 if (CM
) { /* try CM to get there */
431 m
= (char *) tgoto(CM
, c
, r
);
434 /* try HO and local movement */
435 if (HO
&& (n
= r
+ c
* lND
+ lHO
) < count
) {
439 /* try various LF combinations */
442 if ((n
= (r
- curr
) + c
* lND
+ 1) < count
) {
447 if (c
>= curc
&& (n
= (r
- curr
) + (c
- curc
) * lND
) < count
) {
452 if (c
< curc
&& (n
= (r
- curr
) + (curc
- c
) * lBC
) < count
) {
457 /* try corresponding UP combinations */
460 if ((n
= (curr
- r
) * lUP
+ c
* lND
+ 1) < count
) {
465 if (c
>= curc
&& (n
= (curr
- r
) * lUP
+ (c
- curc
) * lND
) < count
) {
470 if (c
< curc
&& (n
= (curr
- r
) * lUP
+ (curc
- c
) * lBC
) < count
) {
476 if (curr
== r
&& c
> curc
&& linect
[r
] < curc
&& c
- curc
< count
)
481 case -1: /* error! */
482 write(2, "\r\nInternal cursor error.\r\n", 26);
485 /* direct cursor motion */
487 tputs(m
, abs(curr
- r
), addbuf
);
490 /* relative to "home" */
492 tputs(HO
, r
, addbuf
);
493 for (i
= 0; i
< r
; i
++)
495 for (i
= 0; i
< c
; i
++)
496 tputs(ND
, 1, addbuf
);
499 /* CR and down and over */
502 for (i
= 0; i
< r
- curr
; i
++)
504 for (i
= 0; i
< c
; i
++)
505 tputs(ND
, 1, addbuf
);
510 for (i
= 0; i
< r
- curr
; i
++)
512 for (i
= 0; i
< c
- curc
; i
++)
513 tputs(ND
, 1, addbuf
);
518 for (i
= 0; i
< r
- curr
; i
++)
520 for (i
= 0; i
< curc
- c
; i
++)
524 /* CR and up and over */
527 for (i
= 0; i
< curr
- r
; i
++)
528 tputs(UP
, 1, addbuf
);
529 for (i
= 0; i
< c
; i
++)
530 tputs(ND
, 1, addbuf
);
535 for (i
= 0; i
< curr
- r
; i
++)
536 tputs(UP
, 1, addbuf
);
537 for (i
= 0; i
< c
- curc
; i
++)
538 tputs(ND
, 1, addbuf
);
543 for (i
= 0; i
< curr
- r
; i
++)
544 tputs(UP
, 1, addbuf
);
545 for (i
= 0; i
< curc
- c
; i
++) {
547 tputs(BC
, 1, addbuf
);
555 for (i
= 0; i
< c
- curc
; i
++)
571 /* double space if can't clear */
576 curr
= curc
= 0; /* fix position markers */
578 for (i
= 0; i
< 24; i
++)/* clear line counts */
580 buffnum
= -1; /* ignore leftover buffer contents */
581 tputs(CL
, CO
, addbuf
); /* put CL in buffer */
586 char c
; /* character to output */
588 int sp
; /* counts spaces in a tab */
590 if (c
== '\007') { /* bells go in blindly */
594 /* process tabs, use spaces if the the tab should be erasing things,
595 * otherwise use cursor movement routines. Note this does not use
596 * hardware tabs at all. */
598 sp
= (curc
+ 8) & (~7); /* compute spaces */
599 /* check line length */
600 if (linect
[curr
] >= curc
|| sp
< 4) {
601 for (; sp
> curc
; sp
--)
603 curc
= sp
; /* fix curc */
608 /* do newline be calling newline */
613 /* ignore any other control chars */
617 /* if an erasing space or non-space, just add it to buffer. Otherwise
618 * use cursor movement routine, so that multiple spaces will be
619 * grouped together */
620 if (c
> ' ' || linect
[curr
] >= curc
) {
621 newpos(); /* make sure position correct */
622 addbuf(c
); /* add character to buffer */
623 /* fix line length */
624 if (c
== ' ' && linect
[curr
] == curc
)
627 if (linect
[curr
] < curc
)
629 curc
++; /* fix curc */
631 /* use cursor movement routine */
632 curmove(curr
, curc
+ 1);
641 tputs(CD
, CO
- curr
, addbuf
);
642 for (i
= curr
; i
< LI
; i
++)
646 curmove(i
= curr
, 0);
648 while (curr
< LI
- 1) {
649 curmove(curr
+ 1, 0);
650 if (linect
[curr
] > -1)
661 if (curc
> linect
[curr
])
665 tputs(CE
, 1, addbuf
);
666 linect
[curr
] = curc
- 1;
669 while (linect
[curr
] > c
) {
674 curmove(curr
, c
+ 1);
685 curmove(curr
+ 1, 0);
692 char *code
; /* two letter code */
693 char ***cap
; /* pointer to cap string */
694 char *bufp
; /* pointer to cap buffer */
695 char tentry
[1024]; /* temporary uncoded caps buffer */
697 tgetent(tentry
, s
); /* get uncoded termcap entry */
699 LI
= tgetnum("li"); /* get number of lines */
702 CO
= tgetnum("co"); /* get number of columns */
706 bufp
= tbuf
; /* get padding character */
707 tgetstr("pc", &bufp
);
713 bufp
= tbuf
; /* get string entries */
715 for (code
= tcap
; *code
; code
+= 2)
716 **cap
++ = (char *) tgetstr(code
, &bufp
);
718 /* get pertinent lengths */
729 if (LI
< 24 || CO
< 72 || !(CL
&& UP
&& ND
))
731 linect
= (int *) calloc(LI
+ 1, sizeof(int));
732 if (linect
== NULL
) {
733 write(2, "\r\nOut of memory!\r\n", 18);