2019-05-09 13:39:11 +02:00
|
|
|
(in-package :remote-snake-server-api)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defclass api ()
|
|
|
|
((gm
|
2019-05-10 08:51:16 +02:00
|
|
|
:initform (make-instance 'game-manager))))
|
2019-05-09 18:38:31 +02:00
|
|
|
|
|
|
|
|
|
|
|
;;; TODO: Handle errors (valid json etc..)
|
|
|
|
(defun parse-request (request)
|
|
|
|
(flet ((normalizer (key)
|
|
|
|
(string-upcase key)))
|
|
|
|
(let ((p-request (parse request :normalize-all t :keyword-normalizer #'normalizer )))
|
|
|
|
p-request)))
|
|
|
|
|
|
|
|
(defmethod handle-new-game ((api api) data)
|
|
|
|
(with-slots (gm) api
|
2019-05-10 08:51:16 +02:00
|
|
|
(let* ((game-id (create-game gm)))
|
2019-05-09 18:38:31 +02:00
|
|
|
(let ((game-dump (dump gm game-id)))
|
|
|
|
(setf (getf game-dump :game-over) :null) ; Define nil as null (for json)
|
|
|
|
(to-json
|
2019-05-10 08:51:16 +02:00
|
|
|
(append (list :type "state") game-dump))))))
|
2019-05-09 18:38:31 +02:00
|
|
|
|
|
|
|
;;; TODO: RETURN JSON !!!!
|
|
|
|
(defmethod handle-update ((api api) data)
|
|
|
|
(with-slots (gm) api
|
|
|
|
(let* ((dir (getf data :direction))
|
|
|
|
(game-id (getf data :game-id))
|
|
|
|
(game (get-game gm game-id)))
|
|
|
|
(cond
|
|
|
|
((equal dir "up") (setf dir :up))
|
|
|
|
((equal dir "down") (setf dir :down))
|
|
|
|
((equal dir "left") (setf dir :left))
|
|
|
|
((equal dir "right") (setf dir :right))
|
|
|
|
(t (setf dir nil)))
|
|
|
|
(if dir
|
|
|
|
(refresh game :dir dir)
|
2019-05-10 08:51:16 +02:00
|
|
|
(refresh game))
|
|
|
|
(append (list :type "update") (dump gm game-id)))))
|
2019-05-09 18:38:31 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defmethod handle-request ((api api) request)
|
|
|
|
(let* ((data (parse-request request))
|
|
|
|
(type (getf data :type)))
|
|
|
|
(cond
|
|
|
|
((equal type "new-game") (handle-new-game api data))
|
|
|
|
((equal type "update") (handle-update api data))
|
|
|
|
(t (format t "Unknow type")))))
|
|
|
|
|
2019-05-09 13:39:11 +02:00
|
|
|
|
|
|
|
|