Add admin interface

This commit is contained in:
Loic Guegan 2019-05-12 14:01:05 +02:00
parent 8cba94e081
commit 8e31de0793
4 changed files with 34 additions and 3 deletions

View file

@ -33,6 +33,7 @@
((equal dir "down") (setf (getf p-request :direction) :down)) ((equal dir "down") (setf (getf p-request :direction) :down))
((equal dir "left") (setf (getf p-request :direction) :left)) ((equal dir "left") (setf (getf p-request :direction) :left))
((equal dir "right") (setf (getf p-request :direction) :right)))))) ((equal dir "right") (setf (getf p-request :direction) :right))))))
((equal type "admin"))
((not (equal type "new-game")) ((not (equal type "new-game"))
(error 'bad-request :msg "Unknown request type"))) (error 'bad-request :msg "Unknown request type")))
p-request))) p-request)))
@ -59,6 +60,16 @@
(to-json (to-json
(append (list :type "state") (dump gm game-id))))))) (append (list :type "state") (dump gm game-id)))))))
;;; TODO: debug this function
(defmethod handle-admin ((api api) data)
(with-slots (gm) api
(let* ((game-id (getf data :game-id))
(cmd (getf data :cmd))
(arg (getf data :arg))
(game (get-game gm game-id)))
(cond
((equal cmd "move") (admin game :move arg)))))
"Command executed!")
(defmethod handle-request ((api api) request) (defmethod handle-request ((api api) request)
;; Catch request error and send it to the client ;; Catch request error and send it to the client
@ -68,6 +79,7 @@
(cond (cond
((equal type "new-game") (handle-new-game api data)) ((equal type "new-game") (handle-new-game api data))
((equal type "update") (handle-update api data)) ((equal type "update") (handle-update api data))
((equal type "admin") (handle-admin api data))
(t (format t "Unknow type")))) (t (format t "Unknow type"))))
(error (condition) ; Send reason to the client (error (condition) ; Send reason to the client
(let ((reason (make-array 0 (let ((reason (make-array 0

View file

@ -21,6 +21,12 @@
:initform nil :initform nil
:accessor game-over))) :accessor game-over)))
;;; Admin function
(defmethod admin ((g game) &key (move nil move-supplied-p))
(with-slots (snake) g
(when move-supplied-p (setf (nth 0 snake) move))))
;;; Class constructor to initialize the snake ;;; Class constructor to initialize the snake
(defmethod initialize-instance :after ((g game) &key) (defmethod initialize-instance :after ((g game) &key)
(with-slots (snake initial-size initial-position) g (with-slots (snake initial-size initial-position) g

View file

@ -4,7 +4,8 @@
(:export (:export
#:game #:game
#:dump #:dump
#:refresh)) #:refresh
#:admin))
(defpackage :remote-snake-server-api (defpackage :remote-snake-server-api
(:nicknames :rsapi) (:nicknames :rsapi)
@ -16,6 +17,7 @@
(defpackage :remote-snake-server (defpackage :remote-snake-server
(:nicknames :rss) (:nicknames :rss)
(:use :common-lisp :usocket :remote-snake-server-api :cl-strings) (:use :common-lisp :usocket :remote-snake-server-api :cl-strings :jonathan)
(:export (:export
#:start)) #:start
#:send-cmd))

View file

@ -6,6 +6,17 @@
(defparameter *server-buffer* (make-array 10000 (defparameter *server-buffer* (make-array 10000
:element-type '(unsigned-byte 8) :element-type '(unsigned-byte 8)
:initial-element 0)) :initial-element 0))
;;; TODO: debug this function
(defun send-cmd (host port game-id command arg)
(let ((socket (usocket:socket-connect host port :protocol :datagram))
(request (list :type "admin" :cmd command :game-id game-id :arg arg))
(buffer (make-array 500 :element-type '(unsigned-byte 8) :initial-element 0)))
(usocket:socket-send socket (string-downcase (to-json request)) 300)
(format t (babel:octets-to-string (usocket:socket-receive socket buffer 300)))
(force-output t)
(usocket:socket-close socket)))
(defun handle-client (buffer) ; echo (defun handle-client (buffer) ; echo
(declare (type (simple-array (unsigned-byte 8) *) buffer)) ; Seems to be to tell lisp which type is buffer (declare (type (simple-array (unsigned-byte 8) *) buffer)) ; Seems to be to tell lisp which type is buffer