some work on the replay subsystem, plus getting better grasp of the FBS format

This commit is contained in:
amit bezalel
2017-07-14 00:52:50 +03:00
parent 7dc1773596
commit 852f08db21
12 changed files with 691 additions and 586 deletions

23
.vscode/launch.json vendored
View File

@@ -1,7 +1,7 @@
{
"version": "0.2.0",
"configurations": [
{
{
"name": "Launch Server Test",
"type": "go",
"request": "launch",
@@ -70,25 +70,16 @@
"showLog": true
},
{
"name": "Launch fbs server",
"name": "Launch fbs player",
"type": "go",
"request": "launch",
"mode": "debug",
"mode": "test",
"remotePath": "",
"port": 2345,
"host": "127.0.0.1",
"program": "${workspaceRoot}/server/",
"osx": {
"env": {
//"GOPATH": "${env.HOME}/Dropbox/go"
}
},
"windows": {
"env": {
//"GOPATH": "${env.USERPROFILE}\\Dropbox\\go"
}
},
"args": [],
"program": "${workspaceRoot}/player",
"args": [
"-test.v"
],
"showLog": true
}
]