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

Networking Guide #249

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 3 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
2 changes: 1 addition & 1 deletion develop/data-generation/advancements.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ First, we need to make our provider. Create a class that `extends FabricAdvancem

To finish setup, add this provider to your `DataGeneratorEntrypoint` within the `onInitializeDataGenerator` method.

@[code lang=java transclude={24-24}](@/reference/latest/src/client/java/com/example/docs/datagen/FabricDocsReferenceDataGenerator.java)
@[code lang=java transclude={27-27}](@/reference/latest/src/client/java/com/example/docs/datagen/FabricDocsReferenceDataGenerator.java)

## Advancement Structure {#advancement-structure}

Expand Down
2 changes: 1 addition & 1 deletion develop/data-generation/loot-tables.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Make sure you've completed the [datagen setup](./setup) process first.

You will need different providers (classes) for blocks, chests, and entities. Remember to add them all to your pack in your `DataGeneratorEntrypoint` within the `onInitializeDataGenerator` method.

@[code lang=java transclude={32-33}](@/reference/latest/src/client/java/com/example/docs/datagen/FabricDocsReferenceDataGenerator.java)
@[code lang=java transclude={35-36}](@/reference/latest/src/client/java/com/example/docs/datagen/FabricDocsReferenceDataGenerator.java)

## Loot Tables Explained {#loot-tables-explained}

Expand Down
2 changes: 1 addition & 1 deletion develop/data-generation/recipes.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ First, we'll need our provider. Make a class that `extends FabricRecipeProvider`

To finish setup, add this provider to your `DataGeneratorEntrypoint` within the `onInitializeDataGenerator` method.

@[code lang=java transclude={30-30}](@/reference/latest/src/client/java/com/example/docs/datagen/FabricDocsReferenceDataGenerator.java)
@[code lang=java transclude={33-33}](@/reference/latest/src/client/java/com/example/docs/datagen/FabricDocsReferenceDataGenerator.java)

## Shapeless Recipes {#shapeless-recipes}

Expand Down
2 changes: 1 addition & 1 deletion develop/data-generation/tags.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ You will need a different provider for each type of tag (eg. one `FabricTagProvi

To finish setup, add this provider to your `DataGeneratorEntrypoint` within the `onInitializeDataGenerator` method.

@[code lang=java transclude={28-28}](@/reference/latest/src/client/java/com/example/docs/datagen/FabricDocsReferenceDataGenerator.java)
@[code lang=java transclude={31-31}](@/reference/latest/src/client/java/com/example/docs/datagen/FabricDocsReferenceDataGenerator.java)

## Creating a Tag {#creating-a-tag}

