|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - downloadIndex: ┃ T p ┃
Length: 3861 (0xf15) Types: TextFile Names: »program.c«
└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki └─ ⟦this⟧ »EUUGD11/gnu-31mar87/chess/Xchess/program.c«
/* This file contains code for X-CHESS. Copyright (C) 1986 Free Software Foundation, Inc. This file is part of X-CHESS. X-CHESS is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. No author or distributor accepts responsibility to anyone for the consequences of using it or for whether it serves any particular purpose or works at all, unless he says so in writing. Refer to the X-CHESS General Public License for full details. Everyone is granted permission to copy, modify and redistribute X-CHESS, but only under the conditions described in the X-CHESS General Public License. A copy of this license is supposed to have been given to you along with X-CHESS so you can know your rights and responsibilities. It should be in a file named COPYING. Among other things, the copyright notice and this notice must be preserved on all copies. */ /* RCS Info: $Revision: 1.2 $ on $Date: 86/11/23 17:18:10 $ * $Source: /users/faustus/xchess/RCS/program.c,v $ * Copyright (c) 1986 Wayne A. Christopher, U. C. Berkeley CAD Group * Permission is granted to do anything with this code except sell it * or remove this message. * * The interface to whichever chess playing program we are using... */ #include "xchess.h" #include <signal.h> #include <sys/time.h> static int pid; static FILE *from, *to; bool program_init(name) char *name; { int toprog[2], fromprog[2]; char buf[BSIZE]; pipe(toprog); pipe(fromprog); if (!(pid = fork())) { /* Start up the program. */ dup2(toprog[0], 0); dup2(fromprog[1], 1); close(toprog[0]); close(toprog[1]); close(fromprog[0]); close(fromprog[1]); if (proghost) execl("/usr/ucb/rsh", "rsh", proghost, name, (char *) NULL); else execl(name, name, (char *) NULL); perror(name); exit(1); } close(toprog[0]); close(fromprog[1]); from = fdopen(fromprog[0], "r"); to = fdopen(toprog[1], "w"); /* Get the first line... */ fgets(buf, BSIZE, from); if (debug) fprintf(stderr, "program says %s", buf); if (blackflag) { fputs("switch\n", to); fflush(to); fgets(buf, BSIZE, from); if (debug) fprintf(stderr, "program says %s", buf); message_add(win1, "GNU Chess playing white\n", false); } else message_add(win1, "GNU Chess playing black\n", false); return (true); } void program_end() { fclose(from); fclose(to); kill(pid, SIGTERM); return; } void program_send(m) move *m; { char buf[BSIZE]; if ((m->type == MOVE) || (m->type == CAPTURE)) sprintf(buf, "%c%d%c%d\n", 'a' + m->fromx, SIZE - m->fromy, 'a' + m->tox, SIZE - m->toy); else if (m->type == KCASTLE) strcpy(buf, (m->piece.color == WHITE) ? "e1g1\n" : "e8g8\n"); else if (m->type == QCASTLE) strcpy(buf, (m->piece.color == WHITE) ? "e1c1\n" : "e8c8\n"); if (debug) fprintf(stderr, "sending program %s", buf); fputs(buf, to); fflush(to); /* One junk line... */ fgets(buf, BSIZE, from); if (debug) fprintf(stderr, "program says %s", buf); return; } move * program_get() { int rfd = (1 << fileno(from)), wfd = 0, xfd = 0; static struct timeval notime = { 0, 0 }; char buf[BSIZE], *s; move *m; int i, n; /* Do a poll... */ if (!(i = select(32, &rfd, &wfd, &xfd, ¬ime)) && !from->_cnt) { /* Bad stuff... */ if (debug) fprintf(stderr, "poll: nothing\n"); return (NULL); } if (i == -1) { perror("select"); return (NULL); } fgets(buf, BSIZE, from); if (debug) fprintf(stderr, "got from program %s", buf); for (s = buf; !isalpha(*s); s++) ; m = parse_imove(chessboard, s, nexttomove); if (!valid_move(m, chessboard)) { fprintf(stderr, "Error: move %s is invalid!!\n", buf); return (NULL); } /* fgets(buf, BSIZE, from); if (debug) fprintf(stderr, "program says %s", buf); */ message_add(win1, buf, false); return (m); } void program_undo() { fputs("undo\n", to); return; }