game_01
1.0.0
正在进行中的工作
GAME_01是一个多服务可扩展的MMORPG服务器
GAME_01 包装了 game_01 所需的所有后端服务。
OS X 和 Linux 和 Windows:
go get -u github.com/elojah/game_01
# Start services
docker-compose -d
# TODO run integration
TODO更多示例和用法请参考[Wiki][wiki]。
请参阅 trello 了解更多信息。
|client| <-udp with ack-> |api| -redis pubsub-> |core| -> |redis|
|redis| -ticker-> |sync| -udp without ack-> |client|
身份验证和字符创建/连接由auth
处理,并在每次登录时关联一个会话令牌。 revoker
定期撤销未使用的令牌。 GAME_01 还附带一个tool
API,用于创建实体/能力/部门等世界数据。
_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)
埃洛亚 – [email protected]
根据 GNU AFFERO GENERAL PUBLIC 许可证分发。请参阅LICENSE
了解更多信息。
https://github.com/elojah/