Party Reference #

Party service SDK #

Developers can use the Pragma Party API to implement Party service capabilities, such as assigning a party leader and leaving a party.

The table below contains a list of the SDK methods relevant to the Party service. These methods are available via the Party API for Unreal or the Game Loop API for Unity.

Calldescription
InitializeInitializes the client’s party API state and synchronizes party state with the platform. Must be called prior to using other functionality on the API.
ForceSyncForcibly synchronizes the player client party cache with the party information in the Pragma Engine backend. This includes refreshing pending party invite data.
CreatePartyCreates a new party
SendPartyInviteSends a party invite to a specific player
CancelPartyInviteCancels a sent pending party invite
RespondToPartyInviteAccepts or rejects another player’s invite to a party
JoinPartyWithInviteCodeJoins a party using an invite code
JoinPartyWithIdJoins a party using a party ID
LeavePartyLeaves a party voluntarily
AssignPartyLeaderAssigns a party leader
KickPlayerFromPartyForcibly removes a player from a party
UpdatePartyPlayerUpdates custom party player information when in a party
UpdatePartyUpdates custom party information
SetPartyPlayerReadySets the player’s Ready value
SetPartyPreferredGameServerZonesUpdates the GameServerZones value for the party
SetPartyPlayerGameServerZoneToPingUpdates the GameServerZoneToPing value for the party
EnterMatchmakingEnters the party into matchmaking once all players are ready. Only a party leader can enter a party into matchmaking.
LeaveMatchmakingRemoves a party from matchmaking
GetMatchmakingInfoGets matchmaking queue information
GetPartyCacheGets the player’s party cache
GetPendingPartyInvitesGets a list of pending party invites for the player
GetPartyInviteByInviteIdGets party invite object by party invite ID
GetPartyInviteByInviterIdGets party invite object for invite sent by a specified player to the current player

The Party Tasks explains how to use these calls to invoke Party Plugin methods and customize party functionality.

The Party Plugin #

The Party Plugin provides a location for developers to implement custom party functionality. The Party Service Tasks topic explains how to use the Party Plugin methods, along with the SDKs that invoke them.

methoddescription
initializePartyCalled when a new party is created, before any players have been added. Use to initialize any party state.
onAddPlayerCalled before the player has been added to the party. Use to prepare the new player to be added to the party.
handlePlayerSendInviteRequestCalled when receiving a player request to send a party invite. Use to determine whether the player should be allowed to send the party invite.
onRemovePlayerCalled after a player has been removed from the party. Use to perform any necessary updates to the party state.
updatePartyCalled when receiving an update party selections request. Use to perform any necessary updates to the party state.
updatePlayerCalled when receiving an update player selections request. Use to perform any necessary updates to the player or party state.
canChangeReadyCalled when receiving a change ready state request. Use to determine whether a player can change their ready state.
handlePlayerCancelInviteRequestCalled when receiving a player request to cancel a party invite. Use to determine whether the player should be allowed to cancel the party invite.
buildExtBroadcastPartyCalled when broadcasting a change to the party. Use to build any ext data that should be shared about the party.
buildExtPrivatePlayerCalled when broadcasting a change to the party member. Use to build any private ext data that should only be sent to the player.
buildExtBroadcastPlayerCalled when broadcasting a change to the party member. Use to build any ext data that should be shared about a player.
buildMatchmakingKeyCalled when the party is attempting to enter matchmaking. Use to build the matchmaking key they will use to enter matchmaking.
buildExtMatchmakingPartyCalled when the party is attempting to enter matchmaking. Use to build any ext data the matchmaking system will need to know about the party.
buildExtMatchmakingPlayerCalled for each player within a party when the party is attempting to enter matchmaking. Use to build any ext data the matchmaking system will need to know about each player.
returnFromMatchmakingCalled when players are returning from matchmaking. Use to perform any necessary updates to the player or party state.
returnFromGameInstanceCalled when players are returning from a game instance. Use to perform any necessary updates to the player or party state.

Player object #

The Player object includes a PlayerOverview interface that allows Party objects to access a player’s social ID, player ID, and display name.

propertydescription
socialIdSocial identifier of the player
playerIdGame identifier of the player
displayNamePlayer’s display name

Party interfaces #

