comparison lisp/play/gomoku.el @ 807:4f28bd14272c

*** empty log message ***
author Eric S. Raymond <esr@snark.thyrsus.com>
date Thu, 16 Jul 1992 21:47:34 +0000
parents 08eb386dd0f3
children 20674ae6bf52
comparison
equal deleted inserted replaced
806:d42e1151eed8 807:4f28bd14272c
1 ;;; gomoku.el --- Gomoku game between you and Emacs 1 ;;; gomoku.el --- Gomoku game between you and Emacs
2
3 ;; Author: Phillippe Schnoebelen <phs@lifia.imag.fr>
4 ;; Last-Modified: 16 Mar 1992
5 ;; Adapted-By: ESR
6 ;; Keywords: games
2 7
3 ;; Copyright (C) 1988 Free Software Foundation, Inc. 8 ;; Copyright (C) 1988 Free Software Foundation, Inc.
4 9
5 ;; This file is part of GNU Emacs. 10 ;; This file is part of GNU Emacs.
6 11
7 ;; GNU Emacs is free software; you can redistribute it and/or modify 12 ;; GNU Emacs is free software; you can redistribute it and/or modify
8 ;; it under the terms of the GNU General Public License as published by 13 ;; it under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation; either version 1, or (at your option) 14 ;; the Free Software Foundation; either version 2, or (at your option)
10 ;; any later version. 15 ;; any later version.
11 16
12 ;; GNU Emacs is distributed in the hope that it will be useful, 17 ;; GNU Emacs is distributed in the hope that it will be useful,
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of 18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 ;; GNU General Public License for more details. 20 ;; GNU General Public License for more details.
16 21
17 ;; You should have received a copy of the GNU General Public License 22 ;; You should have received a copy of the GNU General Public License
18 ;; along with GNU Emacs; see the file COPYING. If not, write to 23 ;; along with GNU Emacs; see the file COPYING. If not, write to
19 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 24 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
25
26 ;;; Commentary:
20 27
21 ;;; Gomoku game between you and GNU Emacs. Last modified on 13 Sep 1988 28 ;;; Gomoku game between you and GNU Emacs. Last modified on 13 Sep 1988
22 ;;; 29 ;;;
23 ;;; Written by Ph. Schnoebelen (phs@lifia.imag.fr), 1987, 1988 30 ;;; Written by Ph. Schnoebelen (phs@lifia.imag.fr), 1987, 1988
24 ;;; with precious advices from J.-F. Rit. 31 ;;; with precious advices from J.-F. Rit.
72 ;; ALGORITHM: 79 ;; ALGORITHM:
73 ;; 80 ;;
74 ;; The algorithm is briefly described in section "THE SCORE TABLE". Some 81 ;; The algorithm is briefly described in section "THE SCORE TABLE". Some
75 ;; parameters may be modified if you want to change the style exhibited by the 82 ;; parameters may be modified if you want to change the style exhibited by the
76 ;; program. 83 ;; program.
84
85 ;;; Code:
77 86
78 ;;; 87 ;;;
79 ;;; GOMOKU MODE AND KEYMAP. 88 ;;; GOMOKU MODE AND KEYMAP.
80 ;;; 89 ;;;
81 (defvar gomoku-mode-hook nil 90 (defvar gomoku-mode-hook nil