me trying to understand minecraft beta
Find a file
2023-04-11 01:53:33 +01:00
external INFINITE TERRAIN!!!! 2023-04-09 04:19:10 +01:00
server WIP: Inventory support 2023-04-11 01:53:33 +01:00
.gitignore update package.json urls 2023-04-09 04:59:23 +01:00
bufferStuff.ts Initial TypeScript commit 2023-04-08 20:52:47 +01:00
config.json INFINITE TERRAIN!!!! 2023-04-09 04:19:10 +01:00
config.ts INFINITE TERRAIN!!!! 2023-04-09 04:19:10 +01:00
console.ts fix a whole bunch of codefactor issues 2023-04-09 04:47:23 +01:00
funkyArray.ts Initial TypeScript commit 2023-04-08 20:52:47 +01:00
index.ts fix a whole bunch of codefactor issues 2023-04-09 04:47:23 +01:00
LICENSE Update LICENSE 2023-04-08 20:55:05 +01:00
package-lock.json Initial TypeScript commit 2023-04-08 20:52:47 +01:00
package.json update package.json urls 2023-04-09 04:59:23 +01:00
README.md Make CodeFactor image point to the typescript branch 2023-04-09 04:30:23 +01:00
tsconfig.json Initial TypeScript commit 2023-04-08 20:52:47 +01:00
webpack.config.js Initial TypeScript commit 2023-04-08 20:52:47 +01:00

mc-beta-server CodeFactor

me trying to understand minecraft beta's protocol

Implemented:

  • Basic flat terrain generation
  • "Decent" terrain generation using OpenSimplex Noise
  • Concept of worlds
  • Chunk management (loading / unloading)

WIP:

  • Entities:
    • Players

To Implement:

  • Block placement
  • Block breaking
  • Entities:
    • Items/Blocks
    • Mobs
  • Cross chunk structure generation (trees, buildings, etc...)
  • Inventories (player inventory, containers, etc...)
  • Terrain saving to disk
  • Sleeping in beds
  • Tile entities
  • Probably a bunch more things that i'm forgetting

Long Term:

  • Make this as fast as possible on a single thread.
  • Only use thread pools if absolutely neccesary.