refactor: clean up, add readme

This commit is contained in:
Aaron Yarborough 2024-05-19 22:41:21 +01:00
parent 861dc7ab01
commit f30cb0816b
3 changed files with 25 additions and 0 deletions

View file

@ -2,6 +2,7 @@
using System.Net.Sockets;
using GServer.Common;
using GServer.Common.Networking.Enums;
using GServer.Common.Networking.Messages.Client;
using GServer.Common.Networking.Messages.Server;
internal class Program

View file

@ -3,6 +3,7 @@ using System.Net.Sockets;
using System.Text;
using GServer.Common;
using GServer.Common.Networking.Enums;
using GServer.Common.Networking.Messages.Client;
using GServer.Common.Networking.Messages.Server;
internal class Program

23
README.md Normal file
View file

@ -0,0 +1,23 @@
# GServer
**Note:** still writing README...
A rudimentary UDP game server mimicking the architecture of Graal Online's GServer from the 90s-00s.
## Networking
UDP packets are sent between the client and server to enable communication. UDP requests can be though of like 'messages', where each message has an ID that denotes the type of message (e.g. AUTH, LIST_SERVERS), followed by the message's data.
The first byte of a message is used to denote its type, but no standard format is shared between messages for the data belonging to each message.
For example: when authenticating, the following format is used:
- Message ID (1 byte)
- Username length (1 byte)
- Username (x bytes, according to the username length)
- Password length (1 byte)
- Password (x bytes, according to the password length)
`{message_id}{username_len}{username}{password_len}{password}`
All possible client and server message IDs can be found in `Networking/Enums/ClientPacketIn.cs` or `Networking/Enums/ServerPacketIn.cs` respectively.