fink/gtp.lisp

99 lines
3.9 KiB
Common Lisp
Raw Permalink Normal View History

2008-04-28 09:18:59 +02:00
(in-package :gtp-handler)
(defparameter *quit?* nil)
2008-05-27 01:30:59 +02:00
;(defparameter *cputime* 0)
(defmacro inc-cpu-timer (body)
`(let ((start (get-internal-run-time))
(val ,body)
(end (get-internal-run-time)))
(setf go-bot:*cputime* (+ go-bot:*cputime* (float (/ (- end start) 1000))))
val))
2008-05-07 11:07:47 +02:00
(defun gtp-net-client (server port)
(go-bot:init)
(setf *quit?* nil)
2008-05-27 01:30:59 +02:00
(let ((socket (netpipe:tcp-connect server port)))
2008-05-08 03:36:06 +02:00
(if (eql socket nil)
()
(progn
; (format t "Connection establish, playing...~%")
2008-05-08 03:36:06 +02:00
(do ()
((or (eql socket nil) (eql *quit?* t)))
2008-05-27 01:30:59 +02:00
(let ((cmd (netpipe:tcp-read socket)))
;(format t "cmd: '~a'~%" cmd)
2008-05-27 01:30:59 +02:00
(let ((resp (inc-cpu-timer (dispatch-gtp-command cmd))))
;(format t "resp: '~a'~%" resp)
2008-05-27 01:30:59 +02:00
(netpipe:tcp-print socket (concatenate 'string "= " resp (string #\newline) (string #\newline))))))))))
2008-05-08 03:36:06 +02:00
2008-04-28 09:18:59 +02:00
(defun gtp-client ()
2008-05-07 11:07:47 +02:00
(go-bot:init)
(setf *quit?* nil)
(do ()
((eql *quit?* t))
2008-05-27 01:30:59 +02:00
(format t "= ~a~%~%" (inc-cpu-timer (dispatch-gtp-command (read-line t))))))
2008-05-05 17:00:06 +02:00
(defun split-string (string pivot-str)
(do ((pivot (char pivot-str 0))
(i 0 (+ i 1))
(beg 0)
(strings '()))
((> i (length string)) (reverse strings))
(if (or (eql (length string) i) (eql (aref string i) pivot))
(progn (push (subseq string beg i) strings) (setf beg (+ i 1))))))
(defparameter *supported_commands* '("name" "version" "protocol_version" "komi" "boardsize" "clear_board" "play" "genmove" "cputime" "quit" "game_score" "list_commands" "known_command" "gogui-analyze_commands" ))
(defparameter *analyze_commands* '("gfx/Stones/stones" "gfx/Liberties/liberties" "gfx/Shapes/shapes" "gfx/Shape-Liberties/shape-liberties" "gfx/Shape-Stone-Liberties/shape-stone-liberties"))
2008-05-27 01:30:59 +02:00
(defun match-string (str)
(lambda (elem) (string-equal str elem)))
2008-04-28 09:18:59 +02:00
(defun dispatch-gtp-command (command-string)
(pdebug "dispatch-gtp-command ~a~%" command-string)
(let* ((commands (split-string (string-trim #(#\newline #\space) (string-upcase command-string)) " "))
;(cl-ppcre:split "[\\s\\n]+" (string-upcase command-string)))
2008-05-07 11:07:47 +02:00
(command (intern (first commands) :gtp-handler)))
;(format t "~a~%" commands)
2008-05-05 17:00:06 +02:00
(case command
(name go-bot:*name*)
(version go-bot:*version*)
2008-05-07 11:07:47 +02:00
(protocol_version "gtp2ip-0.1")
(boardsize (go-bot:set-boardsize (parse-integer (second commands)))
(go-bot:init-board)
"")
; warning: read-from-string pulls full reader. not safe
(komi (go-bot:set-komi (read-from-string (second commands)))
"")
2008-05-07 11:07:47 +02:00
(clear_board (go-bot:init) "")
2008-05-19 06:00:04 +02:00
(play (go-bot:do-play (char (second commands) 0) (third commands)) "")
(genmove (go-bot:do-genmove (char (second commands) 0)))
(genmove_black (go-bot:do-genmove #\b))
(genmove_white (go-bot:do-genmove #\w))
2008-05-27 01:30:59 +02:00
(cputime (write-to-string go-bot:*cputime*))
2008-05-07 11:07:47 +02:00
;(get_random_seed "0")
2008-05-27 01:30:59 +02:00
(known_command (write-to-string (count-if (match-string (second commands)) *supported_commands*)))
(list_commands (let ((str ""))
(loop for command in *supported_commands* do (setf str (concatenate 'string str command " ")))
str))
(gogui-analyze_commands (let ((str ""))
(loop for command in *analyze_commands* do (setf str (concatenate 'string str command (string #\newline))))
(string-trim #(#\newline) str)))
2008-05-07 11:07:47 +02:00
(game_score (format t "Score for ~c: ~s~%" go-bot:*player* (string-trim (string #\newline) (second commands))) "")
(stones (string-trim #(#\newline) (analyze-stones)))
(liberties (string-trim #(#\newline) (analyze-liberty)))
(shapes (string-trim #(#\newline) (analyze-shapes)))
2008-06-21 08:03:06 +02:00
(shape-liberties (string-trim #(#\newline) (analyze-shape-liberties)))
(shape-stone-liberties (string-trim #(#\newline) (analyze-shape-stone-liberties)))
2008-06-21 08:03:06 +02:00
;(scores (string-trim #(#\newline)(analyze-score)))
(quit (setf *quit?* t) "")
2008-05-07 11:07:47 +02:00
(otherwise (concatenate 'string "? unknown command: " (string-downcase (first commands)))))))
2008-04-28 09:18:59 +02:00