2009-06-04 09:27:04 +04:00
|
|
|
/* $NetBSD: bdisp.c,v 1.10 2009/06/04 05:27:04 dholland Exp $ */
|
1997-01-03 04:35:23 +03:00
|
|
|
|
1996-12-28 21:44:55 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1994
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Ralph Campbell.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2003-08-07 13:36:50 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1996-12-28 21:44:55 +03:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
1997-10-10 17:36:01 +04:00
|
|
|
#include <sys/cdefs.h>
|
1996-12-28 21:44:55 +03:00
|
|
|
#ifndef lint
|
1996-12-28 21:56:57 +03:00
|
|
|
#if 0
|
1996-12-28 21:44:55 +03:00
|
|
|
static char sccsid[] = "@(#)bdisp.c 8.2 (Berkeley) 5/3/95";
|
1996-12-28 21:56:57 +03:00
|
|
|
#else
|
2009-06-04 09:27:04 +04:00
|
|
|
__RCSID("$NetBSD: bdisp.c,v 1.10 2009/06/04 05:27:04 dholland Exp $");
|
1996-12-28 21:56:57 +03:00
|
|
|
#endif
|
1996-12-28 21:44:55 +03:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#include <curses.h>
|
1997-10-10 17:36:01 +04:00
|
|
|
#include <string.h>
|
2008-08-08 20:10:47 +04:00
|
|
|
#include <stdlib.h>
|
1997-10-10 17:36:01 +04:00
|
|
|
#include "gomoku.h"
|
1996-12-28 21:44:55 +03:00
|
|
|
|
|
|
|
#define SCRNH 24 /* assume 24 lines for the moment */
|
|
|
|
#define SCRNW 80 /* assume 80 chars for the moment */
|
|
|
|
|
|
|
|
static int lastline;
|
|
|
|
static char pcolor[] = "*O.?";
|
|
|
|
|
2001-02-05 03:30:38 +03:00
|
|
|
extern int interactive;
|
|
|
|
extern char *plyr[];
|
|
|
|
|
1996-12-28 21:44:55 +03:00
|
|
|
/*
|
|
|
|
* Initialize screen display.
|
|
|
|
*/
|
1997-10-10 17:36:01 +04:00
|
|
|
void
|
2009-06-04 09:27:04 +04:00
|
|
|
cursinit(void)
|
1996-12-28 21:44:55 +03:00
|
|
|
{
|
|
|
|
|
2008-08-08 20:10:47 +04:00
|
|
|
if (!initscr()) {
|
|
|
|
fprintf(stderr, "couldn't initialize screen\n");
|
|
|
|
exit (0);
|
|
|
|
}
|
1996-12-28 21:44:55 +03:00
|
|
|
noecho();
|
|
|
|
cbreak();
|
|
|
|
leaveok(stdscr, TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Restore screen display.
|
|
|
|
*/
|
1997-10-10 17:36:01 +04:00
|
|
|
void
|
2009-06-04 09:27:04 +04:00
|
|
|
cursfini(void)
|
1996-12-28 21:44:55 +03:00
|
|
|
{
|
|
|
|
|
|
|
|
leaveok(stdscr, FALSE);
|
|
|
|
move(23, 0);
|
|
|
|
clrtoeol();
|
|
|
|
refresh();
|
|
|
|
endwin();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize board display.
|
|
|
|
*/
|
1997-10-10 17:36:01 +04:00
|
|
|
void
|
2009-06-04 09:27:04 +04:00
|
|
|
bdisp_init(void)
|
1996-12-28 21:44:55 +03:00
|
|
|
{
|
1997-10-10 17:36:01 +04:00
|
|
|
int i, j;
|
1996-12-28 21:44:55 +03:00
|
|
|
|
|
|
|
/* top border */
|
|
|
|
for (i = 1; i < BSZ1; i++) {
|
|
|
|
move(0, 2 * i + 1);
|
|
|
|
addch(letters[i]);
|
|
|
|
}
|
|
|
|
/* left and right edges */
|
|
|
|
for (j = BSZ1; --j > 0; ) {
|
|
|
|
move(20 - j, 0);
|
|
|
|
printw("%2d ", j);
|
|
|
|
move(20 - j, 2 * BSZ1 + 1);
|
|
|
|
printw("%d ", j);
|
|
|
|
}
|
|
|
|
/* bottom border */
|
|
|
|
for (i = 1; i < BSZ1; i++) {
|
|
|
|
move(20, 2 * i + 1);
|
|
|
|
addch(letters[i]);
|
|
|
|
}
|
|
|
|
bdwho(0);
|
|
|
|
move(0, 47);
|
|
|
|
addstr("# black white");
|
|
|
|
lastline = 0;
|
|
|
|
bdisp();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Update who is playing whom.
|
|
|
|
*/
|
1997-10-10 17:36:01 +04:00
|
|
|
void
|
2009-06-04 09:27:04 +04:00
|
|
|
bdwho(int update)
|
1996-12-28 21:44:55 +03:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
move(21, 0);
|
|
|
|
clrtoeol();
|
|
|
|
i = 6 - strlen(plyr[BLACK]) / 2;
|
|
|
|
move(21, i > 0 ? i : 0);
|
|
|
|
printw("BLACK/%s", plyr[BLACK]);
|
|
|
|
i = 30 - strlen(plyr[WHITE]) / 2;
|
|
|
|
move(21, i);
|
|
|
|
printw("WHITE/%s", plyr[WHITE]);
|
|
|
|
move(21, 19);
|
|
|
|
addstr(" vs. ");
|
|
|
|
if (update)
|
|
|
|
refresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Update the board display after a move.
|
|
|
|
*/
|
1997-10-10 17:36:01 +04:00
|
|
|
void
|
2009-06-04 09:27:04 +04:00
|
|
|
bdisp(void)
|
1996-12-28 21:44:55 +03:00
|
|
|
{
|
1997-10-10 17:36:01 +04:00
|
|
|
int i, j, c;
|
|
|
|
struct spotstr *sp;
|
1996-12-28 21:44:55 +03:00
|
|
|
|
|
|
|
for (j = BSZ1; --j > 0; ) {
|
|
|
|
for (i = 1; i < BSZ1; i++) {
|
|
|
|
move(BSZ1 - j, 2 * i + 1);
|
|
|
|
sp = &board[i + j * BSZ1];
|
|
|
|
if (debug > 1 && sp->s_occ == EMPTY) {
|
|
|
|
if (sp->s_flg & IFLAGALL)
|
|
|
|
c = '+';
|
|
|
|
else if (sp->s_flg & CFLAGALL)
|
|
|
|
c = '-';
|
|
|
|
else
|
|
|
|
c = '.';
|
|
|
|
} else
|
|
|
|
c = pcolor[sp->s_occ];
|
|
|
|
addch(c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
refresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
/*
|
|
|
|
* Dump board display to a file.
|
|
|
|
*/
|
1997-10-10 17:36:01 +04:00
|
|
|
void
|
2009-06-04 09:27:04 +04:00
|
|
|
bdump(FILE *fp)
|
1996-12-28 21:44:55 +03:00
|
|
|
{
|
1997-10-10 17:36:01 +04:00
|
|
|
int i, j, c;
|
|
|
|
struct spotstr *sp;
|
1996-12-28 21:44:55 +03:00
|
|
|
|
|
|
|
/* top border */
|
|
|
|
fprintf(fp, " A B C D E F G H J K L M N O P Q R S T\n");
|
|
|
|
|
|
|
|
for (j = BSZ1; --j > 0; ) {
|
|
|
|
/* left edge */
|
|
|
|
fprintf(fp, "%2d ", j);
|
|
|
|
for (i = 1; i < BSZ1; i++) {
|
|
|
|
sp = &board[i + j * BSZ1];
|
|
|
|
if (debug > 1 && sp->s_occ == EMPTY) {
|
|
|
|
if (sp->s_flg & IFLAGALL)
|
|
|
|
c = '+';
|
|
|
|
else if (sp->s_flg & CFLAGALL)
|
|
|
|
c = '-';
|
|
|
|
else
|
|
|
|
c = '.';
|
|
|
|
} else
|
|
|
|
c = pcolor[sp->s_occ];
|
|
|
|
putc(c, fp);
|
|
|
|
putc(' ', fp);
|
|
|
|
}
|
|
|
|
/* right edge */
|
|
|
|
fprintf(fp, "%d\n", j);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* bottom border */
|
|
|
|
fprintf(fp, " A B C D E F G H J K L M N O P Q R S T\n");
|
|
|
|
}
|
|
|
|
#endif /* DEBUG */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Display a transcript entry
|
|
|
|
*/
|
1997-10-10 17:36:01 +04:00
|
|
|
void
|
2009-06-04 09:27:04 +04:00
|
|
|
dislog(const char *str)
|
1996-12-28 21:44:55 +03:00
|
|
|
{
|
|
|
|
|
|
|
|
if (++lastline >= SCRNH - 1) {
|
|
|
|
/* move 'em up */
|
|
|
|
lastline = 1;
|
|
|
|
}
|
|
|
|
move(lastline, 46);
|
Add use of `const' where appropriate to the games.
This merges in all such remaining changes from the Linux port of the
NetBSD games, except in hunt (where substantial changes from OpenBSD
need to be looked at).
Some such changes were previously covered in PRs bin/6041, bin/6146,
bin/6148, bin/6150, bin/6151, bin/6580, bin/6660, bin/7993, bin/7994,
bin/8039, bin/8057 and bin/8093.
1999-09-09 01:17:44 +04:00
|
|
|
addnstr(str, SCRNW - 46 - 1);
|
1996-12-28 21:44:55 +03:00
|
|
|
clrtoeol();
|
|
|
|
move(lastline + 1, 46);
|
|
|
|
clrtoeol();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Display a question.
|
|
|
|
*/
|
1997-10-10 17:36:01 +04:00
|
|
|
|
|
|
|
void
|
2009-06-04 09:27:04 +04:00
|
|
|
ask(const char *str)
|
1996-12-28 21:44:55 +03:00
|
|
|
{
|
|
|
|
int len = strlen(str);
|
|
|
|
|
|
|
|
move(23, 0);
|
|
|
|
addstr(str);
|
|
|
|
clrtoeol();
|
|
|
|
move(23, len);
|
|
|
|
refresh();
|
|
|
|
}
|
|
|
|
|
1997-10-10 17:36:01 +04:00
|
|
|
int
|
2009-06-04 09:27:04 +04:00
|
|
|
getline(char *buf, int size)
|
1996-12-28 21:44:55 +03:00
|
|
|
{
|
1997-10-10 17:36:01 +04:00
|
|
|
char *cp, *end;
|
|
|
|
int c;
|
1996-12-28 21:44:55 +03:00
|
|
|
|
1997-10-10 17:36:01 +04:00
|
|
|
c = 0;
|
1996-12-28 21:44:55 +03:00
|
|
|
cp = buf;
|
|
|
|
end = buf + size - 1; /* save room for the '\0' */
|
|
|
|
while (cp < end && (c = getchar()) != EOF && c != '\n' && c != '\r') {
|
|
|
|
*cp++ = c;
|
|
|
|
if (interactive) {
|
|
|
|
switch (c) {
|
|
|
|
case 0x0c: /* ^L */
|
|
|
|
wrefresh(curscr);
|
|
|
|
cp--;
|
|
|
|
continue;
|
|
|
|
case 0x15: /* ^U */
|
|
|
|
case 0x18: /* ^X */
|
|
|
|
while (cp > buf) {
|
|
|
|
cp--;
|
|
|
|
addch('\b');
|
|
|
|
}
|
|
|
|
clrtoeol();
|
|
|
|
break;
|
|
|
|
case '\b':
|
|
|
|
case 0x7f: /* DEL */
|
|
|
|
if (cp == buf + 1) {
|
|
|
|
cp--;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
cp -= 2;
|
|
|
|
addch('\b');
|
|
|
|
c = ' ';
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
default:
|
|
|
|
addch(c);
|
|
|
|
}
|
|
|
|
refresh();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*cp = '\0';
|
|
|
|
return(c != EOF);
|
|
|
|
}
|