Update API

This commit is contained in:
Loic Guegan 2019-05-08 12:40:12 +02:00
parent 7bf9f3470a
commit 117933db2e
2 changed files with 9 additions and 1 deletions

View file

@ -19,18 +19,22 @@
#+BEGIN_SRC json
{
"type": "state",
"syn": 1,
"game-id": 1,
"game-over": false,
"snake": [(1,2),(1,3)],
"food": [(6,7)]
}
#+END_SRC
Note that, syn entry is used to keep packet ordering consistent and detecting packet inversion on the network. Thus,
syn entry indicate the expected syn that the client should send on the next UDP packet.
** Gameplay
*** Change Direction
1. When client is playing a game it can ask to the server to change snake direction:
#+BEGIN_SRC json
{
"type": "update",
"syn": 1,
"game-id": 1,
"direction": "left",
}
@ -39,6 +43,7 @@
#+BEGIN_SRC json
{
"type": "state",
"syn": 2,
"game-id": 1,
"game-over": false,
"snake": [(0,2),(1,2)],
@ -50,6 +55,7 @@
#+BEGIN_SRC json
{
"type": "update",
"syn": 2,
"game-id": 1,
"direction": null
}
@ -58,6 +64,7 @@
#+BEGIN_SRC json
{
"type": "state",
"syn": 3,
"game-id": 1,
"game-over": false,
"snake": [(1,2),(0,2)],
@ -69,10 +76,11 @@
#+BEGIN_SRC json
{
"type": "state",
"syn": null,
"game-id": 1,
"game-over": true,
"snake": [(0,2),(1,2)],
"food": [(6,7)]
}
#+END_SRC
- No reply is expected from the client and server will be in charge to free local memory
- No reply is expected from the client and server will be in charge to free local memory. Note that syn=null.

Binary file not shown.