eschulte pushed a commit to branch go in repository elpa. commit df849a38b1ba484dfaeced827f9df17118fd0ab2 Author: Eric Schulte <eric.schu...@gmx.com> Date: Tue May 22 18:27:49 2012 -0400
sgf-play -> sgf-trans --- sgf-play.el => sgf-trans.el | 20 ++++++++------------ 1 files changed, 8 insertions(+), 12 deletions(-) diff --git a/sgf-play.el b/sgf-trans.el similarity index 66% rename from sgf-play.el rename to sgf-trans.el index 76a8e34..6cda9b0 100644 --- a/sgf-play.el +++ b/sgf-trans.el @@ -1,4 +1,4 @@ -;;; sgf-play.el --- Play SGF-backed game of GO +;;; sgf-trans.el --- Translate and transfer between GO back ends ;; Copyright (C) 2012 Eric Schulte <eric.schu...@gmx.com> @@ -27,21 +27,17 @@ ;;; 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 +;; An API for transferring GO moves and data between a number of GO +;; back ends including the following. +;; - the SGF format +;; - the Go Text Protocol (GTP) +;; - the IGS protocol ;;; Code: (require 'sgf2el) (require 'sgf-board) (eval-when-compile (require 'cl)) -;; TODO: implement an API for back-end protocols +;; TODO: API, and how functions may implement it -(provide 'sgf-play) +(provide 'sgf-trans)