An open API service indexing awesome lists of open source software.

https://github.com/tower-online/tower-main

A MMORPG game server for Tower Online written in C++
https://github.com/tower-online/tower-main

boost-asio cpp game-server mmo

Last synced: 3 months ago
JSON representation

A MMORPG game server for Tower Online written in C++

Awesome Lists containing this project

README

          

# Tower Main

### Packets Flowchart
```mermaid
flowchart TD
subgraph Clients
C1[Client]
C2[...]
end

subgraph Server
S{Is global packet?}
SH[Handle within Server]
SR[Route to Zones]
end

subgraph Zones
Z1[Zone]
Z2[...]
end

C1 -->|Receives packets| S
C2 -->|Receives packets| S

S -->|Yes| SH
S -->|No| SR

SR --> Z1
SR --> Z2
```