diff options
| author | Loic Guegan <manzerberdes@gmx.com> | 2019-05-09 13:39:11 +0200 |
|---|---|---|
| committer | Loic Guegan <manzerberdes@gmx.com> | 2019-05-09 13:39:11 +0200 |
| commit | f0ccb136eb945b19d3d9eec61ad8a15a0a9ba993 (patch) | |
| tree | 02cdf79b582aef06ef6458b936103f9004d95828 /server/api/game-manager.lisp | |
| parent | 897fbd8878199e51ac4598d7dad7830df2edfaf4 (diff) | |
Start API
Diffstat (limited to 'server/api/game-manager.lisp')
| -rw-r--r-- | server/api/game-manager.lisp | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/server/api/game-manager.lisp b/server/api/game-manager.lisp new file mode 100644 index 0000000..e5355d1 --- /dev/null +++ b/server/api/game-manager.lisp @@ -0,0 +1,41 @@ +(in-package :remote-snake-server-api) + +(defclass game-manager () + ((games + :initform '()) + (next-id + :initform 0))) + +(defgeneric create-game (gm) + (:documentation "Create a game in the Game Manager.")) + +(defmethod print-object :around ((gm game-manager) stream) + (with-slots (games) gm + (format stream "Games: ~a" games))) + +(defgeneric delete-game (gm game-id) + (:documentation "Delete a game from Game Manager.")) + +(defgeneric get-game (gm game-id) + (:documentation "Fetch a game from Game Manager.")) + +(defmethod delete-game ((gm game-manager) game-id) + (get-game gm game-id) ; First try to get the game (if not found, an error will be raised) + (with-slots (games) gm + (setf games (remove-if #'(lambda (entry) (eql game-id (getf entry :id))) games)))) + +(defmethod get-game ((gm game-manager) game-id) + (with-slots (games) gm + (let ((game (remove-if-not #'(lambda (entry) (eql game-id (getf entry :id))) games))) + (when (< (length game) 1) (error "Game ~a not found !" game-id)) + (getf (first game) :game)))) + +;;; Create a new game in gm and return its id +(defmethod create-game ((gm game-manager)) + (let ((new-game-id nil)) + (with-slots (games next-id) gm + (push (list :id next-id :game (make-instance 'game)) games) + (setf new-game-id next-id) + (incf next-id)) + new-game-id)) + |
