Client Documentation
Introduction
This documentation includes everything you need to know in order to implement your own client for the R-Type server.
With this client, you should be able to connect to a game being run on the server alongside players currently using the default client implementation that we provide.
Entity Component System
At the core of the R-Type server architecture is the Entity Component System (or ECS). This entity component system will only be updated by the server which will then communicate the updates to the client though our UDP game protocol.
Serialization
In order for the client to communicate the changes made to the ECS to the client, it is important that the client defines serialization and deserialization methods for each component.
The servers component serialization follow the following format :
ComponentID,component arg1,component arg2...
ComponentID is the unique component ID that has to be generated by the client in the same order as the server. This will be explained later on in this document.
After the ComponentID, each arg will be serialized separated by commas. These arguments are serialized in the same order as they appear in the component struct definition. It is crucial that the client deserialize the components attributes in the same order as they appear in the component definitions we provide further along in this document.
Components
The following are the server side definitions of the components.
Systems
In order for the client to display the information received by the server, only one system needs to be implemented. This system is the animation drawing system that should allow it to draw static and animated sprites.
All sprite sheets required by the game to run will be provided in a directory named 'ressources'.
Player controls
To communicate the direction a player wants to move the following enum is used:
enum Move { UP = 1, DOWN = -1, LEFT = 3, RIGHT = -3 }
The integer coresponding to the desired direction can be calculated by adding the integers in the enum that have an influence on the final direction.
e.g.: Down right = DOWN + RIGHT = -1 - 3 = -4
Last updated