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++
- Host: GitHub
- URL: https://github.com/tower-online/tower-main
- Owner: tower-online
- Created: 2024-07-10T05:14:56.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-21T13:57:52.000Z (11 months ago)
- Last Synced: 2024-11-21T14:38:31.904Z (11 months ago)
- Topics: boost-asio, cpp, game-server, mmo
- Language: C++
- Homepage:
- Size: 397 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tower Main
### Packets Flowchart
```mermaid
flowchart TD
subgraph Clients
C1[Client]
C2[...]
endsubgraph Server
S{Is global packet?}
SH[Handle within Server]
SR[Route to Zones]
endsubgraph Zones
Z1[Zone]
Z2[...]
endC1 -->|Receives packets| S
C2 -->|Receives packets| SS -->|Yes| SH
S -->|No| SRSR --> Z1
SR --> Z2
```