
Minosoft
Minosoft is an open source minecraft client, written from scratch in java. It aims to bring more functionality and stability.
Feature overview
- Rendering (WIP)
- Multi protocol support (1.7 - latest)
- Modding
- Fast performance (incredible start time of 3 - 5 seconds on modern hardware (tested on Intel i7-4800MQ))
- Free (as far as we consider original minecraft as free) and open source
- Multi accounting
- Multi "sessions" (Connections to a server)
- Multi threading
- Async loading
- Debugging on protocol layer
- LAN Servers
System requirements
- CPU: Minosoft benefits from multiple cores (at least for most stuff). CPU is kind of important, but for the rendering clock speed is more important. 4 cores recommended with at least 2 Ghz.
- RAM: Our goal was it to run without compromises on an 8 Gib computer and at least limited on an 4 Gib one.
- Disk space: Minosoft itself is pretty small (2-3 Mib), the libraries are a bit bigger. You also need to have the "normal" minecraft assets (~ 300 MB for one version). Assets never get saved duplicated, so if you use multiple versions, it is not a multiple of that value! If you only play 1 version, 500 MB is recommended. If not, use at least 1 GB.
- GPU: Currently only needed for rendering, no clue yet.
- Java 15 (This is really important, we use specific (experimental) features that are only available in the latest version. Java 8 is not supported). OpenJDK is (of course) also supported.
Rendering
Rendering is developed and maintained by Lukas Eisenhauer. It is very WIP, but it works. See !8 for more details.
The current result of rendering (taken in 739f861bf6
).
The Hypixel prototype lobby (taken in 91ab431004
).
Launcher
The "Launcher" is not really a launcher, it is just a (beautifully designed and functional) server list with account management functionality. Launcher is in quotation marks, because it is not really a launcher. It is the game. You click on run and this window will be shown to you. All downloads, loadings, ... happen before it asynchronous before showing it. After double-clicking on the server. you can connect to it. Once connected (= Received spawn location), you can play :)
Version support
I always try to add support for the newest version of minecraft. Mostly it is pretty easy, just add the newest version to the versions.json
and generate the mappings.
After pushing it, it is supported. Some versions are more complicated and need a bit of coding. I always try it as fast as possible, but sometimes I just need time.
Check out wiki.vg for more information.
Supported versions
Almost all versions are supported, starting with 13w41b (pre 1.7 snapshot) and ending with the newest (1.16.4 as of writing this). I plan to maintain Minosoft to at least version 1.20, so stay tuned. Old versions are supported, but it is highly recommended using the latest stable release.
Unsupported versions
Sadly, we cannot support all versions. We will add support for all major versions (like 1.8.9, 1.9.4, 1.14.4, etc), but it is simply not possible to support all snapshots.
1.13-pre6
,1.13-pre5
,17w50a
,17w49b
,17w49a
,17w48a
,17w47b
,17w47a
Missing blocks.json (Mappings)- April fools: I will not add any support for them, there are only a few things known. They might work, untested.
Partly supported versions
- Protocol lacking; See snapSupportToDo.txt
- Entities everything below
19w36a
(shortly after 1.14.4) (except1.14.4
and1.8.9
). Why? There is simply no time to create anentities.json
. The Generator only works after that version. And 1.8.9 is only supported, because this version is widely spread, and I wrote (~ 1000 lines) by hand.
Modding
Minosoft is modding friendly. A decent API was introduced with !17. It is pretty final, but some things might still change. See Modding.md for more details. The code is pretty dynamic (all blocks, items, entities, etc are stored in json files). It is pretty easy to load custom entities, etc. Spoiler: Forge mods are NOT compatible. Feel free to write a compatibility layer (This is a really hard thing, we do things completely different).
Botting
On the ToDo List
Contribution or helping out
You're welcome. Because this is still work-in-progress, consider contacting us first, but feel free to take a look at Contributing.md.
Tools and generators
We wrote some tools to help out, see Utility.
Credits
Some projects and persons helped this project a lot. See Credits.
Releases and beta
No clue, but still waiting for !8. Also, some features need to be implemented, so not soo soon (but we are getting closer).
Compiling and running
- Install Maven and java 15 (On Ubuntu based distributions:
sudo apt install maven openjdk-15-jdk
). - Clone this repo (
git clone https://gitlab.bixilon.de/bixilon/minosoft.git
). - Change directory (
cd minosoft
). - Checkout the branch (
git checkout <branch>
). Eventuallyrender
ordevelopment
. - Build and run Minosoft with
mvn clean verify exec:java
. If any errors occur, feel free to open an issue. In this early stage it might be helpful to delete the app data folder (only of minosoft).
Code mirrors
This readme is work in progress, things may change over time.