There are three main interfaces within the Party service: Party, PartyPlayer, and PartyInvite. These interfaces represent parties, their players, as well as information about invitations sent for the party.

Party #

Party.Party represents a party within the party service.

propertydescription
idUnique identifier for the party
playersList of PartyPlayer objects in the party
invitesList of outstanding PartyInvite objects for players to join the party
inviteCodeAuto-generated unique string for the party that players can use to join
maxPlayerCountNumber representing the maximum amount of players for the party set via the PartyService config
gameServerVersionGame server version that maps to the PartyPlayers gameClientVersion, according to the values in the PartyConfig. This value is updated whenever a player joins or leaves the party, or attempts to join matchmaking.
overrideGameServerVersionBoolean indicating whether to use the game server/client mapping specified in the PartyConfig
preferredGameServerZonesList of game server zones that the party can play a match on
extCustom ExtParty payload containing party data for the platform to use
methoddescription
sendInvite()Facilitates sending a party invite from an inviterPlayerId to a inviteePlayerId. This method must be called for an invite to be sent.
cancelInvite()Facilities canceling a party invite, identified by inviteId. This method must be called for an invite to be canceled.

PartyPlayer #

Party.PartyPlayer represents a player within the party service.

propertydescription
playerIdA user’s identifier within a specific game
socialIdUnique social identifier for the player
displayNamePragmaDisplayName object containing the player’s name and discriminator
gameClientVersionVersion of the game client the player is currently running
isReadyBoolean indicating if this player ready to play a match
isLeaderBoolean indicating if this player is a leader in this party
gameServerZoneToPingMap of this player’s ping to various game server zones
extCustom ExtPartyPlayer payload containing player data for the platform to use

PartyInvite #

Party.PartyInvite represents an invitation to join a party sent from one player to another.

propertydescription
idUnique identifier for the party invite
inviterPlayerOverview for the player who sent the invite
inviteePlayerIdPlayer ID of the player invited to join the party

Configuration #

The PartyConfig configuration class provides a place to define default values for the Party service. The following configuration values are available:

configdescription
maxPlayersPerPartyMaximum players allowed in each party
disableMaxPlayerCountWhether to disable maximum player count limits in each party
enableLocalGameServerVersionsWhether to allow local game clients to override their game server version for local development purposes
repeatInviteDelaySecondsDefines the delay (in number of seconds) between a player sending a party invite to another player consecutive times
enableTransferPartyLeaderWhether to transfer party leader status from one player to another when invoking AssignPartyLeader
gameServerVersionCompatibilityMap of all the server versions to compatible game client versions
enableStalePartyExpirationWhether to enable the party expiration feature
stalePartyExpirationMinutesTime, in minutes, to wait before terminating a party. 0 or negative values means parties will never timeout. Will be ignored if enableStalePartyExpiration is false.

Extension data #

You can use Extension Data (exts) to define custom data about players and parties as the party travels through the game loop. These fields are stored on the Party or PartyPlayer classes, and are passed to other plugins as necessary. See Party Service Tasks for sample implementation.

The following table lists the ext payloads relevant to party and player information.

extdescriptionexample data
ExtCreateRequestParty data passed from the player client to the Party Plugin’s initialize method during party creationmap or game mode
ExtPlayerJoinRequestData related to the player joining the party. This ext is passed from the player client to the Party Plugin when the player is added to a party.selected character
ExtPartyAdditional party data for the platform to use. This ext is populated when a party is created, and is stored in the engine for the life of the party. This data is for platform use and is hidden by default.matchmaking style, game instance duration
ExtPartyPlayerAdditional data about a single player in a party. This ext is populated when a player joins a party, and is stored in the engine for as long as the player is in the party. This data is for platform use and is hidden by default.costume catalog id
ExtBroadcastPartyParty data that is populated by the Party Plugin’s buildExtBroadcastParty method and passed to all player clients on the OnPartyChanged event when their party is updated (including party creation and destruction)game mode, game instance duration
ExtBroadcastPlayerPlayer data that is populated by the Party Plugin’s buildExtBroadcastPlayer method and passed to all player clients when their party is updated (including party creation and destruction) Players receive a separate ExtBroadcastPlayer payload on the OnPartyChanged event for each player in the party.selected character
ExtPrivatePlayerPrivate player data that is populated by the Party Plugin’s buildExtPrivatePlayer method and passed to a player client when their party is updated (including party creation and destruction). Each player receives only their own ExtPrivatePlayer payload on the OnPartyChanged event.VoIP token
ExtUpdatePartyRequestParty data passed from a player client to the Party Plugin’s updateParty method. Information sent on this payload updates the data stored in the ExtParty proto.updated game mode
ExtUpdatePartyPlayerRequestPlayer data passed from a player client to the Party Plugin’s updatePlayer method. Information sent on this payload updates the data stored in the ExtPartyPlayer proto.updated inventory version, costume, character

