valaphee / tesseract-kotlin

Experience Minecraft in a different way

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

________                                           _____ 
___  __/____________________________________ ________  /_
__  /  _  _ \_  ___/_  ___/  _ \_  ___/  __ `/  ___/  __/
_  /   /  __/(__  )_(__  )/  __/  /   / /_/ // /__ / /_  
/_/    \___//____/ /____/ \___//_/    \__,_/ \___/ \__/  

license version build

Experience Minecraft in a different way. Tesseract is a server software for Minecraft: Bedrock Edition.
But it uses a different concept then most servers out there, some are for example:

  • Entity-Component-System in combination with Dependency Injection
    which gives the software the advantage to be fully modular and therefore easy customizable with no
    monolithic classes
  • Multi-threaded, but cycles(ticks) are not run asynchronously. This means cycles help to synchronize everything again, but chunks,
    entities, etc. can be processed asynchronously, but have to wait for all to finish for the current tick. But overall
    it can easily benefit from systems with 32 or even more cores.
  • Hijack Generator: It's clear that this software won't be able to fully replicate a vanilla minecraft server
    but there is a Terrain Generator which "hijacks" the vanilla one by connecting to an internal vanilla server
    and capturing its chunks
  • completely written in Kotlin, Kotlin is a modern programming language, which is JVM compatible and has
    a lot of benefits compared to Java, some are for example: Null-safety, type-interference, coroutines,
    higher-order functions, etc. Which all are powerful tools to write more complex software with lesser code (and failures to make)

How to build

  1. git clone https://github.com/valaphee/tesseract
  2. cd tesseract
  3. ./gradlew build

About

Experience Minecraft in a different way

License:MIT License


Languages

Language:Kotlin 96.8%Language:C++ 1.7%Language:Java 1.3%Language:Python 0.2%