Expand Down
2 changes: 1 addition & 1 deletion develop/data-generation/translations.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ You will need a different provider for each langauge you want to generate (eg. o

To finish setup, add this provider to your `DataGeneratorEntrypoint` within the `onInitializeDataGenerator` method.

@[code lang=java transclude={26-26}](@/reference/latest/src/client/java/com/example/docs/datagen/FabricDocsReferenceDataGenerator.java)
@[code lang=java transclude={29-29}](@/reference/latest/src/client/java/com/example/docs/datagen/FabricDocsReferenceDataGenerator.java)

## Creating Translations {#creating-translations}

Expand Down
2 changes: 1 addition & 1 deletion develop/entities/damage-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Now whenever a living entity steps on our custom block, it'll take 5 damage (2.5
You can define a death message for the damage type in the format of `death.attack.<message_id>` in our
mod's `en_us.json` file.

@[code lang=json transclude={4-4}](@/reference/latest/src/main/resources/assets/fabric-docs-reference/lang/en_us.json)
@[code lang=json transclude={5-5}](@/reference/latest/src/main/generated/assets/fabric-docs-reference/lang/en_us.json)

Upon death from our damage type, you'll see the following death message:

Expand Down
2 changes: 1 addition & 1 deletion develop/items/custom-enchantment-effects.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Before proceeding, you should ensure your project is configured for data generat

Lastly, we must tell our mod to add our `EnchantmentGenerator` to the list of data generation tasks. To do so, simply add the `EnchantmentGenerator` to this inside of the `onInitializeDataGenerator` method.

@[code transclude={22-22}](@/reference/latest/src/client/java/com/example/docs/datagen/FabricDocsReferenceDataGenerator.java)
@[code transclude={25-25}](@/reference/latest/src/client/java/com/example/docs/datagen/FabricDocsReferenceDataGenerator.java)

Now, when you run your mod's data generation task, enchantment JSONs will be generated inside the `generated` folder. An example can be seen below:

Expand Down
267 changes: 267 additions & 0 deletions develop/networking.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,267 @@
---
title: Networking
description: A general guide on networking using Fabric API.
authors:
- dicedpixels
- FlooferLand
- skycatminepokie
- fxmorin
- netuserget
- wxffel
- daomephsta
- solidblock
- voleil
- daomephsta
- YTG123-Mods
- zulrang
- i509VCB
- nshak
- earthcomputer
- natanfudge
- modmuss50
---

# Networking {#networking}

Networking in Minecraft is used so the client and server can communicate with each other. Networking is a broad topic,
so this page is split up into a few categories.

## Why Is Networking Important? {#why-is-networking-important}

The importance of networking can be shown by a simple code example.

::: warning
Below code is for demonstration purposes only.
:::

Say you had a Wand which highlights the block you're looking, which will be visible to all
nearby players:

```java
public class HighlightingWandItem extends Item {
public HighlightingWandItem(Item.Settings settings) {
super(settings)
}

public TypedActionResult<ItemStack> use(World world, PlayerEntity user, Hand hand) {
// Raycast and find the block the user is facing at
BlockPos target = ...

// BAD CODE: DON'T EVER DO THIS!
ClientBlockHighlighting.highlightBlock(MinecraftClient.getInstance(), target);
return super.use(world, user, hand);
}
}
```

Upon testing, you will see a lightning bolt being summoned and nothing crashes. Now you want to show the mod to your
friend, you boot up a dedicated server and invite your friend on with the mod installed.

You use the item and the server crashes. You will probably notice in the crash log an error similar to this:

```text
[Server thread/FATAL]: Error executing task on Server
java.lang.RuntimeException: Cannot load class net.minecraft.client.MinecraftClient in environment type SERVER
```

### Why Does the Server Crash? {#why-does-the-server-crash}

The code calls logic only present on the client distribution of the Minecraft. The reason for Mojang distributing the
game in this way is to cut down on the size of the Minecraft Server JAR file. There isn't really a reason to include an
entire rendering engine when your own machine will render the world.

In a development environment, client-only classes are indicated by the `@Environment(EnvType.CLIENT)` annotation.

### How Do We Fix the Crash? {#how-do-we-fix-the-crash}

To fix this issue, you need to understand how Minecraft communicates between the game client and dedicated
server.

![Sides](/assets/develop/networking/sides.png)

The diagram above shows that the game client and dedicated server are separate systems, bridged together using
_packets_. Packets can contain data which we refer to as the _payload_.

This packet bridge does not only exist between a game client and dedicated server, but also between your client and
another client connected over LAN. The packet bridge is also present even in single-player. This is because the game
client will spin up a special integrated server instance to run the game on.

The key difference between the three types of connections that are shown in the table below:

| Connection Type | Access to Game Client |
|-------------------------------|----------------------------|
| Connected to dedicated Server | None (Server crash) |
| Connected over LAN | Yes (Not host game client) |
| Single-player (or LAN host) | Yes (Full access) |

It may seem complicated to have communication with the server in three different ways. However, you don't need to
communicate in three different ways with the game client. Since all three connection types communicate with the game
client using packets, you only need to communicate with the game client like you're always running on a dedicated
server.

Connection to a server over LAN or single-player can also be treated like the server is a remote, dedicated server; so
your game client can't directly access the server instance.

## An Introduction to Networking {#an-introduction-to-networking}

### Defining a Payload {#defining-a-payload}

First, you need to define an `Identifier` used to identify our packet's payload. For this example our identifier will be
`fabric-docs-reference:summon_lightning`.

We can define this identifier in our **common initializer** for easy access.

@[code lang=java transclude={16-16}](@/reference/latest/src/main/java/com/example/docs/networking/basic/FabricDocsReferenceNetworkingBasic.java)

Now, let's define the payload that will be sent with the packet. This payload will contain the position (a `BlockPos`)
of the item user.

This can be done by creating a Java `Record` with a `BlockPos` parameter that implements `CustomPayload`.

@[code lang=java transcludeWith=:::summon_Lightning_payload](@/reference/latest/src/main/java/com/example/docs/networking/basic/SummonLightningPayload.java)

At the same time, we've defined:

- A public static instance of `CustomPayload.Id` to uniquely identify this custom payload. We will be referencing this
ID in both our common and client code.

@[code lang=java transclude={10-10}](@/reference/latest/src/main/java/com/example/docs/networking/basic/SummonLightningPayload.java)

- A public static instance of a `PacketCodec` so that the game knows how to serialize/deserialize the contents of the
packet.

@[code lang=java transclude={11-11}](@/reference/latest/src/main/java/com/example/docs/networking/basic/SummonLightningPayload.java)

We have also overridden `getId` to return our payload ID.

### Registering a Payload {#registering-a-payload}

Before we send a packet with our custom payload, we need to register it.

This can be done in our **common initializer** by `PayloadTypeRegistry.playS2C().register` which takes in a
`CustomPayload.Id` and a `PacketCodec`.

@[code lang=java transclude={22-22}](@/reference/latest/src/main/java/com/example/docs/networking/basic/FabricDocsReferenceNetworkingBasic.java)

A similar method exists to register client-to-server payloads: `PayloadTypeRegistry.playC2S().register`.

`S2C` and `C2S` are two common suffixes that mean _Server-to-Client_ and _Client-to-Server_ respectively.

### Sending a Packet to the Client {#sending-a-packet-to-the-client}

To send a packet with our custom payload, we can use `ServerPlayNetworking.send` which takes in a `ServerPlayerEntity`
and a `CustomPayload`.

Let's start by creating our Lightning Tater item. You can override `use` to add trigger an action when the item is used.
In this case, let's send packets to all the players in the server world.

@[code lang=java transcludeWith=:::lightning_tater_item](@/reference/latest/src/main/java/com/example/docs/networking/basic/LightningTaterItem.java)

Let's examine the code above.

We only send packets when the action is initiated on the server, by returning early with a `isClient` check:

@[code lang=java transclude={23-25}](@/reference/latest/src/main/java/com/example/docs/networking/basic/LightningTaterItem.java)

We create an instance of the payload with the user's position:

@[code lang=java transclude={27-27}](@/reference/latest/src/main/java/com/example/docs/networking/basic/LightningTaterItem.java)

Finally, we get all the players in the server world through `PlayerLookup` and send a packet to each player.

@[code lang=java transclude={29-31}](@/reference/latest/src/main/java/com/example/docs/networking/basic/LightningTaterItem.java)

::: info
Fabric API provides `PlayerLookup`, a collection of helper functions that will look up players in a server.

A term frequently used to describe the functionality of these methods is "_tracking_". It means that an entity or a
chunk
on the server is known to a player's client (within in view distance) and the entity or block entity should notify
tracking clients of changes.

Tracking is an important concept for efficient networking, so that only the necessary players are notified of changes by
sending packets.
:::

Remember to register the item in our **common initializer**.

@[code lang=java transclude={19-19}](@/reference/latest/src/main/java/com/example/docs/networking/basic/FabricDocsReferenceNetworkingBasic.java)

### Receiving a Packet on the Client {#receiving-a-packet-on-the-client}

To receive a packet sent from a server on the client, you need to specify how you will handle the incoming packet.

This can be done in the **client initializer**, by calling `ClientPlayNetworking.registerGlobalReceiver` and passing a
`CustomPayload.Id` and a `PlayPayloadHandler`, which is a Functional Interface.

In this case, we'll define the action to trigger within the implementation of `PlayPayloadHandler` implementation (as a
lambda expression).

