gpg:: ScoreSummary
#include <score_summary.h>
一个数据结构,可让您访问得分信息摘要。
摘要
构造函数和析构函数 |
|
---|---|
ScoreSummary()
|
|
ScoreSummary(std::shared_ptr< const ScoreSummaryImpl > impl)
|
|
ScoreSummary(const ScoreSummary & copy_from)
创建现有
ScoreSummary 的副本。 |
|
ScoreSummary(ScoreSummary && move_from)
移动现有
ScoreSummary 。 |
|
~ScoreSummary()
|
公共函数 |
|
---|---|
ApproximateNumberOfScores() const
|
uint64_t
返回评分页面上的大致评分数量。
|
Collection() const
|
返回排行榜所属的集合。
|
CurrentPlayerScore() const
|
const Score &
返回当前已登录玩家的分数。
|
LeaderboardId() const
|
const std::string &
返回 Google Play 管理中心事先生成的唯一字符串。
|
TimeSpan() const
|
返回排行榜的时间跨度。
|
Valid() const
|
bool
如果此
ScoreSummary 已填充数据,则返回 true。 |
operator=(const ScoreSummary & copy_from)
|
通过从其他
ScoreSummary 复制来分配此 ScoreSummary 。 |
operator=(ScoreSummary && move_from)
|
通过将另一个
ScoreSummary 移入其中来分配此 ScoreSummary 。 |
公共函数
ApproximateNumberOfScores
uint64_t ApproximateNumberOfScores() const
返回评分页面上的大致评分数量。
如果未请求任何得分(max_results = 0),则返回错误;如果得分过多,则将其限制为 25 个。
LeaderboardId
const std::string & LeaderboardId() const
返回 Google Play 管理中心事先生成的唯一字符串。
您可以使用此 ID 引用游戏客户端中的排行榜。只有在 Leaderboard::Valid() 返回 true 时才能调用此方法。
ScoreSummary
ScoreSummary()
ScoreSummary
ScoreSummary( std::shared_ptr< const ScoreSummaryImpl > impl )
将 shared_ptr
构建为 ScoreSummaryImpl
的 ScoreSummary
。
供 API 内部使用。
有效
bool Valid() const
如果此 ScoreSummary
已填充数据,则返回 true。
必须返回 true,ScoreSummary
对象(LeaderboardId
、TimeSpan
等)上的 getter 函数才能使用。
operator=
ScoreSummary & operator=( const ScoreSummary & copy_from )
通过从其他 ScoreSummary
复制来分配此 ScoreSummary
。
operator=
ScoreSummary & operator=( ScoreSummary && move_from )
通过将另一个 ScoreSummary
移入其中来分配此 ScoreSummary
。
~ScoreSummary
~ScoreSummary()