A golang based, http web service that provides fighting game character frame data. A proof of concept service built as a means to explore golang and various http tool kits. This service only hosts Ultra Street Fighter 4 data at the moment, but will be expanded in time.
The compiled data used by this service can be found here
- Install golang
- Build, install and run server
$ go install github.com/jpgnotgif/fgframes
$ ./$GOPATH/bin/fgframes
{
normal-attack: {
s: <signed_integer>,
a: <signed_integer>,
r: <signed_integer>,
ba: <signed_integer>,
ha: <signed_integer>
},
unique-attack: {
s: <signed_integer>,
a: <signed_integer>,
r: <signed_integer>,
ba: <signed_integer>,
ha: <signed_integer>
}
}
Notation | Expanded |
---|---|
s | Startup |
a | Active |
r | Recovery |
ba | Block Advantage |
ha | Hit Advantage |
Notation | Expanded |
---|---|
lp | Light Punch / Jab |
mp | Medium Punch / Strong |
hp | Hard Punch / Fierce |
lk | Light Kick / Short |
mk | Medium Kick / Forward |
hk | Hard Kick / Roundhouse |
Notation | Expanded |
---|---|
s | Standing |
cs | Close Standing |
cr | Crouching |
nj | Neutral Jump / Jump Up |
dj | Diagonal Jump / Jump Toward |