Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jakkusakura/escapeserver
A Minecraft server
https://github.com/jakkusakura/escapeserver
Last synced: 13 days ago
JSON representation
A Minecraft server
- Host: GitHub
- URL: https://github.com/jakkusakura/escapeserver
- Owner: JakkuSakura
- Created: 2020-09-26T18:43:55.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-10-09T09:56:02.000Z (over 4 years ago)
- Last Synced: 2023-11-25T05:21:23.642Z (about 1 year ago)
- Language: Scala
- Size: 85.9 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Escape Server
This will be a handwritten minimalist Minecraft server but not all about Minecraft. I want it to be a playground for more stuff.## Features
- [ ] Infinite world
- [ ] Dynamically generated random world
- [ ] Multiplayer
- [ ] High Performance## Network Protocol
Protocol 578 of Minecraft 1.15.2## Architecture
Cluster - Node(\*) - Worlds - Blocks/EntitiesWorlds - Pages(16*16 blocks) - Chunk(16\*16\*256 blocks, using Quadtree and ) - Block
Message Queue
Multithreading
## Credits
Thank https://github.com/cnlohr/avrcraft for inspiration and simple implementation of MinecraftThank https://wiki.vg/ for reverse engineering of protocols
Thank https://github.com/barneygale/quarry/ for readable protocol examples
Thank https://github.com/GoLangMc/minecraft-server for a minimal working example
Thank https://github.com/ProtocolSupport/ProtocolSupport for block mappings