This page has been translated automatically.
Video Tutorials
Interface
Essentials
Advanced
How To
UnigineEditor
Interface Overview
Assets Workflow
Settings and Preferences
Working With Projects
Adjusting Node Parameters
Setting Up Materials
Setting Up Properties
Lighting
Landscape Tool
Sandworm
Using Editor Tools for Specific Tasks
Extending Editor Functionality
Built-in Node Types
Nodes
Objects
Effects
Decals
Light Sources
Geodetics
World Objects
Sound Objects
Pathfinding Objects
Players
Programming
Fundamentals
Setting Up Development Environment
Usage Examples
UnigineScript
C++
C#
UUSL (Unified UNIGINE Shader Language)
File Formats
Rebuilding the Engine Tools
GUI
Double Precision Coordinates
API
Containers
Common Functionality
Controls-Related Classes
Engine-Related Classes
Filesystem Functionality
GUI-Related Classes
Math Functionality
Node-Related Classes
Objects-Related Classes
Networking Functionality
Pathfinding-Related Classes
Physics-Related Classes
Plugins-Related Classes
IG Plugin
CIGIConnector Plugin
Rendering-Related Classes
Content Creation
Content Optimization
Materials
Art Samples
Tutorials
Warning! This version of documentation is OUTDATED, as it describes an older SDK version! Please switch to the documentation for the latest SDK version.
Warning! This version of documentation describes an old SDK version which is no longer supported! Please upgrade to the latest SDK version.

Unigine::Plugins::SteamLeaderboard Class

Header: #include <plugins/UnigineSteam.h>

SteamLeaderboard Class

Enums

DATA_REQUEST#

NameDescription
DATA_REQUEST_GLOBAL = 0Used to query for a sequential range of leaderboard entries by leaderboard rank. The start and end parameters control the requested range. For example, you can display the top 10 on a leaderboard for your game by setting start to 1 and end to 10.
DATA_REQUEST_GLOBAL_AROUND_USER = 1Used to retrieve leaderboard entries relative a user's entry. The start parameter is the number of entries to retrieve before the current user's entry, and the end parameter is the number of entries after the current user's entry. The current user's entry is always included. For example, if the current user is #5 on the leaderboard, setting start to -2 and end to 2 will return 5 entries: ranks #3 through #7. If there are not enough entries in the leaderboard before or after the user's entry, Steam will adjust the range to try to return the number of entries requested. For example, if the user is #1 on the leaderboard and start is set to -2, end is set to 2, Steam will return the first 5 entries in the leaderboard.
DATA_REQUEST_FRIENDS = 2Used to retrieve all leaderboard entries for friends of the current user. The start and end parameters are ignored.
DATA_REQUEST_USERS = 3Used internally.

DISPLAY_TYPE#

NameDescription
DISPLAY_TYPE_NONE = 0This is only ever used when a leaderboard is invalid, you should never set this yourself.
DISPLAY_TYPE_NUMERIC = 1The score is just a simple numerical value.
DISPLAY_TYPE_TIME_SECONDS = 2The score represents a time, in seconds.
DISPLAY_TYPE_TIME_MILLISECONDS = 3The score represents a time, in milliseconds.

SORT_METHOD#

NameDescription
SORT_METHOD_NONE = 0Only ever used when a leaderboard is invalid, you should never set this yourself.
SORT_METHOD_ASCENDING = 1The top-score is the lowest number.
SORT_METHOD_DESCENDING = 2The top-score is the highest number.

Members


int getID ( ) const#

Returns the leaderboard ID.

Return value

Leaderboard ID.

const char * getName ( ) const#

Returns the leaderboard name.

Return value

Leaderboard name.

bool isFound ( ) const#

Returns the value stating if the leaderboard was found.

Return value

true if the leaderboard is found, otherwise false.

bool find ( ) #

Returns the value stating if the leaderboard was created.

Return value

true if a leaderboard is created, otherwise false.

bool findOrCreate ( SteamLeaderboard::SORT_METHOD sort_method, SteamLeaderboard::DISPLAY_TYPE display_type ) #

Checks if a leaderboard is created, it will create it if it's not yet created.

Arguments

Return value

true if a leaderboard is created, otherwise false.

bool uploadScore ( int score, bool forced = false ) #

Uploads the user score to the current leaderboard.

Arguments

  • int score - The value to store in the current leaderboard.
  • bool forced - If set to true, the leaderboard will always replace score with specified; if set to false, the leaderboard will keep user's best score.

Return value

true if , otherwise false.

bool downloadScores ( SteamLeaderboard::DATA_REQUEST request, int num_before, int num_after ) #

Downloads a set of entries from the current leaderboard.

Arguments

  • SteamLeaderboard::DATA_REQUEST request - Type of requested data, one of the DATA_REQUEST values.
  • int num_before - Number of entries before the current user.
  • int num_after - Number of entries after the current user.

Return value

false if a leaderboard has not been selected yet, otherwise true.

bool isUploading ( ) const#

Checks the leaderboard uploading status.

Return value

true if the leaderboard is uploading, otherwise false.

bool isDownloading ( ) const#

Checks the leaderboard downloading status.

Return value

true if the leaderboard is downloading, otherwise false.

bool isLastUploadFailed ( ) const#

Return value

true if , otherwise false.

bool isLastDownloadFailed ( ) const#

Return value

SteamLeaderboard::DATA_REQUEST getLastDataRequest ( ) const#

Return value

int getEntryCount ( ) const#

Return value

SteamLeaderboard::SORT_METHOD getSortMethod ( ) const#

Returns the order for the leaderboard sorting.

Return value

Order for the leaderboard sorting, one of the values.

SteamLeaderboard::DISPLAY_TYPE getDisplayType ( ) const#

Returns the type of data to be displayed with the leaderboard.

Return value

Type of data to be displayed with the leaderboard, one of the values.

int getNumEntries ( ) const#

Returns the existing number of entries.

Return value

Number of entries.

unsigned long long getEntryUserID ( int num ) const#

Arguments

  • int num -

Return value

int getEntryRank ( int num ) const#

Arguments

  • int num -

Return value

int getEntryScore ( int num ) const#

Arguments

  • int num -

Return value

Last update: 2021-04-29
Build: ()