The Parsec SDK allows your application to make interactive, low-latency peer-to-peer connections for the purpose of game streaming. The SDK handles the low level internals of peer-to-peer connectivity, networking, and hardware accelerated video/audio processing. It is lightweight, consisting of a single header file and a shared object < 5MB.
The ParsecHost
portion of the SDK allows a host to accept incoming client connections (guests). There are two modes of operation: game mode and desktop mode.
Game mode allows your game to add multiplayer functionality to an otherwise local only game. This is achieved via a tight integration into your game's render loop. Game mode requires that the application call ParsecHostSubmitFrame
and ParsecHostSubmitAudio
. Input is polled via ParsecHostPollInput
, exposing input events much like they would appear locally. In game mode, Parsec can only interact with your game and has no access to the OS or any other application.
Additionally, game mode can be used to make any game entirely headless from the host's point of view. The game window, rendering swap chain, and audio playback can be removed, leaving the game to accept input from and invisibly output data to Parsec connected guests.
Desktop mode shares the host's entire desktop (or any fullscreen application) and adds additional permissions/approval to the connection process.
The ParsecClient
portion of the SDK provides everything necessary to make a connection to a host, send gamepad/mouse/keyboard input, and receive video/audio output from the host. ParsecClientGLRender
allows the client application to efficiently render the incoming frames.
The Parsec SDK provides the ParsecUnity module for easy integration in Unity games. See examples/unity for details.
The client example demonstrates the most complete implementation of the client SDK. It uses the cross platform SDL2 library to handle window creation, rendering, audio playback, and input handling. Windows, macOS, and x86-64 Linux are supported.
The ios and android examples demonstrate audio playback, rendering, and basic input capabilities of the client SDK. The Android example provides a simple JNI bindings package to expose a subset of the C API in Java.
The host example is a succinct implementation of desktop hosting functionality. Desktop hosting is currently only available on Windows.
The Web Client SDK provides a fully wrapped Parsec client interface only requiring a <video>
element for initialization. The performance is limited compared to the native SDK clients. See examples/web and sdk/web for details.
Documentation is procedurally generated from the parsec.h header file.
https://parsecgaming.com/docs/sdk
The SDK requires a sessionID
and peerID
obtained through the Parsec API to identify users and make secure connections. See the Public API for details.
For enterprise customers, refer to the example in api/enterprise on how to wrap the Enterprise API.
If PARSEC_DSO
is defined before including parsec.h, the header will export a struct
containing function pointers for use with runtime linking. There is a convenience header which makes DSO easy to use called parsec-dso.h in the sdk directory. The client and host examples use DSO. There are a few differences when using the parsec-dso.h header instead of parsec.h:
- The
Parsec *
context is nowParsecDSO *
. - All global functions that do not normally take a
Parsec *
context now need to takeParsecDSO *
as their first argument, such asParsecSetLogCallback
. - The signature for
ParsecInit
changes to to take an additionalchar *
argument specifying the name of the shared object. ParsecInit
may returnSO_ERR_OPEN
orSO_ERR_SYMBOL
if runtime linking was unsuccessful.
Bindings are maintained by third party developers (thank you!). If you're interested in another language and would like to create a binding, please submit an issue or contact us via sdk@parsecgaming.com.
Language | Maintainer | Repo |
---|---|---|
Java | Richard Smith | electronstudio/parsec-java |
For questions, suggestions, concerns, and support, visit the Parsec SDK Server on Discord.