├── .gitattributes ├── .gitmodules ├── CMakeLists.txt ├── Global.h ├── LockStepServer.cc ├── LockStepSession.cc ├── LockStepSession.h ├── Player.cc ├── Player.h ├── README.md ├── World.cc ├── World.h ├── common.h ├── demo.gif └── proto ├── cs.pb.cc ├── cs.pb.h └── cs.proto /.gitattributes: -------------------------------------------------------------------------------- 1 | *.txt linguist-language=c++ 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zealous-w/LockStep/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zealous-w/LockStep/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zealous-w/LockStep/HEAD/Global.h -------------------------------------------------------------------------------- /LockStepServer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zealous-w/LockStep/HEAD/LockStepServer.cc -------------------------------------------------------------------------------- /LockStepSession.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zealous-w/LockStep/HEAD/LockStepSession.cc -------------------------------------------------------------------------------- /LockStepSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zealous-w/LockStep/HEAD/LockStepSession.h -------------------------------------------------------------------------------- /Player.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zealous-w/LockStep/HEAD/Player.cc -------------------------------------------------------------------------------- /Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zealous-w/LockStep/HEAD/Player.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## 帧同步服务器 2 | lockstep 3 | 4 | ![image](https://github.com/Zealous-w/LockStep/raw/master/demo.gif) 5 | -------------------------------------------------------------------------------- /World.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zealous-w/LockStep/HEAD/World.cc -------------------------------------------------------------------------------- /World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zealous-w/LockStep/HEAD/World.h -------------------------------------------------------------------------------- /common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zealous-w/LockStep/HEAD/common.h -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zealous-w/LockStep/HEAD/demo.gif -------------------------------------------------------------------------------- /proto/cs.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zealous-w/LockStep/HEAD/proto/cs.pb.cc -------------------------------------------------------------------------------- /proto/cs.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zealous-w/LockStep/HEAD/proto/cs.pb.h -------------------------------------------------------------------------------- /proto/cs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zealous-w/LockStep/HEAD/proto/cs.proto --------------------------------------------------------------------------------