game_01
1.0.0
TRABAJO EN CURSO
GAME_01 es un servidor MMORPG escalable multiservicios
GAME_01 incluye todos los servicios de backend necesarios para game_01.
OS X, Linux y Windows:
go get -u github.com/elojah/game_01
# Start services
docker-compose -d
# TODO run integration
TODO Para obtener más ejemplos y usos, consulte [Wiki][wiki].
Consulte trello para obtener más información.
|client| <-udp with ack-> |api| -redis pubsub-> |core| -> |redis|
|redis| -ticker-> |sync| -udp without ack-> |client|
La autenticación y la creación/conexión de caracteres se manejan mediante auth
y asocian un token de sesión en cada inicio de sesión. revoker
revoca periódicamente los tokens no utilizados. GAME_01 también viene con una tool
API para crear datos mundiales como entidades/habilidades/sectores.
_bin #executables
|
|_cmd_ #executables code
| |_api #UDP API for game events + ACK client
| |_auth #HTTPS JSON API for signin/connect
| |_client #client/server to communicate with API and JSON serialize
| |_core #order and apply game events
| |_integration #test integration runner
| |_revoker #revoke unused tokens
| |_sync #send entity data to clients
| |_tool #HTTPS JSON API for world data. Must be private.
|
|_configs #config files
|
|_docker #docker files
|
|_pkg_ #common code
| |_ability_ # domain
| | |_svc # service/usecases
| | |_srg # storage/database
|
|_static #example template files for tool
|
|_vendor #vendoring packages (dep)
Elojah – [email protected]
Distribuido bajo licencia GNU AFFERO GENERAL PUBLIC. Consulte LICENSE
para obtener más información.
https://github.com/elojah/