Events #

There are several party-related events that player clients can listen to. The following table contains bindable events relevant to the Party service, along with associated descriptions of when the event is triggered.

The following events are defined in the Party API for Unreal and the Game Loop API for Unity.

EventTriggerData returned
OnJoinedPartyA player joins a partyParty
OnPartyUpdated (Unreal) OnPartyChanged(Unity)Party information changes, including creation and destruction

Note: All other applicable On* events fire in addition to this one, so developers will need to account for handling multiple events at once.
N/A
OnPartyInviteCodeChangedA new invite code is made for the partyinvite code
OnExtBroadcastPartyChangedThe public ext party selections changeExtBroadcastParty
OnPartyPreferredGameServerZonesChangedA party’s preferred game server zones changeArray of preferred game server zones
OnLeftPartyYour player leaves the party voluntarilyN/A
OnRemovedFromPartyYour player leaves a party for reasons outside of your controlRemoval reason (REMOVAL_REASON_UNSPECIFIED, KICKED, LEFT, DISCONNECTED, or EXPIRED)
OnPartyPlayersChangedOne or more players join or leave the partyPartyPlayer for each player that joins or leaves
OnPlayerJoinedPartyA new player joins the party. All players in the party can handle this eventPartyPlayer for the player that joined the party
OnPartyPlayerDataChangedAny player information changesPartyPlayer for the player whose data changed
OnPlayerLeftPartyA player leaves the partyPartyPlayer for the player that left the party
OnExtPrivatePlayerChangedA player’s private selections changesExtPrivatePlayer
OnPartyInvitesChangedA player creates or responds to an inviteinvite ID, inviter’s player ID
OnPartyInviteReceivedA party invite is received from another playerinvite ID, inviter’s player ID
OnPartyInviteCanceledAn inviter or party leader cancels a pending party inviteinvite ID, inviter’s player ID
OnPartyInviteRevokedA party invite is revoked because a newer invite from the same inviter was receivedinvite ID
OnPartyInviteAcceptedAn invitee accepts the invite. Only inviters can handle this eventinvite ID
OnPartyInviteDeclinedAn invitee declines the invite. Only inviters can handle this eventinvite ID
OnGameClientVersionUpdateRequiredThe player client needs to update their GameClientVersionN/A
OnPartyClientVersionMismatchCannot find a game server version that is compatible with every player in the partyN/A
OnEnteredMatchmakingParty enters matchmakingN/A
OnLeftMatchmakingParty leaves matchmakingN/A
OnMatchmakingFailedThere is a failure in matchmakingFailure reason (UNSPECIFIED or GAME_SERVER_VERSION_NO_LONGER_COMPATIBLE)

Errors #

The following errors are relevant to the Party service.

  • PartyService_PartyNotFound
  • PartyService_AlreadyInParty
  • PartyService_InvalidState
  • PartyService_NotInParty
  • PartyService_PlayerNotLeader
  • PartyService_PlayersNotReady
  • PartyService_FailedToEnterMatchmaking
  • PartyService_InviteNotFound
  • PartyService_PartyFull
  • PartyService_InvalidSession
  • PartyService_PartyClientVersionMismatch
  • PartyService_OverrideGameServerVersionDisabled
  • PartyService_GameServerNoLongerCompatible
  • PartyService_LeavePartyFailed
  • PartyService_PlayerNotFound
  • PartyService_PlayerIsKicked
  • PartyService_CanNotKickSelf
  • PartyService_PlayersAlreadyInGameLoop
  • PartyService_PlayerIsLeader
  • PartyService_FailedToLeaveMatchmaking
  • PartyService_SendInviteFailed
  • PartyService_CancelInviteFailed