package.lisp @ 1a4608813a73

Add some documentation for the reasoner and a few missing functions
author Steve Losh <steve@stevelosh.com>
date Sun, 29 Jan 2017 22:07:19 +0000
parents a07961309f28
children 4e100d7ed0b0
(defpackage :ggp
  (:use :cl :optima)
  (:import-from :optima :match)
  (:export
    :ggp-player

    :player-start-game
    :player-update-game
    :player-update-game-ii ; lol
    :player-select-move
    :player-stop-game

    :player-name
    :player-port

    :start-player
    :kill-player

    :read-gdl-from-file
    )
  (:documentation "The main GGP package."))

(defpackage :ggp-rules
  (:import-from :cl :nil) ; fuckin lol
  (:documentation
   "Symbol storage package.

  The `GGP-RULES` package is used to hold all the symbols in the GDL game
  descriptions, as well as some special symbols in the GGP protocol.  It is
  cleared between game runs to avoid a buildup of garbage symbols (especially
  when GDL scrambling is turned on), though certain special symbols are allowed
  to survive the clearing.

  This is ugly.  I'm sorry.  I'm open to suggestions on better ways to do this.

  "))