-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[SDK] Create a Python SDK #3
Comments
I think I would like to help with the python sdk, invite me to your slack [email protected] |
@mikerah13 Done! |
Lemme find some implementation pointers for a transport wrapper. This is the js API wrapper: https://github.com/ByteArena/bytearena-sdk-javascript/tree/master/packages/bytearena-sdk-comm An agent has to TCP connect to the game server at Each message is a single line of JSON (both ways) ended by Now the protocol:
The Structures in payload are described here: https://github.com/ByteArena/core/blob/9f327cfd67c0844537bd9f90733761947679ccb2/game/deathmatch/agentspecs.go (note the In a transport wrapper it can safely be just parsed and passed to upper layers of the SDK as an opaque structure. The agent is now in the game; when all agents have handshaked, the game begins
In a transport wrapper it can safely be just parsed and passed to upper layers of the SDK as an opaque structure. Structures within the payload are described here: https://github.com/ByteArena/core/blob/9f327cfd67c0844537bd9f90733761947679ccb2/game/deathmatch/agentperception.go |
No description provided.
The text was updated successfully, but these errors were encountered: