mc-beta-server/README.md

30 lines
909 B
Markdown
Raw Normal View History

# mc-beta-server [![CodeFactor](https://www.codefactor.io/repository/github/tgpholly/mc-beta-server/badge/typescript)](https://www.codefactor.io/repository/github/tgpholly/mc-beta-server/overview/typescript)
2021-08-21 08:42:18 +01:00
me trying to understand minecraft beta's protocol
2021-10-21 01:35:24 +01:00
**Implemented:**
2021-08-21 08:42:18 +01:00
- Basic flat terrain generation
2023-04-09 04:23:22 +01:00
- "Decent" terrain generation using OpenSimplex Noise
- Concept of worlds
- Chunk management (loading / unloading)
2023-04-13 23:53:36 +01:00
- Cross chunk structure generation (trees, buildings, etc...)
2023-04-13 00:30:13 +01:00
- World/Chunk saving to disk
- Block breaking
2021-10-21 01:35:24 +01:00
**WIP:**
2023-04-09 04:23:22 +01:00
- Entities:
- Players
2021-10-21 01:35:24 +01:00
**To Implement:**
2023-04-08 20:52:47 +01:00
- Block placement
2021-08-21 08:43:31 +01:00
- Entities:
2023-04-13 00:30:13 +01:00
- Items
2021-08-21 08:43:31 +01:00
- Mobs
2023-04-09 04:23:22 +01:00
- Inventories (player inventory, containers, etc...)
2021-08-21 08:49:42 +01:00
- Sleeping in beds
- Tile entities
- Probably a bunch more things that i'm forgetting
2021-08-21 08:42:18 +01:00
2021-10-21 01:35:24 +01:00
**Long Term:**
2023-04-09 04:23:22 +01:00
- Make this as fast as possible on a single thread.
- Only use thread pools if absolutely neccesary.