mirror of
https://github.com/Facepunch/Facepunch.Steamworks.git
synced 2024-12-25 06:05:46 +03:00
Added FetchUsersScores to Leaderboard.cs
This commit is contained in:
parent
46f56c24f3
commit
83d71d78a4
@ -321,6 +321,34 @@ public bool FetchScores( RequestType RequestType, int start, int end, FetchScore
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public unsafe bool FetchUsersScores( RequestType RequestType, UInt64[] steamIds, FetchScoresCallback onSuccess, FailureCallback onFailure = null )
|
||||||
|
{
|
||||||
|
|
||||||
|
if ( IsError ) return false;
|
||||||
|
if ( !IsValid ) return DeferOnCreated( () => FetchUsersScores( RequestType, steamIds, onSuccess, onFailure ), onFailure );
|
||||||
|
|
||||||
|
fixed(ulong* pointer = steamIds){
|
||||||
|
|
||||||
|
client.native.userstats.DownloadLeaderboardEntriesForUsers(BoardId, (IntPtr)pointer, steamIds.Length, (result, error) =>
|
||||||
|
{
|
||||||
|
if (error)
|
||||||
|
{
|
||||||
|
onFailure?.Invoke(Callbacks.Result.IOFailure);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (_sEntryBuffer == null) _sEntryBuffer = new List<Entry>();
|
||||||
|
else _sEntryBuffer.Clear();
|
||||||
|
|
||||||
|
ReadScores(result, _sEntryBuffer);
|
||||||
|
onSuccess(_sEntryBuffer.ToArray());
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
private void OnScores( LeaderboardScoresDownloaded_t result, bool error )
|
private void OnScores( LeaderboardScoresDownloaded_t result, bool error )
|
||||||
{
|
{
|
||||||
IsQuerying = false;
|
IsQuerying = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user