DelayNoMore/README.md

91 lines
5.1 KiB
Markdown
Raw Normal View History

2022-10-05 15:43:38 +00:00
# Preface
2022-09-20 15:50:01 +00:00
2022-11-13 14:23:54 +00:00
This project is a demo for a websocket-based rollback netcode inspired by [GGPO](https://github.com/pond3r/ggpo/blob/master/doc/README.md).
_(the following gif is sped up to 2x for file size reduction)_
![gif_demo](./charts/melee_attack_2.gif)
2022-11-13 14:23:54 +00:00
Please also checkout [this demo video](https://pan.baidu.com/s/1fy0CuFKnVP_Gn2cDfrj6yg?pwd=q5uc) to see how this demo carries out a full 60fps synchronization with the help of _batched input upsync/downsync_ for satisfying network I/O performance.
2022-11-13 14:23:54 +00:00
The video mainly shows the following features.
- The backend receives inputs from frontend peers and broadcasts back for synchronization.
- The game is recovered for a player upon reconnection.
- Both backend(Golang) and frontend(JavaScript) execute collision detection and handle collision contacts by the same algorithm. The backend dynamics is togglable by [Room.BackendDynamicsEnabled](https://github.com/genxium/DelayNoMore/blob/v0.5.2/battle_srv/models/room.go#L813), but **when turned off the game couldn't support recovery upon reconnection**.
2022-11-02 02:57:37 +00:00
_(how input delay roughly works)_
![input_delay_intro](./charts/InputDelayIntro.jpg)
2022-11-02 16:16:03 +00:00
_(how rollback-and-chase in this project roughly works)_
![rollback_and_chase_intro](./charts/RollbackAndChase.jpg)
2022-11-13 06:13:19 +00:00
![floating_point_accumulation_err](./charts/AvoidingFloatingPointAccumulationErr.jpg)
2022-11-02 16:16:03 +00:00
2022-10-05 15:43:38 +00:00
# 1. Building & running
2022-09-20 15:50:01 +00:00
2022-10-05 15:43:38 +00:00
## 1.1 Tools to install
### Backend
- [Command Line Tools for Xcode](https://developer.apple.com/download/all/?q=command%20line%20tools) (on OSX) or [TDM-GCC](https://jmeubank.github.io/tdm-gcc/download/) (on Windows) (a `make` executable mandatory)
- [Golang1.19.1](https://golang.org/dl/) (mandatory, in China please try a mirror site like [that of ustc](https://mirrors.ustc.edu.cn/golang/))
2022-10-07 02:36:19 +00:00
- [MySQL 5.7](https://dev.mysql.com/downloads/windows/installer/5.7.html) (mandatory, for OSX not all versions of 5.7 can be found thus 5.7.24 is recommended)
2022-10-05 15:43:38 +00:00
- [Redis 3.0.503 or above](https://redis.io/download/) (mandatory)
- [skeema](https://www.skeema.io/) (optional, only for convenient MySQL schema provisioning)
- [protobuf CLI](https://developers.google.com/protocol-buffers/docs/downloads) (optional, only for development)
2022-09-20 15:50:01 +00:00
2022-10-05 15:43:38 +00:00
### Frontend
2022-11-02 04:40:26 +00:00
- [CocosCreator v2.2.1](https://www.cocos.com/en/cocos-creator-2-2-1-released-with-performance-improvements) (mandatory, **ONLY AVAILABLE on Windows or OSX and should be exactly this version**, DON'T use any other version because CocosCreator is well-known for new versions not being backward compatible)
2022-10-05 15:43:38 +00:00
- [protojs](https://www.npmjs.com/package/protojs) (optional, only for development)
2022-09-20 15:50:01 +00:00
2022-10-05 15:43:38 +00:00
## 1.2 Provisioning
### Backend/Database
It's strongly recommended that `skeema` is used for provisioning [the required schema](https://github.com/genxium/DelayNoMore/tree/main/database/skeema-repo-root) in MySQL instance. When using `skeema` the steps are as follows.
2022-09-20 15:50:01 +00:00
```
2022-10-05 15:43:38 +00:00
### Mandatory after an initial clone
2022-09-20 15:50:01 +00:00
user@proj-root/database/skeema-repo-root> cp .skeema.template .skeema
2022-10-05 15:43:38 +00:00
### Mandatory
user@proj-root/database/skeema-repo-root> skeema push
2022-09-20 15:50:01 +00:00
```
2022-10-05 15:43:38 +00:00
On `Windows 10/11`, you can compile `skeema` from source and config the host to be `127.0.0.1` instead of `localhost` to use it, i.e. circumventing the pitfall for MySQL unix socket connection on Windows.
2022-09-20 15:50:01 +00:00
2022-10-05 15:43:38 +00:00
### Backend/Golang
```
2022-10-07 02:10:33 +00:00
user@proj-root/battle_srv/configs> cp -r ./configs.template ./configs
2022-10-05 15:43:38 +00:00
```
2022-09-20 15:50:01 +00:00
2022-10-05 15:43:38 +00:00
### Frontend
```
user@proj-root/frontend/assets/plugin_scripts> cp ./conf.js.template ./conf.js
```
2022-09-20 15:50:01 +00:00
2022-10-05 15:43:38 +00:00
## 1.2 Actual building & running
### Backend
```
### The following command runs mysql-server in foreground, it's almost NEVER run in such a way, please find a proper way to run it for yourself
user@anywhere> mysqld
2022-09-20 15:50:01 +00:00
2022-10-05 15:43:38 +00:00
### The following command runs redis-server in foreground, it's OK to put it in background
user@anywhere> redis-server
### on Windows using TDM-GCC: mingw32-make run-test
user@proj-root/battle_srv> make run-test
```
### Frontend
The easy way is to try out 2 players with test accounts on a same machine.
- Open CocosCreator v2.2.1 (mandatory, it serves the web content of the following steps)
- Open one browser instance, visit _http://localhost:7456?expectedRoomId=1_, input `add`on the username box and click to request a captcha, this is a test account so a captcha would be returned by the backend and filled automatically (as shown in the figure below), then click and click to proceed to a matching scene.
- Open another browser instance, visit _http://localhost:7456?expectedRoomId=1_, input `bdd`on the username box and click to request a captcha, this is another test account so a captcha would be returned by the backend and filled automatically, then click and click to proceed, when matched a `battle`(but no competition rule yet) would start.
- Try out the onscreen virtual joysticks to move the cars and see if their movements are in-sync.
2022-11-02 02:57:37 +00:00
![screenshot-2](./charts/screenshot-2.png)
2022-10-05 15:43:38 +00:00
## 2 Troubleshooting
### 2.1 Redis snapshot writing failure
2022-09-20 15:50:01 +00:00
```
ErrFatal {"err": "MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands that may modify the data set are disabled. Please check Redis logs for details about the error."}
```
Just restart your `redis-server` process.