Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Plugin system post #11

Merged
merged 12 commits into from
Dec 31, 2023
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Archipel
Bricklou
D3lta

Check warning

Code scanning / check-spelling

Non-alpha in dictionary Warning

Ignoring entry because it contains non-alpha characters. (non-alpha-in-dictionary)
ingame
minecraft
screenshot
1 change: 1 addition & 0 deletions .github/workflows/check-spells.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ jobs:
unknown_word_limit: 2
extra_dictionaries:
cspell:software-terms/src/software-terms.txt
cspell:java/src/java-terms.txt


comment-push:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
.vscode
.idea
resources/_gen/
.hugo_build.lock
Empty file removed .hugo_build.lock
Empty file.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
+++
title = "The dawn of a new project"
author = "Bricklou"
date = "2023-07-28"
author = "Bricklou, D3lta"

Check failure

Code scanning / check-spelling

Unrecognized Spelling Error

lta is not a recognized word. (unrecognized-spelling)
date = "2023-09-27"
categories = ["news"]
tags = ["what-is", "news"]
description = "We are starting a new project: a Minecraft server written in Rust!"
Expand All @@ -21,16 +21,25 @@

# What is Archipel Project?

Like we said, it is a Minecraft server written in Rust. The goal is to have a server that is fast, secure and (almost) easy to use.
Like we said, it is a Minecraft server written in Rust. The goal is to have a server fast, secure and (almost) easy to use.

It will be built on a microservice architecture, with a lot of small services that will communicate with each other: some will store the world data,
But is it just another Minecraft server? Can it compete with big servers like Spigot or Paper? Well, no. At least, not at the beginning.
but we have more than one trick up our sleeves to make it better than the others.
starting by a full rewrite in rust, which will make it faster and more secure than the others java alternatives.
more data oriented patterns, like ECS, will also make it faster, more scalable and easier to extend than the traditional OOP patterns used by the others servers. See https://github.com/SanderMertens/ecs-faq for more details!

Check failure

Code scanning / check-spelling

Unrecognized Spelling Error

ecs is not a recognized word. (unrecognized-spelling)

Wait but Valence and feather already have these kind of features, why not use them instead of writing a new server?

Archipel also target a more distributed work over nodes, It will be built on a microservice architecture, with a lot of small services that will communicate with each other: some will store the world data,
some will run the logic, and others will handle the player connections and authentication.

We will try to make it as modular as possible, so you can use only the services you need.

# Will it still be compatible with Minecraft?

Yes, it will! It needs to stay compatible with the official client! We are also thinking about supporting the Bedrock client too, but it is not our priority.
Yes, it will! It needs to stay compatible with the official and latest java client! We are also thinking about supporting the Bedrock client too, but it is not our priority.
To support multiple clients version, and server side modding, we are thinking of using a layer Item translation, some mod or plugin already do that, like ViaVersion or polymer (https://polymer.pb4.eu/latest/),

Check failure

Code scanning / check-spelling

Unrecognized Spelling Error

modding is not a recognized word. (unrecognized-spelling)
but we want to push the concept further, and make it more generic, so it can be used by any mod or plugin.

# When will it be ready?

Expand Down

Large diffs are not rendered by default.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 7 additions & 8 deletions themes/flat/static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -692,40 +692,39 @@ body {
margin: 40px 0;
border-collapse: collapse;
line-height: 1.5em;
border: 1px solid var(--color-dark-600);
}

.content th,
.content td {
text-align: left;
padding-right: 20px;
vertical-align: top;
background-color: var(--color-dark-800);
}

.content table td,
.content table td {
border-spacing: none;
border-style: solid;
padding: 10px 15px;
border-width: 1px 0 0 0;
}
.content thead th,
.content thead th {
text-align: left;
padding: 10px 15px;
height: 20px;
font-weight: bold;
color: #444;
cursor: default;
color: var(--color-primary);
white-space: nowrap;
border: 1px solid #dadadc;
background-color: var(--color-dark-600);
}

.content tr > td {
border: 1px solid #dadadc;
border: none;
border-bottom: 1px solid var(--color-dark-600);
}

.content tr:nth-child(odd) > td {
background: #fcfcfc;
background: var(--color-dark-700);
}

.content h1,
Expand Down
Loading