me trying to understand minecraft beta
Find a file
2023-04-13 00:30:13 +01:00
external INFINITE TERRAIN!!!! 2023-04-09 04:19:10 +01:00
server Fix loading not actually working because of bogus instanceof checks 2023-04-13 00:26:01 +01:00
.gitignore wip saving to disk / chunk async 2023-04-11 07:47:56 +01:00
bufferStuff.ts Fix loading not actually working because of bogus instanceof checks 2023-04-13 00:26:01 +01:00
config.json wip saving to disk / chunk async 2023-04-11 07:47:56 +01:00
config.ts wip saving to disk / chunk async 2023-04-11 07:47:56 +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
nibbleArray.ts wip saving to disk / chunk async 2023-04-11 07:47:56 +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 Update README.md 2023-04-13 00:30:13 +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)
  • World/Chunk saving to disk
  • Block breaking

WIP:

  • Entities:
    • Players

To Implement:

  • Block placement
  • Entities:
    • Items
    • Mobs
  • Cross chunk structure generation (trees, buildings, etc...)
  • Inventories (player inventory, containers, etc...)
  • 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.