2019-05-07 18:27:20 +02:00
|
|
|
#+TITLE: Remote Snake API
|
|
|
|
|
|
|
|
#+OPTIONS: toc:nil
|
|
|
|
#+LATEX_HEADER: \usepackage{fullpage}
|
|
|
|
|
|
|
|
* General Description
|
2019-05-10 09:19:38 +02:00
|
|
|
- All transmissions will be based on TCP since:
|
|
|
|
- Packet length are not fixed (large variance depending on the snake size and food)
|
|
|
|
- Packet ordering is important (inverted request can compromise gameplay)
|
|
|
|
- All TCP streams from *client to server* will:
|
|
|
|
- Contain _plain json data_
|
|
|
|
- Be terminated by an "#EOF" line (in order for the server to detect the end of the client request)
|
|
|
|
- All TCP stream from *server to client* will contains _plain json data_ (connection will be closed by the server
|
|
|
|
so, there is no need of "#EOF").
|
2019-05-07 18:27:20 +02:00
|
|
|
* Communications
|
|
|
|
** Initialisation
|
2019-05-10 09:19:38 +02:00
|
|
|
1. Client sent:
|
2019-05-07 18:27:20 +02:00
|
|
|
#+BEGIN_SRC json
|
|
|
|
{
|
|
|
|
"type": "new-game"
|
|
|
|
}
|
2019-05-10 08:51:16 +02:00
|
|
|
#EOF
|
2019-05-07 18:27:20 +02:00
|
|
|
#+END_SRC
|
2019-05-10 09:19:38 +02:00
|
|
|
2. Server can reply:
|
2019-05-07 18:27:20 +02:00
|
|
|
#+BEGIN_SRC json
|
|
|
|
{
|
|
|
|
"type": "state",
|
|
|
|
"game-id": 1,
|
|
|
|
"game-over": false,
|
2019-05-09 18:38:31 +02:00
|
|
|
"snake": [[1,2],[1,3]],
|
|
|
|
"food": [[6,7]]
|
2019-05-07 18:27:20 +02:00
|
|
|
}
|
|
|
|
#+END_SRC
|
|
|
|
** Gameplay
|
|
|
|
*** Change Direction
|
2019-05-10 09:19:38 +02:00
|
|
|
1. When client is playing a game, it can ask the server to change snake direction:
|
2019-05-07 18:27:20 +02:00
|
|
|
#+BEGIN_SRC json
|
|
|
|
{
|
|
|
|
"type": "update",
|
2019-05-07 18:29:32 +02:00
|
|
|
"game-id": 1,
|
2019-05-07 18:27:20 +02:00
|
|
|
"direction": "left",
|
|
|
|
}
|
2019-05-10 08:51:16 +02:00
|
|
|
#EOF
|
2019-05-07 18:27:20 +02:00
|
|
|
#+END_SRC
|
2019-05-10 09:19:38 +02:00
|
|
|
2. Then, server can reply:
|
2019-05-07 18:27:20 +02:00
|
|
|
#+BEGIN_SRC json
|
|
|
|
{
|
|
|
|
"type": "state",
|
|
|
|
"game-id": 1,
|
|
|
|
"game-over": false,
|
2019-05-09 18:38:31 +02:00
|
|
|
"snake": [[0,2],[1,2]],
|
|
|
|
"food": [[6,7]]
|
2019-05-07 18:27:20 +02:00
|
|
|
}
|
|
|
|
#+END_SRC
|
|
|
|
*** Refresh Screen
|
2019-05-10 09:19:38 +02:00
|
|
|
1. When no key are pressed (the snake is simply going forward). So, client can send:
|
2019-05-07 18:27:20 +02:00
|
|
|
#+BEGIN_SRC json
|
|
|
|
{
|
|
|
|
"type": "update",
|
2019-05-07 18:29:32 +02:00
|
|
|
"game-id": 1,
|
2019-05-07 18:27:20 +02:00
|
|
|
"direction": null
|
|
|
|
}
|
2019-05-10 08:51:16 +02:00
|
|
|
#EOF
|
2019-05-07 18:27:20 +02:00
|
|
|
#+END_SRC
|
|
|
|
2. Server can reply:
|
|
|
|
#+BEGIN_SRC json
|
|
|
|
{
|
|
|
|
"type": "state",
|
|
|
|
"game-id": 1,
|
|
|
|
"game-over": false,
|
2019-05-09 18:38:31 +02:00
|
|
|
"snake": [[1,2],[0,2]],
|
|
|
|
"food": [[6,7]]
|
2019-05-07 18:27:20 +02:00
|
|
|
}
|
|
|
|
#+END_SRC
|
|
|
|
*** End Game
|
2019-05-10 09:19:38 +02:00
|
|
|
- When game is over, server will send the following state message (switch "game-over" to true):
|
2019-05-07 18:27:20 +02:00
|
|
|
#+BEGIN_SRC json
|
|
|
|
{
|
|
|
|
"type": "state",
|
|
|
|
"game-id": 1,
|
|
|
|
"game-over": true,
|
2019-05-09 18:38:31 +02:00
|
|
|
"snake": [[0,2],[1,2]],
|
|
|
|
"food": [[6,7]]
|
2019-05-07 18:27:20 +02:00
|
|
|
}
|
|
|
|
#+END_SRC
|
2019-05-10 08:51:16 +02:00
|
|
|
- No reply is expected from the client and server will be in charge to free local memory.
|