A rudimentary UDP/TCP game server loosely based on GraalOnline's GServer design.
Find a file
2025-02-19 19:35:03 +00:00
docs feat: write ListServerMessage serializer 2025-02-19 19:34:14 +00:00
GServer.Client refactor 2024-09-11 21:38:32 +01:00
GServer.Common fix: update old function call 2025-02-19 19:35:03 +00:00
GServer.Server feat: improve packet handling 2025-02-19 18:50:46 +00:00
.editorconfig refactor: rename client, refactor 2024-05-20 19:59:37 +01:00
.gitignore feat: initial commit - server and client 2024-05-19 22:13:48 +01:00
GServer.sln refactor 2024-09-11 21:38:32 +01:00
notes feat: wip: use TcpClient 2024-05-22 17:31:06 +01:00
README.md Merge branch 'master' of https://github.com/AaronJY/GServer 2024-05-19 22:43:41 +01:00

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 thought 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.

Projects

The repo is made up of the following projects:

  • GServer.Server - the server to be connected to
  • GServer.Client - the client that connects to the server
  • GServer.Common - a class library used by both of the above projects. Contains shared code.