Skip to main content

MpGameServer

A Python 3.8+ UDP Client and Server for building multiplayer games with a focus on security and ease of use.

MpGameServer abstracts all of the complexities with handling network connections and multithreading so that you can focus on building an event driven game server.

The network protocol is based on the work of Glenn Fiedler's Gaffer On Games

Client

Installation

MpGameServer has an optional installation of pygame.

pip install mpgameserver[pygame]

Features

  • UDP Client and Server
  • Supports Windows, OSX, Linux
  • End to End Authenticated Encryption
  • IPv4 and IPv6 support
  • Mitigations for DDOS amplification attacks
  • Detect (and reject) corrupt or tampered packets
  • Reject duplicate datagrams, and duplicate messages.
  • Optional guaranteed datagram delivery
  • Automatic message fragmentation for messages larger than the maximum packet payload size
  • Combines small messages into a single datagram
  • Connection metrics including datagram latency, datagrams per second sent and received, bytes per second sent and received.
  • Configurable Server IP block list
  • Configurable MTU size

Installation

You can install MpGameServer from PyPI

pip install mpgameserver

MpGameServer supports python 3.8+

How To Use

Read the Getting Started guide for how to use this package with PyGame.

Security

Datagrams are encrypted using AES-GCM. A unique key is generated for every connection using ECDH and ECDSA. The elliptic curve SECP256R1 is used. This provides Authentication (a client can verify it is communicating with the correct server), Integrity (the client and server can detect if a message has been modified) Confidentiality (unauthorized users are not able to decrypt the messages.)

Performance

The performance goal for this server is to handle 128 concurrent connections, each sending 32 datagrams per second, with 60 server ticks per second.

The primary bottleneck is the encryption or decryption of datagrams. The limit is about 40,000 datagrams per second (depending on hardware). In practice this translates to sending or receiving around 3000 datagrams per second, if any practical workload is performed on each datagram.

The second limitation is that the ack bits in the header only contains 32 bits. The implicit assumption is that there will not be more than 32 unacked datagrams in flight. This puts a limit of 32 datagrams per second, the default timeout. Sending more datagrams than this limit can result in datagrams that are received by the remote client, but are not acked on the sending side. A game or server running at 60 frames per second should take care to structure sending messages to avoid hitting this limit. Note that 32 datagrams per second is a transfer rate of about 45KB per second.

Road map

  • Client Side Prediction (CSP) / Server Side Prediction (SSP)
    • A half baked solution is almost ready to be merged.
  • Entity Component System
  • Connection throttling based on latency
  • Use X509 certificates for server authentication. The current EC key solution is somewhat hacky.
  • Ability to send multiple packets per tick/frame.
  • Better retry logic for sending. Currently only retry on timeout is supported.
  • Support for message de-duplication and strong ordering. While individual datagram packets are de-duplicated, the current best way to de-duplicated individual messages is to embed a SeqNum.
  • An API to allow a client to get the metrics from a headless server. A metrics dashboard for a headless client
  • detect packet flooding and prevent sending if there are too many datagrams in flight
  • Utilities to help with user account creation, with a database independent API.

Release files for mpgameserver 0.2.4

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for mpgameserver 0.2.4
File Size Uploaded
mpgameserver-0.2.4.tar.gz 90.9 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for mpgameserver 0.2.4
File Interpreter ABI Platform
mpgameserver-0.2.4-py3-none-any.whl Python 3 none any Details

Total release size:188.1 kB

Release files / mpgameserver-0.2.4.tar.gz

Download URL mpgameserver-0.2.4.tar.gz
Size 90.9 kB
Tags Source
SHA-256 checksum
How to use checksums
1cded870bff51e500f45f5bf2a27e2db6bbcb02e1013bacdb09704a265a5404f
BLAKE2b-256 checksum
How to use checksums
a93d0c26896816fd27833ff26cbe16c91fbca20f8c292e8731505bae3ab1eb80
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.4

Release files / mpgameserver-0.2.4-py3-none-any.whl

Download URL mpgameserver-0.2.4-py3-none-any.whl
Size 97.2 kB
Tags Python 3
SHA-256 checksum
How to use checksums
c5c235a1d81c3933f0c52a6f60551ac7a81c3133ce21bcf08eedc90980b11d32
BLAKE2b-256 checksum
How to use checksums
200c956d5db5e9d293775df07b719c570eee23e056332e3468156ae4e605a042
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.4

Release history Release notifications | RSS feed

This release

0.2.4 This release

2 release files

0.2.3

2 release files

0.2.1

2 release files

0.1.1

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page