Update API
This commit is contained in:
parent
7bf9f3470a
commit
117933db2e
2 changed files with 9 additions and 1 deletions
10
doc/api.org
10
doc/api.org
|
@ -19,18 +19,22 @@
|
||||||
#+BEGIN_SRC json
|
#+BEGIN_SRC json
|
||||||
{
|
{
|
||||||
"type": "state",
|
"type": "state",
|
||||||
|
"syn": 1,
|
||||||
"game-id": 1,
|
"game-id": 1,
|
||||||
"game-over": false,
|
"game-over": false,
|
||||||
"snake": [(1,2),(1,3)],
|
"snake": [(1,2),(1,3)],
|
||||||
"food": [(6,7)]
|
"food": [(6,7)]
|
||||||
}
|
}
|
||||||
#+END_SRC
|
#+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
|
** Gameplay
|
||||||
*** Change Direction
|
*** Change Direction
|
||||||
1. When client is playing a game it can ask to the server to change snake direction:
|
1. When client is playing a game it can ask to the server to change snake direction:
|
||||||
#+BEGIN_SRC json
|
#+BEGIN_SRC json
|
||||||
{
|
{
|
||||||
"type": "update",
|
"type": "update",
|
||||||
|
"syn": 1,
|
||||||
"game-id": 1,
|
"game-id": 1,
|
||||||
"direction": "left",
|
"direction": "left",
|
||||||
}
|
}
|
||||||
|
@ -39,6 +43,7 @@
|
||||||
#+BEGIN_SRC json
|
#+BEGIN_SRC json
|
||||||
{
|
{
|
||||||
"type": "state",
|
"type": "state",
|
||||||
|
"syn": 2,
|
||||||
"game-id": 1,
|
"game-id": 1,
|
||||||
"game-over": false,
|
"game-over": false,
|
||||||
"snake": [(0,2),(1,2)],
|
"snake": [(0,2),(1,2)],
|
||||||
|
@ -50,6 +55,7 @@
|
||||||
#+BEGIN_SRC json
|
#+BEGIN_SRC json
|
||||||
{
|
{
|
||||||
"type": "update",
|
"type": "update",
|
||||||
|
"syn": 2,
|
||||||
"game-id": 1,
|
"game-id": 1,
|
||||||
"direction": null
|
"direction": null
|
||||||
}
|
}
|
||||||
|
@ -58,6 +64,7 @@
|
||||||
#+BEGIN_SRC json
|
#+BEGIN_SRC json
|
||||||
{
|
{
|
||||||
"type": "state",
|
"type": "state",
|
||||||
|
"syn": 3,
|
||||||
"game-id": 1,
|
"game-id": 1,
|
||||||
"game-over": false,
|
"game-over": false,
|
||||||
"snake": [(1,2),(0,2)],
|
"snake": [(1,2),(0,2)],
|
||||||
|
@ -69,10 +76,11 @@
|
||||||
#+BEGIN_SRC json
|
#+BEGIN_SRC json
|
||||||
{
|
{
|
||||||
"type": "state",
|
"type": "state",
|
||||||
|
"syn": null,
|
||||||
"game-id": 1,
|
"game-id": 1,
|
||||||
"game-over": true,
|
"game-over": true,
|
||||||
"snake": [(0,2),(1,2)],
|
"snake": [(0,2),(1,2)],
|
||||||
"food": [(6,7)]
|
"food": [(6,7)]
|
||||||
}
|
}
|
||||||
#+END_SRC
|
#+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.
|
||||||
|
|
BIN
doc/api.pdf
BIN
doc/api.pdf
Binary file not shown.
Loading…
Add table
Reference in a new issue