@[code lang=java transcludeWith=:::client_global_receiver](@/reference/latest/src/client/java/com/example/docs/network/basic/FabricDocsReferenceNetworkingBasicClient.java)

Let's examine the code above.

We can access the data from our payload by calling the Record's getter methods. In this case `payload.pos()`. Which then
can be used to get the `x`, `y` and `z` positions.

@[code lang=java transclude={27-27}](@/reference/latest/src/client/java/com/example/docs/network/basic/FabricDocsReferenceNetworkingBasicClient.java)

Finally, we create a `LightningEntity` and add it to the world.

@[code lang=java transclude={29-34}](@/reference/latest/src/client/java/com/example/docs/network/basic/FabricDocsReferenceNetworkingBasicClient.java)

Now, if you add this mod to a server and when a player uses our Lightning Tater item, every player will see lightning
striking at the user's position.

<VideoPlayer src="/assets/develop/networking/summon-lightning.webm" title="Summon lightning using Lightning Tater" />

### Sending a Packet to the Server {#sending-a-packet-to-the-server}

Just like sending a packet to the client, we start by creating a custom payload. This time, we will be sending the
player's name and position to the server.

@[code lang=java transcludeWith=::use_poisonous_potato_payload](@/reference/latest/src/main/java/com/example/docs/networking/basic/UsePoisonousPotatoPayload.java)

