A rudimentary UDP/TCP game server loosely based on GraalOnline's GServer design.
Find a file
2024-05-19 22:41:45 +01:00
GServer.Client refactor: clean up, add readme 2024-05-19 22:41:21 +01:00
GServer.Common feat: add ListServerResponseMessage, refactor 2024-05-19 22:33:10 +01:00
GServer.Server refactor: clean up, add readme 2024-05-19 22:41:21 +01:00
.gitignore feat: initial commit - server and client 2024-05-19 22:13:48 +01:00
GServer.sln feat: initial commit - server and client 2024-05-19 22:13:48 +01:00
README.md Update README.md 2024-05-19 22:41:45 +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.