Minestom/README.md

57 lines
3.6 KiB
Markdown
Raw Normal View History

2019-08-10 05:00:00 +02:00
# About Minestom
2019-08-10 05:09:05 +02:00
Minestom is an alternative to the popular minecraft server API named Bukkit/Spigot. The main difference is that our implementation of Notchian server does not contain any features by default! However, we have a complete API which allows you to make anything possible with current spigot's plugins.
2019-08-10 05:00:00 +02:00
2019-09-07 16:40:56 +02:00
All planned features are listed on [trello](https://trello.com/b/4ysvj5hT/minestom)
2020-04-08 13:15:48 +02:00
An example of how to use the Minestom library is available [here](src/main/java/fr/themode/demo)
2019-08-10 05:09:05 +02:00
# Why Minestom?
Minecraft evolved a lot since its release, most of the servers today do not take advantage of vanilla features and even have to struggle because of them. Our target audience is those who want to make a completely different server compared to default Minecraft gamemode such as survival or creative building.
The goal is to offer more performance for those who need it, Minecraft being single-threaded is the most important problem for them.
2019-08-10 05:00:00 +02:00
2020-04-15 13:20:28 +02:00
In other words, it makes sense to use Minestom when it takes less time to implement everything you want than removing everything you don't need.
2019-08-10 11:43:21 +02:00
# API features
Even if we do not include anything by default in the game, we simplify the way you add them, here is a preview.
## Instances
2019-08-10 11:51:26 +02:00
It is our major concept, worlds are great for survival with friends, but when it scales up it can become unmanageable. The best examples can be found in Skyblock or minigames, not being able to separate each part properly and being forced to save everything in files, not to say the overhead caused by unnecessary data contained in them. Instances are a lightweight solution to it, being able to have every chunk in memory only, copying and sending it to another player in no time, making your serializer and much more...
2019-08-10 11:43:21 +02:00
2019-08-10 11:47:31 +02:00
Being able to create instances directly on the go is a must-have, according to us it can push many more projects forward.
2019-08-10 11:43:21 +02:00
2019-08-10 11:52:23 +02:00
Instances also come with performance benefits, unlike some others which will be fully single-threaded or maybe using one thread per world we are using a set number of threads (pool) to manage all chunks independently from instances, meaning using more of CPU power.
2019-08-10 11:43:21 +02:00
## Blocks
2020-04-08 10:10:05 +02:00
Minestom by default does not know what is a chest, you will have to tell him that it opens an inventory.
Every "special blocks" (which aren't only visual) have to be registered, then they can be placed anywhere simply.
However, all blocks are visually there, they just won't have interaction by default.
2019-08-10 11:43:21 +02:00
## Entities
2019-08-10 11:48:01 +02:00
The terms "passive" or "aggressive" monsters do not exist, nobody forbid you from making a flying chicken rushing into any players coming too close, doing so with NMS is a real mess because of obfuscation and the large inheritance.
2019-08-10 11:43:21 +02:00
## Inventories
2019-08-10 11:47:31 +02:00
It is a field where Minecraft evolved a lot, inventories are now used a lot as client<->server interface with clickable items and callback, we support it natively without the need of programming your solution.
2019-08-10 11:43:21 +02:00
## Commands
2019-08-10 11:47:31 +02:00
Commands are the simplest way of communication between clients and server. Since 1.13 Minecraft has incorporated a new library denominated "Brigadier", we then integrated an API meant to use the full potential of args types.
2019-08-10 11:43:21 +02:00
2019-08-10 05:00:00 +02:00
# Pros & Cons
2019-08-10 05:09:05 +02:00
Minestom isn't perfect, our choices make it much better for some cases, worse for some others.
2019-08-10 05:00:00 +02:00
## Pros
* Remove the overhead of vanilla features
* Multi-threaded (Chunks & Entities)
* 100% Thread-Safe
2019-08-10 11:43:21 +02:00
* Instance system which is much more scalable than worlds
2019-08-10 05:00:00 +02:00
* Open-source
* Modern API
* No more disgusting NMS
## Cons
2019-08-10 05:09:05 +02:00
* Does not work with bukkit plugins
2019-08-10 11:43:21 +02:00
* Does not work with older clients
2019-08-10 05:00:00 +02:00
* Bad for those who want vanilla experience
2019-08-10 11:47:31 +02:00
* Longer to obtain something playable
2019-08-10 13:08:14 +02:00
* Multi-threaded environments are prone to complications