Note the usage of `PacketCodec.tuple` to combine two values, a `String` and a `BlockPos`.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I know this is done for the sake of example, but this example is inefficient and dangerous:

  1. Sending any data about the player is pointless because the server already knows which player sent it and can access any information it needs there.
  2. If the client or server want to refer to another entity in a packet, they should use it's numerical ID (not UUID)
  3. A malicious client can exploit this because the server doesn't check that any data is factually correct (data validation in C2S packets is also an important topic).

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. Yes, this I figured. I wanted a simple example.
  2. I believe we can overlook this for the sake of simplicity.
  3. This however is concerning. I was not aware and didn't think that far as we're dealing with the basics. I'm open for a better example that could address above 2 points as well.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If I were to write this, I would add a situation where a player is casting some sort of spell to another entity. In this situation, efficient networking can be showcased (see 2) and proper data validation can be showcased with checks like "does the entity actually exist and is not invulnerable?" "is the player close enough to the entity?"


We pass in the appropriate codec along with a method reference to get the value from the Record to build this compound
codec.

`USE_POISONOUS_POTATO_PAYLOAD_ID` is defined in the **common initializer** for easy access.

@[code lang=java transclude={17-17}](@/reference/latest/src/main/java/com/example/docs/networking/basic/FabricDocsReferenceNetworkingBasic.java)

Then we register our payload in our **common initializer**. However, this time as _Client-to-Server_ payload by using
`PayloadTypeRegistry.playC2S().register`.

@[code lang=java transclude={22-22}](@/reference/latest/src/main/java/com/example/docs/networking/basic/FabricDocsReferenceNetworkingBasic.java)

To send a packet, let's add an action when the player uses a Poisonous Potato. We'll be using the `UseItemCallback`
event to
keep things concise.

We register the event in our **client initializer**. This ensures that the action is only triggered on the client.
dicedpixels marked this conversation as resolved.
Show resolved Hide resolved
dicedpixels marked this conversation as resolved.
Show resolved Hide resolved

@[code lang=java transcludeWith=:::use_item_callback](@/reference/latest/src/client/java/com/example/docs/network/basic/FabricDocsReferenceNetworkingBasicClient.java)

We create and instance of our `UsePoisonousPotatoPayload` with the necessary arguments.

@[code lang=java transclude={44-44}](@/reference/latest/src/client/java/com/example/docs/network/basic/FabricDocsReferenceNetworkingBasicClient.java)

Finally, we send a packet to the server by calling `ClientPlayNetworking.send` with the instance of our
`UsePoisonousPotatoPayload`.

@[code lang=java transclude={45-45}](@/reference/latest/src/client/java/com/example/docs/network/basic/FabricDocsReferenceNetworkingBasicClient.java)

### Receiving a Packet on the Server {#receiving-a-packet-on-the-server}

This can be done in the **common initializer**, by calling `ServerPlayNetworking.registerGlobalReceiver` and passing a
`CustomPayload.Id` and a `PlayPayloadHandler`.

@[code lang=java transcludeWith=:::server_global_receiver](@/reference/latest/src/main/java/com/example/docs/networking/basic/FabricDocsReferenceNetworkingBasic.java)

To broadcast a message to all players, we use `context.server().getPlayerManager().broadcast`.

Now when any player tries to use a Poisonous Potato, a broadcast message will be shown.

<VideoPlayer src="/assets/develop/networking/use-poisonous-potato.webm" title="Broadcast message when a Poisonous Potato is used" />
Binary file added public/assets/develop/networking/sides.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import net.fabricmc.fabric.api.datagen.v1.FabricDataGenerator;

import com.example.docs.damage.FabricDocsReferenceDamageTypes;
import com.example.docs.network.basic.FabricDocsReferenceNetworkingBasicModelProvider;

// :::datagen-setup:generator
public class FabricDocsReferenceDataGenerator implements DataGeneratorEntrypoint {
Expand Down Expand Up @@ -36,6 +37,8 @@ public void onInitializeDataGenerator(FabricDataGenerator fabricDataGenerator) {
pack.addProvider(FabricDocsReferenceDamageTypesProvider.TaterDamageTypeTagGenerator::new);

// :::datagen-setup:generator

pack.addProvider(FabricDocsReferenceNetworkingBasicModelProvider::new);
}

// :::datagen-setup:generator
Expand Down
Loading