emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] 71/255: other new files


From: Eric Schulte
Subject: [elpa] 71/255: other new files
Date: Sun, 16 Mar 2014 01:02:21 +0000

eschulte pushed a commit to branch go
in repository elpa.

commit 7fdafab72ec167d8554bb1600a59274e0776d114
Author: Eric Schulte <address@hidden>
Date:   Tue May 22 16:51:00 2012 -0400

    other new files
---
 sgf-igs.el  |   32 ++++++++++++++++++++++++++++++++
 sgf-play.el |   47 +++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 79 insertions(+), 0 deletions(-)

diff --git a/sgf-igs.el b/sgf-igs.el
new file mode 100644
index 0000000..52d826b
--- /dev/null
+++ b/sgf-igs.el
@@ -0,0 +1,32 @@
+;;; sgf-igs.el --- translate between sgf and GTP
+
+;; Copyright (C) 2012 Eric Schulte <address@hidden>
+
+;; Author: Eric Schulte <address@hidden>
+;; Created: 2012-05-15
+;; Version: 0.1
+;; Keywords: game go sgf
+
+;; This file is not (yet) part of GNU Emacs.
+;; However, it is distributed under the same license.
+
+;; GNU Emacs is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation; either version 3, or (at your option)
+;; any later version.
+
+;; GNU Emacs is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with GNU Emacs; see the file COPYING.  If not, write to the
+;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+;; Boston, MA 02110-1301, USA.
+
+;; Commentary:
+
+;; http://www.pandanet.co.jp/English/commands/term/Summary.html
+
+;; Code:
diff --git a/sgf-play.el b/sgf-play.el
new file mode 100644
index 0000000..76a8e34
--- /dev/null
+++ b/sgf-play.el
@@ -0,0 +1,47 @@
+;;; sgf-play.el --- Play SGF-backed game of GO
+
+;; Copyright (C) 2012 Eric Schulte <address@hidden>
+
+;; Author: Eric Schulte <address@hidden>
+;; Created: 2012-05-15
+;; Version: 0.1
+;; Keywords: game go sgf
+
+;; This file is not (yet) part of GNU Emacs.
+;; However, it is distributed under the same license.
+
+;; GNU Emacs is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation; either version 3, or (at your option)
+;; any later version.
+
+;; GNU Emacs is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with GNU Emacs; see the file COPYING.  If not, write to the
+;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+;; Boston, MA 02110-1301, USA.
+
+;;; Commentary:
+
+;; Playing a game of go amounts to authoring an SGF file.  A game
+;; requires two players and an SGF data store.  Those elements of the
+;; game which are amenable to storage in SGF format will be added to
+;; the file.
+
+;; A player may be any of the following;
+;; - a human inputting moves through an Emacs buffer
+;; - an entity communicating through the Go Text Protocol (GTP)
+;; - an entity communicating through the IGS protocol
+
+;;; Code:
+(require 'sgf2el)
+(require 'sgf-board)
+(eval-when-compile (require 'cl))
+
+;; TODO: implement an API for back-end protocols
+
+(provide 'sgf-play)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]