Statistics and Leadeboards
Statistics are a means to save interesting numerical aspects of player game. For instance, a statistic can represent a balance, xp points, score, etc.
Even if it looks like statistics overlap the game state feature, it comes with the benefit of attaching an implicit leaderboard to each of them.
When the SDK sees a statistic not defined upfront, it still accepts it and attaches a default configuration
- Update strategy
LAST
- Reset interval
NEVER
More about those values below.
Update mode
Update mode defines how values pushed to the backend will get updated
- LAST
The stat will always get the last value pushed, no computation will be applied
- SUM
The stat will increase by the given value
- MIN
The stat will get updated only if the new value is lower than the current value
- MAX
The stat will get updated only if the new value is greater than the current value
Reset interval
This parameter governs both the leaderboard and the statistic value. At the given reset interval, the statistic value will go back to 0, and a new leaderboard will start for the period.
- NEVER
The stat and leaderboard never reset
- DAILY
Reset every day at 00:00 UTC,
- WEEKLY
Reset every week on Monday 00:00 UTC
- MONTHLY
Reset every month, first day of the month at 00:00 UTC
Manage statistic values
Update
Each statistic can be updated on a case-by-case basis, but updates can also come in batch for maximum efficiency. You can specify as many statistics you want in the update request. Other already existing stats will remain unchanged.
Get
All player statistics are fetched at once. If a statistics is using a reset interval, the field resetId
will be present, with the number of seconds before reset.
Leaderboards
User position
You can query just the user position for a given statistic. The result can be null if no values have been recorded yet.
Fetch
You can get a leaderboard from first position and then paginate to the end. If the leaderboard has a reset interval, the field resetIn
will be defined, with the number of seconds before reset.
GetLeaderboard
accept two optional parameters :
- pageSize
Default 50
- next
Cursor to fetch the next page
fetchLeaderboard
accept an optional parameter, where next is the next page cursor, and pageSize is the initial page size.
Around user
You can also query a leaderboard to get a portion of it centered around the user. It works the same way as Fetch the only difference being you cannot paginate the results.
Depending on the user's position, his entry will not always be in the middle of the returned list. For example, if he's first or last, he may appear at either the beginning or the end.
If the user is not ranked yet, the top leaderboard is returned instead.
GetLeaderboardAround
accept two optional parameters :
- pageSize
Default 50
fetchLeaderboardAround
accept an optional parameter, where pageSize is the initial page size.