Godot Engine Logo is licensed under CC-BY-4.0 internationalInterest Management with MultiplayerSynchronizerJuly 15, 2023 Tutorials Godot Engine NetworkingAfter we were able to gather first experiences with the MultiplayerSynchronizer in the article about Scene Replication, we want to continue to make our experiences with it in this article. In addition to the synchronization interval, the MultiplayerSynchronizer has other configuration options that can be used to do interesting things.
Godot emotes are licensed under CC-BY-4.0 by Yuri SizovDTLS security changes with Godot 4.1July 12, 2023 News Godot Engine NetworkingThere is still one open question from the 6th network tutorial. I had written then about the supported DTLS version: “I couldn’t find out yet which version is used by Godot, but as soon as I know, I will tell you.” And now is the time to share this information with you.
Generated with Stable Diffusion 2.1Scene Replication with Godot 4(.1)July 11, 2023 Tutorials Godot Engine NetworkingFor this article I would like to apologize in advance that the positions of text and images are not always quite coherent. Unfortunately I couldn’t think of a better positioning, but I hope you can cope with it. After the tutorial series, which offers a good basic framework, today’s tutorial is about a topic that you can really see. The example shown here is based on a blog post by Fabio Alessandrelli, one of the main developers for the Godot network functionality. And since I don’t want to just copy everything, here’s how you can also use the techniques shown there when using path-dependent multiplayer APIs.
Godot emotes are licensed under CC-BY-4.0 by Yuri SizovA small interim reportMay 9, 2023 MiscMy last article is unfortunately already over four weeks ago. Actually, two new articles should have been published again, but what can I say? 🤔 I just didn’t manage to write more articles in the last weeks 🤷. In general I haven’t been very busy with the Godot Engine in the last weeks, but I hope that it will be more now.
Generated with Stable Diffusion 2.1Networking tutorial 6: Encrypted connections using DTLSApril 9, 2023 Tutorials Networking-Tutorial Godot Engine Networking SecurityIn the last article we completed the login process. However, before using it in real life, we should first secure our network connections. The least one should do and, if I understand the GDPR correctly, must do, is to transmit user passwords only using encrypted channels on the Internet. Ideally, one extends encrypted communication to the entire infrastructure. So that’s what this article is going to be about: We encrypt the network connections between our servers and clients.
MidjourneyNetworking tutorial 5: Login 3 - world serverMarch 26, 2023 Tutorials Networking-Tutorial Godot Engine NetworkingIn the last article we finished implementing the gateway and authentication server, so that the game client is issued a token for valid credentials. This token should now be used to log in to the world server. Therefore, in this article, we will extend the game client so that it forwards the token to the world server, and then enable the world server to verify the token.
Godot emotes are licensed under CC-BY-4.0 by Yuri SizovNetworking tutorial 4: Login 2 - gateway and authentication serverMarch 12, 2023 Tutorials Networking-Tutorial Godot Engine NetworkingThe source code for this tutorial series can be found in this GitHub repository. The following list shows all articles of this series published so far: Networking tutorial 1: General information and overview Networking tutorial 2: The "walking skeleton" Networking tutorial 3: Login 1 - The game client Networking tutorial 4: Login 2 - gateway and authentication server Networking tutorial 5: Login 3 - world server Networking tutorial 6: Encrypted connections using DTLS In the last article we created the game client to the point where it wants to contact the gateway server with login data.
Godot Engine Logo is licensed under CC-BY-4.0 internationalNetworking tutorial 3: Login 1 - The game clientFebruary 26, 2023 Tutorials Networking-Tutorial Godot Engine NetworkingWith the help of the last article, we now have a basic framework consisting of three servers running on UDP ports 1909-1911 and informing us via console output about connection establishment/disconnection of clients. This article deals with the first part of our login process and we create the game client to the point where it connects to the gateway server and sends the login data there. But before that we will discuss a bit more generally the login process and RPCs in Godot.
MidjourneyNetworking tutorial 2: The "walking skeleton"February 12, 2023 Tutorials Networking-Tutorial Godot Engine NetworkingIch habe wirklich lange über die richtige Vorgehensweise für dieses Tutorial nachgedacht. Schließlich gibt es verschiedene Möglichkeiten, wenn man, wie hier, die aktuell geplanten vier Komponenten entwickeln möchte. Ein Extremfall wäre es, pro Tutorial jeweils eine Komponente vollständig zu entwickeln und dadurch erst zum Schluss die Kommunikation zwischen den Komponenten zu ermöglichen. Ich habe mich für eine andere Variante entschieden und setze alle Komponenten direkt ohne wirkliche Funktionalität auf, um sie anschließend in jedem Tutorial, passend zum Thema, mit weiteren Inhalten zu füllen.