This page has been translated automatically.
视频教程
界面
要领
高级
实用建议
UnigineEditor
界面概述
资产工作流程
设置和首选项
项目开发
调整节点参数
Setting Up Materials
Setting Up Properties
照明
Landscape Tool
Sandworm
使用编辑器工具执行特定任务
Extending Editor Functionality
嵌入式节点类型
Nodes
Objects
Effects
Decals
光源
Geodetics
World Objects
Sound Objects
Pathfinding Objects
Players
编程
基本原理
搭建开发环境
Usage Examples
UnigineScript
C++
C#
UUSL (Unified UNIGINE Shader Language)
File Formats
Rebuilding the Engine Tools
GUI
双精度坐标
应用程序接口
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 Optimization
Materials
Art Samples
Tutorials
注意! 这个版本的文档是过时的,因为它描述了一个较老的SDK版本!请切换到最新SDK版本的文档。
注意! 这个版本的文档描述了一个不再受支持的旧SDK版本!请升级到最新的SDK版本。

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: ()