game_01
1.0.0
TRAVAIL EN COURS
GAME_01 est un serveur MMORPG évolutif multi-services
GAME_01 regroupe tous les services backend requis pour game_01.
OS X, Linux et Windows :
go get -u github.com/elojah/game_01
# Start services
docker-compose -d
# TODO run integration
TODO Pour plus d'exemples et d'utilisation, veuillez vous référer au [Wiki][wiki].
Voir Trello pour plus d'informations.
|client| <-udp with ack-> |api| -redis pubsub-> |core| -> |redis|
|redis| -ticker-> |sync| -udp without ack-> |client|
L'authentification et la création/connexion de caractères sont gérées par auth
et associent un jeton de session à chaque connexion. revoker
révoque régulièrement les jetons inutilisés. GAME_01 est également livré avec une API tool
pour créer des données mondiales telles que des entités/capacités/secteurs.
_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)
Élojah – [email protected]
Distribué sous la licence GNU AFFERO GENERAL PUBLIC. Voir LICENSE
pour plus d’informations.
https://github.com/elojah/